Android Wear is not opening dial pad via intent

Viewed 51

I am working on an android wear project, I am facing an issue while opening the dialing activity via intent. The problem is that Intent is opening the call history instead of the dial pad.

Code snippet

val callIntent = Intent(Intent.ACTION_DIAL)
callIntent.data = Uri.parse("tel:0526722293")
context.startActivity(callIntent)

I have checked different stack-overflow post but still facing the same issue.

Can we make calls to any number in Android Wear 2.0?

How to make a phone call using intent in Android wear?

Is there anything that, I have to do more for android wear

1 Answers
Related