Go SMS recently updated with a new feature \"Disable other message notification\". The feature causes other applications listening to the incoming SMS broadcast to not fire.
I think we did a fix for that and It worked :) We start the Broadcast Receiver via code
IntentFilter filter = new IntentFilter();
filter.addAction("android.provider.Telephony.SMS_RECEIVED");
filter.setPriority(2147483647);
receiver = new SmsAnalizer();
ac.registerReceiver(receiver, filter);
This worked and we get the job done.