V1.0.3 (to/from json convert)

This commit is contained in:
REAndroid 2022-12-01 14:41:11 -05:00
parent 3626e24c90
commit 30bfe4b763

View File

@ -53,5 +53,11 @@
File outFile=new File("AndroidManifest_out.xml"); File outFile=new File("AndroidManifest_out.xml");
manifestBlock.writeBytes(outFile); manifestBlock.writeBytes(outFile);
} }
public static void convertToJson() throws IOException{
File inFile=new File("test.apk");
File outDir=new File("test_out");
ApkModule apkModule=ApkModule.loadApkFile(inFile);
apkModule.convertToJson(outDir);
}
``` ```