Skip to content

Instantly share code, notes, and snippets.

@zawadz88
Created September 10, 2018 17:56
Show Gist options
  • Select an option

  • Save zawadz88/8bca82c4f75d2a55266f0a81834235a4 to your computer and use it in GitHub Desktop.

Select an option

Save zawadz88/8bca82c4f75d2a55266f0a81834235a4 to your computer and use it in GitHub Desktop.
Installed app's build.gradle
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