我正在尝试制作一个使用 Plaid API 的 android 应用程序。我正在使用此处找到的 java 绑定:https ://github.com/plaid/plaid-java 。
我正在尝试运行在该 github 页面上找到的示例代码,但我很挣扎。问题在于依赖关系。
我的 build.gradle 中有这些:
compile 'com.plaid:plaid-java:0.2.12'
compile 'org.apache.httpcomponents:httpclient-android:4.3.5.1'
需要大量搜索才能找到可以工作的正确 Apache HttpClient 库,因为当我第一次尝试这个时,我得到了 ClassNotFoundExcptions。
现在我得到了一个验证错误:
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
我正在努力解决这些问题,但找不到在 Android 上运行的 Plaid API 的任何示例。如果有人能提供哪怕一点点的帮助,将不胜感激。
谢谢