How to link dependency resources with my own aar?

I am creating a library that uses another library that contains resources as a dependency. If that matters, this dependency is the SDK for Facebook.

The problem is that when I add my library to a dependency on another project, it does not combine the dependency resources with my aar.

Why is this happening and why are all the resources not included?

0
source share
1 answer

The aar file does not contain transitive dependencies.

This means that you must add these dependencies also to the project in which you are using the library.

maven (public private). Gradle pom .

0

Source: https://habr.com/ru/post/1612724/


All Articles