All Projects → gligoran → cordova-set-version

gligoran / cordova-set-version

Licence: ISC license
CLI and JavaScript API for setting the version in Apache Cordova config.xml

Programming Languages

javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to cordova-set-version

ionic4-image-crop-upload
Ionic 4, Angular 7 and Cordova Crop and Upload Image
Stars: ✭ 16 (-15.79%)
Mutual labels:  cordova, ionic
ionic4-boilerplate
🚀 boilerplate for ionic4 with CI based on travis and fastlane. doc and example are provided
Stars: ✭ 25 (+31.58%)
Mutual labels:  cordova, ionic
cordova-plugin-exoplayer
Media player plugin for Cordova that uses Google's ExoPlayer
Stars: ✭ 48 (+152.63%)
Mutual labels:  cordova, ionic
capacitor-rate-app
Let users rate your app using native review app dialog for both Android and iOS.
Stars: ✭ 88 (+363.16%)
Mutual labels:  cordova, ionic
mobile-messaging-cordova-plugin
Mobile Messaging SDK plugin for Cordova projects
Stars: ✭ 19 (+0%)
Mutual labels:  cordova, ionic
cordova-plugin-android-window-background
Simple Cordova plugin to set Android window background on start-up 🎨 🍭
Stars: ✭ 15 (-21.05%)
Mutual labels:  cordova, ionic
ionic3-angular4-sample-app
Sample app of Ionic 3 and Angular 4
Stars: ✭ 35 (+84.21%)
Mutual labels:  cordova, ionic
Cordova Ionic Phonegap Branch Deep Linking Attribution
The Branch Cordova Ionic Phonegap SDK for deep linking and attribution. Branch helps mobile apps grow with deep links / deeplinks that power paid acquisition and re-engagement campaigns, referral programs, content sharing, deep linked emails, smart banners, custom user onboarding, and more.
Stars: ✭ 228 (+1100%)
Mutual labels:  cordova, ionic
angular-cordova
Angular wrapper for Cordova
Stars: ✭ 21 (+10.53%)
Mutual labels:  cordova, ionic
ionic-hockeyapp
Need HockeyApp in your Ionic application, add this package!
Stars: ✭ 19 (+0%)
Mutual labels:  cordova, ionic
haoshiyou-client
Source code for haoshiyou clients (Hybrid HTML5 App)
Stars: ✭ 14 (-26.32%)
Mutual labels:  cordova, ionic
ionic-resource-generator
Painless, Offline First, No Dependency, Ionic resources generator
Stars: ✭ 31 (+63.16%)
Mutual labels:  cordova, ionic
Ews Javascript Api
EWS API for TypeScript/JavaScript - ported from OfficeDev/ews-managed-api - node, cordova, meteor, Ionic, Electron, Outlook Add-Ins
Stars: ✭ 241 (+1168.42%)
Mutual labels:  cordova, ionic
Dianoia-app
Mobile (Ionic 3 - Angular 4) app about non-pharmaceutical activities and information for people with dementia.
Stars: ✭ 13 (-31.58%)
Mutual labels:  cordova, ionic
Cordova Plugin Fingerprint Aio
👆 📱 Cordova Plugin for fingerprint sensors (and FaceID) with Android and iOS support
Stars: ✭ 236 (+1142.11%)
Mutual labels:  cordova, ionic
ionic4-angular7-example
Ionic 4, Angular 7 and Cordova Tutorial: Build CRUD Mobile Apps
Stars: ✭ 57 (+200%)
Mutual labels:  cordova, ionic
Wooionic3
An eCommerce App for WooCommerce stores using Ionic 3.
Stars: ✭ 208 (+994.74%)
Mutual labels:  cordova, ionic
Onesignal Cordova Sdk
OneSignal is a free push notification service for mobile apps. This plugin makes it easy to integrate your Ionic, PhoneGap CLI, PhoneGap Build, Cordova, or Sencha Touch app with OneSignal. Supports Android, iOS, and Amazon's Fire OS platforms. https://onesignal.com
Stars: ✭ 214 (+1026.32%)
Mutual labels:  cordova, ionic
cordova-plugin-amap
Amap Maps plugin for Cordova
Stars: ✭ 51 (+168.42%)
Mutual labels:  cordova, ionic
ellenorzo
Arisztokréta: Nem hivatalos KRÉTA-kompatibilis ellenőrző alkalmazás
Stars: ✭ 17 (-10.53%)
Mutual labels:  cordova, ionic

cordova-set-version

NPM

ISC License npm version npm downloads build codecov known vulnerabilities semantic-release

Features

  • Writes version and buildNumber to Cordova config.xml
  • Can read version from local package.json
  • Has CLI

Install

$ npm install cordova-set-version

Usage

const cordovaSetVersion = require('cordova-set-version');

cordovaSetVersion(); // reads version from package.json
cordovaSetVersion('2.4.9');
cordovaSetVersion('./config.alt.xml', '2.4.9');
cordovaSetVersion('./config.alt.xml', 86);
cordovaSetVersion('./config.alt.xml', '2.4.9', 86)
    .catch(error => { ... });

API

cordovaSetVersion([configPath], [version], [buildNumber]): Promise

  • configPath (string) - path to your config.xml
  • version (string) - version to be written
  • buildNumber (number) - build number to be written

CLI

cordova-set-version [-v|--version <version>] [-b|--build-number <build-number>] [config.xml]

Options:

  • -v/--version - version to set
  • -b/--build-number - build number to set
  • --help - display help

Examples

$ cordova-set-version
$ cordova-set-version -v 2.4.9
$ cordova-set-version -b 86
$ cordova-set-version -v 2.4.9 -b 86
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].