Proguard 文件夹为空
我正在使用 Eclipse 构建我的 Android 应用程序。当我将项目导出为 Android 应用程序时,我可以使用我的密钥库和密钥来很好地签署 apk。在导出之前,我还将 Proguard 配置位置添加到属性文件中,还将 Android SDK 文件路径更改为不带空格的路径,并且在清单中将 debuggable 设置为 false。
完成所有这些后,我的项目中创建的 proguard 文件夹不包含任何文件,并且 Android 文档声称它将包含几个文件。
http://developer.android.com/guide/developing/tools/proguard.html
我错过了什么?
I am using Eclipse to build my Android Application. When I export the project as an Android Application I can use my keystore and key to sign the apk just fine. Before exporting I also added the Proguard config location to the properties file, I also changed my Android SDK file path to one without spaces, and I have debuggable set to false in my manifest.
With all of those done, the proguard folder in my project that is created does not contain any files and the Android documentation claims it will contain several.
http://developer.android.com/guide/developing/tools/proguard.html
What have I missed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的错误是愚蠢的。看起来它很成功,因为它确实成功了。只是 proguard 文件没有导入到 eclipse 中,所以它们没有出现在包资源管理器中。手动进入工作区我找到了它们。
这确实是有点尴尬。那好吧。
Stupid error on my part. It looked like it was succeeding because it was. Its just the proguard files weren't imported into eclipse so they didn't show up in package explorer. Manually entering workspace I found them.
That is indeed a little embarrassing. Oh well.