Proguard.cfg 丢失
我今天犯了升级 eclipse 的错误,现在无法让我的新 Android 项目启动。
我收到消息 Proguard.cfg(找不到该文件)。
这个东西在哪里,我好像找不到?是否可以摆脱它,我在这个项目中不需要混淆......
谢谢
I made the mistake of upgrading eclipse today and now can't get my a new Android project to get going.
I get the message Proguard.cfg (the file can't be found).
Where is this thing I can't seem to find it? Is it possible to get rid of it I don't need Obfuscation in this project...
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
最近,基本的 proguard 配置位于 sdk 目录中 - 因此您只需将其放入您的 project.properties 中:
如果您想进行特定于项目的修改,请创建一个 proguard-project.txt 并将该行更改为:
lately the base proguard config is here in the sdk dir - so you only have to put this into your project.properties:
if you want to make project-specific modifications, create a proguard-project.txt and change the line to:
如果您确实不需要 Proguard 来混淆您的发布版本,您可以从项目根文件夹中的 default.properties 文件中删除以下行:
如果您想要一个 proguard.cfg 模板,您可以使用 Eclipse 的项目向导从头开始创建一个新的 Android 项目,然后将 proguard.cfg 从新项目复制到前一个项目。
If you really don't need Proguard to obfuscate your release builds, you can remove the following line from the default.properties file in your project root folder:
If you want a proguard.cfg template, you can create a new Android project from scratch with Eclipse's project wizard, then copy proguard.cfg from the new project over to the previous one.
我刚刚经历了同样的问题。
您需要将 SDK 工具更新到当前版本。
在 Eclipse 中进入 Android SDK 和 AVD Manager。
在左侧选项卡中选择“已安装的软件包”。
单击全部更新。
选择SDK工具最新版本。
单击安装。
完成后,您的 tools/lib/ 目录中应该有 Proguard.cfg 文件。
I just experienced the same problem.
You need to update your SDK tools to current version.
In Eclipse go into your Android SDK and AVD Manager.
Select Installed Packages in the left hand tab.
Click Update All.
Select the SDK tools latest version.
Click Install.
After it's done you should have the Proguard.cfg file in your tools/lib/ directory.
cp /android-sdk/tools/proguard/examples/android.pro /android-sdk/tools/lib/proguard.cfg
cp /android-sdk/tools/proguard/examples/android.pro /android-sdk/tools/lib/proguard.cfg