Skip to content

Commit 5b8fd25

Browse files
nickkralAndroid (Google) Code Review
authored andcommitted
Merge "Make READ_LOGS signature|system|development"
2 parents 47d3d87 + cb5863e commit 5b8fd25

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
@@ -1035,15 +1035,6 @@
10351035
android:label="@string/permlab_clearAppCache"
10361036
android:description="@string/permdesc_clearAppCache" />
10371037

1038-
<!-- Allows an application to read the low-level system log files.
1039-
Log entries can contain the user's private information,
1040-
which is why this permission is 'dangerous'. -->
1041-
<permission android:name="android.permission.READ_LOGS"
1042-
android:permissionGroup="android.permission-group.PERSONAL_INFO"
1043-
android:protectionLevel="dangerous"
1044-
android:label="@string/permlab_readLogs"
1045-
android:description="@string/permdesc_readLogs" />
1046-
10471038
<!-- Allows an application to use any media decoder when decoding for playback
10481039
@hide -->
10491040
<permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK"
@@ -1079,6 +1070,15 @@
10791070
android:label="@string/permlab_dump"
10801071
android:description="@string/permdesc_dump" />
10811072

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

0 commit comments

Comments
 (0)