1.0.8 • Published 9 years ago

apkinfo v1.0.8

Weekly downloads
3
License
ISC
Repository
github
Last release
9 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

9 years ago

1.0.7

9 years ago

1.0.6

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago