├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.js ├── lib ├── apkreader.js └── apkreader │ └── parser │ ├── binaryxml.js │ └── manifest.js ├── package.json └── test └── fixt └── app-debug-unaligned.apk /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstf/adbkit-apkreader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstf/adbkit-apkreader/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | /node_modules/ 3 | /temp/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstf/adbkit-apkreader/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstf/adbkit-apkreader/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstf/adbkit-apkreader/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstf/adbkit-apkreader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstf/adbkit-apkreader/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/apkreader') 2 | -------------------------------------------------------------------------------- /lib/apkreader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstf/adbkit-apkreader/HEAD/lib/apkreader.js -------------------------------------------------------------------------------- /lib/apkreader/parser/binaryxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstf/adbkit-apkreader/HEAD/lib/apkreader/parser/binaryxml.js -------------------------------------------------------------------------------- /lib/apkreader/parser/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstf/adbkit-apkreader/HEAD/lib/apkreader/parser/manifest.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstf/adbkit-apkreader/HEAD/package.json -------------------------------------------------------------------------------- /test/fixt/app-debug-unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstf/adbkit-apkreader/HEAD/test/fixt/app-debug-unaligned.apk --------------------------------------------------------------------------------