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 AdjustEditorPreprocessor.cs there is an method AddURISchemes,
We find you add android:host attribute to the scheme data node, while README.md says you should write them with :// part at the end(no host)
according to Android Document About Deeplink
including two scheme data node in one intent filter is not very nice
for instance:
in one intent filter, there is an https scheme with host a.example.com and an my_app scheme with host b.example.com.
we can use https://b.example.com and my_app://a.example.com(They are not expected.)
The text was updated successfully, but these errors were encountered:
CodeMasterYi
changed the title
[Question] (Deeplink)Android URL Scheme Definition
[Question] (Deeplink)Android URL Scheme Definition Not Very Well
Feb 9, 2023
In
AdjustEditorPreprocessor.cs
there is an methodAddURISchemes
,android:host
attribute to the scheme data node, whileREADME.md
saysyou should write them with :// part at the end
(no host)including two scheme data node in one intent filter is not very nice
for instance:
in one intent filter, there is an
https
scheme with hosta.example.com
and anmy_app
scheme with hostb.example.com
.we can use
https://b.example.com
andmy_app://a.example.com
(They are not expected.)The text was updated successfully, but these errors were encountered: