Android 12+ User Guide
Android 12
Since the phantom processes mechanism introduced by Google on Android 12 affects the operation of Twoyi, you need to use ADB to remove this restriction; please follow these guidelines.
The ADB instructions in video:
/system/bin/device_config set_sync_disabled_for_tests persistent; /system/bin/device_config put activity_manager max_phantom_processes 2147483647
If you no longer use the Twoyi and want to restore the impact of the above command, you can restore it by executing the following command:
/system/bin/device_config set_sync_disabled_for_tests none; /system/bin/device_config put activity_manager max_phantom_processes 32
If you are using Android 13 or above system, you can run this ADB instruction to remove the restriction:
settings put global settings_enable_monitor_phantom_procs false
And you can run this ADB instruction to recover it on Android 13:
settings put global settings_enable_monitor_phantom_procs true
Attention:
- If you have root privileges, you can execute the above command directly with root privileges; no ADB is required.
- After executing this command, the corresponding auxiliary app (such as the Black Threshold in the video) can be uninstalled.
- You can use both ADB instruction on Android 13, the second is recommended.