You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 25, 2019. It is now read-only.
I have used this library Its working before. I don't no what I changed suddenly its not working
this my activity
private void setUpJobScheduler() {
jobScheduler = JobScheduler.getInstance(this);
this is my job service
public class NotificationJobService extends JobService implements BroadcastListCallback,TextToSpeech.OnInitListener{
private final LinkedList jobParamsMap = new LinkedList();
Cache session;
TextToSpeech speech;
@OverRide
public boolean onStartJob(JobParameters params) {
jobParamsMap.add(params);
System.out.println("====== inside job "+session.getNotificationFlag());
if(session.getLogin() && session.getNotificationFlag()) {
System.out.println("=========== yes");
NotificationServiceTask task = new NotificationServiceTask(this, session.getUserID(), "received", "", "");
task.execute();
}else{
JobParameters parameters=jobParamsMap.poll();
if (parameters == null) {
}
this service is not calling.
My manifest is
Tel me what is the reason
The text was updated successfully, but these errors were encountered: