File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,13 @@ plugins {
21
21
}
22
22
23
23
android {
24
- compileSdkVersion 33
24
+ namespace ' com.example.sqlbasics'
25
+ compileSdk 34
25
26
26
27
defaultConfig {
27
28
applicationId " com.example.sqlbasics"
28
29
minSdkVersion 19
29
- targetSdkVersion 33
30
+ targetSdkVersion 34
30
31
versionCode 1
31
32
versionName " 1.0"
32
33
@@ -49,10 +50,11 @@ android {
49
50
}
50
51
51
52
dependencies {
52
- def room_version = ' 2.4.3 '
53
+ def room_version = ' 2.6.1 '
53
54
54
55
implementation " androidx.room:room-runtime:$room_version "
55
56
kapt " androidx.room:room-compiler:$room_version "
57
+ // ksp("androidx.room:room-compiler:$room_version")
56
58
57
59
// optional - Kotlin Extensions and Coroutines support for Room
58
60
implementation " androidx.room:room-ktx:$room_version "
Original file line number Diff line number Diff line change @@ -22,14 +22,18 @@ buildscript {
22
22
mavenCentral()
23
23
}
24
24
dependencies {
25
- classpath ' com.android.tools.build:gradle:7.3.1 '
25
+ classpath ' com.android.tools.build:gradle:8.7.2 '
26
26
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
27
27
28
28
// NOTE: Do not place your application dependencies here; they belong
29
29
// in the individual module build.gradle files
30
30
}
31
31
}
32
32
33
+ plugins {
34
+ id ' org.jetbrains.kotlin.android' version ' 1.9.21' apply false
35
+ }
36
+
33
37
allprojects {
34
38
repositories {
35
39
google()
Original file line number Diff line number Diff line change 1
- # Wed Apr 07 09:17:40 PDT 2021
1
+ # Tue Nov 05 23:39:28 CST 2024
2
2
distributionBase =GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.9-bin.zip
4
5
zipStoreBase =GRADLE_USER_HOME
5
6
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-7.4-bin.zip
You can’t perform that action at this time.
0 commit comments