aaptjs
TypeScript icon, indicating that this package has built-in type declarations

1.3.2 • Public • Published

aaptjs

A node wraper for aapt

Install

With npm do:

npm install aaptjs --save

Example

Using a callback:

const aaptjs = require('aaptjs');

aaptjs.list('/path/to/your/ExampleApp.apk', (err, data) => {
  if (err) {
    // something went wrong 
  } else {
    console.log(data);
  }
});

Using a promise:

const aaptjs = require('aaptjs');

aaptjs.list('/path/to/your/ExampleApp.apk')
  .then (data => {
    console.log(data)
  })
  .catch (err) {
    // something went wrong 
  }

Readme

Keywords

Package Sidebar

Install

npm i aaptjs

Weekly Downloads

1,913

Version

1.3.2

License

MIT

Unpacked Size

6.59 MB

Total Files

7

Last publish

Collaborators

  • diydyq
  • shenzm
  • tech_bro_in_vivo