1.0.0 • Published 7 years ago

appc-aar-transform v1.0.0

Weekly downloads
5
License
SEE LICENSE IN LI...
Repository
github
Last release
7 years ago

AAR Transform

Extract and copy the contents from Android Archive (.aar) files.

Installation

npm install appc-aar-transform

Usage

This module is used to extract the contents of an Android Archive (.aar) to a desired location and optionally copy any bundled assets and libraries to a new location.

var AarTransformer = require('appc-aar-transform');
var transformer = new AarTransformer(logger) // logger is optional, can be any bunyan based logger
transformer.transform(options, function(err, result) {
  console.log(result.packageName); // package key from AndroidManifest.xml
  console.log(result.jars); // array of JAR files found in the Android Archive
});

Options

OptionTypeDescription
aarPathAndFilenameStringThe path and filename pointing to the .aar file to process.
outputPathStringBase directory where the .aar file will be extracted to. The actual content will be extracted into a sub-directory (basename of the AAR file).
assetsDestinationPathString(Optional) Copy all assets contained in the .aar to this path.
libraryDestinationPathString(Optional) Copy all libraries (.jar) contained in the .aar to this path.
sharedLibraryDestinationPathString(Optional) Copy all shared libraries (.so) contained in the .aar to this path.

Contributing

This is an open source project. Please consider forking this repo to improve, enhance or fix issues. If you feel like the community will benefit from your fork, please open a pull request.

To protect the interests of the contributors, Appcelerator, customers and end users we require contributors to sign a Contributors License Agreement (CLA) before we pull the changes into the main repository. Our CLA is simple and straightforward - it requires that the contributions you make to any Appcelerator open source project are properly licensed and that you have the legal authority to make those changes. This helps us significantly reduce future legal risk for everyone involved. It is easy, helps everyone, takes only a few minutes, and only needs to be completed once.

You can digitally sign the CLA online. Please indicate your e-mail address in your first pull request so that we can make sure that will locate your CLA. Once you've submitted it, you no longer need to send one for subsequent submissions.

License

This project is open source and provided under the Apache Public License (version 2).

Copyright (c) 2017, Appcelerator Inc. All Rights Reserved.