Skip to content

Instantly share code, notes, and snippets.

@prokash-sarkar
Last active February 9, 2021 04:58
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 prokash-sarkar/c0decd89a3001fbc1657c51c73b2a906 to your computer and use it in GitHub Desktop.
Save prokash-sarkar/c0decd89a3001fbc1657c51c73b2a906 to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'jacoco'
apply from: "$project.rootDir/tools/script-jacoco.gradle"
android {
// Code omitted for brevity
flavorDimensions "version"
productFlavors {
app {
dimension "version"
}
beta {
dimension "version"
applicationIdSuffix ".beta"
}
prod {
dimension "version"
applicationIdSuffix ".prod"
}
}
dependencies {
// Code omitted for brevity
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment