【问题标题】:Android studio gradle sync error with firebase : Response 204: No Content has no contentAndroid studio gradle 与 firebase 同步错误:响应 204:No Content 没有内容
【发布时间】:2019-04-23 19:56:09
【问题描述】:

从今天早上开始,我无法在 android-studio 中同步我的 android 项目。

当我尝试这样做时,我每次都会遇到相同的错误: A part of the errors

所有这些错误都是由同一个问题引起的:

Caused by: java.io.IOException: Response 204: No Content has no content!

确实,当尝试手动访问该地址时,什么也没有 Example of one of them

知道它是在我身边还是在谷歌/maven 的?

项目 build.gradle:

    repositories {
        google()
        jcenter()
        mavenCentral()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:3.2.1"
        classpath "com.google.gms:google-services:4.2.0"
    }

allprojects {
    repositories {
        google()
        jcenter()
    }
}

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

模块构建.gradle:

    apply plugin: "com.android.application"

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.tmproject.nviseur.ticketless_compagnon"
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
        }
    }
    buildToolsVersion "28.0.3"
}

dependencies {
    implementation fileTree(include: ["*.jar"], dir: "libs")
    implementation "com.android.support:appcompat-v7:28.0.0"
    implementation "com.android.support:support-media-compat:28.0.0"
    implementation "com.android.support:exifinterface:28.0.0"
    implementation "com.android.support:support-v4:28.0.0"
    implementation "com.android.support.constraint:constraint-layout:1.1.3"
    testImplementation "junit:junit:4.12"
    androidTestImplementation "com.android.support.test:runner:1.0.2"
    androidTestImplementation "com.android.support.test.espresso:espresso-core:3.0.2"
    implementation "com.google.firebase:firebase-core:16.0.5"
    implementation "com.google.firebase:firebase-ml-vision:18.0.1"
    implementation "com.journeyapps:zxing-android-embedded:3.6.0"
    implementation "com.google.code.gson:gson:2.8.5"
}
apply plugin: "com.google.gms.google-services"

【问题讨论】:

    标签: java android firebase android-studio gradle


    【解决方案1】:

    我从今天早上开始遇到同样的问题。昨天还在工作。

    我注意到这个问题只存在于 android studio 中。 当我使用命令行构建应用程序时,一切正常。

    命令:./gradlew clean assembleDebug (mac os)

    【讨论】:

    • 在尝试了更多之后,我似乎可以构建和执行应用程序,但它仍然导致项目窗口无法更改为“开发”模式。我会继续这样,如果问题在接下来的几天内消失,我会接受你的回答,因为它让我知道这不是我的问题。
    猜你喜欢
    • 2015-03-02
    • 1970-01-01
    • 2018-08-05
    • 1970-01-01
    • 2018-04-27
    • 1970-01-01
    • 1970-01-01
    • 2017-07-24
    • 2016-09-24
    相关资源
    最近更新 更多