app-info-parser icon indicating copy to clipboard operation
app-info-parser copied to clipboard

A javascript parser for parsing .ipa or .apk files. IPA/APK文件 js 解析器

Results 20 app-info-parser issues
Sort by recently updated
recently updated
newest added

如何在TS工程中使用?是否有计划适配TS?

https://developer.android.com/guide/app-bundle/app-bundle-format It seems that there is just one more `base` folder compared to apk: ![image](https://user-images.githubusercontent.com/615282/122353862-0961c580-cf83-11eb-8098-296ed40228e9.png)

enhancement

aab现在是主推格式

enhancement

一些用户打包不规范,包再上传时,会抛出错误,但实际安装包可以安装。报错信息如下: Error: Info.plist can't be found.

测试APK:知乎 v5.8.1 下载APK:https://github.com/LEORChn/ContentDelivery/releases/download/temp/zhihu_5.8.1.apk (如果没有特殊需要,在一段时间后会清除。) 浏览器:Chrome 43 ```javascript new AppInfoParser(file).parse().then(function(e){ console.log(e.icon); // 预期表现:data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimH... // 实际表现:data:image/png;base64,AwAIAMgAAAABABwAZAAAAAMAAAAAAAAAAAEAACgAAA... }); ``` 临时解决方案 in dist/app-info-parser.js ![code with lines tag](https://user-images.githubusercontent.com/27689378/125180436-af27ed80-e22c-11eb-998c-f1d822d26158.png) ```javascript // is it png? if((apkInfo.icon ||...

## Features - parser a part of Resource_config and output with locate - show all the result in the example site ## How Following this article http://thinkdevos.net/2017/11/14/2017-11-14-arse/, and get the...

please refer to: https://kkoiwai.github.io/ApkFingerprintReader/APK_FingerprintReader_en.html

enhancement

I'm trying to parse apk data from local path apk like "D:/apk/Telegram.apk" but still occurs many errors. const parser = new AppInfoParser('D:/apk/Telegram.apk') # This line give this error => "Param...