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

Commit 0dfaef0a authored by Riddle Hsu's avatar Riddle Hsu
Browse files

Add android:exported=true to PerfTestActivity in WmPerfTests

Since commit c4e90ac0, exported is required if the declared
activity has an intent filter.

Fixes: 158589759
Test: atest WmPerfTests
Change-Id: Iea4a901d684e821636d27c2bb564842a328f1d9b
parent 9a644219
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -20,7 +20,8 @@

    <application>
        <uses-library android:name="android.test.runner" />
        <activity android:name="android.perftests.utils.PerfTestActivity">
        <activity android:name="android.perftests.utils.PerfTestActivity"
            android:exported="true">
          <intent-filter>
            <action android:name="com.android.perftests.core.PERFTEST" />
          </intent-filter>