@@ -5,8 +5,8 @@ plugins {
55}
66
77android {
8- compileSdkVersion 31
9- buildToolsVersion " 30.0.2 "
8+ compileSdkVersion 33
9+ buildToolsVersion " 30.0.3 "
1010
1111 compileOptions {
1212 sourceCompatibility JavaVersion . VERSION_1_8
@@ -16,7 +16,7 @@ android {
1616 defaultConfig {
1717 applicationId " de.raphaelebner.roomdatabasebackup.sample"
1818 minSdkVersion 21
19- targetSdkVersion 31
19+ targetSdkVersion 33
2020 versionCode 1
2121 versionName " 1.0.3"
2222
@@ -45,21 +45,22 @@ android {
4545 kotlinOptions {
4646 jvmTarget = JavaVersion . VERSION_1_8 . toString()
4747 }
48+ namespace ' de.raphaelebner.roomdatabasebackup.sample'
4849}
4950
5051dependencies {
5152 implementation fileTree(dir : " libs" , include : [" *.jar" ])
52- implementation ' androidx.core:core-ktx:1.7 .0'
53- implementation ' androidx.appcompat:appcompat:1.4.0 '
54- implementation ' androidx.constraintlayout:constraintlayout:2.1.2 '
53+ implementation ' androidx.core:core-ktx:1.9 .0'
54+ implementation ' androidx.appcompat:appcompat:1.5.1 '
55+ implementation ' androidx.constraintlayout:constraintlayout:2.1.4 '
5556 implementation project(path : ' :core' )
5657 implementation ' androidx.legacy:legacy-support-v4:1.0.0'
5758 testImplementation ' junit:junit:4.13.2'
5859 androidTestImplementation ' androidx.test.ext:junit:1.1.3'
5960 androidTestImplementation ' androidx.test.espresso:espresso-core:3.4.0'
6061
6162 // ROOM SQLite
62- def room_version = " 2.4.0 "
63+ def room_version = " 2.4.3 "
6364
6465 implementation " androidx.room:room-runtime:$room_version "
6566 kapt " androidx.room:room-compiler:$room_version "
@@ -71,7 +72,7 @@ dependencies {
7172 implementation " androidx.room:room-rxjava2:$room_version "
7273
7374 implementation ' androidx.lifecycle:lifecycle-extensions:2.2.0'
74- implementation " androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0 "
75+ implementation " androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1 "
7576
7677 // optional - Guava support for Room, including Optional and ListenableFuture
7778 implementation " androidx.room:room-guava:$room_version "
@@ -83,6 +84,6 @@ dependencies {
8384 implementation ' androidx.recyclerview:recyclerview:1.2.1'
8485
8586 // Material Design Implementation
86- implementation ' com.google.android.material:material:1.4 .0'
87+ implementation ' com.google.android.material:material:1.7 .0'
8788
8889}
0 commit comments