Skip to content

Commit

Permalink
Merge pull request #48 from AndreasSchacherbauerWikitude/master
Browse files Browse the repository at this point in the history
Updates the Wikitude PhoneGap Plugin version 4.0.
  • Loading branch information
AndreasSchacherbauerWikitude committed Jul 29, 2014
2 parents 1bd9bc7 + eaa5e81 commit 699a81f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions plugin.xml
Expand Up @@ -2,7 +2,7 @@
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.wikitude.phonegap.WikitudePlugin"
version="3.3.1">
version="4.0.0">

<name>Augmented Reality - Wikitude SDK Plugin</name>

Expand Down Expand Up @@ -104,6 +104,7 @@


<!-- Additional WikitudePlugin libraries and frameworks -->
<framework src="Accelerate.framework" />
<framework src="AssetsLibrary.framework" />
<framework src="AVFoundation.framework" />
<framework src="CFNetwork.framework" />
Expand Down Expand Up @@ -137,7 +138,7 @@
<info>
Have fun using world's first AR plugin for PhoneGap. Visit http://developer.wikitude.com/documentation/phonegap for technical support.

Ensure that your SDK key matches your bundle identifier (e.g. "com.yourapp.id" ). This will remove the watermark and intro animation. For more information the online store at http://www.wikitude.com/store
Make sure that you enter your Wikitude SDK license key in `WikitudePlugin.js` line 12. If you havent bought a license please visit http://www.wikitude.com/store.

If you want to contribute to the open source project, please visit us at github, http://github.com/Wikitude
</info>
Expand Down
Binary file modified src/android/libs/wikitudesdk.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion src/ios/WTWikitudePlugin.m
Expand Up @@ -210,7 +210,9 @@ - (void)close:(CDVInvokedUrlCommand *)command
}


[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
if (command) {
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}
}

- (void)show:(CDVInvokedUrlCommand *)command
Expand Down
Binary file modified src/ios/libWikitudeSDK.a
Binary file not shown.
2 changes: 1 addition & 1 deletion www/WikitudePlugin.js
@@ -1,6 +1,6 @@

/**
* Release date: 10.03.14
* Release date: 29.07.14
*/

var WikitudePlugin = function() {
Expand Down

0 comments on commit 699a81f

Please sign in to comment.