我正在使用Test DPC应用程序更改其代码以进行一些实验。 我编写了一个非常简单的方法来设置应用程序限制,它不会抛出任何异常,但不会设置限制的值。 我想设置gmail应用程序的限制'default_signature'(包名= com.google.android.gm)。 遵循代码:
Log.d(TAG, "restriction="+restriction);
mDevicePolicyManager.setApplicationRestrictions(
DeviceAdminReceiver.getComponentName(context),
(String) message.getExtra("packageName"),
restriction);
Log.d(TAG, "restriction updated");
我能看到的日志是:
SetRestrictionAction:restriction = Bundle [{default_signature = test}]
SetRestrictionAction:限制已更新
无论如何,这段代码似乎不会影响gmail app。 任何人都可以解释我的问题在哪里? 我有一台更新到Android 7.0的LG G5 H850设备
提前致谢