Remove OpenGApps (#554)

* Remove `OpenGApps`

* Update README.md
This commit is contained in:
Howard Wu 2023-05-24 18:26:54 +08:00 committed by GitHub
parent d8e875a4ae
commit a4ca446e03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 10 deletions

View file

@ -40,7 +40,7 @@
- Integrate Magisk and GApps in a few clicks within minutes - Integrate Magisk and GApps in a few clicks within minutes
- Keep each build up to date - Keep each build up to date
- Support both ARM64 and x64 - Support both ARM64 and x64
- Support all OpenGApps variants except for aroma (aroma does not support x86_64, please use super instead) - Support MindTheGapps
- Remove Amazon Appstore - Remove Amazon Appstore
- Fix VPN dialog not showing (use our [VpnDialogs app](https://github.com/LSPosed/VpnDialogs)) - Fix VPN dialog not showing (use our [VpnDialogs app](https://github.com/LSPosed/VpnDialogs))
- Add device administration feature - Add device administration feature
@ -63,9 +63,6 @@
5. Select the WSA version and its architecture (mostly x64). 5. Select the WSA version and its architecture (mostly x64).
6. Select the version of Magisk. 6. Select the version of Magisk.
7. Choose which brand of GApps you want to install: 7. Choose which brand of GApps you want to install:
- OpenGApps
Select the [OpenGApps variant](https://github.com/opengapps/opengapps/wiki#variants) you like.
- MindTheGapps - MindTheGapps
There is no other variant we can choose. There is no other variant we can choose.

View file

@ -100,12 +100,13 @@ else
fi fi
if (YesNoBox '([title]="Install GApps" [text]="Do you want to install GApps?")'); then if (YesNoBox '([title]="Install GApps" [text]="Do you want to install GApps?")'); then
GAPPS_BRAND=$( # GAPPS_BRAND=$(
Radiolist '([title]="Which GApps do you want to install?" # Radiolist '([title]="Which GApps do you want to install?"
[default]="MindTheGapps")' \ # [default]="MindTheGapps")' \
'MindTheGapps' "Recommend" 'on' \ # 'MindTheGapps' "Recommend" 'on' \
'OpenGApps' "This flavor may cause startup failure" 'off' # 'OpenGApps' "This flavor may cause startup failure" 'off'
) # )
GAPPS_BRAND="MindTheGapps"
else else
GAPPS_BRAND="none" GAPPS_BRAND="none"
fi fi