allow universal apk

This commit is contained in:
Bnyro 2022-08-18 13:29:07 +02:00
parent a85c64b544
commit 5a05c67aae
2 changed files with 47 additions and 39 deletions

View File

@ -60,7 +60,7 @@ android {
enable true enable true
reset() reset()
include "armeabi-v7a", "arm64-v8a", "x86", "x86_64" include "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
universalApk false universalApk true
} }
} }

View File

@ -8,43 +8,12 @@
"variantName": "release", "variantName": "release",
"elements": [ "elements": [
{ {
"type": "ONE_OF_MANY", "type": "UNIVERSAL",
"filters": [ "filters": [],
{
"filterType": "ABI",
"value": "x86_64"
}
],
"attributes": [], "attributes": [],
"versionCode": 16, "versionCode": 17,
"versionName": "0.4.2", "versionName": "0.5.0",
"outputFile": "app-x86_64-release.apk" "outputFile": "app-universal-release.apk"
},
{
"type": "ONE_OF_MANY",
"filters": [
{
"filterType": "ABI",
"value": "arm64-v8a"
}
],
"attributes": [],
"versionCode": 16,
"versionName": "0.4.2",
"outputFile": "app-arm64-v8a-release.apk"
},
{
"type": "ONE_OF_MANY",
"filters": [
{
"filterType": "ABI",
"value": "x86"
}
],
"attributes": [],
"versionCode": 16,
"versionName": "0.4.2",
"outputFile": "app-x86-release.apk"
}, },
{ {
"type": "ONE_OF_MANY", "type": "ONE_OF_MANY",
@ -55,9 +24,48 @@
} }
], ],
"attributes": [], "attributes": [],
"versionCode": 16, "versionCode": 17,
"versionName": "0.4.2", "versionName": "0.5.0",
"outputFile": "app-armeabi-v7a-release.apk" "outputFile": "app-armeabi-v7a-release.apk"
},
{
"type": "ONE_OF_MANY",
"filters": [
{
"filterType": "ABI",
"value": "x86"
}
],
"attributes": [],
"versionCode": 17,
"versionName": "0.5.0",
"outputFile": "app-x86-release.apk"
},
{
"type": "ONE_OF_MANY",
"filters": [
{
"filterType": "ABI",
"value": "arm64-v8a"
}
],
"attributes": [],
"versionCode": 17,
"versionName": "0.5.0",
"outputFile": "app-arm64-v8a-release.apk"
},
{
"type": "ONE_OF_MANY",
"filters": [
{
"filterType": "ABI",
"value": "x86_64"
}
],
"attributes": [],
"versionCode": 17,
"versionName": "0.5.0",
"outputFile": "app-x86_64-release.apk"
} }
], ],
"elementType": "File" "elementType": "File"