I have a String that is the (full) name of a contact.
Can I get the main number of that contact?
I know how to call a phone number using
Intent I=new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+tel number));
But if the number that I get isn't a String how can I call it?
What packages I have to import?