问题描述
我已经将 Android Studio 更新为 1.4,也更新了 gradle 版本(1.4.0-beta3).
I've updated the Android studio for 1.4, also gradle version updated(1.4.0-beta3).
这是我的 build.gradle 文件
It is my build.gradle file
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
//classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'com.android.tools.build:gradle:1.4.0-beta3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
//ViewPagerIndicator
maven { url "http://dl.bintray.com/populov/maven" }
jcenter()
maven { url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' }
}
}
这是构建结果.
信息:Gradle 任务 [:app:generateDebugSources,:app:generateDebugAndroidTestSources, :app:assembleDebug]:app:preBuild 最新版本 :app:preDebugBuild 最新版本:app:checkDebugManifest :app:preReleaseBuild 最新版本:app:prepareComAndroidSupportAppcompatV72221Library 最新:app:prepareComAndroidSupportCardviewV72221Library 最新:app:prepareComAndroidSupportDesign2221Library 最新:app:prepareComAndroidSupportGridlayoutV72221Library 最新:app:preDebugAndroidTestBuild 最新:app:prepareComAndroidSupportMultidex101Library 最新:app:prepareComAndroidSupportPaletteV72221Library 最新:app:prepareComAndroidSupportRecyclerviewV72221Library 最新:app:prepareComAndroidSupportSupportV42221Library 最新:app:prepareComFacebookAndroidFacebookAndroidSdk410Library 最新:app:prepareComGithubLawloretienneQuickreturn001图书馆最新:app:prepareComGithubRey5137Material121Library 最新:app:prepareComKakaoSdkAuth112Library 最新:app:prepareComKakaoSdkKakaolink112Library 最新:app:prepareComKakaoSdkKakaostory112图书馆最新:app:prepareComKakaoSdkKakaotalk112Library 最新:app:prepareComKakaoSdkUsermgmt112Library 最新:app:prepareComKakaoSdkUtil112Library 最新:app:prepareComViewpagerindicatorLibrary241Library 最新:app:prepareComWefikaFlowlayout030Library 最新:app:prepareDeHdodenhofCircleimageview130Library 最新:app:prepareDebugDependencies :app:compileDebugAidl 最新:app:compileDebugRenderscript 最新 :app:generateDebugBuildConfig最新 :app:generateDebugAssets 最新:app:mergeDebugAssets最新 :app:generateDebugResValues 最新:app:generateDebugResources 最新 :app:mergeDebugResources最新 :app:processDebugManifest 最新:app:processDebugResources 最新 :app:generateDebugSources最新:app:prepareComAndroidSupportMultidexInstrumentation101Library最新 :app:prepareDebugAndroidTestDependencies:app:compileDebugAndroidTestAidl 最新:app:processDebugAndroidTestManifest 最新:app:compileDebugAndroidTestRenderscript 最新:app:generateDebugAndroidTestBuildConfig 最新:app:generateDebugAndroidTestAssets 最新:app:mergeDebugAndroidTestAssets 最新:app:generateDebugAndroidTestResValues 最新:app:generateDebugAndroidTestResources 最新:app:mergeDebugAndroidTestResources 最新:app:processDebugAndroidTestResources 最新:app:generateDebugAndroidTestSources 最新:app:compileDebugJavaWithJavac 最新 :app:compileDebugNdk最新 :app:compileDebugSources 最新:app:transformClassesAndResourcesWithExtractJarsForDebug 最新:app:transformClassesWithJarMergingForDebug 最新:app:collectDebugMultiDexComponents 最新:app:transformClassesWithMultidexlistForDebug 最新:app:transformClassesWithDexForDebug 最新:app:processDebugJavaRes 最新:app:transformResourcesWithMergeJavaResForDebug 失败
错误:任务执行失败':app:transformResourcesWithMergeJavaResForDebug'.
Error:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'.
java.io.FileNotFoundException: D:\Develop\workspace\b2c\Apps\app-meterial\app\build\intermediates\transforms\RESOURCES\FULL_PROJECT\mergeJavaRes\debug\META-INF\license\LICENSE.base64.文本(지정된 경로를 찾을 수 없습니다)
信息:BUILD FAILED 信息:总时间:5.62 秒信息:1 错误信息:0 警告信息:查看完整控制台输出
Information:BUILD FAILED Information:Total time: 5.62 secs Information:1 error Information:0 warnings Information:See complete output in console
有什么问题?感谢您的关注,期待您的回音!
What is the problem?Thank you for your attention, I'll be looking forward to hearing from you!
最好的问候.
推荐答案
尝试将 multiDexEnabled true 添加到您的应用 build.gradle 文件中.
Try adding multiDexEnabled true to your app build.gradle file.
defaultConfig {
multiDexEnabled true
}
我没有尝试,但它在此处
这篇关于Gradle 构建错误,错误:任务 ':app:transformResourcesWithMergeJavaResForDebug' 的执行失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!