Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-appversion",
"version": "1.0.0",
"version": "1.1.1",
"description": "Access the native app version & build number in JavaScript",
"cordova": {
"id": "cordova-plugin-appversion",
Expand All @@ -11,7 +11,7 @@
},
"repository": {
"type": "git",
"url": "https://github.com/Rareloop/cordova-plugin-app-version.git"
"url": "https://github.com/davipcruz/cordova-plugin-app-version.git"
},
"keywords": [
"cordova",
Expand All @@ -23,7 +23,7 @@
"author": "Rareloop (http://rareloop.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rareloop/cordova-plugin-app-version/issues"
"url": "https://github.com/davidpcruz/cordova-plugin-app-version/issues"
},
"homepage": "https://github.com/Rareloop/cordova-plugin-app-version"
"homepage": "https://github.com/davidpcruz/cordova-plugin-app-version"
}
4 changes: 2 additions & 2 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-appversion" version="1.0.0">
id="cordova-plugin-appversion" version="1.1.1">
<name>App Version</name>
<description>Expose the native app version to JavaScript</description>
<license>MIT</license>
Expand All @@ -26,4 +26,4 @@
</config-file>
<source-file src="src/android/RareloopAppVersion.java" target-dir="src/com/rareloop/cordova/appversion" />
</platform>
</plugin>
</plugin>
2 changes: 1 addition & 1 deletion src/ios/RareloopAppVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#import <Cordova/CDV.h>

@interface RareloopAppVersion : CDVPlugin <UIWebViewDelegate>
@interface RareloopAppVersion : CDVPlugin
{
}

Expand Down