diff options
-rw-r--r-- | core/res/AndroidManifest.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index bcef2b72d264..1db75e6337d1 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -2883,6 +2883,18 @@ <permission android:name="android.permission.DISPATCH_PROVISIONING_MESSAGE" android:protectionLevel="signature|privileged" /> + <!-- Allows the holder to read blocked numbers. See + {@link android.provider.BlockedNumberContract}. + @hide --> + <permission android:name="android.permission.READ_BLOCKED_NUMBERS" + android:protectionLevel="signature" /> + + <!-- Allows the holder to write blocked numbers. See + {@link android.provider.BlockedNumberContract}. + @hide --> + <permission android:name="android.permission.WRITE_BLOCKED_NUMBERS" + android:protectionLevel="signature" /> + <application android:process="system" android:persistent="true" android:hasCode="false" |