eventOneHQ / bundletool

An unofficial wrapper around bundletool to be able to use it in code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bundletool

A very simplistic wrapper around bundletool.

Requirements

You must have java JDK 8+ on your machine NodeJS 12.18.0 (lower might versions work but unsupported)

Installation

npm install bundletool or yarn add bundletool

Usage

import bundletool from "bundletool" // or the require equivalent

await bundletool([command], [args]); // async / await

bundletool([command], [args])
  .then(response => /* do something */);
  .catch(err => /* handle err */ )

API

async bundletool(command, [args])

Parameter Description Required Type
command Any command available on bundletool true string
args all arguments required for the previous command false string[]

Check the docs for more information on the commands and args available

Contribution

Always welcome. Check the guidelines and the TODO

Legal notice

By using this module you agree to this module's license and google's terms and conditions, which you can find in NOTICE.txt under the platform tools installation

Buy Me A Coffee

About

An unofficial wrapper around bundletool to be able to use it in code

License:GNU Affero General Public License v3.0


Languages

Language:TypeScript 100.0%