App deep linking not supported on Latest Firefox for Android 36.0

馋奶兔 提交于 2019-12-24 04:32:12

问题


I have a android app in which I have defined my intent filter to handle any http request to my website to open in the app I have built. On Chrome, I get the prompt to open in app but not on Firefox. Is this not implemented on Firefox yet?

        <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="http"
                  android:host="www.mysite.com"
                  android:pathPattern="/.*"/>
        </intent-filter>

回答1:


I can see an android icon appearing in url bar. Click it takes me to the deep link app. Unlike other browses reaction though. :(



来源:https://stackoverflow.com/questions/28872378/app-deep-linking-not-supported-on-latest-firefox-for-android-36-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!