java - Editing the table that stores sms on android -



java - Editing the table that stores sms on android -

i reading sms in android device using java

cursor cursor = getcontentresolver().query(uri.parse("content://sms/inbox"), null, null, null, null); cursor.movetofirst();

but need mark sms processed background service or not.will there danger in editing sqlite database table stores sms.

i add together column indicate has been processed or has not.

you can't modify info sms content provider since kitkat, see: http://developer.android.com/about/versions/kitkat.html#44-sms-provider

so not recommended want.

java android

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -