Xpatch Versions Save

This is a tool to repackage apk file, then the apk can load any xposed modules installed in the device. It is another way to hook an app without root device.

v5.2

1 year ago

Fix error: java.lang.ClassCastException: java.lang.Long cannot be cast to java.lang.Integer

v5.1

1 year ago

v5.0

2 years ago

Update SandHook library to support android 12.

v4.5

2 years ago
  1. Use System.loadLibrary can load so file in the xposed module project.
  2. Use -hap command can bypass the apk completeness check.

4.4

2 years ago

Fix bug: some app, such as youtube, compressed the res dir, resouce files has the same name in case insensitive mode. So When unzip the dirctory, some files will be removed, fix it !

4.3

2 years ago

Fix: asset or res being compressed caused app crash.

4.2

2 years ago
  1. Fix bug: targetSdk 30 App cannot install on Android 11 device.
  2. Remove useless code.
  3. Sign apk with v1, v2 and v3.
  4. Move xposed-module-loader project to this project, make it easy to build project.

v4.1

2 years ago

v4.0

3 years ago

Update SandHook to the newest version, and support Android11

v3.0

4 years ago

新增功能:

  1. 支持android 10;
  2. 支持更改植入的hook框架,默认使用Sandhook(支持android10),可更改为whale(暂不支持android10)(-w);
  3. 默认使用修改Maniest文件方式,植入初始化代码,同时,支持更改为老版本中的修改dex文件的方式植入代码(-dex);
  4. 支持修改apk包名(一般不建议使用,很多应用会校验包名,会导致无法使用)
  5. 支持修改apk的version code;
  6. 支持修改apk的version name;
  7. 支持修改apk的debuggable为true或者false;

Bug修复:

  1. 修复Manifest文件中未定义ApplicationName类,导致无法实现Hook的问题;
  2. 修复破解无so文件的apk时,出现无法找到so的问题;
  3. 修复签名可能会失败的问题;
  4. 修复dex文件数超过65536的问题;