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, ...).
- Host: GitHub
- URL: https://github.com/aloisdeniel/node-manifest-ios
- Owner: aloisdeniel
- License: mit
- Created: 2017-04-25T16:32:36.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-27T17:33:29.000Z (about 9 years ago)
- Last Synced: 2025-09-24T09:48:53.482Z (9 months ago)
- Topics: ios, manifest, plist, tool, update, versioning
- Language: JavaScript
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)