2018-01-06 17:14:21 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
|
|
|
|
android {
|
2019-01-03 18:38:17 +01:00
|
|
|
compileSdkVersion 28
|
2021-03-18 00:29:56 +01:00
|
|
|
buildToolsVersion "29.0.3"
|
2018-01-06 17:14:21 +01:00
|
|
|
defaultConfig {
|
|
|
|
applicationId "net.f_list.fchat"
|
2019-01-03 18:38:17 +01:00
|
|
|
minSdkVersion 21
|
2018-01-06 17:14:21 +01:00
|
|
|
targetSdkVersion 27
|
2021-03-18 00:29:56 +01:00
|
|
|
versionCode 28
|
|
|
|
versionName "3.0.16"
|
2018-01-06 17:14:21 +01:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2018-08-10 18:59:37 +02:00
|
|
|
minifyEnabled true
|
2018-01-06 17:14:21 +01:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-01-03 18:38:17 +01:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2018-01-06 17:14:21 +01:00
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|