0.1.2 • Published 7 years ago

manifest-ios v0.1.2

Weekly downloads
5
License
MIT
Repository
github
Last release
7 years ago

manifest-ios

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

Install

$ npm install --save manifest-ios

Quickstart

var assert = require('assert');
var path = require('path');

var iOSManifest = require('manifest-ios');

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

Other manifests

Copyright and license

MIT © Aloïs Deniel

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago