Socket
Book a DemoInstallSign in
Socket

appc-aar-transform

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appc-aar-transform

Transforms Android Archive files

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

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.

Keywords

appcelerator

FAQs

Package last updated on 03 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts