fchat-rising/mobile/android/app/build.gradle

28 lines
536 B
Groovy
Raw Normal View History

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