Im creating a android app need to support custom url. like myapp:// It's work in the other android devices. But Kindle Fire tested not work. I just add the code below to AndroidManifest.xml to make the custom url work. for the Kindle Fire do I missing anything?

<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="myapp" />
</intent-filter> 
有帮助吗?

解决方案

It's working if you click on a link, but you cannot type into the Kindle Fire browser because it will always revert to search for it.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top