我已经尝试了许多解决方案,在浏览器中点击链接打开应用程序,但没有什么对我有用。 我已经尝试过这样的解决方案。
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="example.com"
android:pathPrefix="/someresource/"
android:scheme="http" />
<data
android:host="www.example.com"
android:pathPrefix="/someresource/"
android:scheme="http" />
</intent-filter>
请帮帮我。
答案 0 :(得分:0)
try this its working code.
<activity
android:name=".MainActivity"
android:screenOrientation="portrait">
<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:host="qa.mintshowapp.com"
android:pathPrefix="/m/showroom/mintdetaillanding"
android:scheme="http" />
</intent-filter>
</activity>