Android:我的应用仅在未以https://开头时捕获URL

时间:2019-03-06 15:42:29

标签: android android-manifest intentfilter

我有一个Android应用程序,应该在单击具有我的域的网址时启动。

它可以与以我的域url开头的所有url一起使用,但是如果url以https://

开头则不能使用

例如:

  

“ www.example.com/anypage /”

正在工作,但

  

https://www.example.com/anypage

不起作用

这是我的清单:

<intent-filter>
    <category android:name="android.intent.category.DEFAULT"/>

    <data android:scheme="http" />
    <data android:scheme="https" />
    <data android:host="www.example.com" />

    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.BROWSABLE"/>
</intent-filter>

有什么办法解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

尝试这种方式(首先使用https):

chmod