Skip to content

Update your Android mobile application manifest (version, bundle idenfifier, ...).

License

Notifications You must be signed in to change notification settings

aloisdeniel/node-manifest-android

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

manifest-android

Update your Android mobile application manifest (version, bundle idenfifier, ...).

Install

$ npm install --save manifest-android

Quickstart

var path = require('path');
var AndroidManifest = require('manifest-android');

var android = new AndroidManifest();
android.load({ file: path.join(__dirname, "AndroidManifest.xml") }, function(err){
    android.version = "2.5.6.7";
    android.bundleIdentifier = "com.test.sample";
    android.displayName = "Sample";
    android.save({ file: path.join(__dirname, "AndroidManifest.Updated.xml") }, function(err) {
        console.log("DONE");
    })
})

Other manifests

Copyright and license

MIT © Aloïs Deniel

About

Update your Android mobile application manifest (version, bundle idenfifier, ...).

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published