Skip to content

Instantly share code, notes, and snippets.

@sanogueralorenzo
Last active May 31, 2019 22:37
Show Gist options
  • Save sanogueralorenzo/b4a280ad26f48db53b0f166722140a0c to your computer and use it in GitHub Desktop.
Save sanogueralorenzo/b4a280ad26f48db53b0f166722140a0c to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion Versions.compileSdk
defaultConfig {
minSdkVersion Versions.minSdk
targetSdkVersion Versions.targetSdk
versionCode Releases.versionCode
versionName Releases.versionName
}
buildTypes {
release {
minifyEnabled true
}
}
}
dependencies {
implementation Libraries.kotlin
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment