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
In our production app we received warnings regarding incorrect handling of direct links, domain (host), and pathPatterns within intent-filter.
We are notified that:
Domain failed validation
Direct links don't work
Users won't be taken directly to your app from links associated with this path, but they will see the app switcher or be taken to the web browser. Once you fix these issues and release a new version, users will need to update the app for the links to work."
And the advice is this:
" tag failed Add "/" to the beginning of the android:path attribute in the tag. The attribute can also be android:pathPrefix or android:pathPattern."
We have replicated the same patterns as the testApp and so far we have not had any problems, how should we modify them to be valid?
Bug Report
What happened?
In our production app we received warnings regarding incorrect handling of direct links, domain (host), and pathPatterns within intent-filter.
We are notified that:
Users won't be taken directly to your app from links associated with this path, but they will see the app switcher or be taken to the web browser. Once you fix these issues and release a new version, users will need to update the app for the links to work."
And the advice is this:
" tag failed Add "/" to the beginning of the android:path attribute in the tag. The attribute can also be android:pathPrefix or android:pathPattern."
We have replicated the same patterns as the testApp and so far we have not had any problems, how should we modify them to be valid?
currently it's like this:
<data android:host="*" />
<data android:pathPattern=".*\\.EPUB" />
Thanks in advance.
The text was updated successfully, but these errors were encountered: