android: added 'universal' flavor that includes both both arm64-v8a and x86_64 versions of libmpd.so

This commit is contained in:
gd
2025-02-05 20:31:43 +02:00
parent 2bf9fdf10e
commit 038759506f
3 changed files with 11 additions and 1 deletions

View File

@@ -57,6 +57,12 @@ android {
abiFilters += listOf("x86_64")
}
}
create("universal") {
ndk {
// ABI to include in package
abiFilters += listOf("arm64-v8a", "x86_64")
}
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_9

View File

@@ -76,5 +76,7 @@ print("""
## To build the android app:
# cd ../../android
# ./gradlew assemble{}Debug
## or, for a universal apk (includes both arm64-v8a and x86_64)
# ./gradlew assembleUniversalDebug
-------------------------------------
""".format(android_abi.capitalize()))