Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 48a94385 authored by Andrew Solovay's avatar Andrew Solovay Committed by Android (Google) Code Review
Browse files

Merge "docs: Added new adb permissions shell commands" into mnc-mr-docs

parents 956a6320 5d9e27ec
Loading
Loading
Loading
Loading
+11 −8
Original line number Diff line number Diff line
@@ -570,6 +570,7 @@ install [options] <PATH>
    <li>{@code -s}: Install package on the shared mass storage (such as sdcard).
    <li>{@code -f}: Install package on the internal system memory.
    <li>{@code -d}: Allow version code downgrade.
    <li>{@code -g}: Grant all permissions listed in the app manifest.
  </ul>
</td>
</tr>
@@ -622,21 +623,23 @@ disable-user [options] &lt;PACKAGE_OR_COMPONENT>

<tr>
<td><code>
grant &lt;PACKAGE_PERMISSION>
grant &lt;PACKAGE_NAME&gt; &lt;PERMISSION&gt;
</code></td>
<td>Grant permissions
  to applications.  Only optional permissions the application has
  declared can be granted.
<td>Grant a permission to an app. On devices running Android 6.0 (API level 23)
and higher, may be any permission declared in the app manifest. On devices
running Android 5.1 (API level 22) and lower, must be an optional permission defined by the
app.
</td>
</tr>

<tr>
<td><code>
revoke &lt;PACKAGE_PERMISSION>
revoke &lt;PACKAGE_NAME&gt; &lt;PERMISSION&gt;
</code></td>
<td>Revoke permissions
  to applications.  Only optional permissions the application has
  declared can be revoked.
<td>Revoke a permission from an app. On devices running Android 6.0 (API level
23) and higher, may be any permission declared in the app manifest. On devices
running Android 5.1 (API level 22) and lower, must be an optional permission defined by the
app.
</td>
</tr>