Bump versjon til v1.7.0 (versionCode 11)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ole-Morten Duesund 2026-03-23 15:03:19 +01:00
commit 97225d1e77
2 changed files with 3 additions and 3 deletions

View file

@ -14,8 +14,8 @@ android {
applicationId = "no.naiv.tilfluktsrom" applicationId = "no.naiv.tilfluktsrom"
minSdk = 26 minSdk = 26
targetSdk = 35 targetSdk = 35
versionCode = 10 versionCode = 11
versionName = "1.6.1" versionName = "1.7.0"
} }
dependenciesInfo { dependenciesInfo {

View file

@ -46,7 +46,7 @@ class ShelterRepository(private val context: Context) {
.readTimeout(60, TimeUnit.SECONDS) .readTimeout(60, TimeUnit.SECONDS)
.addInterceptor(Interceptor { chain -> .addInterceptor(Interceptor { chain ->
chain.proceed(chain.request().newBuilder() chain.proceed(chain.request().newBuilder()
.header("User-Agent", "Tilfluktsrom/1.6.1") .header("User-Agent", "Tilfluktsrom/1.7.0")
.build()) .build())
}) })
.build() .build()