Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <meta property="al:android:url" content="Random content">
  2. <meta property="al:android:package" content="com.packageName">
  3. <meta property="al:android:app_name" content="APP">
  4. <meta property="og:title" content="Title" />
  5. <meta property="og:type" content="website" />
  6. <meta property="al:web:should_fallback" content="true">
  7.  
  8. <!-- deep linking filter-->
  9. <intent-filter>
  10. <!-- Sets the intent action to view the activity -->
  11. <action android:name="android.intent.action.VIEW" />
  12. <!-- Allows the link to be opened from a web browser -->
  13. <category android:name="android.intent.category.BROWSABLE" />
  14. <!-- Allows the deep link to be used without specifying the app name -->
  15. <category android:name="android.intent.category.DEFAULT"/>
  16. <data
  17. android:host="@string/deepLink_host"
  18. android:pathPrefix="/share"
  19. android:scheme="https" />
  20. </intent-filter>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement