美文网首页
android 无法引用library中的jar包

android 无法引用library中的jar包

作者: _赵瑞飞 | 来源:发表于2018-09-25 11:02 被阅读0次

    android组件化中,无法引用module中的jar包

    解决方法:

    将(module)libutils中的implementation project 换成api project

    原因

    api和implementation两种依赖的不同点在于:它们声明的依赖其他模块是否能使用。
    api:当其他模块依赖于此模块时,此模块使用api声明的依赖包是可以被其他模块使用
    implementation:当其他模块依赖此模块时,此模块使用implementation声明的依赖包只限于模块内部使用,不允许其他模块使用。

    相关文章

      网友评论

          本文标题:android 无法引用library中的jar包

          本文链接:https://www.haomeiwen.com/subject/gzbkoftx.html