Android - 如何避免多次部署同一个 .jar
我的问题如下:我需要开发几个部署为不同APK的Android应用程序。每个应用程序都需要一组第三方 jar。我只想部署这些文件一次。
到目前为止我发现的所有方法都要求,如果我开发 5 个不同的应用程序(每个应用程序都在一个不同的 APK 中),则 10 个共享的第 3 方 jar 需要部署 5 次。
这对我来说肯定没有好处,如何避免呢?
谢谢,问候
文森佐
my problem is as follows: I need to develop several android apps deployed as different APKs. Each application needs a set of third-party jars. I would like to deploy these files just once.
All the approaches I have found up to now require that if I develop 5 different applications (each in an distinct APK) the ten shared 3rd party jars are deployed 5 times.
This most certainly is no good to me, how can this be avoided?
Thanks, regards
Vincenzo
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这适用于您.. 制作一个应用程序,该应用程序将充当服务并响应其他 5 个应用程序。该服务将代表您的第 3 方 jar ..
if this is applicable to you .. make one application which will act as service and responds to other 5 applications. this service will represent your 3rd party jars ..