mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-25 11:22:20 +00:00
39 lines
No EOL
805 B
Groovy
Executable file
39 lines
No EOL
805 B
Groovy
Executable file
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
|
|
defaultConfig {
|
|
applicationId "org.dslul.openboard.inputmethod.latin"
|
|
minSdkVersion 14
|
|
targetSdkVersion 29
|
|
versionCode 3
|
|
versionName "1.1"
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.google.code.findbugs:jsr305:3.0.2'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
} |