Didn't include a pendingIntent in the extras?

Akshat Sharda picture Akshat Sharda · Jul 24, 2015 · Viewed 14.8k times · Source

I came across this Error message on Logcat while working on an app. Can anyone tell me what it means?

07-24 23:34:20.288    1140-1140/? E/NetworkScheduler.SchedulerReceiver﹕ Invalid parameter app
07-24 23:34:20.288    1140-1140/? E/NetworkScheduler.SchedulerReceiver﹕ Invalid package name : Perhaps you didn't include a PendingIntent in the extras

For your information: I used an AlarmManager in this app

Answer

Eyal Sooliman picture Eyal Sooliman · Nov 1, 2015

It is probably means that you are missing a uses-library deceleration inside the AndroidManifest.xml file. If you can provide 1 line of the log just before getting this error message it will be helpful. You can try and fix it by adding the:

uses-library android:name="com.<your library>" /

under the

<application