I want to write an SL4A script to mark Unread SMS of inbox as Read. I want to run this script in QPython android application.
import androidhelper as android
droid = android.Android()
ids = droid.smsGetMessageIds(True).result
print type(ids)
print ids
number = droid.smsMarkMessageRead(ids, True).result
print number
Code This is same as above.