Add android:exported=true to PerfTestActivity in WmPerfTests
Since commit c4e90ac, exported is required if the declared
activity has an intent filter.
Fixes: 158589759
Test: atest WmPerfTests
Change-Id: Iea4a901d684e821636d27c2bb564842a328f1d9b
diff --git a/apct-tests/perftests/windowmanager/AndroidManifest.xml b/apct-tests/perftests/windowmanager/AndroidManifest.xml
index 7198176..85fd7176c 100644
--- a/apct-tests/perftests/windowmanager/AndroidManifest.xml
+++ b/apct-tests/perftests/windowmanager/AndroidManifest.xml
@@ -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>