Skip to content

Releases: WindySha/Xpatch

Fix Crash on Android13

29 Apr 13:17
Compare
Choose a tag to compare

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

Support android 13 and fix some crash on android12

29 Aug 07:44
Compare
Choose a tag to compare
v5.1

update sandhook to fix crashing on some android12 or android13 devices

Support android 12.

29 Jan 17:17
Compare
Choose a tag to compare

Update SandHook library to support android 12.

Support natilve library in the xposed module and supprot bypass apk file completeness check.

09 Jan 10:28
Compare
Choose a tag to compare
  1. Use System.loadLibrary can load so file in the xposed module project.
  2. Use -hap command can bypass the apk completeness check.

Fix apk res file name conflict error.

17 Sep 17:48
Compare
Choose a tag to compare

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 !

Fix: asset or res being compressed caused app crash.

07 Sep 16:26
Compare
Choose a tag to compare

Fix: asset or res being compressed caused app crash.

Optimize project and compat targetSdk 30 App.

01 Sep 14:38
Compare
Choose a tag to compare
  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.

Update SandHook to the newest version, fix crash on Android11

24 Jun 18:43
Compare
Choose a tag to compare

Update SandHook to the newest version, and support Android11

13 Jan 14:27
Compare
Choose a tag to compare

Update SandHook to the newest version, and support Android11

Release 3.0 version

12 Feb 14:10
1dbfb0a
Compare
Choose a tag to compare

新增功能:

  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的问题;