Re: [android-developers] Re: Java classes not inclded in android

2010-09-30 Thread Fabrizio Giudici
On 9/28/10 01:49 , Lance Nanek wrote: I kind of managed this the other day in a hackish sort of way. I wanted to use an open source RSS library that used java.beans.** Java classes, which aren't in Android. So I downloaded the source for those classes from the Apache Harmony project, ripped out

[android-developers] Re: Java classes not inclded in android

2010-09-27 Thread Lance Nanek
I kind of managed this the other day in a hackish sort of way. I wanted to use an open source RSS library that used java.beans.** Java classes, which aren't in Android. So I downloaded the source for those classes from the Apache Harmony project, ripped out all the references to AWT stuff, and got

Re: [android-developers] Re: Java classes not inclded in android

2010-09-27 Thread Mark Murphy
Yeah, I've done that too, also with java.beans as it turns out. java.awt.image, though, may depend on java.awt and other stuff that's not in Android, and so this solution may be impractical in this case. On Mon, Sep 27, 2010 at 7:49 PM, Lance Nanek lna...@gmail.com wrote: I kind of managed this