Commit 777fcb50 authored by Sam Maier's avatar Sam Maier Committed by Commit Bot

Fixing chrome_public_test_apk local storage permissions

Bug: 1044330
Change-Id: Iebf1ec10f334cd0ecef416c5e02fa533e01de3a0
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2079135
Commit-Queue: Sam Maier <smaier@chromium.org>
Commit-Queue: Andrew Grieve <agrieve@chromium.org>
Auto-Submit: Sam Maier <smaier@chromium.org>
Reviewed-by: default avatarAndrew Grieve <agrieve@chromium.org>
Cr-Commit-Position: refs/heads/master@{#745241}
parent c936d612
...@@ -58,6 +58,14 @@ ...@@ -58,6 +58,14 @@
android:exported="true"/> android:exported="true"/>
{% endblock %} {% endblock %}
{% block extra_application_attributes %}
{{ super() }}
## Test listing breaks because of scoped storage in Android 10 - see
## https://developer.android.com/training/data-storage#scoped-storage and
## https://developer.android.com/training/data-storage/compatibility.
android:requestLegacyExternalStorage="true"
{% endblock %}
{% block extra_root_definitions %} {% block extra_root_definitions %}
<instrumentation android:name="org.chromium.base.test.BaseChromiumAndroidJUnitRunner" <instrumentation android:name="org.chromium.base.test.BaseChromiumAndroidJUnitRunner"
android:targetPackage="{{manifest_package}}" android:targetPackage="{{manifest_package}}"
......
...@@ -20,6 +20,9 @@ ...@@ -20,6 +20,9 @@
{% block extra_application_attributes %} {% block extra_application_attributes %}
{{ super() }} {{ super() }}
## Test listing breaks because of scoped storage in Android 10 - see
## https://developer.android.com/training/data-storage#scoped-storage and
## https://developer.android.com/training/data-storage/compatibility.
android:requestLegacyExternalStorage="true" android:requestLegacyExternalStorage="true"
{% endblock %} {% endblock %}
......
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