File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,13 @@ plugins {
2121}
2222
2323android {
24- compileSdkVersion 33
24+ namespace ' com.example.sqlbasics'
25+ compileSdk 34
2526
2627 defaultConfig {
2728 applicationId " com.example.sqlbasics"
2829 minSdkVersion 19
29- targetSdkVersion 33
30+ targetSdkVersion 34
3031 versionCode 1
3132 versionName " 1.0"
3233
@@ -49,10 +50,11 @@ android {
4950}
5051
5152dependencies {
52- def room_version = ' 2.4.3 '
53+ def room_version = ' 2.6.1 '
5354
5455 implementation " androidx.room:room-runtime:$room_version "
5556 kapt " androidx.room:room-compiler:$room_version "
57+ // ksp("androidx.room:room-compiler:$room_version")
5658
5759 // optional - Kotlin Extensions and Coroutines support for Room
5860 implementation " androidx.room:room-ktx:$room_version "
Original file line number Diff line number Diff line change @@ -22,14 +22,20 @@ buildscript {
2222 mavenCentral()
2323 }
2424 dependencies {
25- classpath ' com.android.tools.build:gradle:7.3.1 '
25+ classpath ' com.android.tools.build:gradle:8.7.2 '
2626 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
2727
2828 // NOTE: Do not place your application dependencies here; they belong
2929 // in the individual module build.gradle files
3030 }
3131}
3232
33+ plugins {
34+ id ' org.jetbrains.kotlin.android' version ' 1.9.21' apply false
35+
36+ // id("com.google.devtools.ksp") version "1.8.10-1.0.9" apply false
37+ }
38+
3339allprojects {
3440 repositories {
3541 google()
You can’t perform that action at this time.
0 commit comments