安卓编译错误app:compileDebugJavaWithJavac>Compilation failed; see the compiler error output for details.

Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.

编译代码的时候出现了这种错误,于是在网上找了方法经过了多次试验:
1,先尝试在重新运行一两遍试试。
2、检查是否存在错误。
在命令行中进入项目的根目录,或者可以在Android studio的Terminal中直接操作也可以,然后敲入一个命令:

gradlew compileDebug --stacktrace

3、Clean and Rebuild Project,然后运行一下看看
4、不行得话改一下build.gradle里面的设置,Clean and Rebuild Project试一下

compileSdkVersion 23
buildToolsVersion "23.0.1"

//使用命令clean
gradlew clean

4、Android Studio 内存不够用了,手动配置内存。
在as中查看内存:
安卓编译错误app:compileDebugJavaWithJavac>Compilation failed; see the compiler error output for details._第1张图片
右下角显示内存
安卓编译错误app:compileDebugJavaWithJavac>Compilation failed; see the compiler error output for details._第2张图片

gradle中配置

      dexOptions {
        javaMaxHeapSize "4g" 
        preDexLibraries = false 
    }

文件中配置
找到Android的安装包,打开bin中的studio64.exe.vmoptions文件notepad++打开
安卓编译错误app:compileDebugJavaWithJavac>Compilation failed; see the compiler error output for details._第3张图片
根据需求改大最上面两个参数
这里写图片描述
5、以上都不行的话,就要检查自己的jdk的版本是否太低,更换一个最新的版本试试。

你可能感兴趣的:(安卓-运行报错)