You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When android:autoVerify="true" is present in at least one of your app's intent filters, installing your app on a device that runs Android 6.0 (API level 23) or higher causes the system to automatically verify the hosts associated with the URLs in your app's intent filters.
so maybe its not important which intent-filter you place android:autoVerify="true" after all?
EDIT 2:
from my own personal testing, my android app links only open the app when i place it the way the android docs show. it does not work when i place i the place react-navigation shows.
The text was updated successfully, but these errors were encountered:
deep link setup for android: https://reactnavigation.org/docs/deep-linking/#setup-on-android
says/shows:
and this will be the resulst:
here they are placed on the first intent-filter.
however, when looking at the android docs for android app links: https://developer.android.com/training/app-links#android-app-links
they dont place
android:autoVerify="true"
on the entry(first) intent-filter where we have:they place
android:autoVerify="true"
on the intent-filter where we add the scheme and host, which is the third one in the react-navigation example.so their example looks like this:
so there is a difference in where react-navigation docs and android docs add
android:autoVerify="true"
.i believe to match the android docs, react-navigation docs example would have to be updated to:
thoughts?
EDIT:
i just found this: https://developer.android.com/training/app-links/verify-android-applinks#auto-verification
which says:
so maybe its not important which intent-filter you place
android:autoVerify="true"
after all?EDIT 2:
from my own personal testing, my android app links only open the app when i place it the way the android docs show. it does not work when i place i the place react-navigation shows.
The text was updated successfully, but these errors were encountered: