Skip to content

Commit 243165a

Browse files
committed
fix: fixes #380 by ripping out Android multidexing because of complications with Android Studio 2.3+
1 parent 8869e87 commit 243165a

File tree

2 files changed

+0
-27
lines changed

2 files changed

+0
-27
lines changed

build.gradle

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/scripts/android/updateAndroidManifest.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
var mainActivityIndex = getMainLaunchActivityIndex(manifest['manifest']['application'][0]['activity'])
1717

1818
// update manifest
19-
manifest = updateMultidex(manifest)
2019
manifest = updateBranchMetaData(manifest, preferences)
2120
manifest = updateBranchReferrerTracking(manifest)
2221
manifest = updateLaunchOptionToSingleTask(manifest, mainActivityIndex)
@@ -57,14 +56,6 @@
5756
return manifest
5857
}
5958

60-
// adds to <application> for multidex (needed for all the frameworks)
61-
// <application android:name="android.support.multidex.MultiDexApplication" >
62-
// </application>
63-
function updateMultidex (manifest) {
64-
manifest['manifest']['application'][0]['$']['android:name'] = 'android.support.multidex.MultiDexApplication'
65-
return manifest
66-
}
67-
6859
// adds to <application> for install referrer tracking (optional)
6960
// <receiver android:name="io.branch.referral.InstallListener" android:exported="true">
7061
// <intent-filter>

0 commit comments

Comments
 (0)