Skip to content

Commit cb5863e

Browse files
committed
Make READ_LOGS signature|system|development
Change-Id: I387d53ac4b7fd3d65891145985e4cd272dffddcf
1 parent b849e6c commit cb5863e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

core/res/AndroidManifest.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1032,15 +1032,6 @@
10321032
android:label="@string/permlab_clearAppCache"
10331033
android:description="@string/permdesc_clearAppCache" />
10341034

1035-
<!-- Allows an application to read the low-level system log files.
1036-
Log entries can contain the user's private information,
1037-
which is why this permission is 'dangerous'. -->
1038-
<permission android:name="android.permission.READ_LOGS"
1039-
android:permissionGroup="android.permission-group.PERSONAL_INFO"
1040-
android:protectionLevel="dangerous"
1041-
android:label="@string/permlab_readLogs"
1042-
android:description="@string/permdesc_readLogs" />
1043-
10441035
<!-- Allows an application to use any media decoder when decoding for playback
10451036
@hide -->
10461037
<permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK"
@@ -1076,6 +1067,15 @@
10761067
android:label="@string/permlab_dump"
10771068
android:description="@string/permdesc_dump" />
10781069

1070+
<!-- Allows an application to read the low-level system log files.
1071+
Log entries can contain the user's private information,
1072+
which is why this permission is not available to normal apps. -->
1073+
<permission android:name="android.permission.READ_LOGS"
1074+
android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
1075+
android:protectionLevel="signature|system|development"
1076+
android:label="@string/permlab_readLogs"
1077+
android:description="@string/permdesc_readLogs" />
1078+
10791079
<!-- Configure an application for debugging. -->
10801080
<permission android:name="android.permission.SET_DEBUG_APP"
10811081
android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"

0 commit comments

Comments
 (0)