diff --git a/README.md b/README.md index 1e1925a..37cf043 100644 --- a/README.md +++ b/README.md @@ -133,6 +133,10 @@ No. You should wipe data after changing the GApps brand. Otherwise, you will find that the installed GApps are not recognized. +- WSA with OpenGApps integrated fails to start. + + OpenGApps has not yet released a version built for Android 12L and 13, only built for Android 11, which may not be compatible and thus cause crashes. Consider switching to MindTheGapps. + ## Credits - [StoreLib](https://github.com/StoreDev/StoreLib): API for downloading WSA diff --git a/scripts/build.sh b/scripts/build.sh index f370a97..0d8a3a9 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -779,8 +779,10 @@ else else name2="-$GAPPS_BRAND-${ANDROID_API_MAP[$ANDROID_API]}" fi - if [ "$GAPPS_BRAND" = "OpenGApps" ] && [ "$DEBUG" ]; then - echo ":warning: Since OpenGApps doesn't officially support Android 12.1 yet, lock the variant to pico!" + if [ "$GAPPS_BRAND" = "OpenGApps" ]; then + echo -e "\033[0;31m:warning: Since $GAPPS_BRAND doesn't officially support Android 12.1 and 13 yet, lock the variant to pico! + $GAPPS_BRAND may cause startup failure + \033[0m" fi fi artifact_name="WSA_${WSA_VER}_${ARCH}_${WSA_REL}${name1}${name2}" diff --git a/scripts/run.sh b/scripts/run.sh index 96c4e8f..d6ef0ad 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -82,8 +82,8 @@ if (YesNoBox '([title]="Install GApps" [text]="Do you want to install GApps?")') Radiolist '([title]="Which GApps do you want to install?" [default]="MindTheGapps")' \ \ - 'OpenGApps' "" 'off' \ - 'MindTheGapps' "" 'on' + 'OpenGApps' "This flavor may cause startup failure" 'off' \ + 'MindTheGapps' "Recommend" 'on' ) else GAPPS_BRAND="none"