Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to build and run an android project using the phonegap framework.

I have configured the IDE and followed the steps described in an official tutorial (see link above). The problem is that I never had a chance to build the project since it contains errors. The major one is (see screenshots):

Archive for required library: 'C:/Program Files/Android/android-sdk/platforms/android-8/android.jar' in project 'xxx' cannot be read or is not a valid ZIP file

Eclipse IDE 'Problems' tab

Also, I have tried to manually run the aforementioned android.jar but got the same error:

JVM launcher error

The problem keeps reproducing through several SDK versions: r14, r15.

BTW, I experience no troubles building a project using other android versions, e.g., 2.3.

Would someone help me out? Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted

Use the Android package manager to remove and then re-download the Android 2.2 SDK as something is corrupt with that package.

share|improve this answer
Do you mean the 'Android SDK Manager' in Eclipse? – John Doe Nov 17 '11 at 18:49
Yup, this resolved an issue with broken jar. But there are errors left (as on the screenshot, except for the 1st - fixed). Apparently, there are some problems with main.xml... – John Doe Nov 17 '11 at 19:05
Glad that worked for you. After that I'd close and re-open eclipse. Turn off build auto, run a clean, turn on build auto to see if the other errors go away. It looks like your R file is not being generated. – Simon MacDonald Nov 17 '11 at 20:50
Thanks a lot! It seems that Eclipse had some cached and not reinitialized items... all resolved! Take care! – John Doe Nov 18 '11 at 8:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.