我已将GlIDe的版本从4.0.0-RC0升级到4.4.0.但它给我一个错误的说法
Error:Module 'com.github.bumptech.glIDe:glIDe:4.4.0' depends on one or more AndroID librarIEs but is a jar
它不是说哪个罐子或任何其他信息.
有人知道如何解决这个问题吗?我还在build.gradle中附加了GlIDe的条目
compile 'com.github.bumptech.glIDe:glIDe:4.4.0'compile 'com.github.bumptech.glIDe:okhttp3-integration:4.4.0'annotationProcessor 'com.github.bumptech.glIDe:compiler:4.4.0'compile 'com.github.bumptech.glIDe:annotations:4.4.0'
编辑:我正在使用支持库版本27.0.1
解决方法:
我遇到了同样的问题,但使用它解决了它:
compile('com.github.bumptech.glIDe:glIDe:4.4.0@aar') { transitive = true;}
要引入包含@GlIDeModule的注释模块,必须使用transitive = true
总结以上是内存溢出为你收集整理的android – 最新版本的Glide给出依赖性错误全部内容,希望文章能够帮你解决android – 最新版本的Glide给出依赖性错误所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)