diff --git a/android/app/build.gradle b/android/app/build.gradle index 377405f6c..96d85232d 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -33,11 +33,10 @@ android { defaultConfig { applicationId "deckers.thibault.aves" - minSdkVersion 24 + minSdkVersion 24 // Java 8 (stream, lambda, etc.) requires minSdkVersion 24 targetSdkVersion 29 // same as compileSdkVersion versionCode flutterVersionCode.toInteger() versionName flutterVersionName - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { @@ -59,12 +58,10 @@ flutter { dependencies { implementation 'com.drewnoakes:metadata-extractor:2.14.0' implementation 'com.github.bumptech.glide:glide:4.11.0' + implementation 'com.google.guava:guava:29.0-android' + annotationProcessor 'androidx.annotation:annotation:1.1.0' annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0' - implementation 'com.google.guava:guava:28.2-android' - testImplementation 'junit:junit:4.13' - androidTestImplementation 'androidx.test:runner:1.2.0' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' compileOnly rootProject.findProject(':streams_channel') }