@@ -13,6 +13,14 @@ android {
1313 versionCode 1
1414 versionName " 1.0"
1515 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
16+
17+ compileOptions {
18+ sourceCompatibility = JavaVersion . VERSION_1_8
19+ targetCompatibility = JavaVersion . VERSION_1_8
20+ }
21+ kotlinOptions {
22+ jvmTarget = JavaVersion . VERSION_1_8
23+ }
1624 }
1725 buildTypes {
1826 release {
@@ -25,8 +33,8 @@ android {
2533dependencies {
2634 implementation fileTree(dir : ' libs' , include : [' *.jar' ])
2735 implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
28- implementation " androidx.appcompat:appcompat:1.0.2 "
29- implementation " androidx.core:core-ktx:1.0.1 "
36+ implementation " androidx.appcompat:appcompat:1.1.0 "
37+ implementation " androidx.core:core-ktx:1.2.0 "
3038
3139 // The slice builder ktx library has a number of dependencies. For reference, since this is a
3240 // slice sample, below are a list of the slice dependencies:
@@ -35,10 +43,10 @@ dependencies {
3543 implementation " androidx.slice:slice-builders-ktx:1.0.0-alpha6"
3644
3745 implementation " androidx.constraintlayout:constraintlayout:1.1.3"
38- implementation " com.google.firebase:firebase-appindexing:17 .1.0"
39- testImplementation " junit:junit:4.12 "
40- androidTestImplementation " androidx.test:runner:1.1.1 "
41- androidTestImplementation " androidx.test.espresso:espresso-core:3.1.1 "
46+ implementation " com.google.firebase:firebase-appindexing:19 .1.0"
47+ testImplementation " junit:junit:4.13 "
48+ androidTestImplementation " androidx.test:runner:1.2.0 "
49+ androidTestImplementation " androidx.test.espresso:espresso-core:3.2.0 "
4250}
4351
4452apply plugin : " com.google.gms.google-services"
0 commit comments