当前位置: 代码迷 >> Android >> Android - the project was not built due to a resource exists with a different case.
  详细解决方案

Android - the project was not built due to a resource exists with a different case.

热度:457   发布时间:2016-04-28 02:00:38.0
Android -- the project was not built due to a resource exists with a different case...


进行编码时,工程前面莫名有个红X,正当百思不得其解时,发现在[problems]下有如下的消息输出

------

the project was not built due to a resource exists with a different case...

------

按照提示对代码再次进行了check,果然是大小写出了问题,具体如下:

  包名为:com.example.Android_intent3

   但很奇怪的是.java文件中AndroidMaifest.xml中引用该包的地方都变成了小写,但程序没有明确的报错。。。

   修改前:package="com.example.android_intent3"

   修改后:package="com.example.Android_intent3"

   再次运行程序正常。


出了问题一定要仔细看ecplise的提示信息。

  相关解决方案