Skip to content

Commit 7b7343f

Browse files
update
1 parent 5d45a05 commit 7b7343f

File tree

5 files changed

+24
-6
lines changed

5 files changed

+24
-6
lines changed

app/proguard-rules.pro

+9
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,14 @@
5656
-if interface * { @retrofit2.http.* <methods>; }
5757
-keep,allowobfuscation interface <1>
5858

59+
# Keep generic signature of Call, Response (R8 full mode strips signatures from non-kept items).
60+
-keep,allowobfuscation,allowshrinking interface retrofit2.Call
61+
-keep,allowobfuscation,allowshrinking class retrofit2.Response
62+
63+
# With R8 full mode generic signatures are stripped for classes that are not
64+
# kept. Suspend functions are wrapped in continuations where the type argument
65+
# is used.
66+
-keep,allowobfuscation,allowshrinking class kotlin.coroutines.Continuation
67+
5968
-dontwarn
6069
-ignorewarnings

buildSrc/src/main/java/Kuper.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
object Kuper {
44
const val appId = "dev.jahir.kuper.app"
5-
const val version = 246
6-
const val versionName = "2.4.6"
5+
const val version = 247
6+
const val versionName = "2.4.7"
77
}

buildSrc/src/main/java/Versions.kt

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
object Versions {
44
// Plugins
5-
const val gradle = "8.0.1"
5+
const val gradle = "8.1.0"
66
const val kotlin = "1.9.0"
77
const val sonatype = "1.3.0"
8-
const val ksp = "$kotlin-1.0.11"
8+
const val ksp = "$kotlin-1.0.12"
99

1010
// OneSignal
1111
const val oneSignal = "4.8.6"
@@ -16,7 +16,7 @@ object Versions {
1616
const val buildTools = "33.0.2"
1717

1818
// Frames
19-
const val frames = "3.5.6"
19+
const val frames = "3.5.7"
2020

2121
// Kustom API
2222
const val kustomApi = "20"
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Sun Jul 24 22:47:34 CEST 2022
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

library/proguard-rules.pro

+9
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,14 @@
5656
-if interface * { @retrofit2.http.* <methods>; }
5757
-keep,allowobfuscation interface <1>
5858

59+
# Keep generic signature of Call, Response (R8 full mode strips signatures from non-kept items).
60+
-keep,allowobfuscation,allowshrinking interface retrofit2.Call
61+
-keep,allowobfuscation,allowshrinking class retrofit2.Response
62+
63+
# With R8 full mode generic signatures are stripped for classes that are not
64+
# kept. Suspend functions are wrapped in continuations where the type argument
65+
# is used.
66+
-keep,allowobfuscation,allowshrinking class kotlin.coroutines.Continuation
67+
5968
-dontwarn
6069
-ignorewarnings

0 commit comments

Comments
 (0)