我无法分发单个图书馆。
我有一个库 Main ,它正在使用库 Base 。现在我只需要分发将在应用程序项目中使用的单个 Main 库。
要在应用程序项目中使用 Main 库,gradle会要求将 Base 库添加为依赖项。
这会有帮助吗?
1)
I think Main library should have base library in it. So when I look at the sizes:
Base library : 5 MB
Main library : 500 kb
要使用单个库,我认为主库的大小应该是5.5 MB。
2)
或者在应用程序项目中使用主库是否有任何代码问题?通过它,不需要将Base库添加为依赖。
再次解释:
当前情景 -
Application project
:
:
(depends):----> Main Library
:
:
-----> Base Library
它应该在哪里 -
Application project
:
: (internally depends upon)
(depends):---------> Main Library ------------> Base Library