diff --git a/.gitignore b/.gitignore index 9a6811785789..5cfb9504ab1d 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,8 @@ .dart_tool/ pubspec.lock +examples/all_plugins/pubspec.yaml + Podfile Podfile.lock Pods/ diff --git a/examples/all_plugins/android/app/build.gradle b/examples/all_plugins/android/app/build.gradle index 013bfdcec927..389706e34fb4 100644 --- a/examples/all_plugins/android/app/build.gradle +++ b/examples/all_plugins/android/app/build.gradle @@ -35,10 +35,11 @@ android { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "io.plugins.all_plugins" minSdkVersion 16 + multiDexEnabled true targetSdkVersion 28 versionCode flutterVersionCode.toInteger() versionName flutterVersionName - testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { @@ -56,6 +57,7 @@ flutter { dependencies { testImplementation 'junit:junit:4.12' - androidTestImplementation 'com.android.support.test:runner:1.0.2' - androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' + androidTestImplementation 'androidx.test:runner:1.1.0' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0' + api 'androidx.exifinterface:exifinterface:1.0.0' } diff --git a/examples/all_plugins/android/app/src/main/AndroidManifest.xml b/examples/all_plugins/android/app/src/main/AndroidManifest.xml index cc094789065c..fc8cb90afaa3 100644 --- a/examples/all_plugins/android/app/src/main/AndroidManifest.xml +++ b/examples/all_plugins/android/app/src/main/AndroidManifest.xml @@ -1,5 +1,8 @@ + package="io.plugins.all_plugins" + xmlns:tools="http://schemas.android.com/tools"> + +