-4

Attempt to invoke virtual method 'boolean java.lang.Boolean.booleanValue()' on a null object reference at com.volley.plus.VPackages.ConfigureVolley.configureRequests(ConfigureVolley.java:24)

1 Answers1

1

The booleanValue() method is called on the Boolean value null. If you can't find such code in ConfigureVolley.java's line 24, mind that it may be caused by automatic unboxing, see JLS ยง5.

Manfred
  • 2,269
  • 1
  • 5
  • 14