Gradle错误-无法下载okhttp.jar文件2.7.2 [英] Gradle error - could not download okhttp.jar file 2.7.2

查看:262
本文介绍了Gradle错误-无法下载okhttp.jar文件2.7.2的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我添加firebase函数库(实现'com.google.firebase:firebase-functions:16.1.0')时,android studio(3.1.4)抛出"无法解决:app @ debug/compileClasspath"的依赖项:无法下载okhttp.jar(com.squareup.okhttp:okhttp:2.7.2)"

when i added the firebase functions library (implementation 'com.google.firebase:firebase-functions:16.1.0') , android studio(3.1.4) throws "Unable to resolve dependency for ':app@debug/compileClasspath': Could not download okhttp.jar (com.squareup.okhttp:okhttp:2.7.2)"

我尝试添加"实现文件('libs/okhttp-2.7.2.jar')",但仍然出现相同的错误.

I tried to add "implementation files('libs/okhttp-2.7.2.jar')" but still got the same error.

这是我的build.gradle(app)

apply plugin: 'com.android.application'  

android {    
    compileSdkVersion 27  
    buildToolsVersion '27.0.3'  
    defaultConfig {  
        applicationId "com.caliber.mskhan.calibergaming"  
        minSdkVersion 16  
        targetSdkVersion 27  
        versionCode 1  
        versionName "1.0"  
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"  
    }  
    buildTypes {  
        release {  
            minifyEnabled false  
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'  
        }  
    }  
}    

dependencies {  
    implementation fileTree(include: ['*.jar'], dir: 'libs')  
    implementation 'com.android.support:appcompat-v7:27.1.1'  
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'  
    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.android.support:design:27.1.1'  
    implementation 'de.hdodenhof:circleimageview:2.1.0'  
    implementation 'com.google.android.gms:play-services-maps:15.0.1'  
    implementation 'com.google.android.gms:play-services-location:15.0.1'  
    implementation 'com.google.maps.android:android-maps-utils:0.5'  
    implementation 'com.squareup.picasso:picasso:2.5.2'  
    implementation 'com.github.clans:fab:1.6.4'  
    implementation 'com.github.bumptech.glide:glide:3.7.0'  
    implementation 'com.github.PhilJay:MPAndroidChart:v3.0.2'  
    implementation 'com.android.support:cardview-v7:27.1.1'  
    implementation 'com.android.support:recyclerview-v7:27.1.1'  
    implementation 'com.google.firebase:firebase-auth:16.0.3'  
    implementation 'com.google.firebase:firebase-database:16.0.1'  
    implementation 'com.google.firebase:firebase-storage:16.0.1'  
    implementation 'com.google.firebase:firebase-messaging:17.3.0'  
    implementation 'com.google.firebase:firebase-functions:16.1.0'  
    implementation 'com.google.firebase:firebase-core:16.0.1'  
    implementation 'com.theartofdev.edmodo:android-image-cropper:2.3.1'  
    implementation 'com.android.volley:volley:1.1.0'  
    implementation 'com.karumi:dexter:4.2.0'  

    //implementation files('libs/okhttp-2.7.2.jar')  
}  
apply plugin: 'com.google.gms.google-services'  

这是我的build.gradle(project)

buildscript {

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

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

        classpath 'com.google.gms:google-services:4.0.1'
    }
}

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

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

gradle同步后生成错误

推荐答案

Change this 


// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

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


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        classpath 'com.google.gms:google-services:4.0.1'
        classpath 'com.google.firebase:firebase-plugins:1.0.4'
    }
}

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

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

这篇关于Gradle错误-无法下载okhttp.jar文件2.7.2的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆