Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to following instructions to import android java source to eclipse on mac:

http://source.android.com/source/using-eclipse.html

I did create a new partition ('Mac OS Extended, case sensitive, journaled) on Mac. I was able to build android sdk successfully at command line.

But when I try to create a new eclipse project and I get this error which prevents eclipse from building the android source:

The project was not built due to "A resource exists with a different
case: '/android/out/target/common/obj/JAVA_LIBRARIES/
android_stubs_current_intermediates/classes/MANIFEST.mf'.". 
Fix the problem, then try refreshing this project and building it since it may
be inconsistent android

Can you please tell me how can to fix my problem?

share|improve this question
The link is giving me a 404 atm. – apollodude217 Jan 16 '11 at 2:20
Anyway, I have the same error on Windows. Neither Refactor -> Rename the namespace with the different case, nor renaming the folder corresponding to the namespace would fix the problem for me. – apollodude217 Jan 16 '11 at 2:23

5 Answers

Just rght click on ur project---> select Build Path-->configure Build Path--->Under "Source Project " tab check the case of the word "BIN" if BIN is in caps the make in the same as it is in ur project tree hierarchy ..

Thanks, Rahul Nikhare..

For any other help in eclipse write me to rahul.hnikhare@gmail.com

share|improve this answer
1  
thanks for being helpful - just remember: a) this is not a place to offer services b) don't invent words like ur ... – kleopatra Dec 11 '12 at 9:27

It is because of your jar file. remove the jar and add correct jar.

share|improve this answer

I encountered this problem when I had 2 seperate packages with different case defined in same project

src/main -> com.mycompany.project.DAO

src/test > com.mycompany.project.dao

Actually the 2nd package was for JUnit test cases & should not have been on build path. When I removed the 2nd package from build path (rightclick src/test -> remove from build path), this error was gone.

share|improve this answer

Just check your Manifest file. The package name/path should be correct. Then just delete R.java file, and clean the project. If dat doesnt solve the problem, close eclipse, and start again. I faced same issue on windows.

share|improve this answer
I had a capitalization error in my AndroidManifest.xml file. Notes: 1.) I didn't have to delete the R.java file and 2.) it was the AndroidManifest.xml file in the root, not in the bin directory (probably something that is obvious if you understand elipse) hth. – pdschuller Feb 9 at 19:19

I just ran into this issue. It occurs when you have a case mismatch on package names. I resolved it by closing Eclipse and reconciling all package names in my project folder (under bin, gen and src) as well as in my AndroidManifest.xml. Once everything matched, I reopened Eclipse, did a Clean and Build and the error went away.

share|improve this answer

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.