[android-developers] Re: Updating framework - How to include new Java classes for android.jar

2009-07-12 Thread Dianne Hackborn
Why do you want it in android.jar? That is purely for the SDK, and you shouldn't be releasing custom APIs inside of android.jar, you should provide them as a separate shared library. For anything that doesn't like with the SDK (such as most of the stuff compiled by the build system), there is no

[android-developers] Re: Updating framework - How to include new Java classes for android.jar

2009-07-12 Thread clemsongrad
Romain, That is a good point and in fact we will put them in a separate package. Can you pl address the magic on how com.android,internal.util.Predicate.class is included in the android.jar? Where is it specified on the files that needs to be part of the android.jar? Any help is greatly appre

[android-developers] Re: Updating framework - How to include new Java classes for android.jar

2009-07-11 Thread Romain Guy
Hi, Even for your own modifications, please do not use the com.android package name. Even though this package is reserved for private APIs, your changes in this package might conflict with future changes made in Android itself (core dev team or contributions to the project.) Just use the package