Skip to content

Commit

Permalink
Add intent filter for demo url (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
tokou authored Sep 16, 2024
1 parent f1e4af7 commit 021b181
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<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="maestro.mobile.dev" />
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
Expand Down

0 comments on commit 021b181

Please sign in to comment.