Trey
05/19/2022, 8:18 PM> 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 :common project caused this error:
mkrussel
05/19/2022, 8:21 PMconfigurations.maybeCreate("default")
artifacts.add("default", file('my_lib.aar'))
Then you depend on the project instead of the file.Landry Norris
05/19/2022, 8:29 PM