diff options
| author | PliablePixels <pliablepixels@gmail.com> | 2015-07-03 08:32:13 -0400 |
|---|---|---|
| committer | PliablePixels <pliablepixels@gmail.com> | 2015-07-03 08:32:13 -0400 |
| commit | 5d11ab12195dcc70192e706fbbfd106cd7d7f24d (patch) | |
| tree | 0cdee3b274b030260c3a9be98d4d219c28603a32 /plugins | |
| parent | 15f501727a91bc4fdf2c155d572cf00c11436eef (diff) | |
fixed a nasty scaling bug -- size was getting corrupted because I was adding strings
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/android.json | 7 | ||||
| -rw-r--r-- | plugins/fetch.json | 9 | ||||
| -rw-r--r-- | plugins/ios.json | 7 |
3 files changed, 23 insertions, 0 deletions
diff --git a/plugins/android.json b/plugins/android.json index f7dfb126..73a49662 100644 --- a/plugins/android.json +++ b/plugins/android.json @@ -47,6 +47,10 @@ { "xml": "<feature name=\"EmailComposer\"><param name=\"android-package\" value=\"de.appplant.cordova.emailcomposer.EmailComposer\" /></feature>", "count": 1 + }, + { + "xml": "<feature name=\"AppVersion\"><param name=\"android-package\" value=\"uk.co.whiteoctober.cordova.AppVersion\" /></feature>", + "count": 1 } ] } @@ -96,6 +100,9 @@ }, "de.appplant.cordova.plugin.email-composer": { "PACKAGE_NAME": "com.pliablepixels.zmninja" + }, + "uk.co.whiteoctober.cordova.appversion": { + "PACKAGE_NAME": "com.pliablepixels.zmninja" } }, "dependent_plugins": {} diff --git a/plugins/fetch.json b/plugins/fetch.json index c8047072..ef371f01 100644 --- a/plugins/fetch.json +++ b/plugins/fetch.json @@ -92,5 +92,14 @@ }, "is_top_level": true, "variables": {} + }, + "uk.co.whiteoctober.cordova.appversion": { + "source": { + "type": "git", + "url": "https://github.com/whiteoctober/cordova-plugin-app-version.git", + "subdir": "." + }, + "is_top_level": true, + "variables": {} } } diff --git a/plugins/ios.json b/plugins/ios.json index 4cb3e0ad..54dfadfc 100644 --- a/plugins/ios.json +++ b/plugins/ios.json @@ -51,6 +51,10 @@ { "xml": "<feature name=\"EmailComposer\"><param name=\"ios-package\" value=\"APPEmailComposer\" /></feature>", "count": 1 + }, + { + "xml": "<feature name=\"AppVersion\"><param name=\"ios-package\" value=\"AppVersion\" /></feature>", + "count": 1 } ] } @@ -118,6 +122,9 @@ }, "de.appplant.cordova.plugin.email-composer": { "PACKAGE_NAME": "com.pliablepixels.zmninja" + }, + "uk.co.whiteoctober.cordova.appversion": { + "PACKAGE_NAME": "com.pliablepixels.zmninja" } }, "dependent_plugins": {} |
