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.
我有自己的 jar 库,但它已被多个应用程序使用 如何使我的 JAR 库包含在 AndroidManifest.xml 中并将其用作共享库?
<uses-library>适用于作为设备固件一部分的库(SDK 插件)。因此,除非您分发自己的硬件或 ROM 模组,<uses-library>否则对您没有用处。
<uses-library>
此外,一般来说,您希望拥有该库的独立副本,每个应用程序使用它一个。这样,您可以单独更新每个应用程序。否则,对 JAR 的更改可能需要同时更改所有应用程序,并且由于您不负责安装这些应用程序更新(用户负责),这可能是一个主要问题。