Last active
May 31, 2019 22:37
-
-
Save sanogueralorenzo/b4a280ad26f48db53b0f166722140a0c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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