Android意图没有在chrome 53.0.2785.124中触发

时间:2016-10-14 08:00:41

标签: android google-chrome android-intent

我们有一个Android应用程序,我们要在从网址加载文件时触发。以下是我们正在使用的意图配置

我们已为我们的应用程序创建了一个自定义mime类型

   <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:pathPattern=".*\\cloudconfig"
               android:mimeType="application/x-securew2-cloudconfig"/>

       </intent-filter>

上述配置在所有浏览器和Chrome的所有版本(除了chrome 53.0.2785.124之外)都正常运行。我们怀疑这可能是一个潜在的铬错误。如果有任何解决方法,请建议。

任何建议非常感谢

0 个答案:

没有答案