On Apr 16, 3:31 pm, Dianne Hackborn <[email protected]> wrote: > > 3. Even if I leave out the targetSdkVersion="4", the app runs ok. So > > do I really need it? > > You do if you want the system to run your app as well as possible on SDK 4 > or later.
The worst bug I've had so far in Android development was an out of memory that showed up when I used targetSdkVersion="X". It took quite awhile to figure out that was the culprit, and when I removed it I didn't see any out of memory problems at all. The problems showed up on the Motorola Droid, late last year. I spent a lot of time optimizing my own memory usage to try and fix it, but removing targetSdkVersion="X" worked best. My 2 cents, -MK -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

