I\'m developing a business SMS application. In this app, if an incoming message is from a particular number, say 999999999, it should go to the application\'s inbox and not
Yes it can be DOne
public void onReceive(Context context, Intent intent)
{
Bundle bundle=intent.getExtras();
Object[] messages=(Object[])bundle.get("pdus");
SmsMessage[] sms=new SmsMessage[messages.length];
Toast.makeText(context, "Hello", 1).show();
for(int n=0;n
just use abortbroadcast() after receiving in app