我的Android进阶之旅------>解决Your project contains error(s),please fix them



在使用eclipse写好Android的代码,代码没有报错。 然后 想在AVD中运行测试时,弹出错误框,提示信息为:
  “Your project contains error(s),please fix them before running your application.”
我的Android进阶之旅------>解决Your project contains error(s),please fix them_第1张图片

然后看到在Program提示框中的提示为:
“Error generating final archive: Debug Certificate expired on 14-3-21 下午12:54”


原因分析:
android要求所有的程序必须有签名,否则就不会安装该程序。在我们开发过程中,
adt使 用debug keystore,在 preference->android->buid中设置。 debug的keystore默认有效期 为一年,如果你是从一年前开始完android程序, 那么在一年后导入这个app的时候很可能 出现debug keystore过期,导致你无法生成apk文件。 此时你只要删除debug keystore就行,系统又会为你生成有效期为一年的私钥。 

解决方法:
进入C:\Documents and Settings\Administrator\.android 删除路径下的debug.keystore及ddms.cfg。
(不同环境下的目录可能略有不同,可在eclipse中查找此路径:
Window->Preferences->Android->Build下 Default debug keystore)
我的Android进阶之旅------>解决Your project contains error(s),please fix them_第2张图片





                            ====================================================================================

  作者:欧阳鹏  欢迎转载,与人分享是进步的源泉!

  转载请保留原文地址:http://blog.csdn.net/ouyang_peng

====================================================================================

 


转载于:https://www.cnblogs.com/ouyangpeng/p/8538064.html

你可能感兴趣的:(我的Android进阶之旅------>解决Your project contains error(s),please fix them)