Android 36.0最新版Firefox不支持应用深层链接

时间:2015-03-05 07:35:28

标签: android google-chrome firefox deep-linking

我有一个Android应用程序,我在其中定义了我的意图过滤器来处理我的网站的任何http请求,以便在我构建的应用程序中打开。在Chrome上,我会收到在应用中打开的提示,但不会在Firefox上打开。这还没有在Firefox上实现吗?

        <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 个答案:

答案 0 :(得分:0)

我可以在网址栏中看到一个Android图标。点击它将我带到深层链接应用程序。不同于其他浏览反应。 :(