Error
IntentResolver(2168): resolveIntent failed: found match, but none with Intent.CATEGORY_DEFAULT
Solution
Add <category android:name="android.intent.category.DEFAULT" /> to your second intent filter
<intent-filter >
<category android:name="android.intent.category.DEFAULT" />
<action android:name="YOUR_INTENT" />
</intent-filter>
Tweet
No comments:
Post a Comment