I am putting together a bundle for an activity and sometimes my boolean
isLive
is null. When I do the following.
Bundle b = new Bundle();
b.putBoolean("isLive", isLive);
The docs for the SDK clearly say both arguments are allowed to be null, however if isLive
is null I get a NullPointerException
have I found a bug in the SDK?