本文介绍了生成错误引用的build.xml和ProGuard的文件:"空返回:1"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在建设我的PhoneGap应用程序(安装了Facebook的SDK插件),我遇到了这个错误:

行653是:

 <不要只-IF-清单,有code elseText =有code =假Skipp AIDL / renderscript / R.java。>
 

线698为:

  proguardFile =$ {out.absolute.dir} /proguard.txt
 

我的解决方案,到目前为止,包括以下内容:

  1. Android的更新项目强制代 ProGuard的-project.txt 的文件,以及更新 local.properties project.properties 文件。
  2. 编辑 C:\ ADT-束的Windows x86_64-20130522 \ SDK \工具\蚂蚁\的build.xml ,让所有提及到 proguard.txt 成为 ProGuard的-project.txt
  3. 蚂蚁-logfile ./antLogFile.txt发布。这里是日志文件。

我所有的尝试取得任何进展。 为什么会出现这种错误发生的呢?我必须做什么来构建成功?

解决方案

关闭Eclipse,然后运行蚂蚁干净在项目文件夹。

While building my PhoneGap app (with the Facebook SDK plugin installed), I encountered this error:

Line 653 is:

<do-only-if-manifest-hasCode elseText="hasCode = false. Skipp aidl/renderscript/R.java">

Line 698 is:

proguardFile="${out.absolute.dir}/proguard.txt"

My solutions so far include the following:

  1. Ran android update project to force generation of the proguard-project.txt file, as well as update the local.properties and project.properties file.
  2. Edited C:\adt-bundle-windows-x86_64-20130522\sdk\tools\ant\build.xml so that all mentions to proguard.txt become proguard-project.txt.
  3. ran ant -logfile ./antLogFile.txt release. Here is the log file.

All of my attempts yielded no progress. Why does this error occur? What must I do to build successfully?

解决方案

Close Eclipse and then run ant clean in your project folder.

这篇关于生成错误引用的build.xml和ProGuard的文件:&QUOT;空返回:1&QUOT;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 05:01