Skip to content Skip to sidebar Skip to footer

Android Ics Not Receiving Data Sms

My application has a static broadcast receiver that listens to specific data sms on port 50011 to wake up the application and run. I tested the app on a wide range of android devic

Solution 1:

It turned out that the application will not register its broadcast receivers until one of it's activities was launched by the user.

In my case the app didn't contain any Activity.

I added an activity and it is working again. :D

Thanks everyone for your help.

Solution 2:

did you define android.permission.RECEIVE_SMS permission in your app Manfest?

Post a Comment for "Android Ics Not Receiving Data Sms"