In Android 4.1 (Jelly Beans)
cannot access the APN
details. When i try to access the APN
details using
final Cursor apnCursor = this.context.getContentResolver().query(Uri.withAppendedPath(Carriers.CONTENT_URI, "current"), null, null, null, null);
In my program I wanna send a mms without using the Intent.
This will return a error saying I don't have write apn permission to access the APN details.
Then I added the following line to android manifest:
<uses-permission android:name="android.permission.WRITE_APN_SETTINGS"/>
this prompt the error permission is only granted to system apps.
So how can I solve this?