[android-developers] Re: Dialing Permission

2009-01-30 Thread Dianne Hackborn
You don't need a permission to start the dialer. That requires the user to be involved in placing the call, so it wouldn't be useful to have a permission on it. On Fri, Jan 30, 2009 at 4:07 AM, Sohail wrote: > > Hi, > > I just created a simple application, that starts the Dial Activity and > pla

[android-developers] Re: Dialing Permission

2009-01-30 Thread Charlie Collins
I don't think you need any permission to initial a phone call using the built in Activity. As long as you go through the built in activity and included user interface, no perms required. The CALL_PHONE permission is for making a call on your own without using the built in Activity, as I understand

[android-developers] Re: Dialing Permission

2009-02-01 Thread Sohail
I am not using the built in ACTIVITY for Dialer. Rather trying to create my own. I wrote the following code and when I run this; the Dialer starts to dial. package my.AndroidPhoneDialer; import android.app.Activity; import android.os.Bundle; import android.content.Intent; import android.net.Uri;

[android-developers] Re: Dialing Permission

2009-02-02 Thread Nauman ...
I think your problem is with the CALL intent and not the DIAL intent. Dial intent doesn't require permission by default but CALL does... I had the same problem with the CALL intent. I've downloaded the latest SDK ... did they change the default permissions? On Feb 2, 9:53 am, Sohail wrote: > I

[android-developers] Re: Dialing Permission

2009-02-02 Thread Dianne Hackborn
There was a very late fix with a problem where the dial permission wasn't being enforced. It is being enforced on current phones, and I'm not sure if the fix is in the SDK emulator, but you'd want to get the latest SDK to have the best chance of it being enforced. :} On Sun, Feb 1, 2009 at 9:13 P