aaptjs
A node wraper for aapt
Last updated 4 years ago by shenzm .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install aaptjs 
SYNC missed versions from official npm registry.

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 
  }

Current Tags

  • 1.3.2                                ...           latest (4 years ago)

10 Versions

  • 1.3.2                                ...           4 years ago
  • 1.3.1                                ...           7 years ago
  • 1.3.0                                ...           8 years ago
  • 1.2.2                                ...           8 years ago
  • 1.2.1                                ...           8 years ago
  • 1.2.0                                ...           8 years ago
  • 1.1.2                                ...           8 years ago
  • 1.1.1                                ...           8 years ago
  • 1.1.0                                ...           8 years ago
  • 1.0.0                                ...           8 years ago
Downloads
Today 0
This Week 0
This Month 1
Last Day 0
Last Week 1
Last Month 0
Dependencies (1)
Dev Dependencies (0)
None
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |