Guest User

Untitled

a guest
Oct 20th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <activity
  2.  
  3. android:name=".DeeplinkTestActivity">
  4.  
  5. <intent-filter>
  6.  
  7. <action android:name="android.intent.action.VIEW" />
  8.  
  9. <category android:name="android.intent.category.DEFAULT" />
  10.  
  11. <category android:name="android.intent.category.BROWSABLE" />
  12.  
  13. <!-- This will open deeplinks structured like - "testapp://deeplink/example" -->
  14.  
  15. <data
  16.  
  17. android:scheme="testapp"
  18.  
  19. android:host="deeplink"
  20.  
  21. android:pathPrefix="/example" />
  22.  
  23. </intent-filter>
  24.  
  25. </activity>
Add Comment
Please, Sign In to add comment