如果你在寻找:Direct local .aar file dependencies are not supported when building an AAR. The resulting AAR would be broken because the classes and Android resources from any local .aar file dependencies would not be packaged in the resulting AAR. Previous versions of the Android Gradle Plugin produce broken AARs in this case too (despite not throwing this error). 这样一个报错的解决方案,那么恭喜你,你找对了。
一般这个问题出现在一个模块中依赖了一些aar文件,然后App依赖了那个模块,开发时好好的,一打包就出问题,特别是AS3.0的项目迁移到AS4.0的时候极其容易出现。其实这是AS4.0以后才出现的坑,准确来说,是Gradle版本的问题。
**
解决方法:Gradle版本升级到7.2以上即可!
**。