Skip to content

Instantly share code, notes, and snippets.

@dafinoer
Created July 20, 2022 04:47
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 dafinoer/96a17f78bda03c20e4597b12799ef34e to your computer and use it in GitHub Desktop.
Save dafinoer/96a17f78bda03c20e4597b12799ef34e to your computer and use it in GitHub Desktop.
productFlavors {
development {
dimension "app"
applicationIdSuffix ".dev"
versionNameSuffix "-dev"
manifestPlaceholders = [
appName : "CUiT-Dev",
appScheme : "cuit-app",
icemanApplication: "com.gocuit.cuit.dev"
]
// NOTE: Enabling the following option may fix some build issues.
// lintOptions {
// checkReleaseBuilds false
// }
}
production {
dimension "app"
applicationIdSuffix ".android"
manifestPlaceholders = [
appName : "CUiT",
appScheme : "cuit-app",
icemanApplication: "com.gocuit.cuit.android"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment