File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ plugins {
2929android {
3030 defaultConfig {
3131 applicationId = " com.google.samples.apps.nowinandroid"
32- versionCode = 7
33- versionName = " 0.1.1 " // X.Y.Z; X = Major, Y = minor, Z = Patch level
32+ versionCode = 8
33+ versionName = " 0.1.2 " // X.Y.Z; X = Major, Y = minor, Z = Patch level
3434
3535 // Custom test runner to set up Hilt dependency graph
3636 testInstrumentationRunner = " com.google.samples.apps.nowinandroid.core.testing.NiaTestRunner"
Original file line number Diff line number Diff line change 77-dontwarn org.openjsse.javax.net.ssl.SSLParameters
88-dontwarn org.openjsse.javax.net.ssl.SSLSocket
99-dontwarn org.openjsse.net.ssl.OpenJSSE
10+
11+ # Fix for Retrofit issue https://github.com/square/retrofit/issues/3751
12+ # Keep generic signature of Call, Response (R8 full mode strips signatures from non-kept items).
13+ -keep,allowobfuscation,allowshrinking interface retrofit2.Call
14+ -keep,allowobfuscation,allowshrinking class retrofit2.Response
15+
16+ # With R8 full mode generic signatures are stripped for classes that are not
17+ # kept. Suspend functions are wrapped in continuations where the type argument
18+ # is used.
19+ -keep,allowobfuscation,allowshrinking class kotlin.coroutines.Continuation
You can’t perform that action at this time.
0 commit comments