pbojinov
5/3/2016 - 12:05 AM

React Native UIExplorer - Deep link handler - https://github.com/facebook/react-native/blob/c596f8d0ef800ca45dd5f6cc5156d69e2ba1a32b/Example

<intent-filter>
  <action android:name="android.intent.action.VIEW" />
  <category android:name="android.intent.category.DEFAULT" />
  <category android:name="android.intent.category.BROWSABLE" />
  <!-- Accepts URIs that begin with "rnuiexplorer://example” -->
  <data android:scheme="rnuiexplorer" android:host="example" />
</intent-filter>