summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanny Baumann <dannybaumann@web.de>2019-09-10 10:14:19 +0200
committerMichael Bestas <mkbestas@lineageos.org>2019-12-11 20:07:19 +0200
commit2972a9be3771813f4f8969e4f96bf8019384bb19 (patch)
tree04728b32f676ef07a516d341d145a1ca322f7d28
parentb95bf95007526bbafe6b790aed0afc75a8dea4e4 (diff)
downloadandroid_packages_apps_CertInstaller-staging/lineage-17.0_merge-android-10.0.0_r9.tar.gz
android_packages_apps_CertInstaller-staging/lineage-17.0_merge-android-10.0.0_r9.tar.bz2
android_packages_apps_CertInstaller-staging/lineage-17.0_merge-android-10.0.0_r9.zip
Fix opening PEM files in CertInstallerstaging/lineage-17.0_merge-android-10.0.0_r9
CertInstaller is prepared to handle PEM files, just a typo in VIEW intent registration prevented it from opening them. Change-Id: I81a29dc2de9d6df75212fd390d93be2286c7d23d
-rw-r--r--AndroidManifest.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 56ac884..e6e7af0 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -26,7 +26,7 @@
<data android:mimeType="application/x-x509-user-cert" />
<data android:mimeType="application/x-x509-server-cert" />
<data android:mimeType="application/x-pkcs12" />
- <data android:mimeType="application/application/x-pem-file" />
+ <data android:mimeType="application/x-pem-file" />
<data android:mimeType="application/pkix-cert" />
<data android:mimeType="application/x-wifi-config" />
</intent-filter>