2019-12-31 18:19:35 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2020-01-20 19:24:43 +01:00
|
|
|
apply plugin: 'kotlin-android'
|
2020-07-10 15:47:01 +02:00
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2019-12-31 18:19:35 +01:00
|
|
|
|
|
|
|
android {
|
2020-09-04 18:23:05 +02:00
|
|
|
compileSdkVersion 30
|
2019-12-31 18:19:35 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.dslul.openboard.inputmethod.latin"
|
2020-01-20 19:24:43 +01:00
|
|
|
minSdkVersion 19
|
2020-09-04 18:23:05 +02:00
|
|
|
targetSdkVersion 30
|
2020-02-06 10:38:36 +01:00
|
|
|
versionCode 10
|
2020-01-27 11:19:49 +01:00
|
|
|
versionName "1.3"
|
2019-12-31 18:19:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
aaptOptions {
|
|
|
|
noCompress 'dict'
|
|
|
|
}
|
|
|
|
|
|
|
|
externalNativeBuild {
|
|
|
|
ndkBuild {
|
|
|
|
path 'src/main/native/jni/Android.mk'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
checkReleaseBuilds false
|
|
|
|
}
|
2020-09-04 18:23:05 +02:00
|
|
|
ndkVersion '21.3.6528147'
|
2019-12-31 18:19:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'com.google.code.findbugs:jsr305:3.0.2'
|
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
2020-09-04 18:23:05 +02:00
|
|
|
implementation 'androidx.core:core-ktx:1.3.1'
|
2020-01-20 19:24:43 +01:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2019-12-31 18:19:35 +01:00
|
|
|
}
|