标签: android android-6.0-marshmallow android-settings
在Marshmallow之前"允许模拟位置"选项可以通过编程方式更改(需要root)
Settings.Secure.putInt(getContentResolver(),Settings.Secure.ALLOW_MOCK_LOCATION, 1);
但是现在这个选项是特定于应用程序的,意味着您必须在开发人员选项中选择模拟器应用程序。
有没有办法以编程方式更改此设置(将我的应用程序插入允许列表)?