无限地“等待建造完成”

时间:2018-12-06 23:47:58

标签: android-studio android-gradle build.gradle

自从我不久前更新Android Studio以来,就不再被允许查看我活动中的设计模式。它指出“等待构建完成”的时间是无限的。 我尝试过重建/清理项目,“使用gradle文件同步项目”,安装最新的sdk以及卸载/重新安装整个android studio ;一切都无济于事。有没有人有什么建议?我注意到.xml文件上的某些文本为红色。另外,下面是我的build.gradle的代码。如果需要显示其他信息,也请告诉我。谢谢!

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

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

allprojects {
    repositories {
        google()
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

0 个答案:

没有答案