Derect local .aar file dependencies are not supported when building an AAR.

正确做法:将 AAR 包,通过创建 Module 的方式创建,然后再用其他 Module 依赖即可


切忌只通过把 implementation 改为 provided ,这种做法是不可取的,虽然这样能够打包成功,但是原因是 provided 方式打包时不会编译该aar,而当我们调用aar的时候就由于没有编译而报错闪退了。

你可能感兴趣的:(Derect local .aar file dependencies are not supported when building an AAR.)