2ec1a4311a
#KT-14965 Fixed
43 lines
779 B
Kotlin
Vendored
43 lines
779 B
Kotlin
Vendored
|
|
buildscript {
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:2.3.1")
|
|
}
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
apply {
|
|
plugin("com.android.application")
|
|
}
|
|
|
|
android {
|
|
buildToolsVersion("25.0.0")
|
|
compileSdkVersion(23)
|
|
|
|
defaultConfig {
|
|
minSdkVersion(15)
|
|
targetSdkVersion(23)
|
|
|
|
applicationId = "com.example.kotlingradle"
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
}
|
|
|
|
buildTypes {
|
|
getByName("release") {
|
|
isMinifyEnabled = false
|
|
proguardFiles("proguard-rules.pro")
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile("com.android.support:appcompat-v7:23.4.0")
|
|
compile("com.android.support.constraint:constraint-layout:1.0.0-alpha8")
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
} |