我正在使用http url在本机安卓应用中设置深层链接。当我尝试从浏览器打开应用程序但它没有打开。
AndroidManifest.xml中
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https"
android:host="www.abc.com" />
</intent-filter>
我希望app应该是开放的。
如果您想同时支持http和https,可以试试这个:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="www.abc.com" />
</intent-filter>