-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: fix some Intent filters #621
base: master
Are you sure you want to change the base?
Conversation
🤖 Pull request artifacts
|
64b82b2
to
2006584
Compare
@@ -43,29 +43,25 @@ | |||
<!-- Handles the implicit intent to VIEW the intel.ingress.com/ URI --> | |||
<intent-filter> | |||
<action android:name="android.intent.action.VIEW"/> | |||
<action android:name="android.nfc.action.NDEF_DISCOVERED"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not required for NFC to work? I don't have the proper device to test
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm playing around trying to figure why some apps are fine with urls, and why iitc isn't
<data android:scheme="http"/> | ||
<data android:scheme="https"/> | ||
<data android:host="intel.ingress.com"/> | ||
<data android:scheme="http" android:host="intel.ingress.com"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As far as I remember, it follows from the documentation that the previous version also works
No description provided.