capacitor-dex-editor 0.0.1 → 0.0.2

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.
@@ -53,13 +53,13 @@ dependencies {
53
53
  implementation project(':capacitor-android')
54
54
  implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
55
55
 
56
- // dexlib2 & smali - DEX文件编辑核心库
57
- implementation 'com.android.tools.smali:smali-dexlib2:3.0.3'
58
- implementation 'com.android.tools.smali:smali:3.0.3'
59
- implementation 'com.android.tools.smali:smali-baksmali:3.0.3'
56
+ // dexlib2 & smali - DEX文件编辑核心库 (使用 api 暴露给主项目)
57
+ api 'com.android.tools.smali:smali-dexlib2:3.0.3'
58
+ api 'com.android.tools.smali:smali:3.0.3'
59
+ api 'com.android.tools.smali:smali-baksmali:3.0.3'
60
60
 
61
61
  // Gson - JSON序列化
62
- implementation 'com.google.code.gson:gson:2.10.1'
62
+ api 'com.google.code.gson:gson:2.10.1'
63
63
 
64
64
  testImplementation "junit:junit:$junitVersion"
65
65
  androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capacitor-dex-editor",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
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",