Skip to content

Commit

Permalink
Updates Cordova plugin to use Wikitude SDK 9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pnagele committed Oct 22, 2020
1 parent 5e11231 commit 45187b7
Show file tree
Hide file tree
Showing 73 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "com.wikitude.phonegap.wikitudeplugin",
"version": "9.3.1",
"version": "9.4.0",
"description": "Augmented Reality Wikitude SDK Plugin \n The Wikitude Cordova Plugin enables developers to embed an augmented reality view into their Cordova project. You can create a fully featured app with advanced augmented reality features, including image recognition, object recognition purely using HTML, CSS and JavaScript.\n ",
"cordova": {
"id": "",
Expand Down
2 changes: 1 addition & 1 deletion 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="9.3.1">
version="9.4.0">

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

Expand Down
Binary file modified src/android/wikitudesdk.aar
Binary file not shown.
Empty file modified src/ios/WikitudeSDK.framework/Headers/ArchitectPlugin.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/CameraFocusMode.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/CameraFrame.hpp 100644 → 100755
Empty file.
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/CameraFramePlane.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/CameraParameters.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/CameraPosition.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/ColorSpace.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/CompilerAttributes.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/DepthDataFormat.hpp 100644 → 100755
Empty file.
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/Error.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/ErrorHandling.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/Geometry.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/ImageTarget.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/ImageTargetType.hpp 100644 → 100755
Empty file.
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/InitializationPose.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/InstantTarget.hpp 100644 → 100755
Empty file.
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/InstantTrackingState.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/InterfaceOrientation.hpp 100644 → 100755
Empty file.
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/ManagedCameraFrame.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/MetalRenderingObjects.h 100644 → 100755
Empty file.
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/ObjectTarget.hpp 100644 → 100755
Empty file.
Empty file.
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/Plane.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/PlaneType.hpp 100644 → 100755
Empty file.
Empty file modified src/ios/WikitudeSDK.framework/Headers/PlatformCameraHandler.hpp 100644 → 100755
Empty file.
Empty file.
Empty file.
8 changes: 4 additions & 4 deletions src/ios/WikitudeSDK.framework/Headers/Plugin.hpp 100644 → 100755
Expand Up @@ -26,7 +26,7 @@
#include "ImageTrackingPluginModule.hpp"
#include "ObjectTrackingPluginModule.hpp"
#include "InstantTrackingPluginModule.hpp"
#if defined(__APPLE__) || defined(ANDROID)
#if defined(__APPLE__) || defined(ANDROID) || defined(__linux__)
#include "OpenGLESRenderingPluginModule.hpp"
#endif
#ifdef __APPLE__
Expand Down Expand Up @@ -147,7 +147,7 @@ namespace wikitude::sdk {
CameraFrameInputPluginModule* getCameraFrameInputPluginModule() const;

DeviceMotionInputPluginModule* getDeviceIMUInpputPluginModule() const;
#if defined(__APPLE__) || defined(ANDROID)
#if defined(__APPLE__) || defined(ANDROID) || defined(__linux__)
OpenGLESRenderingPluginModule* getOpenGLESRenderingPluginModule() const;
#endif
#ifdef __APPLE__
Expand All @@ -164,7 +164,7 @@ namespace wikitude::sdk {

void setCameraFrameInputPluginModule(std::unique_ptr<CameraFrameInputPluginModule> cameraFrameInputPluginModule_);
void setDeviceMotionInputPluginModule(std::unique_ptr<DeviceMotionInputPluginModule> deviceMotionInputPluginModule_);
#if defined(__APPLE__) || defined(ANDROID)
#if defined(__APPLE__) || defined(ANDROID) || defined(__linux__)
void setOpenGLESRenderingPluginModule(std::unique_ptr<OpenGLESRenderingPluginModule> openGLESRenderingPluginModule_);
#endif
#ifdef __APPLE__
Expand All @@ -191,7 +191,7 @@ namespace wikitude::sdk {
std::unique_ptr<CameraFrameInputPluginModule> _cameraFrameInputModule;

std::unique_ptr<DeviceMotionInputPluginModule> _deviceMotionInputPluginModule;
#if defined(__APPLE__) || defined(ANDROID)
#if defined(__APPLE__) || defined(ANDROID) || defined(__linux__)
std::unique_ptr<OpenGLESRenderingPluginModule> _openGlesRenderingModule;
#endif
#ifdef __APPLE__
Expand Down

0 comments on commit 45187b7

Please sign in to comment.