js解析IPA,apk,pp文件的包名,版本信息,图片等plist信息

所需文件app-plist-parser.js

示例:

<body>
  <input type="file" name="file" id="file" οnchange="appSelect()">
  <script src="app-plist-parser.js"></script>
  <script>
    function appSelect () {
      const files = document.getElementById('file').files;
      const parser = new AppInfoParser(files[0]);
      parser.parse().then(result => {
        console.log('app info ----> ', result);
        console.log('file buffer ----> ', parser.file);
      }).catch(err => {
        console.log('err ----> ', err)
      })
    }
  </script>
</body>

页面解析结果js解析IPA,apk,pp文件的包名,版本信息,图片等plist信息

js解析IPA,apk,pp文件的包名,版本信息,图片等plist信息

索要app-plist-parser.js 联系博主