Skip to content

Instantly share code, notes, and snippets.

@SemonCat
Created August 18, 2015 07:33
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 SemonCat/5122cab0f717ffd202d5 to your computer and use it in GitHub Desktop.
Save SemonCat/5122cab0f717ffd202d5 to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23"
defaultConfig {
applicationId "xxxxxxxxxxx"
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
productFlavors {
alpha {
versionCode 1
versionName "1.0"
}
beta {
versionCode 2
versionName "2.0"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment