I'm currently running a continuous monkey test to test the stability of a device, and I've noticed that when using monkey, it's able to change settings, including developer options and whatnot. Is there any way to prevent it from being launched, without limiting it to a specific package?
I've tried using chmod 600 /system/priv-app/Settings.apk
, but it could still be launched, and I'm not sure where it would be installed to otherwise.
Would the best option just to be manually list out all packages in the system, and then use -p for all of them?
Thanks!