Skip to content

Commit 81dc9d3

Browse files
authored
Fix ArgsRegistry Import on iOS (#161)
1 parent 9b43535 commit 81dc9d3

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
## master
1+
## Unreleased
22

3+
* Fixes ArgsRegistry import on iOS
34
* Fixes a typo in Instabug.setPrimaryColor causing the API not to work
45

56
## v11.0.0 (2022-07-07)

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)