Add deeplink action to enable testing from terminal

Change-Id: Ia112f87c7f1bb7fa9ebe08b82d26e00b4ad17d05
dt/nav-safe-args
Don Turner 2 months ago
parent 9779074997
commit 29e08ea1a0

@ -44,10 +44,14 @@
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<data
android:scheme="https"
android:host="www.nowinandroid.apps.samples.google.com" />
<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="https" />
<data android:host="www.nowinandroid.apps.samples.google.com" />
</intent-filter>
</activity>

Loading…
Cancel
Save