请帮助我
在我的应用程序中,我想使用DeepLink,为此我编写了下面的代码。
但是当运行应用程序时不建议我的应用程序,只显示在 Chrome 浏览器中!
我的网址: sosapp://sosapp/hashcode/ghfhgfhgf?
我的代码:
<activity
android:name=".Activity.LandingActivity"
android:screenOrientation="sensorPortrait" />
<activity
android:name=".Activity.MainActivity"
android:screenOrientation="sensorPortrait">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="sosapp" android:host="sosapp"/>
</intent-filter>
</activity>
我该如何修复它,当从移动设备上单击此 URL 时,建议我的应用程序?