mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
feat: implement unified deep link routing for Kotlin Multiplatform (#4910)
Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
parent
553ca2f8ed
commit
b0e91a390c
23 changed files with 325 additions and 75 deletions
|
|
@ -218,6 +218,27 @@
|
|||
<data android:pathPrefix="/V/" />
|
||||
</intent-filter>
|
||||
|
||||
<!-- App Links for modern RESTful navigation paths -->
|
||||
<intent-filter android:autoVerify="true">
|
||||
<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" />
|
||||
<data android:scheme="https" />
|
||||
<data android:host="meshtastic.org" />
|
||||
|
||||
<data android:pathPrefix="/share" />
|
||||
<data android:pathPrefix="/connections" />
|
||||
<data android:pathPrefix="/map" />
|
||||
<data android:pathPrefix="/messages" />
|
||||
<data android:pathPrefix="/quickchat" />
|
||||
<data android:pathPrefix="/nodes" />
|
||||
<data android:pathPrefix="/settings" />
|
||||
<data android:pathPrefix="/channels" />
|
||||
<data android:pathPrefix="/firmware" />
|
||||
</intent-filter>
|
||||
|
||||
<intent-filter>
|
||||
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
|
||||
</intent-filter>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue