Deeplinking guide has incorrect android intent-filter
OrkhanAlikhanov opened this issue · 1 comments
OrkhanAlikhanov commented
react-navigation.github.io/versioned_docs/version-6.x/deep-linking.md
Lines 164 to 179 in bfc09a1
The data fields gets merged:
<data android:scheme="mychat" />
<data android:scheme="https" android:host="www.example.com" />
<data android:scheme="http" android:host="www.example.com" /> becomes:
<data android:scheme="mychat"
android:scheme="https"
android:scheme="http"
android:host="www.example.com" /> And with that, only mychat://www.example.com will open the app.
Source https://stackoverflow.com/a/27321468/5555803
The solution is to use different intent-filters.
OrkhanAlikhanov commented
This caused me issues so I reported. I can send a PR if this is approved.