Browse Source

64-bit splits

main^2
fekt 10 months ago
parent
commit
8962e82363
  1. 8
      app/build.gradle

8
app/build.gradle

@ -30,6 +30,14 @@ android {
// per https://google.github.io/android-gradle-dsl/current/com.android.build.gradle.internal.dsl.VectorDrawablesOptions.html: If set to an empty collection, all special handling of vector drawables will be disabled.
vectorDrawables.generatedDensities = []
}
splits {
abi {
enable true
reset()
universalApk true
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
buildFeatures {
viewBinding true
}

Loading…
Cancel
Save