[android-porting] Re: First boot

2009-08-25 Thread Dianne Hackborn
Development builds aren't pre-dexed, so during the first boot (or any boot where a dex file or any libs it is dependent on have changed) the system will need to run dexopt. On production builds, the optimized dex files are included with the system image, so none of this has to happen. The only th

[android-porting] Re: First boot

2009-08-26 Thread vanquisher sinner
Thanks. But what about the bootstrap dex files are they treated differently? On Tue, Aug 25, 2009 at 4:17 PM, Dianne Hackborn wrote: > Development builds aren't pre-dexed, so during the first boot (or any boot > where a dex file or any libs it is dependent on have changed) the system > will need

[android-porting] Re: First boot

2009-08-26 Thread Dianne Hackborn
I don't know what you mean about bootstrap dex files. On a production build, there are no dex files in the system image, only optimized dex (odex) files. On Wed, Aug 26, 2009 at 10:56 AM, vanquisher sinner < vanquisher.sin...@gmail.com> wrote: > > Thanks. But what about the bootstrap dex files a