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 {
|
2021-07-15 09:05:31 -04:00
|
|
|
compileSdkVersion 31
|
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
|
2021-07-15 09:05:31 -04:00
|
|
|
targetSdkVersion 31
|
2021-05-03 09:12:23 +02:00
|
|
|
versionCode 15
|
|
|
|
versionName '1.4.3'
|
2019-12-31 18:19:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
2020-10-02 14:14:04 +02:00
|
|
|
debuggable false
|
|
|
|
jniDebuggable false
|
|
|
|
renderscriptDebuggable false
|
2019-12-31 18:19:35 +01:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
aaptOptions {
|
|
|
|
noCompress 'dict'
|
|
|
|
}
|
|
|
|
|
|
|
|
externalNativeBuild {
|
|
|
|
ndkBuild {
|
2020-09-09 10:28:12 +02:00
|
|
|
path 'src/main/jni/Android.mk'
|
2019-12-31 18:19:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-02 14:14:04 +02:00
|
|
|
lintOptions {
|
|
|
|
abortOnError 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'
|
2022-01-13 13:45:48 +01:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.1' // Replaces recyclerview:1.0.0 included by above dependency
|
2021-06-14 10:01:57 +02:00
|
|
|
implementation 'androidx.core:core-ktx:1.5.0'
|
2020-01-20 19:24:43 +01:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
2020-09-10 19:04:43 +02:00
|
|
|
implementation 'androidx.viewpager2:viewpager2:1.0.0'
|
2020-01-20 19:24:43 +01:00
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2019-12-31 18:19:35 +01:00
|
|
|
}
|