Created
September 10, 2018 17:56
-
-
Save zawadz88/8bca82c4f75d2a55266f0a81834235a4 to your computer and use it in GitHub Desktop.
Installed app's build.gradle
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
| apply plugin: 'com.android.application' | |
| android { | |
| // other config... | |
| flavorDimensions "pricing" | |
| productFlavors { | |
| free { | |
| dimension "pricing" | |
| applicationIdSuffix = '.free' | |
| } | |
| paid { | |
| dimension "pricing" | |
| applicationIdSuffix = '.paid' | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment