Home > Blockchain >  How to enable "Always show crash dialog" in developer options on an Android emulator via a
How to enable "Always show crash dialog" in developer options on an Android emulator via a

Time:02-14

How to enable or disable a specific developer options using adb?

I have found some enter image description here

CodePudding user response:

Try adb shell settings list global ...once with the option enabled and once with it disabled.

Maybe this one?

private static final String SHOW_FIRST_CRASH_DIALOG_KEY = "show_first_crash_dialog";

https://github.com/aosp-mirror/platform_packages_apps_settings/tree/master/src/com/android/settings/development

  • Related