错误:条目中的空值:streamOutputFolder = null OR错误:条目中的空值:streamOutputFolder = null

时间:2017-12-06 11:02:05

标签: java android android-studio android-gradle

由于app,我无法在emulator中运行我的Error

  

Error:null value in entry: streamOutputFolder=null

  

gradle - Error:null value in entry: incrementalFolder=null

2 个答案:

答案 0 :(得分:1)

当您无法在模拟器或手机上运行应用时

转到.gradle文件夹删除它然后重建你的项目 然后点击运行按钮

如果那不起作用 删除.gradle文件夹 打开build.gradle文件 哪个内容是这样的

//顶级构建文件,您可以在其中添加所有子项目/模块共有的配置选项。

buildscript {

repositories {
    google()
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.0.1'


    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

//将类路径更改为

classpath 'com.android.tools.build:gradle:3.0.0'

但如果您的类路径最初为2.3.1,请将其更改为2.3.0

答案 1 :(得分:0)

Empty all "build" folders in your project
Copy all your project files and folders
Create a new folder and past it there
Open android Studio and import project
Wait Android Studio to download all dependecies.

我在这里找到了另一个解决方案:LINK

  • 删除根项目目录中的.gradle目录将解决问题。

希望这会对你有所帮助。