Re: [android-developers] Re: Classes from project's jar conflicts with Android internal jar (esp. apache commons-codec)

2011-11-11 Thread Dianne Hackborn
The android base class path includes some apache libraries like this. You'll need to put them in your own namespace if building into your own app, to avoid conflicts. On Thu, Nov 10, 2011 at 10:56 PM, Yongce tuyon...@gmail.com wrote: I could copy the source files of the library into my project

[android-developers] Re: Classes from project's jar conflicts with Android internal jar (esp. apache commons-codec)

2011-11-11 Thread Yongce
Got it. So copyrepackage is the only correct way. Thanks for all your responses. On Nov 11, 4:14 pm, Dianne Hackborn hack...@android.com wrote: The android base class path includes some apache libraries like this.  You'll need to put them in your own namespace if building into your own app, to

[android-developers] Re: Classes from project's jar conflicts with Android internal jar (esp. apache commons-codec)

2011-11-10 Thread Zsolt Vasvari
I doubt you can. I'd ask the authors of your library to see if they have instructions on how to use it on Android. You have to realize that not every library you find on the web will be compatible with Android out of the box. On Nov 10, 4:35 pm, Yongce tuyon...@gmail.com wrote: Hi guys, My

[android-developers] Re: Classes from project's jar conflicts with Android internal jar (esp. apache commons-codec)

2011-11-10 Thread Yongce
I could copy the source files of the library into my project and place them in another package name, then there is no trouble. But I think it's a bad idea to do that. On Nov 11, 8:34 am, Zsolt Vasvari zvasv...@gmail.com wrote: I doubt you can.  I'd ask the authors of your library to see if they

[android-developers] Re: classes

2010-07-12 Thread Abhyudai Shanker
Guys resolved it.. Thanks Abhyudai -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: classes

2010-07-12 Thread Maxood
You can always create an object of another class in your class's methods by using the new keyword. Checkout this book here and give me your feedback:http://apress.com/ book/view/9781430231561 Maqsood Twitter: http://www.twitter.com/maxood Blog: http://maxood-android-corner.blogspot.com/ On Jul

Re: [android-developers] Re: classes

2010-07-12 Thread anil kukreti
So What was the issue? On Mon, Jul 12, 2010 at 11:47 AM, Abhyudai Shanker abhyudai.shan...@gmail.com wrote: Guys resolved it.. Thanks Abhyudai -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: Classes missing from .apk file

2009-12-26 Thread Biosopher
Note: I did a fresh clean and rebuild but that hasn't helped either... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: Classes missing from .apk file

2009-12-26 Thread Biosopher
OK...maybe my question was posed improperly. It seems the .apk doesn't contain individual class files. Instead the .class files are first compressed into classes.dex which is then packaged into the .apk. My .apk does have a classes.dex so supposedly my classes are in the .apk. That still

Re: [android-developers] Re: Classes missing from .apk file

2009-12-26 Thread Mark Murphy
Biosopher wrote: OK...maybe my question was posed improperly. It seems the .apk doesn't contain individual class files. Instead the .class files are first compressed into classes.dex which is then packaged into the .apk. My .apk does have a classes.dex so supposedly my classes are in the