Android: Remove nightly and canary

This commit is contained in:
Gamer64 2024-08-18 13:38:54 +02:00
parent a380d65e1b
commit 296ffb13b3
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 {