2
0
mirror of https://gitlab.com/Nanolx/NanoDroid synced 2024-11-09 19:10:30 +00:00

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

This commit is contained in:
Christopher Roy Bratusek 2019-07-26 16:27:26 +02:00
parent db4cc657ae
commit 1924b72034
2 changed files with 15 additions and 1 deletions

View File

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

View File

@ -1672,7 +1672,10 @@ check_cfg_apps () {
# check whether '.nanodroid-overlay' is up to date # check whether '.nanodroid-overlay' is up to date
check_cfg_overlay () { 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 () { get_cfg_setup () {