Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - how to avoid multiple deployment of the same .jar

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

like image 236
MoZZoZoZZo Avatar asked Jan 26 '12 10:01

MoZZoZoZZo


1 Answers

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 ..

like image 79
Maher Abuthraa Avatar answered Oct 20 '22 00:10

Maher Abuthraa