Add multidex support

This commit is contained in:
Marvin W 2019-05-27 13:21:28 +02:00
parent c0a5051941
commit c7e9b299f6
No known key found for this signature in database
GPG Key ID: 072E9235DB996F2A
2 changed files with 5 additions and 1 deletions

View File

@ -23,6 +23,7 @@ def useMapbox() {
}
dependencies {
implementation 'com.android.support:multidex:1.0.3'
implementation "com.android.support:support-v4:$supportLibraryVersion"
implementation "com.android.support:appcompat-v7:$supportLibraryVersion"
implementation "com.android.support:mediarouter-v7:$supportLibraryVersion"
@ -87,6 +88,8 @@ android {
minSdkVersion androidMinSdk()
targetSdkVersion androidTargetSdk()
multiDexEnabled true
ndk {
abiFilters "armeabi", "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
}

View File

@ -106,7 +106,8 @@
android:allowBackup="false"
android:extractNativeLibs="false"
android:icon="@mipmap/ic_core_service_app"
android:label="@string/gms_app_name">
android:label="@string/gms_app_name"
android:name="android.support.multidex.MultiDexApplication">
<meta-data
android:name="fake-signature"
android:value="@string/fake_signature"/>