Skip to content

Commit 2a252b8

Browse files
committed
Fix ArgsRegistry Import on iOS
1 parent 9e544d2 commit 2a252b8

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Unreleased
2+
3+
* Fix ArgsRegistry import on iOS.
4+
15
## v11.0.0 (2022-07-07)
26

37
* Bumps Instabug native SDKs to v11

example/package-lock.json

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@
9999
<header-file src="src/ios/IBGPlugin.h" />
100100
<source-file src="src/ios/IBGPlugin.m" />
101101

102-
<header-file src="src//ios/util/ArgsRegistry.h" target-dir="util" />
103-
<source-file src="src/ios/util/ArgsRegistry.m" target-dir="util" />
102+
<header-file src="src//ios/util/ArgsRegistry.h" />
103+
<source-file src="src/ios/util/ArgsRegistry.m" />
104104
</platform>
105105

106106
</plugin>

src/ios/IBGPlugin.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#import <Cordova/CDVPlugin.h>
2-
#import "util/ArgsRegistry.h"
2+
#import "ArgsRegistry.h"
33

44
@interface IBGPlugin : CDVPlugin
55

0 commit comments

Comments
 (0)