Remove useless intent filters
It appears as though these activities had useless intent filters that
were not meant to be called from outside the package. They should only
be called from CertInstallerMain.
Change-Id: Ia111d9da9e6566f2176261c91043db8726fc6420
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 2791a41..031cc72 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -25,19 +25,13 @@
<activity android:name=".CertInstaller"
android:theme="@style/Transparent"
- android:configChanges="orientation|keyboardHidden">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.DEFAULT" />
- </intent-filter>
+ android:configChanges="orientation|keyboardHidden"
+ android:exported="false">
</activity>
<activity android:name=".CertFileList"
- android:configChanges="orientation|keyboardHidden">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.DEFAULT" />
- </intent-filter>
+ android:configChanges="orientation|keyboardHidden"
+ android:exported="false">
</activity>
</application>
</manifest>