Skip to content

Commit c8a9bb1

Browse files
Fix launch via just 'wunderlinq://'
Signed-off-by: Keith Conger <keith.conger@blackboxembedded.com>
1 parent add3073 commit c8a9bb1

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

app/src/main/AndroidManifest.xml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,15 +134,20 @@
134134
android:launchMode="singleTask"
135135
android:resizeableActivity="true"
136136
android:supportsPictureInPicture="true">
137+
<!-- Bare scheme: wunderlinq:// -->
137138
<intent-filter android:autoVerify="true">
138139
<action android:name="android.intent.action.VIEW" />
139-
140140
<category android:name="android.intent.category.DEFAULT" />
141141
<category android:name="android.intent.category.BROWSABLE" />
142+
<data android:scheme="wunderlinq" />
143+
</intent-filter>
142144

143-
<data
144-
android:host="datagrid"
145-
android:scheme="wunderlinq" />
145+
<!-- Specific host: wunderlinq://datagrid -->
146+
<intent-filter android:autoVerify="true">
147+
<action android:name="android.intent.action.VIEW" />
148+
<category android:name="android.intent.category.DEFAULT" />
149+
<category android:name="android.intent.category.BROWSABLE" />
150+
<data android:scheme="wunderlinq" android:host="datagrid" />
146151
</intent-filter>
147152
</activity>
148153
<activity

0 commit comments

Comments
 (0)