summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2013-03-22 13:32:09 -0700
committerKenny Root <kroot@google.com>2013-03-22 13:33:03 -0700
commit5163f464bcf58d8dc05c26aa5e1279a6da1b1ae3 (patch)
treeaa1df15f18b85f4b2c8aef725957bbe71da89a7f
parent3bad7fe9d311844dd6533c73630d6cb7e4da785a (diff)
downloadandroid_packages_apps_CertInstaller-5163f464bcf58d8dc05c26aa5e1279a6da1b1ae3.tar.gz
android_packages_apps_CertInstaller-5163f464bcf58d8dc05c26aa5e1279a6da1b1ae3.tar.bz2
android_packages_apps_CertInstaller-5163f464bcf58d8dc05c26aa5e1279a6da1b1ae3.zip
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
-rw-r--r--AndroidManifest.xml14
1 files changed, 4 insertions, 10 deletions
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>