Split data tag for VIEW intent filter

According to lint, it's better to have multiple tags with
individual attributes because it better "communicates the
combining behavior and is clearer".
This commit is contained in:
Markus Fisch
2022-02-21 19:35:00 +01:00
parent 0991fb85f0
commit 76ea46cea8
+4 -4
View File
@@ -68,10 +68,10 @@
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="http"
android:host="markusfisch.de"
android:pathPrefix="/BinaryEye"/>
<data android:scheme="https" />
<data android:host="markusfisch.de"/>
<data android:pathPrefix="/BinaryEye"/>
<data android:scheme="http"/>
<data android:scheme="https"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>