In my app i want to make a one tap call without using the android.permission.CALL_PHONE. is it possible? because of this permission user scare to install this app.
thanks
pre-load the number you want to call in the dialer and leave pressing the "Call" button to the user. This does not require any extra permissions.
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:" + PhoneNumber));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With