Skip to content

Commit

Permalink
Merge pull request #13 from UbiqueInnovation/bugfix/objc-references
Browse files Browse the repository at this point in the history
fixes objc references
  • Loading branch information
stmitt authored Oct 10, 2023
2 parents 7d0914c + 1ce9fb7 commit 1295558
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ SNAPSHOT_REPOSITORY_URL=https://oss.sonatype.org/content/repositories/snapshots/

GROUP=ch.ubique.android
POM_ARTIFACT_ID=djinni-support-lib
VERSION_NAME=1.0.3
VERSION_CODE=1020
VERSION_NAME=1.0.4
VERSION_CODE=1040

POM_NAME=djinni-support-lib
POM_PACKAGING=aar
Expand Down
2 changes: 1 addition & 1 deletion support-lib/objc/DJICppWrapperCache+Private.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#import <Foundation/Foundation.h>
#include <memory>

#include "../proxy_cache_interface.hpp"
#include "proxy_cache_interface.hpp"

namespace djinni {

Expand Down
2 changes: 1 addition & 1 deletion support-lib/objc/DJIObjcWrapperCache+Private.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#import <Foundation/Foundation.h>
#include <memory>

#include "../proxy_cache_interface.hpp"
#include "proxy_cache_interface.hpp"

namespace djinni {

Expand Down
2 changes: 1 addition & 1 deletion support-lib/objc/DJIProxyCaches.mm
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

static_assert(__has_feature(objc_arc), "Djinni requires ARC to be enabled for this file");

#include "../proxy_cache_impl.hpp"
#include "proxy_cache_impl.hpp"
#include "DJIObjcWrapperCache+Private.h"
#include "DJICppWrapperCache+Private.h"

Expand Down

0 comments on commit 1295558

Please sign in to comment.