android studio 编译depends on one or more Android Libraries but is a jar

来源:互联网 发布:视频特效软件手机版 编辑:程序博客网 时间:2024/06/05 09:09

http://blog.csdn.net/a772890398/article/details/51236740


Error:Module 'com.github.lecho:hellocharts-library:1.5.8' depends on one or more Android Libraries but is a jar

产生的错误的原因:使用一个第三方的库的时候发生这样的错误     好像它是说一个jar包不可以依赖android 的library(嘿嘿  驴头不对马嘴!!!)

解决方法:   加上   @aar

compile 'com.github.lecho:hellocharts-library:1.5.8@aar'




0 0