64-bit splits

This commit is contained in:
fekt
2023-07-09 11:17:34 -04:00
parent c7e3ec8e8e
commit 8962e82363

View File

@@ -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
}