Last active
February 2, 2019 11:28
-
-
Save chizoba/bb141bbe87d9dcb0c8dfebc02607d736 to your computer and use it in GitHub Desktop.
Having multiple APKs on a single device - SnippetB
This file contains hidden or 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
| <application | |
| ... | |
| android:label="${app_name}" | |
| ...> | |
| </application> |
This file contains hidden or 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
| buildTypes { | |
| release { | |
| ... | |
| manifestPlaceholders = [app_name:"AppName"] | |
| } | |
| staging { | |
| ... | |
| applicationIdSuffix ".staging" | |
| manifestPlaceholders = [app_name:"AppNameStaging"] | |
| } | |
| debug { | |
| ... | |
| applicationIdSuffix ".debug" | |
| manifestPlaceholders = [app_name:"AppNameDebug"] | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment