Compare commits
13 Commits
dependabot
...
2.6.7
Author | SHA1 | Date | |
---|---|---|---|
51dd343299 | |||
d1d0caa1e3 | |||
c40779f48f | |||
5ee7fee09d | |||
594d2dbec5 | |||
ff56348586 | |||
a69361708e | |||
3cbe98d7b8 | |||
503a97bc4c | |||
ae6a35121b | |||
558addd097 | |||
e8f9c57c34 | |||
4d67de8e5f |
@ -27,8 +27,8 @@ android {
|
||||
testApplicationId "io.github.tests.wulkanowy"
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 34
|
||||
versionCode 165
|
||||
versionName "2.6.5"
|
||||
versionCode 167
|
||||
versionName "2.6.7"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
|
||||
resValue "string", "app_name", "Wulkanowy"
|
||||
@ -161,7 +161,7 @@ play {
|
||||
track = 'production'
|
||||
releaseStatus = ReleaseStatus.IN_PROGRESS
|
||||
userFraction = 0.99d
|
||||
updatePriority = 3
|
||||
updatePriority = 2
|
||||
enabled.set(false)
|
||||
}
|
||||
|
||||
@ -191,7 +191,7 @@ ext {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'io.github.wulkanowy:sdk:2.6.4'
|
||||
implementation 'io.github.wulkanowy:sdk:2.6.6'
|
||||
|
||||
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
|
||||
|
||||
|
@ -47,6 +47,7 @@ class WulkanowySdkFactory @Inject constructor(
|
||||
if (mapping != null) {
|
||||
endpointsMapping = mapping.endpoints
|
||||
vTokenMapping = mapping.vTokens
|
||||
vTokenSchemeMapping = mapping.vTokenScheme
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -11,4 +11,7 @@ data class Mapping(
|
||||
|
||||
@SerialName("vTokens")
|
||||
val vTokens: Map<String, Map<String, Map<String, String>>>,
|
||||
|
||||
@SerialName("vTokenScheme")
|
||||
val vTokenScheme: Map<String, Map<String, String>> = emptyMap(),
|
||||
)
|
||||
|
@ -11,6 +11,6 @@ interface WulkanowyService {
|
||||
@GET("/v1.json")
|
||||
suspend fun getAdminMessages(): List<AdminMessage>
|
||||
|
||||
@GET("/mapping1.json")
|
||||
@GET("/mapping2.json")
|
||||
suspend fun getMapping(): Mapping
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
Wersja 2.6.5
|
||||
Wersja 2.6.7
|
||||
|
||||
— naprawiliśmy pozostałe bieżące problemy spowodowane ostatnimi blokadami Wulkanowego przez wiadomo kogo
|
||||
— taka tam aktualizacja wiadomości w czwartek. Jeśli widzisz to w piątek, to może już nie działać
|
||||
|
||||
Pełna lista zmian: https://github.com/wulkanowy/wulkanowy/releases
|
||||
|
@ -1,6 +1,6 @@
|
||||
buildscript {
|
||||
ext {
|
||||
kotlin_version = '1.9.24'
|
||||
kotlin_version = '1.9.23'
|
||||
about_libraries = '11.1.4'
|
||||
hilt_version = '2.51.1'
|
||||
}
|
||||
@ -13,8 +13,8 @@ buildscript {
|
||||
dependencies {
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
||||
classpath "com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:$kotlin_version-1.0.20"
|
||||
classpath 'com.android.tools.build:gradle:8.4.1'
|
||||
classpath "com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:$kotlin_version-1.0.19"
|
||||
classpath 'com.android.tools.build:gradle:8.4.0'
|
||||
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
|
||||
classpath 'com.google.gms:google-services:4.4.1'
|
||||
classpath 'com.huawei.agconnect:agcp:1.9.1.303'
|
||||
|
Reference in New Issue
Block a user