summaryrefslogtreecommitdiff
path: root/plugins/uk.co.whiteoctober.cordova.appversion/README.md
diff options
context:
space:
mode:
authorPliablePixels <pliablepixels@gmail.com>2015-07-03 08:31:13 -0400
committerPliablePixels <pliablepixels@gmail.com>2015-07-03 08:31:13 -0400
commite0ba24662b631394b4076ac39fad970447879f8f (patch)
treea376c7822232389cefe6995d9b06e2ccc527f7f6 /plugins/uk.co.whiteoctober.cordova.appversion/README.md
parent1c137f2b75a18dfc3bfd8b729c58e43974c9ead2 (diff)
Added plugin that picks up version from config.xml and displays in app
Diffstat (limited to 'plugins/uk.co.whiteoctober.cordova.appversion/README.md')
-rw-r--r--plugins/uk.co.whiteoctober.cordova.appversion/README.md71
1 files changed, 71 insertions, 0 deletions
diff --git a/plugins/uk.co.whiteoctober.cordova.appversion/README.md b/plugins/uk.co.whiteoctober.cordova.appversion/README.md
new file mode 100644
index 00000000..2afff928
--- /dev/null
+++ b/plugins/uk.co.whiteoctober.cordova.appversion/README.md
@@ -0,0 +1,71 @@
+# Cordova AppVersion plugin
+
+Reads the version of your app from the target build settings.
+
+## Installation
+
+### With cordova-cli
+
+If you are using [cordova-cli](https://github.com/apache/cordova-cli), install
+with:
+
+ cordova plugin add https://github.com/whiteoctober/cordova-plugin-app-version.git
+
+### With plugman
+
+With a plain [plugman](https://github.com/apache/cordova-plugman), you should be
+able to install with something like:
+
+ plugman --platform <ios|android> --project <directory> --plugin https://github.com/whiteoctober/cordova-plugin-app-version.git
+
+### Manually in iOS
+
+TODO: Write these instructions
+
+### Manually in Android
+
+TODO: Write these instructions
+
+## Use from Javascript
+
+If you are using jQuery or AngularJS, promise style is supported. Use something like:
+
+ cordova.getAppVersion.getVersionNumber().then(function (version) {
+ $('.version').text(version);
+ });
+
+If not, pass a callback function:
+
+ cordova.getAppVersion.getVersionNumber(function (version) {
+ alert(version);
+ });
+
+In addition to the version number you can also retrieve other details about your application:
+
+### getAppName
+
+Returns the name of the app. E.g. "My Awesome App"
+
+### getPackageName
+
+Returns the package name of the app - the reversed domain name app identifier like com.example.myawesomeapp
+
+### getVersionCode
+
+Returns the build identifier of the app
+
+### getVersionNumber
+
+Returns the version number of the app
+
+## Credits
+
+Written by [Robert (Jamie) Munro](http://twitter.com/rjmunro) at
+[White October](http://whiteoctober.co.uk/)
+
+Various others have contributed fixes and new features. See the CHANGELOG.md for details.
+
+Original code based on the following Stack Overflow posts:
+
+* [iOS](http://stackoverflow.com/a/14713364/3408)
+* [Android](http://stackoverflow.com/a/3637686/3408)