Skip to content

Instantly share code, notes, and snippets.

@Thilagavathi1
Created January 26, 2023 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Thilagavathi1/f4ec2dfe6d4c65ae1c4db5b2565be641 to your computer and use it in GitHub Desktop.
Save Thilagavathi1/f4ec2dfe6d4c65ae1c4db5b2565be641 to your computer and use it in GitHub Desktop.
Product flavours
android {
productFlavors {
development {
minSdkVersion rootProject.ext.minSdkVersion
applicationId 'com.awesome.project.dev'
targetSdkVersion rootProject.ext.targetSdkVersion
resValue "string", "build_config_package", "com.myapp"
}
production {
minSdkVersion rootProject.ext.minSdkVersion
applicationId 'com.awesome.project'
targetSdkVersion rootProject.ext.targetSdkVersion
resValue "string", "build_config_package", "com.myapp"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment