I can't seem to get my intent-filter
to open both from an http
and a content
scheme. I have my intent-filter
setup to look for a certain file extension (ex: ".riley"), but when I set my data
section to look for both an http
scheme and content
scheme, it refuses to open it through http
. When I set it up to look for just http
, it won't open with content
. When I don't specify a scheme
, it only opens through file
and content
, but ignores http
.
Here is my basic setup without a specified scheme
:
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="*"
android:mimeType="*/*"
android:pathPattern=".*\\.riley" />
How can I get access to open my application from the specified path extension?