E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.takeoutordering, PID: 22565
java.lang.NoClassDefFoundError: Failed resolution of: Lcom/bumptech/glide/gifdecoder/GifDecoder$BitmapProvider;

E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.example.takeoutordering, PID: 22565
java.lang.NoClassDefFoundError: Failed resolution of: Lcom/bumptech/glide/gifdecoder/GifDecoder$BitmapProvider;

第一步:把下面这一行配置删掉
implemetation files('libs\\'glide-4.10.0.arr')
第二步:把libs文件夹下的glide-4.10.0.arr文件删除。
第三步:build.gradle 添加下列配置
dependencies {
compile 'com.github.bumptech.glide:glide:4.11.0'
// Skip this if you don't want to use integration libraries or configure Glide.
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
}
第四步:同步工程,重新编译