The values ββare passed, and the execution is correct, but I see that they are thrown into logcat, and I want to eliminate them, I checked the old forums, but nothing concrete. I am posting my code below, please let me know why this problem would occur.
public class ExecutionInfo implements Parcelable { private int offSet; private List<Integer> pollingIntervalArray = new ArrayList<Integer>(); private List<String> commandLst= new ArrayList<String>(); private int repeatCount; private int executorId; private int processType; public ExecutionInfo() { } public ExecutionInfo(Parcel source) { offSet = source.readInt(); repeatCount = source.readInt(); executorId = source.readInt(); processType = source.readInt(); source.readStringList(commandLst); source.readList(pollingIntervalArray, Integer.class.getClassLoader()); } public int getOffSet() { return offSet; } public void setOffSet(int offSet) { this.offSet = offSet; } public List<Integer> getInterval() { return pollingIntervalArray; } public void setInterval(List<Integer> pollingIntervalVec) { this.pollingIntervalArray = pollingIntervalVec; } public List<String> getCommandLst() { return commandLst; } public void setCommands(String command) { commandLst.add(command); } public int getRepeatCount() { return repeatCount; } public void setRepeatCount(int repeatCount) { this.repeatCount = repeatCount; } public int getExecutorId() { return executorId; } public void setExecutorId(int executorId) { this.executorId = executorId; } @Override public int describeContents() {
An exception that is thrown repeatedly is: but this does not interfere with the execution
: com.seven.superapptwitter.xmlHandler.ExecutionInfo 07-27 16:52:11.418: WARN/Intent(2458): Failure filling in extras 07-27 16:52:11.418: WARN/Intent(2458): android.os.BadParcelableException: ClassNotFoundException when unmarshalling: com.seven.superapptwitter.xmlHandler.ExecutionInfo 07-27 16:52:11.418: WARN/Intent(2458): at android.os.Parcel.readParcelable(Parcel.java:1883) 07-27 16:52:11.418: WARN/Intent(2458): at android.os.Parcel.readValue(Parcel.java:1771) 07-27 16:52:11.418: WARN/Intent(2458): at android.os.Parcel.readMapInternal(Parcel.java:2008) 07-27 16:52:11.418: WARN/Intent(2458): at android.os.Bundle.unparcel(Bundle.java:208) 07-27 16:52:11.418: WARN/Intent(2458): at android.os.Bundle.putAll(Bundle.java:281) 07-27 16:52:11.418: WARN/Intent(2458): at android.content.Intent.fillIn(Intent.java:5127) 07-27 16:52:11.418: WARN/Intent(2458): at com.android.server.am.PendingIntentRecord.sendInner(PendingIntentRecord.java:195) 07-27 16:52:11.418: WARN/Intent(2458): at com.android.server.am.PendingIntentRecord.send(PendingIntentRecord.java:177) 07-27 16:52:11.418: WARN/Intent(2458): at android.app.PendingIntent.send(PendingIntent.java:400) 07-27 16:52:11.418: WARN/Intent(2458): at com.android.server.AlarmManagerService$AlarmThread.run(AlarmManagerService.java:680)
Kavitha
source share