Not Found Activity To Handle Intent?
I am writing a program where the main activity in my app should be invoked when a particular SMS arrives on the phone. I have already registered a BroadcastReceiver and the intent
Solution 1:
Try to change your <intent-filter>
like this:
<intent-filter><actionandroid:name="edu.example.prankssms3.action.STARTMUSIC" /><categoryandroid:name="android.intent.category.DEFAULT" /></intent-filter>
Post a Comment for "Not Found Activity To Handle Intent?"