Skip to content
forked from xdevl/node-apk

A library to parse Android application's manifest and signature

License

Notifications You must be signed in to change notification settings

UnightSun/node-apk

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Node APK

A library to parse Android application's manifest and signature

Installation

This library is meant to work with Node JS 4 or later. You can install it using npm:

npm install node-apk

Usage

Import the Apk class and instanciate it passing your APK's file path

import {Apk} from "node-apk";
const apk = new Apk("yourapplication.apk");

Application manifest details can be accessed using:

apk.getManifestInfo()
    .then((manifest) => console.log(JSON.stringify(manifest, null, 4)));

Signature details can be retrieved with:

apk.getCertificateInfo()
    .then((certInfo) => console.log(JSON.stringify(certInfo, null, 4)))

Once you are done, don't forget to release you Apk object:

apk.close();

License

This software is licensed under the MIT license

Copyright © 2019 All rights reserved. XdevL

About

A library to parse Android application's manifest and signature

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 100.0%