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.
- package/android/build.gradle +5 -5
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -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
|
-
|
|
58
|
-
|
|
59
|
-
|
|
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
|
-
|
|
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"
|