1.0.8 • Published 10 years ago

apkinfo v1.0.8

Weekly downloads
3
License
ISC
Repository
github
Last release
10 years ago

node-apk-info

get basic info of an apk file by nodejs. only support Mac OS X and linux

installation

npm install apkinfo

useage

var apkinfo = require('apkinfo');
apkinfo.get('/absolute/path/to/the/file.apk', function(error, info) {
    if (error) {
        return console.log(error);
    }
    console.log(info);
    //e.g.
    /*
        {
            appName: 'My app',
            packageName: 'com.google.android',
            versionName: '1.1.0',
            versionCode: '1'
        } 
    */
});

for 64-bit Linux

you must install some other stuff first on 64-bit linux.

please check http://stackoverflow.com/questions/2710499/android-sdk-on-a-64-bit-linux-machine

contact me

csser.me

1.0.8

10 years ago

1.0.7

10 years ago

1.0.6

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago