Skip to content

Commit

Permalink
Fixed issue with game events when recording in multi-threaded environ…
Browse files Browse the repository at this point in the history
…ment

Removed obsolete code
Added bundleId to init call
  • Loading branch information
TrevenNefta committed Apr 16, 2024
1 parent 2336d46 commit fb49083
Show file tree
Hide file tree
Showing 48 changed files with 2,851 additions and 3,983 deletions.
Binary file not shown.

This file was deleted.

Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ + (GADVersionNumber)adSDKVersion {
}

+ (GADVersionNumber)adapterVersion {
GADVersionNumber version = {1, 0, 3};
GADVersionNumber version = {1, 0, 4};
return version;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<key>CFBundlePackageType</key>
<string>XFWK</string>
<key>Version</key>
<string>3.2.7</string>
<string>3.2.8</string>
<key>XCFrameworkFormatVersion</key>
<string>1.0</string>
</dict>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -454,9 +454,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) void (^ _Nullable OnLog)
@property (nonatomic, copy) void (^ _Nullable IOnReward)(NSString * _Nonnull);
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
- (NSString * _Nullable)GetToolboxUser SWIFT_WARN_UNUSED_RESULT;
- (void)SetToolboxUserWithJson:(NSString * _Nonnull)json;
- (void)SetCustomBatchSize:(NSInteger)newBatchSize;
- (void)RecordWithEvent:(NSString * _Nonnull)event;
- (void)EnableAds:(BOOL)enable;
- (void)EnableBannerWithEnable:(BOOL)enable;
Expand All @@ -476,7 +473,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) void (^ _Nullable OnLog)
- (void)Close;
- (void)CloseWithId:(NSString * _Nonnull)id;
- (void)Mute:(BOOL)mute;
- (NSString * _Nonnull)ShowNuid SWIFT_WARN_UNUSED_RESULT;
- (NSString * _Nonnull)GetNuidWithPresent:(BOOL)present SWIFT_WARN_UNUSED_RESULT;
- (UIView * _Nullable)GetViewForPlacement:(Placement * _Nonnull)placement show:(BOOL)show SWIFT_WARN_UNUSED_RESULT;
@end

Expand Down

0 comments on commit fb49083

Please sign in to comment.