HeliBoard/app/build.gradle

63 lines
1.5 KiB
Groovy
Raw Normal View History

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'
2019-12-31 18:19:35 +01:00
android {
2023-06-25 14:51:13 +02:00
compileSdkVersion 33
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
2023-06-25 14:51:13 +02:00
targetSdkVersion 33
2022-08-05 18:22:32 +02:00
versionCode 19
versionName '1.4.5'
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'
}
debug {
minifyEnabled false
jniDebuggable false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
applicationIdSuffix ".debug"
}
archivesBaseName = "openboard_" + defaultConfig.versionName
2019-12-31 18:19:35 +01:00
}
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
}
2023-06-25 14:51:13 +02:00
ndkVersion '23.2.8568313'
2022-01-23 11:41:23 +01:00
androidResources {
noCompress 'main.dict'
noCompress 'empty.dict'
2022-01-23 11:41:23 +01:00
}
packagingOptions {
jniLibs {
// shrinks APK by 3 MB, zipped size unchanged
useLegacyPackaging true
}
}
2019-12-31 18:19:35 +01:00
}
dependencies {
implementation 'androidx.recyclerview:recyclerview:1.3.1'
2023-06-25 14:51:13 +02:00
implementation 'androidx.core:core-ktx:1.10.1'
2020-01-20 19:24:43 +01:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
testImplementation 'junit:junit:4.13.2'
2020-01-20 19:24:43 +01:00
}