Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aloisdeniel/node-manifest-android
Update your Android mobile application manifest (version, bundle idenfifier, ...).
https://github.com/aloisdeniel/node-manifest-android
android manifest tool update versionning
Last synced: about 2 months ago
JSON representation
Update your Android mobile application manifest (version, bundle idenfifier, ...).
- Host: GitHub
- URL: https://github.com/aloisdeniel/node-manifest-android
- Owner: aloisdeniel
- License: mit
- Created: 2017-04-26T17:51:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-27T17:35:49.000Z (over 7 years ago)
- Last Synced: 2024-10-11T22:43:08.920Z (3 months ago)
- Topics: android, manifest, tool, update, versionning
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# manifest-android
Update your Android mobile application manifest (version, bundle idenfifier, ...).
## Install
```sh
$ npm install --save manifest-android
```## Quickstart
```js
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
* [iOS](https://github.com/aloisdeniel/node-manifest-ios)
* [UWP](https://github.com/aloisdeniel/node-manifest-uwp)## Copyright and license
MIT © [Aloïs Deniel](http://aloisdeniel.github.io)