mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-15 09:57:04 +05:30
android: port deeplinks from develop branch
Fixes #306 Co-Authored-By: Aditya Wasan <adityawasan55@gmail.com>
This commit is contained in:
parent
85d92dd132
commit
a58c30ea6b
3 changed files with 68 additions and 3 deletions
|
@ -18,6 +18,43 @@
|
|||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</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:ssp="//lobste.rs"
|
||||
android:scheme="https" />
|
||||
|
||||
<data
|
||||
android:host="lobste.rs"
|
||||
android:scheme="https"
|
||||
android:path="/"/>
|
||||
</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/......"/>
|
||||
|
||||
<data
|
||||
android:host="lobste.rs"
|
||||
android:scheme="https"
|
||||
android:pathPattern="/s/....../"/>
|
||||
|
||||
<data
|
||||
android:host="lobste.rs"
|
||||
android:scheme="https"
|
||||
android:pathPattern="/s/....../...*"/>
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
</manifest>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue