diff --git a/android/app/build.gradle b/android/app/build.gradle index d8b2adc8..4e018b38 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -44,11 +44,12 @@ android { defaultConfig { applicationId "chat.fluffy.fluffychat" - minSdkVersion 21 + minSdkVersion 16 targetSdkVersion 30 versionCode flutterVersionCode.toInteger() versionName flutterVersionName testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + multiDexEnabled true } signingConfigs { @@ -85,6 +86,7 @@ dependencies { androidTestImplementation 'androidx.test:runner:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' implementation 'com.github.UnifiedPush:android-connector:1.2.3' // needed for unifiedpush + implementation 'androidx.multidex:multidex:2.0.1' } //apply plugin: 'com.google.gms.google-services' diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index eae7eadf..ee40b78d 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,4 +1,5 @@