Merge pull request #1084 from Bnyro/master

add universal apk
This commit is contained in:
Bnyro 2022-08-18 13:29:39 +02:00 committed by GitHub
commit d1824b2b73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 49 additions and 41 deletions

View File

@ -14,8 +14,8 @@ android {
applicationId 'com.github.libretube' applicationId 'com.github.libretube'
minSdk 21 minSdk 21
targetSdk 31 targetSdk 31
versionCode 16 versionCode 17
versionName '0.4.2' versionName '0.5.0'
multiDexEnabled true multiDexEnabled true
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
resValue "string", "app_name", "LibreTube" resValue "string", "app_name", "LibreTube"
@ -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"