Simple-Keyboard/app/build.gradle

47 lines
984 B
Groovy
Raw Normal View History

2022-01-04 10:03:20 +01:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdk 30
defaultConfig {
applicationId "com.simplemobiletools.keyboard"
minSdk 23
targetSdk 30
versionCode 1
versionName "5.0.0"
setProperty("archivesBaseName", "keyboard")
}
buildTypes {
debug {
applicationIdSuffix ".debug"
}
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
flavorDimensions "variants"
productFlavors {
2022-01-14 20:08:03 +01:00
core {}
2022-01-04 10:03:20 +01:00
fdroid {}
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
2022-01-05 10:04:49 +01:00
lintOptions {
checkReleaseBuilds false
abortOnError false
}
2022-01-04 10:03:20 +01:00
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:db3561b188'
2022-01-04 10:03:20 +01:00
}