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,15 +26,37 @@
<category android:name="android.intent.category.BROWSABLE" /> <category android:name="android.intent.category.BROWSABLE" />
<data <data
android:ssp="//lobste.rs" android:scheme="https"
android:ssp="//lobste.rs" />
<data
android:host="lobste.rs"
android:path="/"
android:scheme="https" /> 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 <data
android:host="lobste.rs" android:host="lobste.rs"
android:scheme="https" android:pathPattern="/s/......"
android:path="/"/> android:scheme="https" />
</intent-filter> </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> <intent-filter>
<action android:name="android.intent.action.VIEW" /> <action android:name="android.intent.action.VIEW" />
@ -43,18 +65,74 @@
<data <data
android:host="lobste.rs" android:host="lobste.rs"
android:scheme="https" android:pathPattern="/s/....../...*"
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 <data
android:host="lobste.rs" android:host="lobste.rs"
android:scheme="https" android:pathPattern="/s/......"
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 <data
android:host="lobste.rs" android:host="lobste.rs"
android:scheme="https" android:pathPattern="/s/....../"
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:pathPattern="/s/....../...*"
android:scheme="https" />
</intent-filter> </intent-filter>
</activity> </activity>
<provider <provider