Skip to content

Commit 5cb8dae

Browse files
update version 2023.09
1 parent 8168030 commit 5cb8dae

File tree

476 files changed

+20311
-20930
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

476 files changed

+20311
-20930
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions

InlineCreatorSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Pod::Spec.new do |s|
22

33
s.name = "InlineCreatorSDK"
44

5-
s.version = "2023.08"
5+
s.version = "2023.09"
66

77
s.summary = "Simple SDK for developers to integrate with their app and provide in-app guidance for their users."
88

InlineCreatorSDK.xcframework/Info.plist

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<key>AvailableLibraries</key>
66
<array>
77
<dict>
8+
<key>BinaryPath</key>
9+
<string>InlineCreatorSDK.framework/InlineCreatorSDK</string>
810
<key>LibraryIdentifier</key>
911
<string>ios-arm64_x86_64-simulator</string>
1012
<key>LibraryPath</key>
@@ -20,6 +22,8 @@
2022
<string>simulator</string>
2123
</dict>
2224
<dict>
25+
<key>BinaryPath</key>
26+
<string>InlineCreatorSDK.framework/InlineCreatorSDK</string>
2327
<key>LibraryIdentifier</key>
2428
<string>ios-arm64</string>
2529
<key>LibraryPath</key>

InlineCreatorSDK.xcframework/ios-arm64/InlineCreatorSDK.framework/Headers/InlineCreatorSDK-Swift.h

Lines changed: 30 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#if 0
22
#elif defined(__arm64__) && __arm64__
3-
// Generated by Apple Swift version 5.8 (swiftlang-5.8.0.124.2 clang-1403.0.22.11.100)
3+
// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
44
#ifndef INLINECREATORSDK_SWIFT_H
55
#define INLINECREATORSDK_SWIFT_H
66
#pragma clang diagnostic push
@@ -42,12 +42,18 @@
4242
#include <string.h>
4343
#endif
4444
#if defined(__cplusplus)
45-
#if __has_include(<ptrauth.h>)
45+
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
4646
# include <ptrauth.h>
4747
#else
48+
#pragma clang diagnostic push
49+
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
4850
# ifndef __ptrauth_swift_value_witness_function_pointer
4951
# define __ptrauth_swift_value_witness_function_pointer(x)
5052
# endif
53+
# ifndef __ptrauth_swift_class_method_pointer
54+
# define __ptrauth_swift_class_method_pointer(x)
55+
# endif
56+
#pragma clang diagnostic pop
5157
#endif
5258
#endif
5359

@@ -246,6 +252,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
246252
#else
247253
# define SWIFT_NOEXCEPT
248254
#endif
255+
#if !defined(SWIFT_C_INLINE_THUNK)
256+
# if __has_attribute(always_inline)
257+
# if __has_attribute(nodebug)
258+
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
259+
# else
260+
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
261+
# endif
262+
# else
263+
# define SWIFT_C_INLINE_THUNK inline
264+
# endif
265+
#endif
249266
#if defined(_WIN32)
250267
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
251268
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
@@ -260,7 +277,6 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
260277
#if __has_warning("-Watimport-in-framework-header")
261278
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
262279
#endif
263-
@import CoreFoundation;
264280
@import Foundation;
265281
@import ObjectiveC;
266282
#endif
@@ -283,20 +299,21 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
283299
#endif
284300

285301
#if defined(__OBJC__)
286-
@class UIImage;
302+
303+
SWIFT_CLASS("_TtC16InlineCreatorSDK10ICPSDKBase")
304+
@interface ICPSDKBase : NSObject
305+
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
306+
@end
307+
287308
@class NSString;
288309

289310
SWIFT_CLASS("_TtC16InlineCreatorSDK10CreatorSDK")
290-
@interface CreatorSDK : NSObject
311+
@interface CreatorSDK : ICPSDKBase
291312
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) CreatorSDK * _Null_unspecified shared;)
292313
+ (CreatorSDK * _Null_unspecified)shared SWIFT_WARN_UNUSED_RESULT;
293314
+ (void)setShared:(CreatorSDK * _Null_unspecified)value;
294-
@property (nonatomic, strong) UIImage * _Nullable launchIcon;
295-
- (void)hideCreatorSDKLauncherIconWithHide:(BOOL)hide withAnimation:(BOOL)animated;
296315
+ (void)deInitializeSDK;
297316
+ (void)initializeWithOrgnizationKey:(NSString * _Nonnull)orgnizationKey secretKey:(NSString * _Nonnull)secretKey dict:(NSDictionary<NSString *, NSString *> * _Nullable)dict;
298-
+ (void)setSDKLaunchIconWithIcon:(UIImage * _Nullable)icon;
299-
+ (void)setSDKLaunchPositionWithPosition:(CGPoint)position;
300317
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
301318
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
302319
@end
@@ -308,17 +325,14 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) CreatorSDK * _Null_uns
308325

309326

310327

328+
311329
SWIFT_CLASS("_TtC16InlineCreatorSDK9PlayerSDK")
312-
@interface PlayerSDK : NSObject
330+
@interface PlayerSDK : ICPSDKBase
313331
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) PlayerSDK * _Nonnull shared;)
314332
+ (PlayerSDK * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
315333
+ (void)setShared:(PlayerSDK * _Nonnull)value;
316-
@property (nonatomic, strong) UIImage * _Nullable launchIcon;
317-
- (void)hidePlayerSDKLauncherIconWithHide:(BOOL)hide withAnimation:(BOOL)animated;
318334
+ (void)deInitializeSDK;
319335
+ (void)initializeWithOrgnizationKey:(NSString * _Nonnull)orgnizationKey secretKey:(NSString * _Nonnull)secretKey dict:(NSDictionary<NSString *, NSString *> * _Nullable)dict;
320-
+ (void)setSDKLaunchIconWithIcon:(UIImage * _Nullable)icon;
321-
+ (void)setSDKLaunchPositionWithPosition:(CGPoint)position;
322336
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
323337
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
324338
@end
@@ -353,12 +367,12 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) PlayerSDK * _Nonnull s
353367

354368

355369

356-
#endif
357-
#if defined(__cplusplus)
358370
#endif
359371
#if __has_attribute(external_source_symbol)
360372
# pragma clang attribute pop
361373
#endif
374+
#if defined(__cplusplus)
375+
#endif
362376
#pragma clang diagnostic pop
363377
#endif
364378

Binary file not shown.

0 commit comments

Comments
 (0)