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-05-14 15:55:36 +02:00
parent 93d6fe3e4a
commit eadba6d225
1 changed files with 2 additions and 1 deletions

View File

@ -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" />