Snap for 13348467 from 74b961ed0bc81a43bd67d7b6dae669958cab9b03 to androidx-swiperefreshlayout-release
Change-Id: I755727bfcc951a3ae5672be209a865848070ca30
diff --git a/app/build.gradle b/app/build.gradle
index e95ce03..f17205a 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,3 +1,5 @@
+import androidx.build.KotlinTarget
+
plugins {
id("AndroidXPlugin")
id("AndroidXComposePlugin")
@@ -90,9 +92,10 @@
implementation(libs.kotlinCoroutinesAndroid)
// Database
- implementation("androidx.room:room-runtime:2.6.1")
- implementation("androidx.room:room-ktx:2.6.1")
- ksp("androidx.room:room-compiler:2.6.1")
+ // TODO: Update to Room 2.7.0 stable once released (b/407725691)
+ implementation("androidx.room:room-runtime:2.7.0-rc03")
+ implementation("androidx.room:room-ktx:2.7.0-rc03")
+ ksp("androidx.room:room-compiler:2.7.0-rc03")
// Network
implementation("com.squareup.retrofit2:retrofit:2.11.0")
@@ -101,3 +104,8 @@
implementation("com.squareup.okhttp3:mockwebserver:4.12.0")
implementation("com.squareup.okhttp3:okhttp-tls:4.12.0")
}
+
+androidx {
+ //TODO(b/402389694): Target Kotlin 2.
+ kotlinTarget = KotlinTarget.KOTLIN_1_9
+}
\ No newline at end of file