mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-04-24 08:36:26 +00:00
https://github.com/openboard-team/openboard/pull/569 https://github.com/openboard-team/openboard/pull/578 modified so dictionaries use the correct type instead of always main
57 lines
1.6 KiB
Groovy
Executable file
57 lines
1.6 KiB
Groovy
Executable file
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion 33
|
|
|
|
defaultConfig {
|
|
applicationId "org.dslul.openboard.inputmethod.latin"
|
|
minSdkVersion 19
|
|
targetSdkVersion 33
|
|
versionCode 19
|
|
versionName '1.4.5'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
debuggable false
|
|
jniDebuggable false
|
|
renderscriptDebuggable false
|
|
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
|
|
}
|
|
|
|
|
|
externalNativeBuild {
|
|
ndkBuild {
|
|
path 'src/main/jni/Android.mk'
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
ndkVersion '23.2.8568313'
|
|
androidResources {
|
|
noCompress 'main.dict'
|
|
noCompress 'empty.dict'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.google.code.findbugs:jsr305:3.0.2'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.0' // Replaces recyclerview:1.0.0 included by above dependency
|
|
implementation 'androidx.core:core-ktx:1.10.1'
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation 'androidx.viewpager2:viewpager2:1.0.0'
|
|
}
|