I am trying to make an android application that uses the Plaid API. I am using the java bindings found here: https://github.com/plaid/plaid-java.
I am trying run the example code found on that github page, but I'm struggling. The problem lies in the dependencies.
I have these in my build.gradle:
compile 'com.plaid:plaid-java:0.2.12'
compile 'org.apache.httpcomponents:httpclient-android:4.3.5.1'
It took a good amount of searching to find the correct Apache HttpClient library that would work, because I was getting ClassNotFoundExcptions when I first tried this.
Now I'm getting a VerifyError:
java.lang.VerifyError: Verifier rejected class com.plaid.client.http.ApacheHttpClientHttpDelegate due to bad method com.plaid.client.http.HttpResponseWrapper com.plaid.client.http.ApacheHttpClientHttpDelegate.doPatch(com.plaid.client.http.PlaidHttpRequest, java.lang.Class) (declaration of 'com.plaid.client.http.ApacheHttpClientHttpDelegate' appears in
I am struggling to resolve these problems and can't find any examples of the Plaid API working on Android. If anyone can provide even the slightest bit of help, it would be greatly appreciated.
Thank you