jotobjects wrote: > Hedging your bets here a little :) > > Is it documented anywhere that classes named "com.andorid.*" are > private API's
If it's not documented as public in the SDK, it should be assumed to be private. > and that classes named "android.*" are public API's? You'll note I didn't say that. Now, I am not aware of classes in the android.* namespace that are private. But the definitive answer of what is public is what's in the SDK, and you shouldn't find any com.android.* in there, at least that I have noticed. My overall point is that com.android.* in your code is a "code smell" indicating you are going past the bounds of the SDK. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android App Developer Books: http://commonsware.com/books -- 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

