我试图在我的应用中进行深层链接。我想检测三种网址类型:一种是https(例如https://my-app.com),一种是http(http://my-app.com),另一种是没有任何方案(my-app.com)。前两个工作正常,但如何让第三个工作?
到目前为止,我得到了这段代码:
<intent-filter>
<data
android:host="my-app.com"
android:scheme="http" />
<data
android:host="my-app.com"
android:scheme="https" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
我试过<data android:scheme="my-app.com" />
,但没有运气。
提前感谢任何提示。