Skip to content

Commit 427d65e

Browse files
committed
Merge remote-tracking branch 'origin/loading-progress-for-image' into loading-progress-for-image
2 parents 9c1ec17 + 54723b5 commit 427d65e

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ plugins {
2929
android {
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"

app/proguard-rules.pro

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,13 @@
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

build-logic/convention/src/main/kotlin/AndroidTestConventionPlugin.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ class AndroidTestConventionPlugin : Plugin<Project> {
3131

3232
extensions.configure<TestExtension> {
3333
configureKotlinAndroid(this)
34-
defaultConfig.targetSdk = 31
34+
defaultConfig.targetSdk = 34
3535
configureGradleManagedDevices(this)
3636
}
3737
}
3838
}
3939

40-
}
40+
}

gradle/libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[versions]
22
accompanist = "0.28.0"
3-
androidDesugarJdkLibs = "1.2.2"
3+
androidDesugarJdkLibs = "2.0.3"
44
androidGradlePlugin = "8.1.0"
55
androidxActivity = "1.7.0"
66
androidxAppCompat = "1.5.1"
@@ -49,7 +49,7 @@ protobuf = "3.23.4"
4949
protobufPlugin = "0.9.3"
5050
retrofit = "2.9.0"
5151
retrofitKotlinxSerializationJson = "1.0.0"
52-
room = "2.5.0"
52+
room = "2.5.2"
5353
secrets = "2.0.1"
5454
turbine = "0.12.1"
5555

0 commit comments

Comments
 (0)