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

Commit a8f7addf authored by Shai Barack's avatar Shai Barack
Browse files

Remove unnecessary storage permissions from AppMemoryTest.

The `MANAGE_EXTERNAL_STORAGE`, `WRITE_EXTERNAL_STORAGE`, and `READ_EXTERNAL_STORAGE` permissions are not needed for the test helper app.

Test: AppMemoryTest
Flag: TEST_ONLY
Bug: 444249947
Change-Id: Iac881de9e71a6d750f91e33a7eddecf7f1f3f8ed
parent 065b72f0
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -17,10 +17,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="android.app.memory.testhelper"
          >
    <!-- This app is allowed to generate a heap profile in /data/local/tmp. -->
    <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

    <!-- debuggable="true" is required to be able to generate a heap profile. -->
    <!-- testOnly="true" is required to be able to access "@hide" APIs such as VMDebug. -->