Advertisement
duongntb94

[Feature] [RN] Set up deep link

Oct 14th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. Cấu hình deeplink Android.
  2.  
  3. <intent-filter android:label="APP_NAME" android:autoVerify="true">
  4. <action android:name="android.intent.action.VIEW" />
  5. <category android:name="android.intent.category.DEFAULT" />
  6. <category android:name="android.intent.category.BROWSABLE" />
  7. <data android:scheme="APP_NAME" />
  8.  
  9. Mở link trên iOS và Android
  10. APPNAME://redirect
  11.  
  12. Mở link trên google chrome android
  13. ntent://x#Intent;scheme=APP_NAME;package=TEN_PACKAGE;S.browser_fallback_url=https://www.google.com/x;action=android.intent.action.VIEW;end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement