我们已经集成了Braintree Dropin,我们在Android中遇到了Braintree dropin UI SDK的问题,我在发布版本中使用dexGuard,当我们构建没有dexGuard应用程序的应用程序时工作正常并显示payPal& dropin UI中的信用卡选项,但是当我们使用dexGuard然后在dropin中只有信用卡选项,paypal没有显示,而且根据Braintree proguard规则已经在SDK中应用,所以“不”需要手动配置。
我们已整合以下代码:
DropInRequest dropInRequest = new DropInRequest().clientToken(aClientokenResponce.getClientToken()); .
startActivityForResult(dropInRequest.getIntent(getContext()), REQUEST_CODE_BRAINTREE);
我在Gradle文件中使用了以下内容:
buildTypes {
release {
minifyEnabled true
proguardFile getDefaultDexGuardFile('dexguard-release.pro')
proguardFile 'dexguard-project.txt'
}
debug {
}
}