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
In JobConsumerExecutor.java the method below causes a NPE due to val being null
privatebooleancontains(String[] arr, Stringval) {
for (inti = 0; i < arr.length; i ++) {
if (val.equals(arr[i])) {
returntrue;
}
}
returnfalse;
}
I'm implementing ActivityBoundJobs as described in the Wiki, and cancelling Jobs when activity goes onStop().
Scenario: Activity1 launches Activity2. Activity2 calls an API to get data and JobConsumerExecutor crashes
In
JobConsumerExecutor.java
the method below causes a NPE due toval
beingnull
I'm implementing
ActivityBoundJobs
as described in the Wiki, and cancelling Jobs when activity goes onStop().Scenario: Activity1 launches Activity2. Activity2 calls an API to get data and JobConsumerExecutor crashes
The text was updated successfully, but these errors were encountered: