Skip to content

Commit 021b181

Browse files
authored
Add intent filter for demo url (#4)
1 parent f1e4af7 commit 021b181

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

android/app/src/main/AndroidManifest.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@
2424
<action android:name="android.intent.action.MAIN"/>
2525
<category android:name="android.intent.category.LAUNCHER"/>
2626
</intent-filter>
27+
<intent-filter android:autoVerify="true">
28+
<action android:name="android.intent.action.VIEW" />
29+
<category android:name="android.intent.category.DEFAULT" />
30+
<category android:name="android.intent.category.BROWSABLE" />
31+
<data android:scheme="https" />
32+
<data android:host="maestro.mobile.dev" />
33+
</intent-filter>
2734
</activity>
2835
<!-- Don't delete the meta-data below.
2936
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->

0 commit comments

Comments
 (0)