Skip to content

Commit

Permalink
更新
Browse files Browse the repository at this point in the history
更新
  • Loading branch information
supperlitt committed Apr 19, 2018
1 parent 498dfba commit 222683e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# AndroidKillerPlugin
# AndroidKillerPlugin
Android Killer 的插件,用于处理AndroidKiller不能逆向的apk
和解决多个dex文件,在Androidkiller下,只能查看一个dexclass源码的问题。

项目加入了:apktool和dex2jar所以比较大,使用的时候,请把这两个文件夹拷贝到根目录。
4 changes: 3 additions & 1 deletion WinAkPlugin/MainFrm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ private void Execute()
string dexFile = files[i].Substring(files[i].LastIndexOf("\\") + 1);

this.ShowMsg("拷贝:" + dexFile + ";并执行dex2jar命令");
File.Copy(files[i], Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "dex2jar", dexFile));
File.Copy(files[i], Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "dex2jar", dexFile), true);
ProcessTool.ProecssCmd(dex2jar_path, dexFile);

this.progressBar1.Value += step;
Expand Down Expand Up @@ -178,6 +178,8 @@ private void Execute()
}
catch (Exception e)
{
this.ShowMsg("如果复制apk失败:请手动复制到 当前进程目录/apktool/ 中");
this.ShowMsg("如果apk解压失败:请手动解压到 当前进程目录/temp/apk文件名(不包含.apk)/ 中");
this.ShowMsg("出现异常:" + e.ToString());
}
finally
Expand Down

0 comments on commit 222683e

Please sign in to comment.