Skip to content

Commit

Permalink
Unbreak 64bit builds (#390)
Browse files Browse the repository at this point in the history
The MultiDexApplication stuff changed in ABI 21+, which breaks if we use minSdk 21...

But, apparently, we can build with an NDKABI > minSdk, so, do that ;p.
  • Loading branch information
NiLuJe committed Oct 24, 2022
1 parent 2228f93 commit 96d7478
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ android {
x86_64 {
ndk { abiFilters "x86_64" }
dimension = 'ABI'
minSdkVersion rootProject.ext.minSdk64
}
arm {
ndk { abiFilters "armeabi-v7a" }
Expand All @@ -73,7 +72,6 @@ android {
arm64 {
ndk { abiFilters "arm64-v8a" }
dimension = 'ABI'
minSdkVersion rootProject.ext.minSdk64
}

fdroid {
Expand Down
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
buildscript {
ext.compileSdk = 30
ext.targetSdk = 30
ext.minSdk64 = 21
ext.minSdk = 14

ext.gradle_plugin_version = '4.2.1'
Expand Down

0 comments on commit 96d7478

Please sign in to comment.