2017-07-28 89 views
0

我只是将代码源eclipse导入到android studio。错误:任务':app:mergeDebugResources'的执行失败。 >错误:某些文件运算失败,请参阅日志以了解详细信息

我该如何解决?

应用插件: 'com.android.application'

android { 
    compileSdkVersion 17 
    buildToolsVersion "26.0.1" 

    defaultConfig { 
     applicationId "com.[enter image description here][1]motivation.cheer" 
     minSdkVersion 7 
     targetSdkVersion 15 
     multiDexEnabled false 
    } 

    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 
     } 
    } 

    dexOptions { 
     preDexLibraries true 
    } 
    dependencies { 
     compile 'com.android.support:support-v4:18.0.0' 
     compile 'com.google.android.gms:play-services:+' 
    } 
} 
+0

'applicationId“com。[输入图片说明] [1] motivation.cheer”'闻起来很腥。这是你真正在你的build.gradle中得到的吗?另外,您可以发布构建过程的完整堆栈跟踪,以便我们可以查看哪些内容可能是错误的? –

+0

欢迎来到SO!阅读这篇文章,了解如何提出一个很好的问题:https://stackoverflow.com/help/how-to-ask我鼓励你编辑你的问题以增加获得答案的机会。 –

回答

0

尝试去建设 - 重建项目。

相关问题