capacitor-dex-editor 0.0.75 → 0.0.76

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -51,6 +51,13 @@ target_compile_options(dex_cpp PRIVATE
51
51
  -fvisibility=hidden
52
52
  )
53
53
 
54
+ # 链接选项 - 16KB 页面对齐 (Android 15+ 兼容性)
55
+ # 参考: https://developer.android.com/guide/practices/page-sizes
56
+ target_link_options(dex_cpp PRIVATE
57
+ -Wl,-z,max-page-size=16384
58
+ -Wl,-z,common-page-size=16384
59
+ )
60
+
54
61
  # 定义宏
55
62
  target_compile_definitions(dex_cpp PRIVATE
56
63
  ANDROID
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capacitor-dex-editor",
3
- "version": "0.0.75",
3
+ "version": "0.0.76",
4
4
  "description": "Capacitor-plugin-for-editing-DEX-files-in-APK",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",