fix crash on older devices

This commit is contained in:
dslul 2022-01-23 11:41:23 +01:00
parent 3dd1548c9f
commit 945b5b7f6c
6 changed files with 19 additions and 11 deletions

View file

@ -9,7 +9,7 @@ android {
applicationId "org.dslul.openboard.inputmethod.latin"
minSdkVersion 19
targetSdkVersion 31
versionCode 17
versionCode 18
versionName '1.4.4'
}
@ -23,9 +23,6 @@ android {
}
}
aaptOptions {
noCompress 'dict'
}
externalNativeBuild {
ndkBuild {
@ -38,13 +35,16 @@ android {
}
ndkVersion '21.3.6528147'
androidResources {
noCompress '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.2.1' // Replaces recyclerview:1.0.0 included by above dependency
implementation 'androidx.core:core-ktx:1.5.0'
implementation 'androidx.core:core-ktx:1.7.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.viewpager2:viewpager2:1.0.0'
}