Android include all dependencies in a output library

212 Views Asked by At

I've created an android library which use itself another library (aar). When i use my generated aar file in a new project i can not execute functions which use the other library code. How can generate an aar with all library dependencies included?

1

There are 1 best solutions below

1
On

You need to use api for adding your dependencies in your library instead of using implementation. Usingapi` will expose your dependencies to the world. Something like this:

dependencies {
  api 'com.android.support:appcompat-v7:27.1.1'
  api 'com.your.library:libraryName:1.0'
}