28 lines
536 B
Groovy
28 lines
536 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion "29.0.3"
|
|
defaultConfig {
|
|
applicationId "net.f_list.fchat"
|
|
minSdkVersion 21
|
|
targetSdkVersion 27
|
|
versionCode 28
|
|
versionName "3.0.16"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|