Skip to content

Commit

Permalink
Max updates 12.5
Browse files Browse the repository at this point in the history
  • Loading branch information
scottrules44 committed Jun 17, 2024
1 parent ae099cb commit dc19b4d
Show file tree
Hide file tree
Showing 177 changed files with 13,845 additions and 4,204 deletions.
2 changes: 1 addition & 1 deletion plugins/2018.3326/android/corona.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ repositories {
}

dependencies {
implementation 'com.applovin.mediation:fyber-adapter:8.2.5.0'
implementation 'com.applovin.mediation:fyber-adapter:8.2.7.1'
}
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ using UInt = size_t;
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
@import ObjectiveC;
#endif

#endif
Expand All @@ -251,6 +252,26 @@ using UInt = size_t;

#if defined(__OBJC__)

typedef SWIFT_ENUM(NSInteger, DTXLogLevel, open) {
DTXLogLevelOff = 0,
DTXLogLevelFault = 1,
DTXLogLevelError = 2,
DTXLogLevelInfo = 3,
DTXLogLevelDebug = 4,
};


SWIFT_CLASS_NAMED("DTXLogger")
@interface DTXLogger : NSObject
+ (void)setLogLevel:(enum DTXLogLevel)logLevel;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end








Expand Down Expand Up @@ -496,6 +517,7 @@ using UInt = size_t;
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
@import ObjectiveC;
#endif

#endif
Expand All @@ -517,6 +539,26 @@ using UInt = size_t;

#if defined(__OBJC__)

typedef SWIFT_ENUM(NSInteger, DTXLogLevel, open) {
DTXLogLevelOff = 0,
DTXLogLevelFault = 1,
DTXLogLevelError = 2,
DTXLogLevelInfo = 3,
DTXLogLevelDebug = 4,
};


SWIFT_CLASS_NAMED("DTXLogger")
@interface DTXLogger : NSObject
+ (void)setLogLevel:(enum DTXLogLevel)logLevel;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end








Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ FOUNDATION_EXPORT double IASDKCoreVersionNumber;
//! Project version string for IASDKCore.
FOUNDATION_EXPORT const unsigned char IASDKCoreVersionString[];

#import <IASDKCore/DTXLogger.h>

#import <IASDKCore/IAInterfaceAllocBlocker.h>
#import <IASDKCore/IAInterfaceBuilder.h>
#import <IASDKCore/IAInterfaceSingleton.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

typedef enum : NSInteger {
IAVideoTypeUndefined = 0,
IAVideoTypeMRect __attribute__((deprecated)),
IAVideoTypeInterstitial,
IAVideoTypeRewarded,
} IAVideoType;
Expand Down
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit dc19b4d

Please sign in to comment.