React Native UIExplorer - Deep link handler - https://github.com/facebook/react-native/blob/c596f8d0ef800ca45dd5f6cc5156d69e2ba1a32b/Examples/UIExplorer/android/app/src/main/AndroidManifest.xml#L30-L36
<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>