Proguard.cfg 丢失

发布于 2024-10-07 11:26:15 字数 146 浏览 5 评论 0原文

我今天犯了升级 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

柠北森屋 2024-10-14 11:26:15

最近,基本的 proguard 配置位于 sdk 目录中 - 因此您只需将其放入您的 project.properties 中:

proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt

如果您想进行特定于项目的修改,请创建一个 proguard-project.txt 并将该行更改为:

proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt: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:

proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt

if you want to make project-specific modifications, create a proguard-project.txt and change the line to:

proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 
人生戏 2024-10-14 11:26:15

如果您确实不需要 Proguard 来混淆您的发布版本,您可以从项目根文件夹中的 default.properties 文件中删除以下行:

proguard.config=proguard.cfg

如果您想要一个 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:

proguard.config=proguard.cfg

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.

黑白记忆 2024-10-14 11:26:15

我刚刚经历了同样的问题。

您需要将 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.

月下客 2024-10-14 11:26:15

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文