diff options
Diffstat (limited to 'docs/html/guide/topics/security')
-rw-r--r-- | docs/html/guide/topics/security/security.jd | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/html/guide/topics/security/security.jd b/docs/html/guide/topics/security/security.jd index de0c6e5..2e31940 100644 --- a/docs/html/guide/topics/security/security.jd +++ b/docs/html/guide/topics/security/security.jd @@ -120,9 +120,8 @@ specify:</p> <pre><manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.app.myapp" > - <uses-permission android:name="android.permission.RECEIVE_SMS" /> - + ... </manifest></pre> <p>At application install time, permissions requested by the application are @@ -175,13 +174,12 @@ of its activities could declare a permission for this operation as follows:</p> <pre><manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.me.app.myapp" > - <permission android:name="com.me.app.myapp.permission.DEADLY_ACTIVITY" android:label="@string/permlab_deadlyActivity" android:description="@string/permdesc_deadlyActivity" android:permissionGroup="android.permission-group.COST_MONEY" android:protectionLevel="dangerous" /> - + ... </manifest></pre> <p>The {@link android.R.styleable#AndroidManifestPermission_protectionLevel |