Skip to content

Instantly share code, notes, and snippets.

@nrohmen
Created May 15, 2019 08:12
Show Gist options
  • Save nrohmen/6a17e46eaa6fa996bbec6512b540d4ab to your computer and use it in GitHub Desktop.
Save nrohmen/6a17e46eaa6fa996bbec6512b540d4ab to your computer and use it in GitHub Desktop.
playing kotlin dsl
android {
compileSdkVersion(28)
defaultConfig {
applicationId = "com.nrohmen.kotlinandroidcleanarchitecture"
minSdkVersion(19)
targetSdkVersion(28)
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
getByName("release"){
isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment