Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个使用另一个库(aar)的android库。当我在新项目中使用我生成的 aar 文件时,我无法执行使用其他库代码的函数。如何生成包含所有库依赖项的 aar?
您需要api用于在库中添加依赖项而不是使用implementation. Usingapi` 会将您的依赖项暴露给世界。像这样的东西:
api
implementation. Using
dependencies { api 'com.android.support:appcompat-v7:27.1.1' api 'com.your.library:libraryName:1.0' }