CommonInstaller: also get rid of wrong overlays introduced by version 22.0

merge-requests/23/head
Christopher Roy Bratusek 5 years ago
parent db4cc657ae
commit 1924b72034

@ -2,10 +2,21 @@
## 23.0 in-dev
### Bugfixes
* Installer
* fix microG installation in System Mode
### General Changes
* Installer
* include path to setup files in installation log
### Updates
* automatic
* OsmAnd+ (3.4.4)
* Privacy Browser (3.2)
* Simple Gallery (6.8.3)
* Twidere (3.7.6)

@ -1672,7 +1672,10 @@ check_cfg_apps () {
# check whether '.nanodroid-overlay' is up to date
check_cfg_overlay () {
return 0
# 22.0 flagged the following for overlay creation which caused issues
grep -q "^GmsCore$" "${cfg_overlay}" && sed '/^GmsCore$/d' -i "${cfg_overlay}"
grep -q "^GsfProxy$" "${cfg_overlay}" && sed '/^GsfProxy$/d' -i "${cfg_overlay}"
grep -q "^DroidGuard$" "${cfg_overlay}" && sed '/^DroidGuard$/d' -i "${cfg_overlay}"
}
get_cfg_setup () {

Loading…
Cancel
Save