Error using eclipse for Android - No resource found that matches the given name

后端 未结 15 1629
误落风尘
误落风尘 2020-12-10 10:42

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

15条回答
  •  天命终不由人
    2020-12-10 11:39

    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.

提交回复
热议问题