@@ -3,15 +3,15 @@ apply plugin: 'kotlin-android'
3
3
apply plugin : ' kotlin-kapt'
4
4
5
5
android {
6
- compileSdkVersion 27
6
+ compileSdkVersion 30
7
7
8
8
defaultConfig {
9
9
applicationId " dev.matrix.roomigrant.test"
10
10
minSdkVersion 19
11
- targetSdkVersion 27
11
+ targetSdkVersion 30
12
12
versionCode 1
13
13
versionName " 1.0"
14
- testInstrumentationRunner " android.support. test.runner.AndroidJUnitRunner"
14
+ testInstrumentationRunner ' androidx. test.runner.AndroidJUnitRunner'
15
15
16
16
javaCompileOptions {
17
17
annotationProcessorOptions {
@@ -33,20 +33,20 @@ android {
33
33
}
34
34
35
35
dependencies {
36
- implementation ' com.android.support :appcompat-v7:27.1.1 '
37
- implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7 :$kotlin_version "
36
+ implementation ' androidx.appcompat :appcompat:1.2.0 '
37
+ implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version "
38
38
39
39
// room
40
- implementation ' android.arch.persistence. room:runtime:1.1.1 '
41
- androidTestImplementation ' android.arch.persistence. room:testing:1.1.1 '
42
- kapt ' android.arch.persistence. room:compiler:1.1.1 '
40
+ implementation ' androidx. room:room- runtime:2.2.5 '
41
+ androidTestImplementation ' androidx. room:room- testing:2.2.5 '
42
+ kapt ' androidx. room:room- compiler:2.2.5 '
43
43
44
44
// roomigrant
45
45
compileOnly project(' :RoomigrantLib' )
46
46
kapt project(' :RoomigrantCompiler' )
47
47
48
48
// testing
49
- testImplementation ' junit:junit:4.12 '
50
- androidTestImplementation ' com.android.support. test:runner :1.0 .2'
51
- androidTestImplementation ' com.android.support. test.espresso:espresso-core:3.0.2 '
49
+ testImplementation ' junit:junit:4.13 '
50
+ androidTestImplementation ' androidx. test.ext:junit :1.1 .2'
51
+ androidTestImplementation ' androidx. test.espresso:espresso-core:3.3.0 '
52
52
}
0 commit comments