An open API service indexing awesome lists of open source software.

https://github.com/aloisdeniel/node-manifest-ios

Update your iOS mobile application manifest (Version, Bundle idenfifier, ...).
https://github.com/aloisdeniel/node-manifest-ios

ios manifest plist tool update versioning

Last synced: 3 months ago
JSON representation

Update your iOS mobile application manifest (Version, Bundle idenfifier, ...).

Awesome Lists containing this project

README

          

# manifest-ios

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

## Install

```sh
$ npm install --save manifest-ios
```

## Quickstart

```js
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

* [UWP](https://github.com/aloisdeniel/node-manifest-uwp)
* [Android](https://github.com/aloisdeniel/node-manifest-android)

## Copyright and license

MIT © [Aloïs Deniel](http://aloisdeniel.github.io)