我面临有关Glide库的问题。

我使用了来自github的multiimagepicker API的几个
但是每当我选择图像的click
它崩溃了。
由于此错误,每个API崩溃



由于此错误,我被严重卡住了。
我在 Glide 论坛上搜索,但仍未找到正确的答案。许多人正在寻找这个错误的答案

Build.gradle:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })

    compile('com.mikepenz:aboutlibraries:5.9.7@aar') {
        transitive = true
        exclude group: 'com.android.support'
    }

    compile 'com.android.support:appcompat-v7:26.0.1'
    compile 'com.android.support:multidex:1.0.1'
    compile 'com.android.support:design:26.0.1'
    compile 'com.android.support:recyclerview-v7:26.0.1'
    compile 'com.android.support:cardview-v7:26.0.+'
    compile 'com.google.android.gms:play-services-auth:9.2.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.volley:volley:1.0.0'
    compile 'com.github.lolucosmin:PermissionsWrapper:version_1.2'
    compile 'com.github.javiersantos:BottomDialogs:1.2.1'
    compile 'com.toptoche.searchablespinner:searchablespinnerlibrary:1.3.1'
    compile 'com.appyvet:materialrangebar:1.4'
    compile 'com.github.vivchar:ViewPagerIndicator:v1.0.1'
    compile 'com.github.bumptech.glide:glide:4.2.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.2.0'
    compile 'com.github.chathuralakmal:AndroidImagePopup:1.2'
    compile 'com.ss.bannerslider:bannerslider:1.8.0'
    compile 'org.aviran.cookiebar2:cookiebar2:1.0.5'
    compile 'com.github.hamsaadev:RTLMaterialSpinner:V1.0.1'
    compile 'com.github.darsh2:MultipleImageSelect:v0.0.4'

}

最佳答案

使用当前最新版本时,我遇到了相同的错误:4.7.1

对于我来说,该错误很可能是由于您的依赖性而引起的,对我来说,将Glide版本降级到4.3.1可以正常工作。

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

顺便说一句,请使用implementation而不是compile这个词,因为它将在今年被删除。

该解决方案可能不适用于您,因为您的版本已经是4.2.0

但是无论如何,希望它能起作用!

关于android - Glide java.lang.NoSuchMethodError : No virtual method,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47069529/

10-12 03:15