diff options
| -rw-r--r-- | core/res/AndroidManifest.xml | 9 | ||||
| -rw-r--r-- | data/etc/privapp-permissions-platform.xml | 2 |
2 files changed, 5 insertions, 6 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index 55b57e933098..324cd0dfff84 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -1706,19 +1706,18 @@ <!-- Allows an application to manage embedded subscriptions (those on a eUICC) through EuiccManager APIs. <p>Protection level: signature|privileged|development - TODO(b/35851809): Mark this as a SystemApi. + TODO(b/35851809): Mark this as a SystemApi and remove com. prefix. @hide --> - <permission android:name="android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS" + <permission android:name="com.android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS" android:protectionLevel="signature|privileged|development" /> <!-- Must be required by an EuiccService to ensure that only the system can bind to it. <p>Protection level: signature - TODO(b/35851809): Mark this as a SystemApi. + TODO(b/35851809): Mark this as a SystemApi and remove com. prefix. @hide --> - <permission android:name="android.permission.BIND_EUICC_SERVICE" + <permission android:name="com.android.permission.BIND_EUICC_SERVICE" android:protectionLevel="signature" /> - <!-- ================================== --> <!-- Permissions for sdcard interaction --> <!-- ================================== --> diff --git a/data/etc/privapp-permissions-platform.xml b/data/etc/privapp-permissions-platform.xml index 19cc7b30e341..a79376ca774c 100644 --- a/data/etc/privapp-permissions-platform.xml +++ b/data/etc/privapp-permissions-platform.xml @@ -163,8 +163,8 @@ applications that come with the platform <permission name="android.permission.UPDATE_DEVICE_STATS"/> <permission name="android.permission.UPDATE_LOCK"/> <permission name="android.permission.WRITE_APN_SETTINGS"/> - <permission name="android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"/> <permission name="android.permission.WRITE_SECURE_SETTINGS"/> + <permission name="com.android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS"/> <permission name="com.android.voicemail.permission.READ_VOICEMAIL"/> <permission name="com.android.voicemail.permission.WRITE_VOICEMAIL"/> </privapp-permissions> |