Last active
August 3, 2019 09:08
-
-
Save nhoxbypass/04e15bfc5fe92862ce75399bcb95bba0 to your computer and use it in GitHub Desktop.
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
| android { | |
| buildTypes { | |
| release { | |
| minifyEnabled true | |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
| } | |
| debug { | |
| testCoverageEnabled true | |
| minifyEnabled true | |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules-debug.pro' | |
| } | |
| } | |
| flavorDimensions "mock" | |
| // If you need to add more flavors, consider using flavor dimensions. | |
| productFlavors { | |
| mock { | |
| dimension "mock" | |
| applicationIdSuffix = ".mock" | |
| } | |
| prod { | |
| // No special config | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment