Allow zygote to read persist.wm.debug.* prop
Window manager team wants to leverage system properties for feature flags that need to be read in ViewRootImpl and other classes preloaded in Zygote. Appdomain is allowed to read that permission in commit I5808bf92dbba37e9e6da5559f8e0a5fdac016bf3. Bug: 241464028 Test: Zygote can preload persist.wm.debug.* props. Ignore-AOSP-First: Cherry pick of aosp/2175950 Change-Id: I0c2ae63db53530c1facd8c2132f99c0d919b4ad8 Merged-In: I0c2ae63db53530c1facd8c2132f99c0d919b4ad8
This commit is contained in:
parent
af3e1773e8
commit
d6c002c10b
2 changed files with 8 additions and 0 deletions
|
@ -229,6 +229,10 @@ get_prop(zygote, packagemanager_config_prop)
|
|||
# Allow zygote to read qemu.sf.lcd_density
|
||||
get_prop(zygote, qemu_sf_lcd_density_prop)
|
||||
|
||||
# Allow zygote to read persist.wm.debug.* to toggle experimental window manager features in
|
||||
# preloaded classes
|
||||
get_prop(zygote, persist_wm_debug_prop)
|
||||
|
||||
# Allow zygote to read /apex/apex-info-list.xml
|
||||
allow zygote apex_info_file:file r_file_perms;
|
||||
|
||||
|
|
|
@ -229,6 +229,10 @@ get_prop(zygote, packagemanager_config_prop)
|
|||
# Allow zygote to read qemu.sf.lcd_density
|
||||
get_prop(zygote, qemu_sf_lcd_density_prop)
|
||||
|
||||
# Allow zygote to read persist.wm.debug.* to toggle experimental window manager features in
|
||||
# preloaded classes
|
||||
get_prop(zygote, persist_wm_debug_prop)
|
||||
|
||||
# Allow zygote to read /apex/apex-info-list.xml
|
||||
allow zygote apex_info_file:file r_file_perms;
|
||||
|
||||
|
|
Loading…
Reference in a new issue