Android|android 引用library时无法调用中的jar包

解决方法: 将(module)dependencies中的implementation project 换成 api project
原因: 【Android|android 引用library时无法调用中的jar包】api和implementation两种依赖的不同点在于:它们声明的依赖其他模块是否能使用。 api:当其他模块依赖于此模块时,此模块使用api声明的依赖包是可以被其他模块使用 implementation:当其他模块依赖此模块时,此模块使用implementation声明的依赖包只限于模块内部使用,不允许其他模块使用。

    推荐阅读