I am trying to write and then to update contacts using URI content://com.android.contacts/contacts and I get a RunTime Error: Uid 10101 does not have permission to uri con
you are using spermission that is not meaning try to change the permission in your menifest
<uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission>
<uses-permission android:name="android.permission.WRITE_CONTACTS"></uses-permission>
Full set of permissions flags can be found on Android reference pages.
Check your MANIFEST file..
try adding like this..
<uses-permission
android:name="android.permission.WRITE_CONTACTS" />
it is uses-permission not uses-spermission...
Hope this helps...
just look at your permission:
<uses-spermission
android:name="android.permission.WRITE_CONTACTS" />
its spelling mistake there: remove s
before permission
word:
<uses-permission
android:name="android.permission.WRITE_CONTACTS" />