11apply plugin : ' com.android.application'
2- apply plugin : ' android-apt'
32
43android {
5- compileSdkVersion 25
6- buildToolsVersion " 25 .0.2 "
4+ compileSdkVersion 29
5+ buildToolsVersion " 29 .0.3 "
76 defaultConfig {
87 applicationId " android.example.com.squawker"
9- minSdkVersion 16
10- targetSdkVersion 25
8+ minSdkVersion 19
9+ targetSdkVersion 29
1110 versionCode 1
1211 versionName " 1.0"
1312 testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
@@ -21,20 +20,18 @@ android {
2120}
2221
2322dependencies {
24- compile fileTree(dir : ' libs' , include : [' *.jar' ])
25- androidTestCompile(' com.android.support.test.espresso:espresso-core:2.2.2' , {
26- exclude group : ' com.android.support' , module : ' support-annotations'
27- })
28- compile ' com.android.support:appcompat-v7:25.1.0'
29- testCompile ' junit:junit:4.12'
30-
23+ implementation fileTree(dir : ' libs' , include : [' *.jar' ])
24+ implementation ' androidx.appcompat:appcompat:1.1.0'
25+ testImplementation ' junit:junit:4.13'
3126 // RecyclerView
32- compile ' com.android.support :recyclerview-v7:25 .1.0'
27+ implementation ' androidx.recyclerview :recyclerview:1 .1.0'
3328
3429 // Schematic dependencies for ContentProvider
35- apt ' net.simonvt.schematic:schematic-compiler:0.6.3'
36- compile ' net.simonvt.schematic:schematic:0.6.3'
30+ annotationProcessor ' net.simonvt.schematic:schematic-compiler:0.6.3'
31+ implementation ' net.simonvt.schematic:schematic:0.6.3'
3732
3833 // Preferences Dependencies
39- compile ' com.android.support:preference-v7:25.1.0'
34+ implementation " androidx.preference:preference:1.1.1"
35+ androidTestImplementation ' androidx.test.ext:junit:1.1.1'
36+ androidTestImplementation ' androidx.test.espresso:espresso-core:3.2.0'
4037}
0 commit comments