Slide 3
Slide 3 text
Copyright ⓒ All Right Reserved by Buzzvil
ApkBuilder
private void init(File apkFile, File resFile, File dexFile,
PrivateKey key, X509Certificate certificate,
PrintStream verboseStream)
throws ApkCreationException {
...
mBuilder = new SignedJarBuilder(
new FileOutputStream(mApkFile,
false /* append */), key, certificate);
...
}
ApkBuilder.java
private void doAddFile(File file, String archivePath)
throws DuplicateFileException, IOException {
...
mBuilder
.writeFile(file, archivePath);
}
ApkBuilder.java
● APK file is zip file format