Android 未能解析com.github.bumptech.glide(build.gradle)

Android 未能解析com.github.bumptech.glide(build.gradle),android,build.gradle,Android,Build.gradle,我得到这个错误: 错误:未能解析:com.github.bumptech.glide:okhttp3集成:1.6.0-SNAPSHOT 在“项目结构”对话框中显示 受影响的模块:应用程序 我尝试将故事库添加到我的应用程序中,结果发生了这种情况。 图书馆是一个很好的图书馆 另一个图像加载库来自bumptech。 我的build.gradle(Module:app)文件也表示无法同步: apply plugin: 'com.android.application' android {

我得到这个错误: 错误:未能解析:com.github.bumptech.glide:okhttp3集成:1.6.0-SNAPSHOT 在“项目结构”对话框中显示 受影响的模块:应用程序 我尝试将故事库添加到我的应用程序中,结果发生了这种情况。 图书馆是一个很好的图书馆 另一个图像加载库来自bumptech。 我的build.gradle(Module:app)文件也表示无法同步:

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion '28.0.3'
    defaultConfig {
        applicationId "com.ozurak.mk"
        minSdkVersion 19
        targetSdkVersion 26
        versionCode 1476
        versionName "1.4.7.6"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    lintOptions {
        checkReleaseBuilds false
        abortOnError false
        ignoreWarnings true //false
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    //Intro Screen
    implementation 'agency.tango.android:material-intro-screen:0.0.5'
    //scrolling tab hide top
    //noinspection GradleCompatible
    implementation 'com.android.support:design:26.1.0'
    implementation 'com.github.ksoichiro:android-observablescrollview:1.6.0'


    //emoji disabler
    implementation 'com.xw.repo:xedittext:2.1.0@aar'
    //firebase
    implementation 'com.google.firebase:firebase-storage:10.0.1'
    implementation 'com.google.firebase:firebase-auth:10.0.1'
    implementation 'com.google.firebase:firebase-database:10.0.1'

    //android
    implementation 'com.android.support:recyclerview-v7:26.+'
    implementation 'com.android.support:cardview-v7:26.1.0'
    implementation 'com.android.support:appcompat-v7:26.+'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.android.support:design:26.1.0'

    //circle image view
    implementation 'de.hdodenhof:circleimageview:2.2.0'

    //like button
    implementation 'com.github.jd-alexander:LikeButton:0.2.3'

    //image loader
    implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'

    //ExifInterface support
    implementation "com.android.support:exifinterface:26.+"

    //image picker
    implementation 'com.github.nguyenhoanglam:ImagePicker:1.2.1'

    //button
    implementation 'com.beardedhen:androidbootstrap:2.3.2'

    //image loader
    implementation 'com.github.bumptech.glide:glide:4.9.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
    //image scroll 7/8/2018
    implementation 'com.github.Q42:AndroidScrollingImageView:1.3.3'
    //dropdown list
    implementation 'com.github.JayFang1993:DropDownMenu:v0.9'
    //zoom
    implementation 'com.ablanco.zoomy:zoomy:1.1.0'
    //stories
    implementation 'com.github.RahulJanagouda:StatusStories:1.0.1'



    testImplementation 'junit:junit:4.12'
}

apply plugin: 'com.google.gms.google-services'

你在用什么kotlin@Niyas不,我使用的是纯Java代码,你有这些存储库吗;maven{url”“},maven{name'glide snapshot';url'},mavenCentral()。@ahmet我没有第二个,我想它解决了问题issue@SuperGeekyDude在顶层文件中发布您的存储库块您使用的是什么kotlin@Niyas不,我使用的是纯Java代码,你有这些存储库吗;maven{url”“},maven{name'glide snapshot';url'},mavenCentral()。@ahmet我没有第二个,我想它解决了问题issue@SuperGeekyDude在顶层文件中发布存储库块