Last active
April 26, 2021 12:12
-
-
Save igorescodro/65baa22bb859e284da7b8f3f313efd56 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| ... | |
| <application> | |
| <activity | |
| android:name=".presentation.DynamicActivity" | |
| android:exported="true" | |
| android:theme="@style/Theme.MyTheme"> | |
| <intent-filter> | |
| <action android:name="android.intent.action.VIEW" /> | |
| <category android:name="android.intent.category.DEFAULT" /> | |
| <category android:name="android.intent.category.BROWSABLE" /> | |
| <data | |
| android:host="com.example.dynamic" | |
| android:scheme="app" /> | |
| </intent-filter> | |
| </activity> | |
| </application> | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment