Android: Removed nightly and canary build flavours as they are now irrelevant

This commit is contained in:
OpenSauce04 2024-05-17 22:20:02 +01:00
parent f96a9d684f
commit 8a9ec7e0fa
2 changed files with 2 additions and 13 deletions

View File

@ -1,7 +1,6 @@
#!/bin/bash -ex
export NDK_CCACHE=$(which ccache)
BUILD_FLAVOR=nightly
if [ ! -z "${ANDROID_KEYSTORE_B64}" ]; then
export ANDROID_KEYSTORE_FILE="${GITHUB_WORKSPACE}/ks.jks"
@ -10,8 +9,8 @@ fi
cd src/android
chmod +x ./gradlew
./gradlew assemble${BUILD_FLAVOR}Release
./gradlew bundle${BUILD_FLAVOR}Release
./gradlew assembleRelease
./gradlew bundleRelease
ccache -s -v

View File

@ -145,16 +145,6 @@ android {
}
flavorDimensions.add("version")
productFlavors {
create("canary") {
dimension = "version"
applicationIdSuffix = ".canary"
}
create("nightly") {
dimension = "version"
}
}
externalNativeBuild {
cmake {