android: Suppress linting error in manifest related to cert import activity

<data> tags that only specify the mimeType attribute are perfectly fine
according to the docs.
This commit is contained in:
Tobias Brunner
2020-06-02 14:42:48 +02:00
parent 93d6fe3e4a
commit eadba6d225
@@ -16,6 +16,7 @@
for more details.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.strongswan.android">
<uses-permission android:name="android.permission.INTERNET" />
@@ -141,7 +142,7 @@
android:name=".ui.TrustedCertificateImportActivity"
android:label="@string/import_certificate"
android:theme="@style/TransparentActivity" >
<intent-filter>
<intent-filter tools:ignore="AppLinkUrlError">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="application/x-x509-ca-cert" />