On Tue, Jun 14, 2011 at 2:50 PM, zhibo wang <[email protected]> wrote: > I am using an image processing library which relies on the java.awt.image > package. However, the Android library does not have that package. > Does anybody know how to use it in Android?
Rewrite your code to not use java.awt.image. Or, find the relevant classes in Apache Harmony, refactor those classes to be in some other package (e.g., top.rocky.awt.image), get them compiling successfully, and adjust your code to use your own repackaged edition of those classes. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | 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

