Common problem I\'m sure, but I can\'t figure it out. In my AndroidManifest.xml and main.xml I\'m getting the no resource found that matches the given name. I\'ve double c
I actually has this problem once with a path issue referring another project :
I had this in my default.properties:
android.library.reference.1=..\\MyProject_Core\\
Which I fixed like this:
android.library.reference.1=../MyProject_Core/
My colleague created the above with Windows but only the version below worked on my Mac.