Android braintree paypal无法与dexguard集成

Android braintree paypal无法与dexguard集成,android,paypal,braintree,dexguard,Android,Paypal,Braintree,Dexguard,我们集成了Braintree Dropin,Android中的Braintree Dropin UI SDK存在问题,我在发布版本中使用dexGuard,当我们构建没有dexGuard的应用程序时,它可以正常工作,在Dropin UI中显示payPal和信用卡选项,但当我们使用dexGuard时,Dropin中只有信用卡选项,payPal不显示,此外,根据Braintree,SDK中已经应用了proguard规则,因此“无”需要手动配置 我们整合了以下代码: DropInRequest dro

我们集成了Braintree Dropin,Android中的Braintree Dropin UI SDK存在问题,我在发布版本中使用dexGuard,当我们构建没有dexGuard的应用程序时,它可以正常工作,在Dropin UI中显示payPal和信用卡选项,但当我们使用dexGuard时,Dropin中只有信用卡选项,payPal不显示,此外,根据Braintree,SDK中已经应用了proguard规则,因此“无”需要手动配置

我们整合了以下代码:

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 {
    }
}