Your project contains error(s),please fix them before running your application

1.当安装好android后,新建的工程运行时,弹出对话框“Your project contains error(s),please fix them before running your application ”,

下面出现“Manifest attribute 'minSdkVersion' is set to '***'.Integer is expected.”的错误提示? (如下图)

解决办法:

当新建android工程时,在下图红线位置:

Min SDK Version:

表示程序将运行在哪个系统版本之上,对应的数值关系如下:

  Android 1.5:Level API 3

  Android 1.6:Level API 4

Min SDK Version(这个是设置程序希望运行在的系统版本)
  Android 2.01:Level API 6

  Android 2.1:Level API 7

  我们这里选择Android 2.3,故Min SDK Version为10

2.『Your Project contains error(s), please fix them before running your application』

用Eclipse開發Andriod應用程式時

偶爾會遇到這種鬼打牆的ERROR 明明程式沒有錯誤

但就是跳出這個ERROR不能RUN

此時的解法

很簡單:

Project→Clean…

完成

你可能感兴趣的:(android)