How does one one pass a Boolean list into and intent and how does one retrieve it on the other side?
List<Boolean> booleanList= new ArrayList<>();
booleanList.add(...);
Intent intent = new Intent();
So how do I pass booleanList into intent and how do I retrieve it?