App ops: add modify settings op.

Change-Id: I7aab6c7f565a20fe24156956895a7db20c8d3aaa
This commit is contained in:
Dianne Hackborn
2013-02-05 17:31:10 -08:00
parent 9833787387
commit 3b13d2b786
2 changed files with 11 additions and 7 deletions

View File

@@ -148,9 +148,11 @@ public class AppOpsState {
public static final OpsTemplate DEVICE_TEMPLATE = new OpsTemplate(
new int[] { AppOpsManager.OP_VIBRATE,
AppOpsManager.OP_POST_NOTIFICATION,
AppOpsManager.OP_CALL_PHONE },
AppOpsManager.OP_CALL_PHONE,
AppOpsManager.OP_WRITE_SETTINGS },
new boolean[] { false,
false,
true,
true }
);