@hap-toolkit/aaptjs
A node wraper for aapt
Last updated 6 years ago by tech_bro_in_vivo .
MIT · Original npm · Tarball · package.json
$ cnpm install @hap-toolkit/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

  • 2.0.0                                ...           latest (6 years ago)

2 Versions

  • 2.0.0                                ...           6 years ago
  • 1.0.0                                ...           6 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 |