Last active
July 28, 2023 04:46
-
-
Save shafayathossain/a3ed77faaf214bf808725ae9bd7ee3e5 to your computer and use it in GitHub Desktop.
Intent filters for the URLs you want to open in your app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<activity | |
android:name="com.shafayat.helloworld.ui.features.main.MainActivity" | |
android:exported="true"> | |
<tools:validation testUrl="https://helloworldmobile.github.io" /> | |
<intent-filter> | |
<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" | |
android:host="helloworldmobile.github.io" /> | |
</intent-filter> | |
</activity> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment