We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
"termux-notification -u" generates this intents with a NULL mimetype (termux/termux-api#35)
Intent Intercept catches the intent when it has scheme "http:" but not when it has scheme "file:"
This one works: termux-notification -c xxxx -u http://www.google.com this not: termux-notification -c xxxx -u file:///sdcard/xxx.html
Example caught:
ACTION: android.intent.action.VIEW DATA: http://www.google.com URI: intent://www.google.com#Intent;scheme=http;launchFlags=0x13000000;end FLAGS: FLAG_ACTIVITY_FORWARD_RESULT FLAG_ACTIVITY_PREVIOUS_IS_TOP FLAG_RECEIVER_FOREGROUND
Providing the example for the not caught one is not so easy, GhostCommander catches the view intent and opens a directory.
The text was updated successfully, but these errors were encountered:
Fix intrications#42
8a88158
No branches or pull requests
"termux-notification -u" generates this intents with a NULL mimetype (termux/termux-api#35)
Intent Intercept catches the intent when it has scheme "http:" but not when it has scheme "file:"
This one works:
termux-notification -c xxxx -u http://www.google.com
this not:
termux-notification -c xxxx -u file:///sdcard/xxx.html
Example caught:
intent://www.google.com#Intent;scheme=http;launchFlags=0x13000000;end
ACTION: android.intent.action.VIEW
DATA: http://www.google.com
URI: intent://www.google.com#Intent;scheme=http;launchFlags=0x13000000;end
FLAGS:
FLAG_ACTIVITY_FORWARD_RESULT
FLAG_ACTIVITY_PREVIOUS_IS_TOP
FLAG_RECEIVER_FOREGROUND
Providing the example for the not caught one is not so easy, GhostCommander catches the view intent and opens a directory.
The text was updated successfully, but these errors were encountered: