I followed the code found in this thread, How to make a phone call in android and come back to my activity when the call is done?
My code is the following:
When press button:
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("1337"));
I also added
android:name="android.permission.CALL_PHONE"> to user permissions
But nothing happens when I press the button.