Добавить библиотеку в андроид студию? - PullRequest
0 голосов
/ 28 февраля 2019

, когда я хочу добавить эту библиотеку:

implementation 'com.github.bumptech.glide:glide:4.9.0'

Мой Android принимает эта ошибка:

Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.github.bumptech.glide:glide:4.9.0.

и этомой модуль приложения

apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
    applicationId "com.example.mahdi.chatapp"
    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.3'
    implementation 'com.google.firebase:firebase-auth:16.1.0'
    implementation 'com.google.firebase:firebase-config:16.3.0'
    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:support-v4:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.google.firebase:firebase-core:16.0.7'
    implementation 'com.google.firebase:firebase-database:16.0.6'
    implementation 'com.android.support:cardview-v7:27.1.1'
    implementation 'com.rengwuxian.materialedittext:library:2.1.4'
    implementation 'de.hdodenhof:circleimageview:3.0.0'
    implementation 'com.github.bumptech.glide:glide:4.9.0'
}

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

Ответы [ 3 ]

0 голосов
/ 28 февраля 2019

чтобы использовать последнюю версию glide, т.е. выше версии 4, вам нужно добавить одну дополнительную зависимость (компилятор glide)

dependencies {
 implementation 'com.github.bumptech.glide:glide:4.9.0'
 annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
}

, а в репозитории вы должны добавить

repositories {
  mavenCentral()
  google()
}

ссылка: https://github.com/bumptech/glide

0 голосов
/ 28 февраля 2019

Вы не добавили annotationProcessor

repositories {
mavenCentral()
maven { url 'https://maven.google.com' }
}

dependencies {
compile 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
}

Это код для загрузки glide, указанный в документации Glide.Смотрите эту ссылку: http://bumptech.github.io/glide/doc/download-setup.html#gradle

Надеюсь, это поможет!

0 голосов
/ 28 февраля 2019

Вы добавили этот код в файл Gradle

repositories {
  mavenCentral()
  google()
}
...