@sentiance-react-native/core 6.18.1-rc.1 → 6.18.1-rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/RNSentianceCore.podspec
CHANGED
|
@@ -5,7 +5,7 @@ sentiance_sdk_env_var_version = ENV["SENTIANCE_RN_IOS_SDK_VERSION"]
|
|
|
5
5
|
|
|
6
6
|
Pod::Spec.new do |s|
|
|
7
7
|
s.name = "RNSentianceCore"
|
|
8
|
-
s.version = "6.18.1-rc.
|
|
8
|
+
s.version = "6.18.1-rc.3" # No need to maintain this version, as CI updates it during release builds.
|
|
9
9
|
s.summary = "RNSentianceCore"
|
|
10
10
|
s.description = <<-DESC
|
|
11
11
|
RNSentianceCore
|
package/ios/RNSentianceCore.m
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
#import "RNSentianceCore+Converter.h"
|
|
7
7
|
#import "RNSentianceErrorCodes.h"
|
|
8
8
|
#import "RNSentianceSubscriptionsManager.h"
|
|
9
|
-
#import
|
|
9
|
+
#import <RNSentianceCore/RNSentianceCore-Swift.h>
|
|
10
10
|
|
|
11
11
|
#define REJECT_IF_SDK_NOT_INITIALIZED(reject) if ([self isSdkNotInitialized]) { \
|
|
12
12
|
reject(ESDKNotInitialized, @"Sdk not initialized", nil); \
|
|
@@ -260,7 +260,7 @@
|
|
|
260
260
|
isa = XCBuildConfiguration;
|
|
261
261
|
buildSettings = {
|
|
262
262
|
CLANG_ENABLE_MODULES = YES;
|
|
263
|
-
DEFINES_MODULE =
|
|
263
|
+
DEFINES_MODULE = YES;
|
|
264
264
|
HEADER_SEARCH_PATHS = (
|
|
265
265
|
"$(inherited)",
|
|
266
266
|
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
isa = XCBuildConfiguration;
|
|
285
285
|
buildSettings = {
|
|
286
286
|
CLANG_ENABLE_MODULES = YES;
|
|
287
|
-
DEFINES_MODULE =
|
|
287
|
+
DEFINES_MODULE = YES;
|
|
288
288
|
HEADER_SEARCH_PATHS = (
|
|
289
289
|
"$(inherited)",
|
|
290
290
|
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
|