I have Read Incoming SMS Content and Blocked the same before entering in to the inbox. The code is Given below:
import android.content.BroadcastReceiver;
imp
I captured the event while sending the sms , i use an observer on "content://sms/" , i make a query and i get the last sent sms then i delete it : getContentResolver().delete("content://sms/","_id=?",new String[] { message_id});
My problem that this idea work perfectly on Emulator but not on real device.