我的gradle文件包含:

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"

defaultConfig {
    applicationId "com.shiponk"
    minSdkVersion 15
    targetSdkVersion 20
    versionCode 1
    versionName "1.0"
    multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

当我在应用程序中使用以下依赖项进行PayUBiz集成时。
compile 'com.payu.custombrowser:payu-custom-browser:6.0.0'//this is gradle path from where CB will be automatically downloaded
compile 'com.payu.magicretry:magicretry:1.0.4'

低于错误:
Error:Execution failed for task ':app:processDebugResources'.

最佳答案

您应该更改目标SDK版本。

像这样。

  • targetSdkVersion 23

  • 如果仍然有问题,请删除

    默认配置中的“multidex”。

    08-17 10:52