Socket
Socket
Sign inDemoInstall

manifest-android

Package Overview
Dependencies
3
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    manifest-android

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


Version published
Weekly downloads
434
decreased by-17.49%
Maintainers
1
Install size
110 kB
Created
Weekly downloads
 

Readme

Source

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

  • iOS
  • UWP

MIT © Aloïs Deniel

Keywords

FAQs

Last updated on 27 Apr 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc