Everything was fine, but after the next build I got some errors.
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). The following direct local .aar file dependencies of the :app project caused this error
implementation files('libs/lib1.aar')
implementation files('libs/lib2.aar')
I don't have the source for these libraries, so I cannot connect them as modules. How can I solve those problems?
Thank you in davance.