From 1d150b106db5c49e7a3c23e5710ff4fc785c0889 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Thu, 7 Dec 2023 17:39:32 -0800 Subject: [PATCH] create the APK with an apk build Using the apk that is built as a side effect of an aab build does not work. Signed-off-by: Dirk Hohndel --- packaging/android/qmake-build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packaging/android/qmake-build.sh b/packaging/android/qmake-build.sh index fe4eb0f0c..26ff53395 100755 --- a/packaging/android/qmake-build.sh +++ b/packaging/android/qmake-build.sh @@ -403,5 +403,5 @@ if [ "$QUICK" = "" ] ; then fi # now build the Subsurface aab -make aab -mv $(find . -name android-build-debug.apk) "$GITHUB_WORKSPACE"/Subsurface-mobile-"$CANONICALVERSION".apk +make apk +mv $(find . -name Subsurface-mobile.apk) "$GITHUB_WORKSPACE"/Subsurface-mobile-"$CANONICALVERSION".apk