-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: added android multidexing for all branch required frameworks
- Loading branch information
Showing
4 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,18 @@ | ||
android { | ||
defaultConfig { | ||
multiDexEnabled true | ||
} | ||
} | ||
|
||
dependencies { | ||
// multidex for frameworks | ||
compile 'com.android.support:multidex:1.0.1' | ||
// branch sdk | ||
compile 'io.branch.sdk.android:library:2+' | ||
// branch app indexing | ||
compile 'com.google.android.gms:play-services-appindexing:9.+' | ||
// branch chrome tabs for better matching | ||
compile 'com.android.support:customtabs:23.3.0' | ||
compile 'com.android.support:customtabs:23.3.0' | ||
// branch gaid for better device matching | ||
compile 'com.google.android.gms:play-services-ads:9+' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters