I need to capture the Poynt business information but I’m seeing this exception in my code, and in the Poynt sample code:
06-28 09:37:33.840 10013-10035/co.poynt.samples W/Binder: Caught a RuntimeException from the binder stub implementation.
java.lang.ArrayIndexOutOfBoundsException: length=4; index=892
at co.poynt.api.model.Business.readFromParcel(Business.java:249)
at co.poynt.api.model.Business$1.createFromParcel(Business.java:297)
at co.poynt.api.model.Business$1.createFromParcel(Business.java:289)
at co.poynt.os.services.v1.IPoyntBusinessReadListener$Stub.onTransact(IPoyntBusinessReadListener.java:50)
at android.os.Binder.execTransact(Binder.java:404)
at dalvik.system.NativeStart.run(Native Method)
06-28 09:37:33.849 10013-10035/co.poynt.samples E/JavaBinder: *** Uncaught remote exception! (Exceptions are not yet supported across processes.)
java.lang.ArrayIndexOutOfBoundsException: length=4; index=892
at co.poynt.api.model.Business.readFromParcel(Business.java:249)
at co.poynt.api.model.Business$1.createFromParcel(Business.java:297)
at co.poynt.api.model.Business$1.createFromParcel(Business.java:289)
at co.poynt.os.services.v1.IPoyntBusinessReadListener$Stub.onTransact(IPoyntBusinessReadListener.java:50)
at android.os.Binder.execTransact(Binder.java:404)
at dalvik.system.NativeStart.run(Native Method)
I’m using the following:
compile 'co.poynt.api:android-api-model:1.2.36@jar'
compile 'co.poynt.android.sdk:poynt-sdk:1.2.10@aar'
Has anyone seen this problem and is there a known solution?