Created
April 22, 2019 14:37
-
-
Save passiondroid/0f31e5ccd2ce0d6e8fc4be906b158b27 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
plugins { | |
id(BuildPlugins.androidApplication) | |
id(BuildPlugins.kotlinAndroid) | |
id(BuildPlugins.kotlinAndroidExtensions) | |
} | |
android { | |
compileSdkVersion(AndroidSdk.compile) | |
defaultConfig { | |
applicationId = "com.gradle.kotlindsl" | |
minSdkVersion(AndroidSdk.min) | |
targetSdkVersion(AndroidSdk.target) | |
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") | |
} | |
} | |
} | |
dependencies { | |
implementation(Libraries.kotlinStdLib) | |
implementation(Libraries.appCompat) | |
implementation(Libraries.ktxCore) | |
implementation(Libraries.constraintLayout) | |
testImplementation (TestLibraries.junit4) | |
androidTestImplementation (TestLibraries.testRunner) | |
androidTestImplementation (TestLibraries.espresso) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment