You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using your library to parse a manifest and I already have a zip because the apk is uploaded into a service. So I create the zip on the fly from the postet data.
currently I do this:
var admZip = require('adm-zip');
var ApkReader = require('adbkit-apkreader');
var zip = new admZip(blob);
var reader = new ApkReader(null);
reader.zip = zip;
var manifest = reader.readManifestSync();
This works but as soon as you change something internally it will break.
So I suggest to add an optional parameter zip to the readManifestSync function. If it is set, the function could read the provided zip if not the one of the class.
Regards
Christian
The text was updated successfully, but these errors were encountered:
Hi,
I am using your library to parse a manifest and I already have a zip because the apk is uploaded into a service. So I create the zip on the fly from the postet data.
currently I do this:
This works but as soon as you change something internally it will break.
So I suggest to add an optional parameter zip to the readManifestSync function. If it is set, the function could read the provided zip if not the one of the class.
Regards
Christian
The text was updated successfully, but these errors were encountered: