Bump sdk to 2.6.10-SNAPSHOT

This commit is contained in:
Mikołaj Pich 2024-05-22 20:24:27 +02:00
parent 859c6ef154
commit f3afe7fdb7
No known key found for this signature in database
3 changed files with 5 additions and 2 deletions

View File

@ -191,7 +191,7 @@ ext {
}
dependencies {
implementation 'io.github.wulkanowy:sdk:2.6.9'
implementation 'io.github.wulkanowy:sdk:2.6.10-SNAPSHOT'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'

View File

@ -59,7 +59,7 @@ class WulkanowySdkFactory @Inject constructor(
if (mapping != null) {
endpointsMapping = mapping.endpoints
vTokenMapping = mapping.vTokens
vTokenSchemeMapping = mapping.vTokenScheme
vHeaders = mapping.vHeaders
vParamsEvaluation = createIsolate()
}
}

View File

@ -14,4 +14,7 @@ data class Mapping(
@SerialName("vTokenScheme")
val vTokenScheme: Map<String, Map<String, String>> = emptyMap(),
@SerialName("vHeaders")
val vHeaders: Map<String, Map<String, Map<String, String>>> = emptyMap(),
)