I am having difficulties accomplishing a monkey patch. Is this even possible?
My goal. make org.apache.http.messaging.HeaderGroup implement Serializable (really just use the 4.1 version) so that it could be passed to an ObjectOutputStream. Is there a way to do this? Currently, I am getting a SerilazationException when passing an HttpEntry to ObjectOutputStream because the version of HeaderGroup that is packaged with android does not implement the Serializable interface. Is what I want possible? What i am trying is putting the implementation of org.apache.http.message.HeaderGroup in my compilable source tree. The code compiles, but when packaging it to be installed on an emulator / device the Dex target is causing a failure. Not sure what to do from here, or how else to get my results, with out writing my own Serializer. Thanks in advance for any help. -- 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

