在使用jenkins,使用gradle编译的时候总会出现一些问题,下面是几个常见问题的解决方法. 被编译的代码或资源有问题( finished with non-zero exit value 1): 出现这种编译异常表现是 exit value 1,一般会给出错误提示,所以很容易排查.这种错误很常见,错误提示有时候是在日志中明显的给出来了,如下示例所示: :app:processDebugManifest :app:processDebugResources \app\src\main\res…
出现这个错误主要有两类错误 依赖包重复 方法数超过65K 针对第一种错误,可能是由于build.gradle里写了 compile fileTree(dir: 'libs', include: ['*.jar']) 这种方式,同时又加了单独的依赖针对第二种错误原因,使用multidex打包可以解决问题,在build.gradle里添加 defaultConfig { multiDexEnabled true } 即可.解决方法整理自:http://stackoverflow.com/questi…
一个android项目突然出现编译错误,如下: :app:processDebugResources FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:processDebugResources'. > com.android.ide.common.process.ProcessException: org.gradle.process.intern…
windows->show view -> problems, 这个窗口的内容即为 编译错误的内容.…
在build.gradle中的configurations.all {}下添加:resolutionStrategy.force 'com.android.support:support-annotations:23.1.1'  configurations.all {     resolutionStrategy.force 'com.android.support:support-annotations:23.1.1'  } 来自为知笔记(Wiz)…
两种处理方法: 1.修改distributionUrl链接 gradle-wrapper.properties文件 distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 改成 distributionUrl=http\://services.gradle.org/distributions/gradle-3.3-all.zip 2.修改成use local gradle distribution…
如果不小心手动修改了.gradle文件夹中的内容,那么再打开之前编译成功的工程时,会出现类似下面的错误: Gradle app neame project refresh failed: Unexpected lock protocol found in lock file. Expected 3, found 0. Gradle settings 看到这个瞬间头大了,不知道到底啥情况!在AS中选择File菜单下的Invalidate caches and restart项目,仍然出错! 网上说…
今天来到打开昨天的项目运行正常,然后改动了一点代码编译报错: Error:Execution failed for task ':app:buildInfoDebugLoader'. > Exception while doing past iteration backup : Source /Users/syf/Desktop/20170119TabBar2Fragment/app/build/intermediates/builds/debug/37748855462935/classes.…
本文转载自:http://blog.csdn.net/lilidejing/article/details/46564491 进入系统framework层修改了下MediaPlayer.java的源码,就添加了个方法,结果重新编译系统报下面错误: .................. Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for detail…
错误1: prebuilts/sdk/api/18.txt:22055: error 9: Removed public method android.telephony.gsm.SmsMessage.calculateLength(或者其他的类似错误) 解决方法: 1.http://blog.csdn.net/lpjishu/article/details/53256914 2.make update-api 错误2: 在终端中执行:emulator 出现emulator命令找不到 解决方法…