android: update manifest to properly support deeplinks

This commit is contained in:
Harsh Shandilya 2022-04-22 21:19:52 +05:30
parent 08e97807dd
commit d4f09b98e4
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80

View file

@ -26,13 +26,13 @@
<category android:name="android.intent.category.BROWSABLE" />
<data
android:ssp="//lobste.rs"
android:scheme="https" />
android:scheme="https"
android:ssp="//lobste.rs" />
<data
android:host="lobste.rs"
android:scheme="https"
android:path="/"/>
android:host="lobste.rs"
android:path="/"
android:scheme="https" />
</intent-filter>
<intent-filter>
@ -42,19 +42,97 @@
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="lobste.rs"
android:scheme="https"
android:pathPattern="/s/......"/>
android:host="lobste.rs"
android:pathPattern="/s/......"
android:scheme="https" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="lobste.rs"
android:pathPattern="/s/....../"
android:scheme="https" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="lobste.rs"
android:pathPattern="/s/....../...*"
android:scheme="https" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="lobste.rs"
android:pathPattern="/s/......"
android:scheme="https" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="lobste.rs"
android:scheme="https"
android:pathPattern="/s/....../"/>
android:host="lobste.rs"
android:pathPattern="/s/....../"
android:scheme="https" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="lobste.rs"
android:pathPattern="/s/....../...*"
android:scheme="https" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="lobste.rs"
android:pathPattern="/s/......"
android:scheme="https" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="lobste.rs"
android:pathPattern="/s/....../"
android:scheme="https" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="lobste.rs"
android:scheme="https"
android:pathPattern="/s/....../...*"/>
android:host="lobste.rs"
android:pathPattern="/s/....../...*"
android:scheme="https" />
</intent-filter>
</activity>
<provider