[android-developers] Re: zygote preloading jars

2013-03-23 Thread skink
On Saturday, March 23, 2013 6:41:51 AM UTC+1, miten wrote: Hi, I already modified the platform.xml as below: !-- This is a list of all the libraries available for application code to link against. -- library name=android.test.runner

Re: [android-developers] Re: zygote preloading jars

2013-03-23 Thread Mark Murphy
On Sat, Mar 23, 2013 at 1:43 AM, miten imi...@yahoo.com wrote: You are suggesting that custom ROM is the only way to get apks share libraries ? It is the only way to distribute a shared library. The recipe that skink is having you follow is fine if you have one device (or emulator), which you

[android-developers] Re: zygote preloading jars

2013-03-22 Thread miten
Hi, It seems that this is google play store filter. If I try to deploy to emulator by first pushing shared framework and then the using apk it complains on missing shared library. could you also confirm ? Regards, msm. On Thursday, 21 March 2013 18:21:44 UTC+5:30, skink wrote: miten

Re: [android-developers] Re: zygote preloading jars

2013-03-22 Thread Mark Murphy
On Fri, Mar 22, 2013 at 7:55 AM, miten imi...@yahoo.com wrote: It seems that this is google play store filter. If I try to deploy to emulator by first pushing shared framework and then the using apk it complains on missing shared library. That is because your emulator is not running your own

[android-developers] Re: zygote preloading jars

2013-03-22 Thread skink
miten wrote: Hi, It seems that this is google play store filter. If I try to deploy to emulator by first pushing shared framework and then the using apk it complains on missing shared library. could you also confirm ? Regards, msm. you have to modify

[android-developers] Re: zygote preloading jars

2013-03-22 Thread skink
skink wrote: miten wrote: Hi, It seems that this is google play store filter. If I try to deploy to emulator by first pushing shared framework and then the using apk it complains on missing shared library. could you also confirm ? Regards, msm. you have to modify

[android-developers] Re: zygote preloading jars

2013-03-22 Thread miten
Hi, I already modified the platform.xml as below: !-- This is a list of all the libraries available for application code to link against. -- library name=android.test.runner file=/system/framework/android.test.runner.jar / library name=javax.obex

Re: [android-developers] Re: zygote preloading jars

2013-03-22 Thread miten
Hi, You are suggesting that custom ROM is the only way to get apks share libraries ? I would like to see some simplified article showing how to achieve it in addition to google link you provided before I start in this custom rom direction. Regards, msm. On Friday, 22 March 2013 17:38:41

[android-developers] Re: zygote preloading jars

2013-03-21 Thread skink
miten wrote: Hi, I have few apps (apks) which share common framework (jar). Instead of saving jar in each apk I guess it would be more efficient to preload them from common location which will reduce apk size as well as memory. If it is possible with zygote please guide what I need to do