Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've problem when I want to read com.android.email.provider to get email accounts.

Here is my code to retrieve the account :

Cursor c = null;
Uri CONTENT_URI = Uri.parse("content://com.android.email.provider/account");
String RECORD_ID = "_id";
String[] ID_PROJECTION = new String[] {RECORD_ID };        
c = getContentResolver().query(CONTENT_URI,ID_PROJECTION,null, null, null);   

I got a security exception:

java.lang.SecurityException: Permission Denial: reading com.android.email.provider.EmailProvider uri content://com.android.email.provider/account from pid=278, uid=10003 requires com.android.email.permission.ACCESS_PROVIDER

I want to know the account is created or not in some other app. Is there any other way to resolve this so that I can read from the provider.

I have also tried adding the permission in manifest:

<uses-permission android:name="com.android.email.permission.ACCESS_PROVIDER"/>

That didn't help.

Any solution would be greatly appreciated.

Thanks in advance

share|improve this question

1 Answer

I'm afraid, it's impossible. See, here http://androidbridge.blogspot.com/2011/03/reading-emails-in-android.html

share|improve this answer
Do you need contacts email addreses ? – Ramindu Weeraman Sep 25 '12 at 6:38
To be fair - if you are rooted, you could install the app in /system/data and get access. – Berdon Feb 27 at 0:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.