I'm experiencing a NullPointerException whenever the MadRobotIntrospector in ObjectDataMap tries to copy the properties into the Hashtable.
It happens if a Bean also contains Setters. In this case the property.getReadMethod() returns null for the Setters and the call to getter.invoke(bean, (Object[])null); crashes in the next line.
ObjectDataMap.java#L571
This seems to be handled correctly for the non Android version ObjectDataMap.java#L521
Here a null check makes sure that only Getters are processed.
I'm experiencing a NullPointerException whenever the MadRobotIntrospector in ObjectDataMap tries to copy the properties into the Hashtable.
It happens if a Bean also contains Setters. In this case the property.getReadMethod() returns null for the Setters and the call to getter.invoke(bean, (Object[])null); crashes in the next line. ObjectDataMap.java#L571
This seems to be handled correctly for the non Android version ObjectDataMap.java#L521 Here a null check makes sure that only Getters are processed.