Android Studio Gradle与Firebase的同步错误:响应204:无内容无内容

时间:2018-11-21 09:23:19

标签: java android firebase android-studio gradle

从今天早上开始,我一直无法在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

知道它在我这边还是在Google / 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
}

模块build.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"

1 个答案:

答案 0 :(得分:2)

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

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

命令:module.exports = { rootDir: './', roots: ['<rootDir>', '<rootDir>/tests/'], setupFiles: ['<rootDir>/tests/setupComponents.js'], moduleDirectories: ["node_modules"], moduleFileExtensions: ['js', 'json', 'vue'], moduleNameMapper: { '@/(.*)$': '<rootDir>/source/$1' }, transform: { '^.+\\.vue$': '<rootDir>/node_modules/vue-jest', '^.+\\.js$': '<rootDir>/node_modules/babel-jest' }, transformIgnorePatterns: [ 'node_modules\/(?!(my-lib)/)' ], snapshotSerializers: [ '<rootDir>/node_modules/jest-serializer-vue' ], collectCoverage: true, collectCoverageFrom: [ "<rootDir>/source/**/*.{js,vue}" ], coverageReporters: ["text", "text-summary"] } (mac os)

相关问题