【发布时间】:2016-09-22 12:10:00
【问题描述】:
我的 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'.
com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command'/home/jaimin/android-sdk-linux/build-tools/23.0.3/aapt' ' 以非零退出值 1 结束
【问题讨论】:
-
尝试清理然后重建您的项目
标签: android compiler-errors dependencies execution