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
Added some phone number links with the html format tel:88888888
The app crashes when I click any of them
The text was updated successfully, but these errors were encountered:
update with this, I will also update the source code and add this in next release:
... } else if (url.startsWith("tel:")) { Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse(url)); // add try-catch block try { context.startActivity(intent); } catch (ActivityNotFoundException e) { Toast.makeText(context, "No dialer app found.", Toast.LENGTH_SHORT).show(); Log.e("FCM_ERROR", "PORT_TEL", e); // logging the exception } ...
Sorry, something went wrong.
No branches or pull requests
Added some phone number links with the html format tel:88888888
The app crashes when I click any of them
The text was updated successfully, but these errors were encountered: