Commit e16ff968 by Tim Van Patten Committed by Commit Bot

Android: Update adb install to include -r -d --force-queryable

The adb install command is being updated to include the following options: -r: replace existing application -d: allow version code downgrade (debuggable packages only) --force-queryable: mark the ANGLE APK as visible to all other packages This will allow AngleLibraries.apk to install without errors and be loadable for apps targeting SDK >= 30. Bug: b/175800879 Change-Id: I61bb7218b407e54057adbfb5aa3098a96b903f5e Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2602241Reviewed-by: 's avatarCharlie Lao <cclao@google.com> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Tim Van Patten <timvp@google.com>
parent 0dbe7cdd
...@@ -84,7 +84,7 @@ autoninja -C out/Debug angle_apks ...@@ -84,7 +84,7 @@ autoninja -C out/Debug angle_apks
``` ```
## Install the ANGLE APK ## Install the ANGLE APK
``` ```
adb install out/Debug/apks/AngleLibraries.apk adb install -r -d --force-queryable out/Debug/apks/AngleLibraries.apk
``` ```
You can verify installation by looking for the package name: You can verify installation by looking for the package name:
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment