Android Phone Permissions

Hi all, I am using the following in my permissions (build settings):

android =
   {
      usesPermissions =
      {
         “android.permission.INTERNET”,
         “android.permission.READ_PHONE_STATE”,
      “com.android.vending.CHECK_LICENSE”,
      “com.android.vending.BILLING”,
         “android.permission.VIBRATE”
      },
   },

but its not allowing me to go to the native phone dialer when doing:

system.openURL( “tel:”…thephonenumclicked )

…it does work in iOS but does not in Android.

any ideas…I feel like I may be missing a key line in permissions but not sure.

I think you need:

             “android.permission.CALL_PHONE”,

That worked perfectly! Thank you so much!

I think you need:

             “android.permission.CALL_PHONE”,

That worked perfectly! Thank you so much!