如何在 Eclipse 中调试 Proguard 混淆的 apk 文件
使用 Proguard 并使用新密钥签名和导出后,我的应用程序崩溃了。
相同的代码可以在正常的 Eclipse 调试模式下工作。
我到处都读到了我应该使用mapping.txt来查找失败的代码。 但如何做到这一点,我已经用谷歌搜索了 2 个小时,但没有答案。
我现在使用 debug.keystore 签署 apk 文件并使用默认密码“android”。
有人说我应该在我的应用程序标签中 android:debuggable="false" 来制作 Proguard 在 Eclipse 中混淆了我的调试会话。
这是正确的吗?
任何帮助都会
在 Proguard Android 开发者页面上得到帮助,我找不到方法来做到这一点
“当混淆的代码输出堆栈跟踪时,方法名称会被混淆,这使得调试变得“
什么是“堆栈跟踪”以及来自哪里?
在页面 Proguard Manual 上我找不到解释
I got a crash in my app after using Proguard and signing and exporting with a new key.
The same code works in normal eclipse debug mode.
I read everywhere i should use the mapping.txt to find the code that failed.
But how to do that, I have google this for 2 hour now and no answer is working.
Im now signing the apk file with the debug.keystore and using the default password "android".
Someone say i should android:debuggable="false" in my application tag to make
Proguard obfuscate my debug session in eclipse.
Is this right?
Any help would be grate
on the Proguard Android Developer page I cannot find a way to do this
"When your obfuscated code outputs a stack trace, the method names are obfuscated, which makes debugging ha"
What "stack trace" and from where?
On the page Proguard Manual I cannot find an explanation
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用 Proguard GUI 最轻松地对堆栈跟踪进行反混淆。您可以通过 Android SDK 找到它。
You can de-obfuscate the stack trace most easily using the Proguard GUI. You'll find this with your Android SDK.
不在 Eclipse 内。
在 Eclipse 之外,使用 ProGuard 中的
Retrace
函数。您还需要在项目的proguard
目录下找到转储的堆栈跟踪和mapping.txt
来反转混淆的堆栈跟踪。请记住在每次部署新版本的 Android 应用时保存mapping.txt
的副本(最好在项目工作区之外)。Not within Eclipse.
Outside of Eclipse, use
Retrace
function within ProGuard. You'll also need the dumped stacktrace andmapping.txt
found under your project'sproguard
directory to reverse the obfuscated stacktrace. Remember to save a copy ofmapping.txt
(preferably outside of your project's workspace) each time you deploy a new version of your Android app.一直在研究这个,android开发者网站上的proguard文档演示了如何解码堆栈跟踪,但它没有指定如何获取堆栈跟踪。
http://developer.android.com/guide/developing/tools/proguard.html (请参阅“解码模糊堆栈跟踪”部分)
我尝试使用 logcat 转储,如下所示:-
不幸的是,这不起作用,但如果我从每一行的开头删除 E/AndroidRuntime(14584) ,它就会起作用。做工作:
因此,正如文档所述,您需要一个堆栈跟踪文件,并且似乎没有迹象表明可以从设备获取有效的堆栈跟踪文件。
我看到完成此操作的唯一方法是提供自定义异常处理程序并将堆栈跟踪写入 SD 卡。
Been looking into this, the documentation for proguard on the android developer site demonstrates how to decode a stack trace, but it does not specify how to get the stack trace.
http://developer.android.com/guide/developing/tools/proguard.html (see section Decoding Obfuscated Stack Traces)
I tried to use a logcat dump as follows:-
Unfortunately this does not work, but it does work if I remove the E/AndroidRuntime(14584) from the beginning of each line it does work:
So as the documentation states you need a stack trace file, and there appears to be no indication of getting a valid stack trace file from the device.
The only way I have seen this done is by providing a custom exception handler and writing the stack trace to the sdcard.
对于 Mac 用户,请使用以下代码来运行
/Users/XYZ/Library/Android/sdk/tools/proguard/bin/proguardgui.sh
文件'文本框。
文本框。单击
调试愉快!
For mac user use bellow code to run the
/Users/XYZ/Library/Android/sdk/tools/proguard/bin/proguardgui.sh
file' text box.
text box. Click
Happy Debugging!
获取混淆后的 apk 的步骤:
从 proguard 站点下载最新的 proguard。当前最新版本是 proguard4.7
将
C:\Program Files (x86)\Android\android-sdk\tools\proguard
的“bin”和“lib”文件夹替换为最新下载的 proguard 文件夹.检查 Eclipse 中的 SDK 位置是否有空格,然后转到 Window > >首选项>安卓。如果有空格则替换为:
检查 proguard.cfg 文件是否位于项目的根文件夹中,并在 android 项目的 project.properties 文件中添加
proguard.config=proguard.cfg
。现在导出您的项目以获取混淆的 apk。
Steps to get obfuscated apk:
Download latest proguard from proguard site. Current latest version is proguard4.7
Replace "bin" and "lib" folder of
C:\Program Files (x86)\Android\android-sdk\tools\proguard
with latest downloaded proguard folders.Check SDK location in eclipse for blank spaces in it and for that go to Window > Preferences > Android. If there is blank space then replace it with:
Check that proguard.cfg file is in your project's root folder and add
proguard.config=proguard.cfg
in project.properties file of android project.Now export your project to get obfuscated apk.