diff --git a/plugins/2018.3313/android/corona.gradle b/plugins/2018.3313/android/corona.gradle index 77843a2..86b84c4 100644 --- a/plugins/2018.3313/android/corona.gradle +++ b/plugins/2018.3313/android/corona.gradle @@ -1,12 +1,11 @@ +android.defaultConfig { + minSdkVersion Math.max(minSdkVersion?.apiLevel ?: 15, 16) +} +ext["minSdkVersion"] = Math.max(ext.find("minSdkVersion")?:15, 19) repositories { mavenCentral() + maven { url 'https://cboost.jfrog.io/artifactory/chartboost-ads/' } } dependencies { - implementation 'com.chartboost:chartboost-sdk:8.3.0' -} -android { - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } -} + implementation 'com.chartboost:chartboost-sdk:9.7.0' +} \ No newline at end of file diff --git a/plugins/2018.3313/android/plugin.chartboost.jar b/plugins/2018.3313/android/plugin.chartboost.jar index 13c996b..edcc4ac 100644 Binary files a/plugins/2018.3313/android/plugin.chartboost.jar and b/plugins/2018.3313/android/plugin.chartboost.jar differ diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Chartboost b/plugins/2018.3313/iphone-sim/Chartboost.framework/Chartboost deleted file mode 120000 index 8e4c39e..0000000 --- a/plugins/2018.3313/iphone-sim/Chartboost.framework/Chartboost +++ /dev/null @@ -1 +0,0 @@ -./Versions/A/Chartboost \ No newline at end of file diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Headers b/plugins/2018.3313/iphone-sim/Chartboost.framework/Headers deleted file mode 120000 index b0cc393..0000000 --- a/plugins/2018.3313/iphone-sim/Chartboost.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -./Versions/A/Headers \ No newline at end of file diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Chartboost b/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Chartboost deleted file mode 100644 index 2a785ee..0000000 Binary files a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Chartboost and /dev/null differ diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CBAnalytics.h b/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CBAnalytics.h deleted file mode 100644 index f84114c..0000000 --- a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CBAnalytics.h +++ /dev/null @@ -1,157 +0,0 @@ -// -// CBAnalytics.h -// Chartboost -// -// Copyright 2018 Chartboost. All rights reserved. -// -// - -#import -#import - -/*! - @typedef NS_ENUM (NSUInteger, CBLevelType) - - @abstract - Used with trackLevelInfo calls to describe meta information about the level value as it - pertains to the game's context. - */ -typedef NS_ENUM(NSUInteger, CBLevelType) { - /*! Highest level reached */ - HIGHEST_LEVEL_REACHED = 1, - /*! Current area level reached */ - CURRENT_AREA = 2, - /*! Current character level reached */ - CHARACTER_LEVEL = 3, - /*! Other sequential level reached */ - OTHER_SEQUENTIAL = 4, - /*! Current non sequential level reached */ - OTHER_NONSEQUENTIAL = 5 -}; - -/*! - @class ChartboostAnalytics - - @abstract - Provide methods to track various events for improved targeting. - - @discussion For more information on integrating and using the Chartboost SDK - please visit our help site documentation at https://help.chartboost.com - */ -@interface CBAnalytics : NSObject - -/*! - @abstract - Track an In App Purchase Event. - - @param receipt The transaction receipt used to validate the purchase. - - @param productTitle The localized title of the product. - - @param productDescription The localized description of the product. - - @param productPrice The price of the product. - - @param productCurrency The localized currency of the product. - - @param productIdentifier The IOS identifier for the product. - - @discussion Tracks In App Purchases for later use with user segmentation - and targeting. - */ -+ (void)trackInAppPurchaseEvent:(NSData *)receipt - productTitle:(NSString *)productTitle - productDescription:(NSString *)productDescription - productPrice:(NSDecimalNumber *)productPrice - productCurrency:(NSString *)productCurrency - productIdentifier:(NSString *)productIdentifier -DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); - -/*! - @abstract - Track an In App Purchase Event. - - @param receiptString The base64 encoded receipt string used to validate the purchase. - - @param productTitle The localized title of the product. - - @param productDescription The localized description of the product. - - @param productPrice The price of the product. - - @param productCurrency The localized currency of the product. - - @param productIdentifier The IOS identifier for the product. - - @discussion Tracks In App Purchases for later use with user segmentation - and targeting. - */ -+ (void)trackInAppPurchaseEventWithString:(NSString *)receiptString - productTitle:(NSString *)productTitle - productDescription:(NSString *)productDescription - productPrice:(NSDecimalNumber *)productPrice - productCurrency:(NSString *)productCurrency - productIdentifier:(NSString *)productIdentifier -DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); -/*! - @abstract - Track an In App Purchase Event. - - @param receipt The transaction receipt used to validate the purchase. - - @param product The SKProduct that was purchased. - - @discussion Tracks In App Purchases for later use with user segmentation - and targeting. - */ -+ (void)trackInAppPurchaseEvent:(NSData *)receipt - product:(SKProduct *)product -DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); - - -/*! - @abstract - Track level information about your user. Can be sequential levelling, non-sequential levelling, character level, or other. - - @param eventLabel A string that disambiguates the eventField. Use it to provides a human readable string to answer the question - What are we tracking ? - - @param eventField any value from the CBLevelType enumeration. Specifies whether this event is tracking a sequential levelling, non-sequential levelling, a character level, or other. - - @param mainLevel integer value to be tracked that represents the main level - - @param subLevel integer value to be tracked that represents the sub level, 0 if no relevant sub-level - - @param description A string that disambiguates the mainLevel & subLevel. Use it to provide a human readable string to answer the question - What does the mainLevel number and subLevel nubmer represent in my game ? - - @discussion Tracks In App Purchases for later use with user segmentation - and targeting. - */ -+ (void)trackLevelInfo:(NSString*)eventLabel - eventField:(CBLevelType)eventField - mainLevel:(NSUInteger)mainLevel - subLevel:(NSUInteger)subLevel - description:(NSString*)description -DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); - -/*! - @abstract - Track level information about your user. Can be sequential levelling, non-sequential levelling, character level, or other. - - @param eventLabel A string that disambiguates the eventField. Use it to provides a human readable string to answer the question - What are we tracking ? - - @param eventField any value from the CBLevelType enumeration. Specifies whether this event is tracking a sequential levelling, non-sequential levelling, a character level, current area, or other. - - @param mainLevel integer value to be tracked that represents the main level - - @param description A string that disambiguates the mainLevel. Use it to provide a human readable string to answer the question - What does the mainLevel number represent in my game ? - - @discussion Tracks In App Purchases for later use with user segmentation - and targeting. - */ -+ (void)trackLevelInfo:(NSString*)eventLabel - eventField:(CBLevelType)eventField - mainLevel:(NSUInteger)mainLevel - description:(NSString*)description -DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); - -@end diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CBInPlay.h b/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CBInPlay.h deleted file mode 100644 index d575dcf..0000000 --- a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CBInPlay.h +++ /dev/null @@ -1,125 +0,0 @@ -/* - * CBInPlay.h - * Chartboost - * 8.5.0 - * - * Copyright 2018 Chartboost. All rights reserved. - */ - -#import "Chartboost.h" - -/*! @abstract CBInPlay forward declaration. */ -@class CBInPlay; - -/*! - @class Chartboost - - @abstract - Provide methods to display and controler Chartboost native advertising types. - This is a category extension that adds additional functionality to the Chartboost object. - - @discussion For more information on integrating and using the Chartboost SDK - please visit our help site documentation at https://help.chartboost.com - */ -@interface Chartboost (CBInPlay) - -/*! - @abstract - Cache a number of InPlay objects for the given CBLocation. - - @param location The location for the Chartboost impression type. - - @discussion This method will first check if there is a locally cached InPlay object set - for the given CBLocation and, if found, will do nothing. If no locally cached data exists - the method will attempt to fetch data from the Chartboost API server. -*/ -+ (void)cacheInPlay:(CBLocation)location; - - -/*! - @abstract - Determine if a locally cached InPlay object exists for the given CBLocation. - - @param location The location for the Chartboost impression type. - - @return YES if there a locally cached InPlay object, and NO if not. - - @discussion A return value of YES here indicates that the corresponding - getInPlay:(CBLocation)location method will return an InPlay object without making - additional Chartboost API server requests to fetch data to present. - */ -+ (BOOL)hasInPlay:(CBLocation)location; - -/*! - @abstract - Return an InPlay object for the given CBLocation. - - @param location The location for the Chartboost impression type. - - @return CBInPlay object if one exists in the InPlay cache or nil if one is not yet available. - - @discussion This method will first check if there is a locally cached InPlay object - for the given CBLocation and, if found, will return the object using the locally cached data. - If no locally cached data exists the method will attempt to fetch data from the - Chartboost API server. If the Chartboost API server is unavailable - or there is no eligible InPlay object to present in the given CBLocation this method - is a no-op. - */ -+ (CBInPlay *)getInPlay:(CBLocation)location; - -@end - - -/*! - @class CBInPlay - - @abstract - CBInPlay ad type is a native ad type that is left the end user to integrate into their - applications own custom experiences. Chartboost acts as a data marshalling system - and gives the developer access to specific attributes of the ad type. - - @discussion For more information on integrating and using the Chartboost SDK - please visit our help site documentation at https://help.chartboost.com - */ -@interface CBInPlay : NSObject - -/*! @abstract CBLocation target for the CBInPlay ad. */ -@property (nonatomic, strong, readonly) CBLocation location; - -/*! @abstract Image byte data for the CBInPlay icon. */ -@property (nonatomic, strong, readonly) NSData *appIcon; - -/*! @abstract Application name associated with the ad. */ -@property (nonatomic, strong, readonly) NSString *appName; - -/*! - @abstract - Marks the CBInPlay object as shown and notifies the Charboost API servers. - - @discussion This method will emit a server request to the Chartboost API servers - to mark the CBInPlay ad as viewed. You must send this information to correlate - with installs driven by the ad. - */ -- (void)show; - -/*! - @abstract - Marks the CBInPlay object as clicked and notifies the Charboost API servers. - - @discussion This method will emit a server request to the Chartboost API servers - to mark the CBInPlay ad as clicked. You must send this information to correlate - with installs driven by the ad. - */ -- (void)click; - -/*! - @abstract - Clears all CBInPlay objects from the cache locations. - - @discussion This method will clear all the CBInPlay native ads from the internal cash. - This is intended to be used to either force an update for all content or reduce the - memory overhead of this feature. - */ -- (void)clearCache; - -@end diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBAd.h b/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBAd.h deleted file mode 100644 index e0f44c1..0000000 --- a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBAd.h +++ /dev/null @@ -1,57 +0,0 @@ -/* - * CHBAd.h - * Chartboost - * - * Copyright 2019 Chartboost. All rights reserved. - */ - -#import -#import "ChartboostDelegate.h" - -@protocol CHBAdDelegate; - -NS_ASSUME_NONNULL_BEGIN - -/*! - @protocol CHBAd - @brief The protocol to which all Chartboost ads conform to. - @discussion Provides an interface for basic functionalities common to all ads. - */ -@protocol CHBAd - -/*! - @brief The delegate instance to receive ad callbacks. - */ -@property (nonatomic, weak, nullable) id delegate; - -/*! - @brief Chartboost location for the ad. - @discussion Used to obtain ads with increased performance. - */ -@property (nonatomic, readonly) CBLocation location; - -/*! - @brief Determines if a cached ad exists. - @return YES if there is a cached ad, and NO if not. - */ -@property (nonatomic, readonly) BOOL isCached; - -/*! - @brief Caches an ad. - @discussion This method will first check if there is a cached ad and, if found, will do nothing. - If no cached ad exists the method will attempt to fetch it from the Chartboost server. - Implement didCacheAd:error: in your ad delegate to be notified of a cache request result. - */ -- (void)cache; - -/*! - @brief Shows an ad. - @param viewController The view controller to present the ad on. - @discussion This method will first check if there is a cached ad, if found it will present it. - It is highly recommended that a non-nil view controller is passed, as it is required for enhanced ad presentation and some features like opening links in an in-app web browser. - */ -- (void)showFromViewController:(nullable UIViewController *)viewController; - -@end - -NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBAdDelegate.h b/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBAdDelegate.h deleted file mode 100644 index 1f557c9..0000000 --- a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBAdDelegate.h +++ /dev/null @@ -1,334 +0,0 @@ -/* - * CHBAdDelegate.h - * Chartboost - * - * Copyright 2019 Chartboost. All rights reserved. - */ - -#import "CHBAd.h" - -NS_ASSUME_NONNULL_BEGIN - -// MARK: - Events - -/*! - @class CHBAdEvent - @brief The base class from which all delegate events inherit from. - @discussion Event objects are passed as parameters to all ad delegate methods to provide useful context. - */ -@interface CHBAdEvent : NSObject -/*! - @brief The ad related to the event. - */ -@property (nonatomic, readonly) id ad; -/*! - @brief A string that uniquely identifies the cached ad, updated when a cache operation ends. - */ -@property (nonatomic, readonly, nullable) NSString *adID; -@end - -/*! - @class CHBCacheEvent - @brief A CHBAdEvent subclass passed on cache-related delegate methods. - */ -@interface CHBCacheEvent : CHBAdEvent -@end - -/*! - @class CHBShowEvent - @brief A CHBAdEvent subclass passed on show-related delegate methods. - */ -@interface CHBShowEvent : CHBAdEvent -@end - -/*! - @class CHBClickEvent - @brief A CHBAdEvent subclass passed on click-related delegate methods. - */ -@interface CHBClickEvent : CHBAdEvent -/*! - @brief The view controller used to present the viewer for the link associated with the click. - @discussion This is the view controller you passed on the showFromViewController: call or a Chartboost ad view controller which was presented on top of it. If you called showFromViewController: passing a nil view controller this property will be nil too. - You may use it to present your custom click confirmation gate if you implement the shouldConfirmClick:confirmationHandler: ad delegate method. - */ -@property (nonatomic, readonly, nullable) UIViewController *viewController DEPRECATED_MSG_ATTRIBUTE("This property is deprecated and will be removed in a future version."); -@end - -/*! - @class CHBDismissEvent - @brief A CHBAdEvent subclass passed on dismiss-related delegate methods. - */ -@interface CHBDismissEvent : CHBAdEvent -/*! -@brief The error that forced the ad dismissal, or nil if the user (or the ad itself) chose to dismiss the ad. -*/ -@property (nonatomic, readonly, nullable) NSError *error; -@end - -/*! - @class CHBRewardEvent - @brief A CHBAdEvent subclass passed on reward-related delegate methods. - */ -@interface CHBRewardEvent : CHBAdEvent -/*! - @brief The earned reward. - */ -@property (nonatomic, readonly) NSInteger reward; -@end - - -// MARK: - Errors - -/*! - @typedef NS_ENUM (NSUInteger, CHBCacheErrorCode) - @brief Error codes for failed cache operations. - */ -typedef NS_ENUM(NSUInteger, CHBCacheErrorCode) { - CHBCacheErrorCodeInternal = 0, - CHBCacheErrorCodeInternetUnavailable = 1, - CHBCacheErrorCodeNetworkFailure = 5, - CHBCacheErrorCodeNoAdFound = 6, - CHBCacheErrorCodeSessionNotStarted = 7, - CHBCacheErrorCodeAssetDownloadFailure = 16, - CHBCacheErrorCodePublisherDisabled = 35 -}; - -/*! - @class CHBCacheError - @brief An error object passed on cache-related delegate methods. - */ -@interface CHBCacheError : NSObject -/*! @brief Error code that indicates the failure reason. */ -@property (nonatomic, readonly) CHBCacheErrorCode code; -@end - - -/*! - @typedef NS_ENUM (NSUInteger, CHBShowErrorCode) - @brief Error codes for failed show operations. - */ -typedef NS_ENUM(NSUInteger, CHBShowErrorCode) { - CHBShowErrorCodeInternal = 0, - CHBShowErrorCodeSessionNotStarted = 7, - CHBShowErrorCodeAdAlreadyVisible = 8, - CHBShowErrorCodeInternetUnavailable = 25, - CHBShowErrorCodePresentationFailure = 33, - CHBShowErrorCodeNoCachedAd = 34 -}; - -/*! - @class CHBShowError - @brief An error object passed on show-related delegate methods. - */ -@interface CHBShowError : NSObject -/*! @brief Error code that indicates the failure reason. */ -@property (nonatomic, readonly) CHBShowErrorCode code; -@end - -/*! - @typedef NS_ENUM (NSUInteger, CHBClickErrorCode) - @brief Error codes for failed click operations. - */ -typedef NS_ENUM(NSUInteger, CHBClickErrorCode) { - CHBClickErrorCodeUriInvalid = 0, - CHBClickErrorCodeUriUnrecognized = 1, - CHBClickErrorCodeConfirmationGateFailure = 2, - CHBClickErrorCodeInternal = 3 -}; - -/*! - @class CHBClickError - @brief An error object passed on click-related delegate methods. - */ -@interface CHBClickError : NSObject -/*! @brief Error code that indicates the failure reason. */ -@property (nonatomic, readonly) CHBClickErrorCode code; -@end - - -// MARK: - Delegate - -/*! - @protocol CHBAdDelegate - @brief The protocol which all Chartboost ad delegates inherit from. - @discussion Provides methods to receive notifications related to an ad's actions and to control its behavior. - */ -@protocol CHBAdDelegate - -@optional - -/*! - @brief Called after a cache call, either if an ad has been loaded from the Chartboost servers and cached, or tried to but failed. - @param event A cache event with info related to the cached ad. - @param error An error specifying the failure reason, or nil if the operation was successful. - @discussion Implement to be notified of when an ad is ready to be shown after the cache method has been called. - - A typical implementation would look like this: - @code - - (void)didCacheAd:(CHBCacheEvent *)event error:(nullable CHBCacheError *)error { - if (error) { - // Handle error - } else { - // At this point event.ad.isCached will be true, and the ad is ready to be shown. - } - } - @endcode - */ -- (void)didCacheAd:(CHBCacheEvent *)event error:(nullable CHBCacheError *)error; - -/*! - @brief Called after a showFromViewController: call, right before an ad is presented. - @param event A show event with info related to the ad to be shown. - @discussion Implement to be notified of when an ad is about to be presented. - - A typical implementation would look like this: - @code - - (void)willShowAd:(CHBShowEvent *)event { - // Pause ongoing processes like video or gameplay. - } - @endcode - */ -- (void)willShowAd:(CHBShowEvent *)event; - -/*! - @brief This method is deprecated in favor of willShowAd:, the error parameter will always be nil. - If implemented, both willShowAd:error: and willShowAd: will be called when the corresponding event occurs. - */ -- (void)willShowAd:(CHBShowEvent *)event error:(nullable CHBShowError *)error DEPRECATED_MSG_ATTRIBUTE("Please use willShowAd: instead. This method is deprecated and will be removed in a future version."); - -/*! - @brief Called after a showFromViewController: call, either if the ad has been presented and an ad impression logged, or if the operation failed. - @param event A show event with info related to the ad shown. - @param error An error specifying the failure reason, or nil if the operation was successful. - @discussion Implement to be notified of when the ad presentation process has finished. - This method will be called once for each call to showFromViewController: on an interstitial or rewarded ad. - In contrast, this may be called multiple times after showing a banner, either if some error occurs after the ad has been successfully shown or as a result of the banner's automatic content refresh. - - A common practice consists of caching an ad here so there's an ad ready for the next time you need to show it. - Note that this is not necessary for banners with automaticallyRefreshesContent set to YES. - @code - - (void)didShowAd:(CHBShowEvent *)event error:(nullable CHBShowError *)error { - if (error) { - // Handle error, possibly resuming processes paused in willShowAd: - } else { - [event.ad cache]; - } - } - @endcode - */ -- (void)didShowAd:(CHBShowEvent *)event error:(nullable CHBShowError *)error; - -/*! - @brief Called whenever the user clicks an ad to give a chance to the developer to present a confirmation gate before the click is handled. - @param event A click event with info related to the ad clicked. - @param confirmationHandler A block to be executed only if the return value is YES. It takes a BOOL parameter that indicates if the confirmation gate was passed or not. - @return YES if the handling of the triggering click should be paused for confirmation, NO if the click should be handled without confirmation. - @warning If you return YES in your implementation make sure to execute the confirmationHandler at some point, since the ad flow will be paused until then. - If you use the event's view controller to present a confirmation view make sure it has been dismissed by the time you execute the confirmation handler. - @discussion If you return YES it is your responsibility to implement some confirmation method that triggers the execution of the confirmationHandler. - - If this method is not implemented clicks will be handled without confirmation. - - A typical implementation would look like this: - @code - - (BOOL)shouldConfirmClick:(CHBClickEvent *)event confirmationHandler:(void(^)(BOOL))confirmationHandler { - if (self.needsClickConfirmation) { - MyAwesomeAgeGate *ageGate = [[MyAwesomeAgeGate alloc] initWithCompletion:^(BOOL confirmed) { - [ageGate dismissViewControllerAnimated:YES completion:^{ - confirmationHandler(confirmed); - }]; - }]; - [event.viewController presentViewController:ageGate animated:YES completion:nil]; - return YES; - } else { - return NO; - } - } - @endcode - */ -- (BOOL)shouldConfirmClick:(CHBClickEvent *)event confirmationHandler:(void(^)(BOOL))confirmationHandler DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); - -/*! - @brief Called after an ad has been clicked. - @param event A click event with info related to the ad clicked. - @param error An error specifying the failure reason, or nil if the operation was successful. - @discussion Implement to be notified of when an ad has been clicked. - If the click does not result into the opening of a link an error will be provided explaning why. - - A typical implementation would look like this: - @code - - (void)didClickAd:(CHBClickEvent *)event error:(nullable CHBClickError *)error { - if (error) { - // Handle error - } else { - // Maybe pause ongoing processes like video or gameplay. - } - } - @endcode - */ -- (void)didClickAd:(CHBClickEvent *)event error:(nullable CHBClickError *)error; - -/*! - @brief Called when the link viewer presented as result of an ad click has been dismissed. - @param event A click event with info related to the ad clicked. - @param error An error specifying the failure reason, or nil if the operation was successful. - @discussion Implement to be notified of when an ad click has been handled. - This can mean an in-app web browser or App Store app sheet has been dismissed, or that the user came back to the app after the link was opened on an external application. - - A typical implementation would look like this: - @code - - (void)didFinishHandlingClick:(CHBClickEvent *)event error:(nullable CHBClickError *)error { - // Resume processes previously paused on didClickAd:error: implementation. - } - @endcode - */ -- (void)didFinishHandlingClick:(CHBClickEvent *)event error:(nullable CHBClickError *)error; - -@end - -/*! - @protocol CHBDismissableAdDelegate - @brief Delegate protocol for ads that can be dismissed. - @discussion Provides methods to receive notifications related to an ad's actions and to control its behavior. - */ -@protocol CHBDismissableAdDelegate - -@optional - -/*! - @brief Called after an ad is dismissed. - @param event A dismiss event with info related to the dismissed ad. - @discussion Implement to be notified of when an ad is no longer displayed. - Note that this method won't get called for ads that failed to be shown. To handle that case implement didShowAd:error: - You may use the error property inside the event to know if the dismissal was expected or caused by an error. - - A typical implementation would look like this: - @code - - (void)didDismissAd:(CHBDismissEvent *)event { - // Resume processes paused in willShowAd: - } - @endcode - */ -- (void)didDismissAd:(CHBDismissEvent *)event; - -@end - -/*! - @protocol CHBRewardableAdDelegate - @brief Delegate protocol for ads that can provide a reward. - @discussion Provides methods to receive notifications related to an ad's actions and to control its behavior. - */ -@protocol CHBRewardableAdDelegate - -@optional - -/*! - @brief Called when a rewarded ad has completed playing. - @param event A reward event with info related to the ad and the reward. - @discussion Implement to be notified when a reward is earned. - */ -- (void)didEarnReward:(CHBRewardEvent *)event; - -@end - -NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBBanner.h b/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBBanner.h deleted file mode 100644 index 6380bff..0000000 --- a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBBanner.h +++ /dev/null @@ -1,133 +0,0 @@ -/* - * CHBBanner.h - * Chartboost - * - * Copyright 2019 Chartboost. All rights reserved. - */ - -#import "CHBAd.h" -#import "CHBAdDelegate.h" - -NS_ASSUME_NONNULL_BEGIN - -/*! - @typedef CHBBannerSize - @brief Defines standard sizes for CHBBanner objects. - @discussion Standard sizes used to describe default banner bounds. - */ -typedef CGSize const CHBBannerSize; -/*! "Banner" - Standard banner size on phones. */ -FOUNDATION_EXPORT CHBBannerSize const CHBBannerSizeStandard; -/*! "Medium Rect" - Medium banner size on phones. */ -FOUNDATION_EXPORT CHBBannerSize const CHBBannerSizeMedium; -/*! "Tablet" - Leaderboard banner size on tablets. */ -FOUNDATION_EXPORT CHBBannerSize const CHBBannerSizeLeaderboard; - -/*! - @protocol CHBBannerDelegate - @brief Banner delegate protocol that inherits from CHBAdDelegate. - @discussion Provides methods to receive notifications related to a banner's actions and to control its behavior. - */ -@protocol CHBBannerDelegate -@end - -/*! - @class CHBBanner - - @brief CHBBanner is a UIView subclass able to show banner ads. Once obtained via the provided initializer, the - developer is responsible of adding it to the app's view hierarchy and laying it out properly. - - @discussion A banner ad has a CHBBannerSize which corresponds to the view's intrinsicContentSize. - The developer should not give the banner view object a frame size different than its CHBBannerSize property. - If you are using AutoLayout just give the banner an X and Y position constraint and it will be automatically sized. - - By default a banner will automatically update its content on its own. This means you only need to call showFromViewController: once and the banner will get new ads and show them, gracefully handling errors if they occur. - - You can create and present as many banners as you want at the same time. - - A typical implementation would look like this: - @code - - (void)createAndShowBanner { - CHBBanner *banner = [[CHBBanner alloc] initWithSize:CHBBannerSizeStandard location:CBLocationDefault delegate:self]; - banner.translatesAutoresizingMaskIntoConstraints = NO; - [self.view addSubview:banner]; - [NSLayoutConstraint activateConstraints:@[[banner.bottomAnchor constraintEqualToAnchor:self.view.safeAreaLayoutGuide.bottomAnchor], - [banner.centerXAnchor constraintEqualToAnchor:self.view.centerXAnchor]]]; - [banner showFromViewController:self]; - } - @endcode - - For more information on integrating and using the Chartboost SDK please visit our help site documentation at https://help.chartboost.com - */ -@interface CHBBanner : UIView - -/*! - @brief Chartboost location for the ad. - @discussion Used to obtain ads with increased performance. - */ -@property (nonatomic, readonly) CBLocation location; - -/*! - @brief Size for the banner ad. - @discussion You should provide one of the predefined values. - The `intrinsicContentSize` of the banner view will depend on this value. - */ -@property (nonatomic, readonly) CHBBannerSize size; - -/*! - @brief Set to enable or disable the automatic refresh of a banner's content. - @warning You should use this property to pause the refresh whenever the banner is no longer visible to the user. - General cases like full-screen ad presentation, opening of the link for an ad or going to the background are handled by the banner itself so you don't need to worry about them. - @discussion YES by default. - The auto refresh cycle won't start until the the method showFromViewController: is called for the first time. - Since that moment you can let the banner update its content on its own. -*/ -@property (nonatomic) BOOL automaticallyRefreshesContent; - -/*! - @brief The delegate instance to receive banner callbacks. - */ -@property (nonatomic, weak, nullable) id delegate; - -/*! - @brief Determines if a cached ad exists. - @return YES if there is a cached ad, and NO if not. - @discussion A return value of YES here indicates that a call to showFromViewController: will present without making additional Chartboost server requests to fetch data. - */ -@property (nonatomic, readonly) BOOL isCached; - -/*! - @brief The initializer for the banner object. Default UIView initializers should not be used! - @param size Size for the banner. See the size property documentation. - @param location Location for the banner. See the location property documentation. - @param delegate Delegate for the banner. See the delegate property documentation. -*/ -- (instancetype)initWithSize:(CHBBannerSize)size location:(CBLocation)location delegate:(nullable id)delegate; - -/*! - @brief Please use initWithSize:location:delegate: instead. -*/ -- (instancetype)init NS_UNAVAILABLE; - -/*! - @brief Caches an ad. - @discussion This method will first check if there is a cached ad and, if found, will do nothing. - If no cached ad exists the method will attempt to fetch it from the Chartboost server. - Implement didCacheAd:error: in your ad delegate to be notified of a cache request result. - */ -- (void)cache; - -/*! - @brief Shows an ad. - @param viewController The view controller to present the ad on. - @discussion This method will first check if there is a cached ad, if found it will present it. - If no cached ad exists the method will attempt to fetch it from the Chartboost server first. - If automaticallyRefreshesContent is YES (the default), calling this method causes the banner to start automatically updating its content. - It is highly recommended that a non-nil view controller is passed, as it is required for enhanced ad presentation and some features like opening links in an in-app web browser. - Implement didShowAd:error: in your ad delegate to be notified of a show request result, and didCacheAd:error: to be notified of the result of a cache request triggered by showing a non-cached banner. - */ -- (void)showFromViewController:(nullable UIViewController *)viewController; - -@end - -NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBDataUseConsent.h b/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBDataUseConsent.h deleted file mode 100644 index 7d44958..0000000 --- a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBDataUseConsent.h +++ /dev/null @@ -1,113 +0,0 @@ -// -// CHBDataUseConsent.h -// Chartboost -// -// Copyright 2020 Chartboost. All rights reserved. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/*! -@typedef CHBPrivacyStandard -@brief Constant that identifies a privacy standard to comply to. -*/ -typedef NSString * CHBPrivacyStandard NS_TYPED_EXTENSIBLE_ENUM; -/*! @brief GDPR privacy standard identifier */ -FOUNDATION_EXPORT CHBPrivacyStandard const CHBPrivacyStandardGDPR; -/*! @brief CCPA privacy standard identifier */ -FOUNDATION_EXPORT CHBPrivacyStandard const CHBPrivacyStandardCCPA; - -/*! -@class CHBDataUseConsent -@brief Abstract class. Subclasses define a data use consent option for a privacy standard. -Not intended to be used directly, always use a subclass to pass to +[Chartboost addDataUseConsent:] or to cast the result of +[Chartboost dataUseConsentForPrivacyStandard:] -*/ -@interface CHBDataUseConsent: NSObject -/*! @brief The identifier for the privacy standard this consent applies to. */ -@property (nonatomic, readonly) CHBPrivacyStandard privacyStandard; -/*! @brief Use the subclasses initializers to obtain a valid consent instance. */ -- (instancetype)init NS_UNAVAILABLE; - -@end - -// MARK: - GDPR - -/*! -@typedef NS_ENUM (NSUInteger, CHBGDPRConsent) -@brief Consent options for GDPR compliance. -*/ -typedef NS_ENUM(NSUInteger, CHBGDPRConsent) { - /*! User does not consent to behavioral targeting in compliance with GDPR. */ - CHBGDPRConsentNonBehavioral, - /*! User consents to behavioral targeting in compliance with GDPR. */ - CHBGDPRConsentBehavioral -} NS_SWIFT_NAME(CHBGDPRDataUseConsent.Consent); - -/*! -@class CHBGDPRDataUseConsent -@brief CHBDataUseConsent subclass for compliance with GDPR. -*/ -NS_SWIFT_NAME(CHBDataUseConsent.GDPR) -@interface CHBGDPRDataUseConsent: CHBDataUseConsent -/*! @brief The GDPR consent option. */ -@property (nonatomic, readonly) CHBGDPRConsent consent; -/*! - @brief Returns a GDPR consent object. - @param consent The desired GDPR consent option. - */ -+ (CHBGDPRDataUseConsent *)gdprConsent:(CHBGDPRConsent)consent NS_SWIFT_NAME(init(_:)); - -@end - -// MARK: - CCPA - -/*! -@typedef NS_ENUM (NSUInteger, CHBCCPAConsent) -@brief Consent options for CCPA compliance. -*/ -typedef NS_ENUM(NSUInteger, CHBCCPAConsent) { - /*! User does not consent to the sale of his or her personal information in compliance with CCPA. */ - CHBCCPAConsentOptOutSale, - /*! User consents to the sale of his or her personal information in compliance with CCPA. */ - CHBCCPAConsentOptInSale -} NS_SWIFT_NAME(CHBCCPADataUseConsent.Consent); - -/*! -@class CHBCCPADataUseConsent -@brief CHBDataUseConsent subclass for compliance with CCPA. -*/ -NS_SWIFT_NAME(CHBDataUseConsent.CCPA) -@interface CHBCCPADataUseConsent: CHBDataUseConsent -/*! @brief The CCPA consent option. */ -@property (nonatomic, readonly) CHBCCPAConsent consent; -/*! -@brief Returns a CCPA consent object. -@param consent The desired CCPA consent option. -*/ -+ (CHBCCPADataUseConsent *)ccpaConsent:(CHBCCPAConsent)consent NS_SWIFT_NAME(init(_:)); -@end - -// MARK: - Custom - -/*! -@class CHBCustomDataUseConsent -@brief CHBDataUseConsent subclass for compliance with a custom privacy standard. -*/ -NS_SWIFT_NAME(CHBDataUseConsent.Custom) -@interface CHBCustomDataUseConsent: CHBDataUseConsent -/*! @brief The custom consent value. */ -@property (nonatomic, readonly) NSString *consent; -/*! - @brief Returns a custom consent object. - @discussion Normally you would use other CHBDataUseConsent subclasses instead, which provide predefined options for current privacy standards. - If you decide to use this make sure you pass valid values, as defined in https://answers.chartboost.com/en-us/child_article/ios-privacy-methods - @param privacyStandard The desired privacy standard identifier. - @param consent The desired consent value. -*/ -+ (CHBCustomDataUseConsent *)customConsentWithPrivacyStandard:(CHBPrivacyStandard)privacyStandard consent:(NSString *)consent NS_SWIFT_NAME(init(privacyStandard:consent:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBInterstitial.h b/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBInterstitial.h deleted file mode 100644 index 69c4006..0000000 --- a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBInterstitial.h +++ /dev/null @@ -1,124 +0,0 @@ -/* - * CHBInterstitial.h - * Chartboost - * - * Copyright 2019 Chartboost. All rights reserved. - */ - -#import "CHBAd.h" -#import "CHBAdDelegate.h" - -NS_ASSUME_NONNULL_BEGIN - -/*! - @protocol CHBInterstitialDelegate - @brief Interstitial delegate protocol that inherits from CHBAdDelegate. - @discussion Provides methods to receive notifications related to an interstitial's actions and to control its behavior. - In a typical integration you would implement willShowAd:, didShowAd: and didDismissAd:, pausing and resuming ongoing processes (e.g: gameplay, video) there. - */ -@protocol CHBInterstitialDelegate -@end - -/*! - @class CHBInterstitial - - @brief CHBInterstitial is a full-screen ad. - - @discussion To show an interstitial it first needs to be cached. Trying to show an uncached intersitital will always fail, thus it is recommended to always check if the ad is cached first. - - You can create and cache as many interstitial ads as you want, but only one can be presented at the same time. - - A basic implementation would look like this: - @code - - (void)createAndCacheInterstitial { - self.interstitial = [[CHBInterstitial alloc] initWithLocation:CBLocationDefault delegate:self]; - [self.interstitial cache]; - } - - - (void)showInterstitial { - if (self.interstitial.isCached) { - [self.interstitial showFromViewController:self]; - } - } - - // Delegate methods - - - (void)didCacheAd:(CHBCacheEvent *)event error:(nullable CHBCacheError *)error { - if (error) { - // Handle error, possibly scheduling a retry - } - } - - - (void)willShowAd:(CHBShowEvent *)event { - // Pause ongoing processes - } - - - (void)didShowAd:(CHBShowEvent *)event error:(CHBShowError *)error { - if (error) { - // Resume paused processes - } - } - - - (void)didDismissAd:(CHBDismissEvent *)event { - // Resume paused processes - } - @endcode - - If your application uses a View controller-based status bar appearance (usually the default), an ad shown with a valid view controller will hide the status bar. Otherwise it is your responsibility to hide it or not. - - For more information on integrating and using the Chartboost SDK please visit our help site documentation at https://help.chartboost.com - */ -@interface CHBInterstitial : NSObject - -/*! - @brief Chartboost location for the ad. - @discussion Used to obtain ads with increased performance. - */ -@property (nonatomic, readonly) CBLocation location; - -/*! - @brief The delegate instance to receive interstitial callbacks. - */ -@property (nonatomic, weak, nullable) id delegate; - -/*! - @brief Determines if a cached ad exists. - @return YES if there is a cached ad, and NO if not. - @discussion A return value of YES here indicates that it is safe to call the showFromViewController: method. - Calling this method when this value is NO will cause the show request to fail with a CHBShowErrorCodeNoCachedAd error. - */ -@property (nonatomic, readonly) BOOL isCached; - -/*! - @brief The initializer for the interstitial object. - @param location Location for the interstitial. See the location property documentation. - @param delegate Delegate for the interstitial. See the delegate property documentation. - */ -- (instancetype)initWithLocation:(CBLocation)location delegate:(nullable id)delegate; - -/*! - @brief Please use initWithLocation:delegate: instead. -*/ -- (instancetype)init NS_UNAVAILABLE; - -/*! - @brief Caches an ad. - @discussion This method will first check if there is a cached ad and, if found, will do nothing. - If no cached ad exists the method will attempt to fetch it from the Chartboost server. - Implement didCacheAd:error: in your ad delegate to be notified of a cache request result. - */ -- (void)cache; - -/*! - @brief Shows an ad. - @param viewController The view controller to present the ad on. - @discussion This method will first check if there is a cached ad, if found it will present it. - If no cached ad exists the request will fail with a CHBShowErrorCodeNoCachedAd error. - It is highly recommended that a non-nil view controller is passed, as it is required for enhanced ad presentation and some features like opening links in an in-app web browser. - Implement didShowAd:error: in your ad delegate to be notified of a show request result. - */ -- (void)showFromViewController:(nullable UIViewController *)viewController; - -@end - -NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBRewarded.h b/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBRewarded.h deleted file mode 100644 index bade011..0000000 --- a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/CHBRewarded.h +++ /dev/null @@ -1,130 +0,0 @@ -// -// CHBRewarded.h -// Chartboost -// -// Created by Daniel Barros on 18/07/2019. -// - -#import "CHBAd.h" -#import "CHBAdDelegate.h" - -NS_ASSUME_NONNULL_BEGIN - -/*! - @protocol CHBRewardedDelegate - @brief Rewarded delegate protocol that inherits from CHBAdDelegate. - @discussion Provides methods to receive notifications related to a rewarded ad's actions and to control its behavior. - In a typical integration you would implement willShowAd:, didShowAd: and didDismissAd:, pausing and resuming ongoing processes (e.g: gameplay, video) there. - The method didEarnReward: needs to be implemented in order to be notified when the user earns a reward. - */ -@protocol CHBRewardedDelegate -@end - -/*! - @class CHBRewarded - - @brief CHBRewarded is a full-screen ad that provides some reward to the user. - - @discussion To show a rewarded ad it first needs to be cached. Trying to show an uncached rewarded ad will always fail, thus it is recommended to always check if the ad is cached first. - - You can create and cache as many rewarded ads as you want, but only one can be presented at the same time. - - A basic implementation would look like this: - @code - - (void)createAndCacheRewarded { - self.rewarded = [[CHBRewarded alloc] initWithLocation:CBLocationDefault delegate:self]; - [self.rewarded cache]; - } - - - (void)showRewarded { - if (self.rewarded.isCached) { - [self.rewarded showFromViewController:self]; - } - } - - // Delegate methods - - - (void)didCacheAd:(CHBCacheEvent *)event error:(nullable CHBCacheError *)error { - if (error) { - // Handle error, possibly scheduling a retry - } - } - - - (void)willShowAd:(CHBShowEvent *)event { - // Pause ongoing processes - } - - - (void)didShowAd:(CHBShowEvent *)event error:(CHBShowError *)error { - if (error) { - // Resume paused processes. Note that if showing the ad fails didEarnReward: will not be called. - } - } - - - (void)didDismissAd:(CHBDismissEvent *)event { - // Resume paused processes - } - - - (void)didEarnReward:(CHBRewardEvent *)event { - // Update app state with event.reward - } - @endcode - - If your application uses a View controller-based status bar appearance (usually the default), an ad shown with a valid view controller will hide the status bar. Otherwise it is your responsibility to hide it or not. - - For more information on integrating and using the Chartboost SDK please visit our help site documentation at https://help.chartboost.com - */ -@interface CHBRewarded : NSObject - -/*! - @brief Chartboost location for the ad. - @discussion Used to obtain ads with increased performance. - */ -@property (nonatomic, readonly) CBLocation location; - -/*! - @brief The delegate instance to receive rewarded ad callbacks. - */ -@property (nonatomic, weak, nullable) id delegate; - -/*! - @brief Determines if a cached ad exists. - @return YES if there is a cached ad, and NO if not. - @discussion A return value of YES here indicates that it is safe to call the showFromViewController: method. - Calling this method when this value is NO will cause the show request to fail with a CHBShowErrorCodeNoCachedAd error. - */ -@property (nonatomic, readonly) BOOL isCached; - -/*! - @brief The initializer for the rewarded ad object. - @param location Location for the rewarded ad. See the location property documentation. - @param delegate Delegate for the rewarded ad. See the delegate property documentation. - */ -- (instancetype)initWithLocation:(CBLocation)location delegate:(nullable id)delegate; - -/*! - @brief Please use initWithLocation:delegate: instead. -*/ -- (instancetype)init NS_UNAVAILABLE; - -/*! - @brief Caches an ad. - @discussion This method will first check if there is a cached ad and, if found, will do nothing. - If no cached ad exists the method will attempt to fetch it from the Chartboost server. - Implement didCacheAd:error: in your ad delegate to be notified of a cache request result. - */ -- (void)cache; - -/*! - @brief Shows an ad. - @param viewController The view controller to present the ad on. - @discussion This method will first check if there is a cached ad, if found it will present it. - If no cached ad exists the request will fail with a CHBShowErrorCodeNoCachedAd error. - It is highly recommended that a non-nil view controller is passed, as it is required for enhanced ad presentation and some features like opening links in an in-app web browser. - Implement didShowAd:error: in your ad delegate to be notified of a show request result. - */ -- (void)showFromViewController:(nullable UIViewController *)viewController; - -@end - -NS_ASSUME_NONNULL_END - diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/Chartboost+Mediation.h b/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/Chartboost+Mediation.h deleted file mode 100644 index a0452cc..0000000 --- a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/Chartboost+Mediation.h +++ /dev/null @@ -1,101 +0,0 @@ -/* - * Chartboost+Mediation.h - * Chartboost - * - * Copyright 2019 Chartboost. All rights reserved. - */ - -#import "Chartboost.h" -#import "CHBBanner.h" -#import "CHBInterstitial.h" -#import "CHBRewarded.h" - -NS_ASSUME_NONNULL_BEGIN - -// APIs required to integrate Chartboost with a mediation platform. -// If you are the end user of this framework you typically won't need this. It is intended to support mediation adapters and in-house mediation solutions. - -// MARK: - CHBMediation - -/*! -@class CHBMediation -@brief A class that holds information about the mediation library used to create an ad. -*/ -@interface CHBMediation : NSObject -/*! @brief An identifier for the mediation library. */ -@property (nonatomic, readonly) CBMediation mediationType; -/*! @brief The mediation library version. */ -@property (nonatomic, readonly) NSString *libraryVersion; -/*! @brief The mediation library adapter version. */ -@property (nonatomic, readonly) NSString *adapterVersion; - -/*! -@brief The initializer for the mediation object. -@param mediationType The mediation library used. Pass CBMediationOther if your mediation is not listed in the predefined values. -@param libraryVersion A string representing the library version. E.g. "5.1.0" -@param adapterVersion A string representing the Chartbooost adapter version for this library. E.g. "5.1.0.1" -*/ -- (instancetype)initWithType:(CBMediation)mediationType libraryVersion:(NSString*)libraryVersion adapterVersion:(NSString*)adapterVersion; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -// MARK: - CHBBanner Extensions - -@interface CHBBanner (MediationAPI) -/*! - @brief Similar to -[CHBBanner initWithSize:location:delegate], but including a mediation parameter. - @discussion Use this initializer only if you are writing an adapter to use Chartboost with a mediation solution. -*/ -- (instancetype)initWithSize:(CHBBannerSize)size location:(CBLocation)location mediation:(nullable CHBMediation *)mediation delegate:(nullable id)delegate; - -/*! - @brief Caches an ad using an OpenRTB bid response. - @param bidResponse A bid response containing information about the ad to cache in OpenRTB format. - @discussion Use this method if you want to cache an ad already obtained from a bidding solution. - Use the isCached property or implement didCacheAd:error: in your ad delegate to be notified of a cache request result. -*/ -- (void)cacheBidResponse:(NSString *)bidResponse NS_SWIFT_NAME(cache(bidResponse:)); - -@end - -// MARK: - CHBInterstitial Extensions - -@interface CHBInterstitial (MediationAPI) -/*! - @brief Similar to -[CHBInterstitial initWithLocation:delegate], but including a mediation parameter. - @discussion Use this initializer only if you are writing an adapter to use Chartboost with a mediation solution. -*/ -- (instancetype)initWithLocation:(CBLocation)location mediation:(nullable CHBMediation *)mediation delegate:(nullable id)delegate; - -/*! - @brief Caches an ad using an OpenRTB bid response. - @param bidResponse A bid response containing information about the ad to cache in OpenRTB format. - @discussion Use this method if you want to cache an ad already obtained from a bidding solution. - Use the isCached property or implement didCacheAd:error: in your ad delegate to be notified of a cache request result. -*/ -- (void)cacheBidResponse:(NSString *)bidResponse NS_SWIFT_NAME(cache(bidResponse:)); - -@end - -// MARK: - CHBRewarded Extensions - -@interface CHBRewarded (MediationAPI) -/*! - @brief Similar to -[CHBRewarded initWithLocation:delegate], but including a mediation parameter. - @discussion Use this initializer only if you are writing an adapter to use Chartboost with a mediation solution. -*/ -- (instancetype)initWithLocation:(CBLocation)location mediation:(nullable CHBMediation *)mediation delegate:(nullable id)delegate; - -/*! - @brief Caches an ad using an OpenRTB bid response. - @param bidResponse A bid response containing information about the ad to cache in OpenRTB format. - @discussion Use this method if you want to cache an ad already obtained from a bidding solution. - Use the isCached property or implement didCacheAd:error: in your ad delegate to be notified of a cache request result. -*/ -- (void)cacheBidResponse:(NSString *)bidResponse NS_SWIFT_NAME(cache(bidResponse:)); - -@end - -NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/Chartboost.h b/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/Chartboost.h deleted file mode 100644 index deb5be5..0000000 --- a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/Chartboost.h +++ /dev/null @@ -1,139 +0,0 @@ -// -// Chartboost.h -// Chartboost -// -// Copyright 2018 Chartboost. All rights reserved. -// - -#import -#import -#import "ChartboostDelegate.h" -#import "CHBDataUseConsent.h" -#import "CHBInterstitial.h" -#import "CHBRewarded.h" -#import "CHBBanner.h" -@class CBInPlay; - -@interface Chartboost : NSObject - -/*! - @abstract - Start Chartboost with required appId, appSignature and delegate. - - @param appId The Chartboost application ID for this application. - - @param appSignature The Chartboost application signature for this application. - - @param completion A completion block to be executed when the SDK finishes initializing. - It takes a boolean parameter which indicates if the initialization succeeded or not. - - @discussion This method must be executed before any other Chartboost SDK methods can be used. - Once executed this call will also controll session tracking and background tasks - used by Chartboost. - */ -+ (void)startWithAppId:(NSString*)appId appSignature:(NSString*)appSignature completion:(void (^)(BOOL))completion; - -/*! - @brief Use to restrict Chartboost's ability to collect personal data from the user. - @discussion This method can be called multiple times to set the consent for different privacy standards. - If a consent has already been set for a privacy standard, adding a consent object for that standard will overwrite the previous value. - - This method should be called before starting the Chartboost SDK with startWithAppId:appSignature:completion: if possible. - The added consents are persisted, so you may just call this when the consent status needs to be updated. -*/ -+ (void)addDataUseConsent:(CHBDataUseConsent *)consent NS_SWIFT_NAME(addDataUseConsent(_:)); - -/*! - @brief Clears the previously added consent for the desired privacy standard. - @param privacyStandard The privacy standard for which you want to clear the consent. - @discussion Chartboost persists the added consents, so you'll need to call this method if you want to withdraw a previously added consent. - If no consent was available for the indicated standard nothing will happen. -*/ -+ (void)clearDataUseConsentForPrivacyStandard:(CHBPrivacyStandard)privacyStandard NS_SWIFT_NAME(clearDataUseConsent(for:)); - -/*! - @brief Returns the current consent status for the desired privacy standard. - @param privacyStandard The privacy standard for which you want to obtain the consent status. - @returns A CHBDataUseConsent subclass (the same one used to set the consent in addDataUseConsent:) or nil if no consent status is currently available. - @discussion Use this to check the current consent status, either set by a call to addDataUseConsent: or persisted from a call to the same method on a previous app run. You may need to cast the returned object to the proper CHBDataUseConsent subclass in order to read its consent value. - - For example, to check if a consent is not set for GDPR: - @code - // Obj-C - if (![Chartboost dataUseConsentForPrivacyStandard:CHBPrivacyStandardGDPR]) { ... } - // Swift - if Chartboost.dataUseConsent(for: .GDPR) == nil { ... } - @endcode - - To check the specific consent status for GDPR: - @code - // Obj-C - CHBGDPRDataUseConsent *gdpr = [Chartboost dataUseConsentForPrivacyStandard:CHBPrivacyStandardGDPR]; - if (gdpr && gdpr.consent == CHBGDPRConsentNonBehavioral) { ... } - // Swift - let gdpr = Chartboost.dataUseConsent(for: .GDPR) as? CHBDataUseConsent.GDPR - if gdpr?.consent == .nonBehavioral { ... } - @endcode - */ -+ (__kindof CHBDataUseConsent *)dataUseConsentForPrivacyStandard:(CHBPrivacyStandard)privacyStandard NS_SWIFT_NAME(dataUseConsent(for:)); - -/*! - @abstract - Returns the version of the Chartboost SDK. - */ -+ (NSString*)getSDKVersion; - -/*! - @abstract - Set the logging level - - @param loggingLevel The minimum level that's going to be logged - - @discussion Logging by default is off. - */ - -+ (void)setLoggingLevel:(CBLoggingLevel)loggingLevel; - -/*! - @abstract - Mute/unmute chartboost ads. - @param mute YES all sounds, NO activates them. Default is NO - @discussion default value is NO - */ -+ (void)setMuted:(BOOL)mute; - - -#pragma mark - Deprecated -+ (void)setStatusBarBehavior:(CBStatusBarBehavior)statusBarBehavior __attribute__((deprecated("This method is deprecated and is a no-op"))); -+ (void)setMediation:(CBMediation)library withVersion:(NSString*)libraryVersion DEPRECATED_MSG_ATTRIBUTE("Please use setMediation:withLibraryVersion:adapterVersion: instead."); -+ (void)cacheInPlay:(CBLocation)location DEPRECATED_MSG_ATTRIBUTE("This is a deprecated no-op method and will be removed in a future version."); -+ (BOOL)hasInPlay:(CBLocation)location DEPRECATED_MSG_ATTRIBUTE("This is a deprecated no-op method and will be removed in a future version."); -+ (CBInPlay *)getInPlay:(CBLocation)location DEPRECATED_MSG_ATTRIBUTE("This is a deprecated no-op method and will be removed in a future version."); -+ (void)startWithAppId:(NSString*)appId appSignature:(NSString*)appSignature delegate:(id)delegate DEPRECATED_MSG_ATTRIBUTE("Please use +[Chartboost startWithAppId:appSignature:completion:] instead."); -+ (BOOL)isAnyViewVisible DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); -+ (BOOL)hasInterstitial:(CBLocation)location DEPRECATED_MSG_ATTRIBUTE("Please use -[CHBInterstitial isCached] instead."); -+ (BOOL)hasRewardedVideo:(CBLocation)location DEPRECATED_MSG_ATTRIBUTE("Please use -[CHBRewarded isCached] instead."); -+ (void)cacheInterstitial:(CBLocation)location DEPRECATED_MSG_ATTRIBUTE("Please use -[CHBInterstitial cache] instead."); -+ (void)showInterstitial:(CBLocation)location DEPRECATED_MSG_ATTRIBUTE("Please use -[CHBInterstitial showFromViewController:] instead."); -+ (void)cacheRewardedVideo:(CBLocation)location DEPRECATED_MSG_ATTRIBUTE("Please use -[CHBRewarded cache] instead."); -+ (void)showRewardedVideo:(CBLocation)location DEPRECATED_MSG_ATTRIBUTE("Please use -[CHBRewarded showFromViewController:] instead."); -+ (void)setDelegate:(id)del DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); -+ (void)didPassAgeGate:(BOOL)pass DEPRECATED_MSG_ATTRIBUTE("Please use -[CHBAdDelegate shouldConfirmClick:confirmationHandler:] instead."); -+ (BOOL)handleOpenURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); -+ (BOOL)handleOpenURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); -+ (void)setShouldRequestInterstitialsInFirstSession:(BOOL)shouldRequest DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); -+ (void)setShouldPauseClickForConfirmation:(BOOL)shouldPause DEPRECATED_MSG_ATTRIBUTE("Please use -[CHBAdDelegate shouldConfirmClick:confirmationHandler:] instead."); -+ (void)setAutoCacheAds:(BOOL)shouldCache DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); -+ (BOOL)getAutoCacheAds DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); -+ (void)setMediation:(CBMediation)library withLibraryVersion:(NSString*)libraryVersion adapterVersion:(NSString*)adapterVersion DEPRECATED_MSG_ATTRIBUTE("Please use CHBMediation as specified in Chartboost+Mediation.h instead."); -+ (CBPIDataUseConsent)getPIDataUseConsent DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); -+ (void)setPIDataUseConsent:(CBPIDataUseConsent)consent DEPRECATED_MSG_ATTRIBUTE("Please use addDataUseConsent: passing a CHBDataUseConsent GDPR object instead."); -FOUNDATION_EXPORT BOOL ChartboostInitialized(const char* function) DEPRECATED_MSG_ATTRIBUTE("This function is deprecated and will be removed in a future version."); -+ (void)setCustomId:(NSString *)customId DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); -+ (NSString *)getCustomId DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); -+ (void)setChartboostWrapperVersion:(NSString*)chartboostWrapperVersion DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); -+ (void)setFramework:(CBFramework)framework withVersion:(NSString *)version DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); -+ (void)setShouldPrefetchVideoContent:(BOOL)shouldPrefetch DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); -+ (BOOL)getAutoIAPTracking DEPRECATED_MSG_ATTRIBUTE("This method is deprecated and will be removed in a future version."); - -@end diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/ChartboostDelegate.h b/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/ChartboostDelegate.h deleted file mode 100644 index cb34cd5..0000000 --- a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/A/Headers/ChartboostDelegate.h +++ /dev/null @@ -1,584 +0,0 @@ -// -// ChartboostDelegate.h -// Chartboost -// -// Copyright 2018 Chartboost. All rights reserved. -// - -#import -#import - -@class UIView; - -/*! - @typedef NS_ENUM (NSUInteger, CBLogLevel) - - @abstract - Set logging level. Default is OFF - */ -typedef NS_ENUM(NSUInteger, CBLoggingLevel) { - /*! Logging Off. */ - CBLoggingLevelOff, - /*! Verbose. */ - CBLoggingLevelVerbose, - /*! Info. */ - CBLoggingLevelInfo, - /*! Warning. */ - CBLoggingLevelWarning, - /*! Error. */ - CBLoggingLevelError, -}; - - -/*! - @typedef NS_ENUM (NSUInteger, CBFramework) - - @abstract - Used with setFramework:(CBFramework)framework calls to set suffix for - wrapper libraries like Unity or Corona. - */ -typedef NS_ENUM(NSUInteger, CBFramework) { - /*! Unity. */ - CBFrameworkUnity, - /*! Corona. */ - CBFrameworkCorona, - /*! Adobe AIR. */ - CBFrameworkAIR, - /*! GameSalad. */ - CBFrameworkGameSalad, - /*! Cordova. */ - CBFrameworkCordova, - /*! CocoonJS. */ - CBFrameworkCocoonJS, - /*! Cocos2d-x. */ - CBFrameworkCocos2dx, - /*! Prime31Unreal. */ - CBFrameworkPrime31Unreal, - /*! Weeby. */ - CBFrameworkWeeby, - /*! Unknown. Other */ - CBFrameworkOther -}; - -/*! - @typedef NS_ENUM (NSUInteger, CBMediation) - - @abstract - Used with setMediation:(CBMediation)library calls to set mediation library name - partners. If you don't see your library here, contact support. - */ -typedef NS_ENUM(NSUInteger, CBMediation) { - /*! Unknown. Other */ - CBMediationOther, - /*! AdMarvel */ - CBMediationAdMarvel, - /*! Fuse */ - CBMediationFuse, - /*! Fyber */ - CBMediationFyber, - /*! HeyZap */ - CBMediationHeyZap, - /*! MoPub */ - CBMediationMoPub, - /*! Supersonic */ - CBMediationSupersonic, - /*! AdMob */ - CBMediationAdMob, - /*! HyprMX */ - CBMediationHyprMX, - /*! AerServ */ - CBMediationAerServ, - /*! Helium */ - CBMediationHelium, - /*! Fairbid */ - CBMediationFairbid, - /*! AppLovin MAX */ - CBMediationMAX -}; - - - -/*! - @typedef NS_ENUM (NSUInteger, CBLoadError) - - @abstract - Returned to ChartboostDelegate methods to notify of Chartboost SDK errors. - */ -typedef NS_ENUM(NSUInteger, CBLoadError) { - /*! Unknown internal error. */ - CBLoadErrorInternal = 0, - /*! Network is currently unavailable. */ - CBLoadErrorInternetUnavailable = 1, - /*! Too many requests are pending for that location. */ - CBLoadErrorTooManyConnections = 2, - /*! Interstitial loaded with wrong orientation. */ - CBLoadErrorWrongOrientation = 3, - /*! Interstitial disabled, first session. */ - CBLoadErrorFirstSessionInterstitialsDisabled = 4, - /*! Network request failed. */ - CBLoadErrorNetworkFailure = 5, - /*! No ad received. */ - CBLoadErrorNoAdFound = 6, - /*! Session not started. */ - CBLoadErrorSessionNotStarted = 7, - /*! There is an impression already visible.*/ - CBLoadErrorImpressionAlreadyVisible = 8, - /*! User manually cancelled the impression. */ - CBLoadErrorUserCancellation = 10, - /*! No location detected. */ - CBLoadErrorNoLocationFound = 11, - /*! Error downloading asset. */ - CBLoadErrorAssetDownloadFailure = 16, - /*! Video Prefetching is not finished */ - CBLoadErrorPrefetchingIncomplete = 21, - /*! Error Originating from the JS side of a Web View */ - CBLoadErrorWebViewScriptError = 22, - /*! Network is unavailable while attempting to show. */ - CBLoadErrorInternetUnavailableAtShow = 25, - /*! Error trying to present the ad. */ - CBLoadErrorAdPresentationFailure = 33, - /*! No cached ad ready to be shown. */ - CBLoadErrorNoCachedAd = 34, - /*! Publisher disabled. */ - CBLoadErrorPublisherDisabled = 35 -}; - -/*! - @typedef NS_ENUM (NSUInteger, CBClickError) - - @abstract - Returned to ChartboostDelegate methods to notify of Chartboost SDK errors. - */ -typedef NS_ENUM(NSUInteger, CBClickError) { - /*! Invalid URI. */ - CBClickErrorUriInvalid, - /*! The device does not know how to open the protocol of the URI */ - CBClickErrorUriUnrecognized, - /*! User failed to pass the age gate. */ - CBClickErrorAgeGateFailure, - /*! Unknown internal error */ - CBClickErrorInternal, -}; - -/*! - @typedef NS_ENUM (NSUInteger, CBStatusBarBehavior) - - @abstract - Used with setStatusBarBehavior:(CBStatusBarBehavior)statusBarBehavior calls to set how fullscreen ads should - behave with regards to the status bar. - */ -typedef NS_ENUM(NSUInteger, CBStatusBarBehavior) { - /*! Ignore status bar altogether; fullscreen ads will use the space of the status bar. */ - CBStatusBarBehaviorIgnore, - /*! Respect the status bar partially; fullscreen ads will use the space of the status bar but any user interactive buttons will not. */ - CBStatusBarBehaviorRespectButtons, - /*! Respect the status bar fully; fullscreen ads will not use the status bar space. */ - CBStatusBarBehaviorRespect -}; - - -/*! - @typedef NS_ENUM (NSUInteger, CBPIDataUseConsent) - - @abstract - GDPR compliance settings: - */ -typedef NS_ENUM(NSInteger, CBPIDataUseConsent) { - /*! Publisher hasn't implemented functionality or the user has the option to not answer. */ - Unknown = -1, - /*! User does not consent to targeting (Contextual ads). */ - NoBehavioral = 0, - /*! User consents (Behavioral and Contextual Ads). */ - YesBehavioral = 1 -}; - - -/*! - @typedef CBLocation - - @abstract - Defines standard locations to describe where Chartboost SDK features appear in game. - - @discussion Standard locations used to describe where Chartboost features show up in your game - For best performance, it is highly recommended to use standard locations. - - Benefits include: - - Higher eCPMs. - - Control of ad targeting and frequency. - - Better reporting. - */ -typedef NSString * const CBLocation; - -/*! "Startup" - Initial startup of game. */ -FOUNDATION_EXPORT CBLocation const CBLocationStartup; -/*! "Home Screen" - Home screen the player first sees. */ -FOUNDATION_EXPORT CBLocation const CBLocationHomeScreen; -/*! "Main Menu" - Menu that provides game options. */ -FOUNDATION_EXPORT CBLocation const CBLocationMainMenu; -/*! "Game Screen" - Game screen where all the magic happens. */ -FOUNDATION_EXPORT CBLocation const CBLocationGameScreen; -/*! "Achievements" - Screen with list of achievements in the game. */ -FOUNDATION_EXPORT CBLocation const CBLocationAchievements; -/*! "Quests" - Quest, missions or goals screen describing things for a player to do. */ -FOUNDATION_EXPORT CBLocation const CBLocationQuests; -/*! "Pause" - Pause screen. */ -FOUNDATION_EXPORT CBLocation const CBLocationPause; -/*! "Level Start" - Start of the level. */ -FOUNDATION_EXPORT CBLocation const CBLocationLevelStart; -/*! "Level Complete" - Completion of the level */ -FOUNDATION_EXPORT CBLocation const CBLocationLevelComplete; -/*! "Turn Complete" - Finishing a turn in a game. */ -FOUNDATION_EXPORT CBLocation const CBLocationTurnComplete; -/*! "IAP Store" - The store where the player pays real money for currency or items. */ -FOUNDATION_EXPORT CBLocation const CBLocationIAPStore; -/*! "Item Store" - The store where a player buys virtual goods. */ -FOUNDATION_EXPORT CBLocation const CBLocationItemStore; -/*! "Game Over" - The game over screen after a player is finished playing. */ -FOUNDATION_EXPORT CBLocation const CBLocationGameOver; -/*! "Leaderboard" - List of leaders in the game. */ -FOUNDATION_EXPORT CBLocation const CBLocationLeaderBoard; -/*! "Settings" - Screen where player can change settings such as sound. */ -FOUNDATION_EXPORT CBLocation const CBLocationSettings; -/*! "Quit" - Screen displayed right before the player exits a game. */ -FOUNDATION_EXPORT CBLocation const CBLocationQuit; -/*! "Default" - Supports legacy applications that only have one "Default" location */ -FOUNDATION_EXPORT CBLocation const CBLocationDefault; -/*! - @protocol ChartboostDelegate - - @abstract - Provide methods and callbacks to receive notifications of when the Chartboost SDK - has taken specific actions or to more finely control the Chartboost SDK. - - @discussion For more information on integrating and using the Chartboost SDK - please visit our help site documentation at https://help.chartboost.com - - All of the delegate methods are optional. - */ -DEPRECATED_MSG_ATTRIBUTE("This protocol is deprecated and will be removed in a future version. Please use CHBInterstitial, CHBRewarded, CHBBanner and their corresponding delegate protocols instead.") -@protocol ChartboostDelegate - -@optional - -/*! - @abstract - Called by the SDK to show customized AgeGate View. - - @return A valid UIView. Reutrn nil if no customized Age Gate is needed. - - @discussion SDK will call this method to see if user wants to implement their own custom age gate view. - Check for didPassAgeGate for other details. - */ -- (UIView*)customAgeGateView; - -/*! - @abstract - Called after the SDK has been successfully initialized - - @param status The result of the initialization. YES if successful. NO if failed. - - @discussion Implement to be notified of when the initialization process has finished. - */ - -- (void)didInitialize:(BOOL)status; - -#pragma mark - Interstitial Delegate - -/*! - @abstract - Called before requesting an interstitial via the Chartboost API server. - - @param location The location for the Chartboost impression type. - - @return YES if execution should proceed, NO if not. - - @discussion Implement to control if the Charboost SDK should fetch data from - the Chartboost API servers for the given CBLocation. This is evaluated - if the showInterstitial:(CBLocation) or cacheInterstitial:(CBLocation)location - are called. If YES is returned the operation will proceed, if NO, then the - operation is treated as a no-op. - - Default return is YES. - */ -- (BOOL)shouldRequestInterstitial:(CBLocation)location; - -/*! - @abstract - Called before an interstitial will be displayed on the screen. - - @param location The location for the Chartboost impression type. - - @return YES if execution should proceed, NO if not. - - @discussion Implement to control if the Charboost SDK should display an interstitial - for the given CBLocation. This is evaluated if the showInterstitial:(CBLocation) - is called. If YES is returned the operation will proceed, if NO, then the - operation is treated as a no-op and nothing is displayed. - - Default return is YES. - */ -- (BOOL)shouldDisplayInterstitial:(CBLocation)location; - -/*! - @abstract - Called after an interstitial has been displayed on the screen. - - @param location The location for the Chartboost impression type. - - @discussion Implement to be notified of when an interstitial has - been displayed on the screen for a given CBLocation. - */ -- (void)didDisplayInterstitial:(CBLocation)location; - -/*! - @abstract - Called after an interstitial has been loaded from the Chartboost API - servers and cached locally. - - @param location The location for the Chartboost impression type. - - @discussion Implement to be notified of when an interstitial has been loaded from the Chartboost API - servers and cached locally for a given CBLocation. - */ -- (void)didCacheInterstitial:(CBLocation)location; - -/*! - @abstract - Called after an interstitial has attempted to load from the Chartboost API - servers but failed. - - @param location The location for the Chartboost impression type. - - @param error The reason for the error defined via a CBLoadError. - - @discussion Implement to be notified of when an interstitial has attempted to load from the Chartboost API - servers but failed for a given CBLocation. - */ -- (void)didFailToLoadInterstitial:(CBLocation)location - withError:(CBLoadError)error; - -/*! - @abstract - Called after a click is registered, but the user is not fowrwarded to the IOS App Store. - - @param location The location for the Chartboost impression type. - - @param error The reason for the error defined via a CBLoadError. - - @discussion Implement to be notified of when a click is registered, but the user is not fowrwarded - to the IOS App Store for a given CBLocation. - */ -- (void)didFailToRecordClick:(CBLocation)location - withError:(CBClickError)error; - -/*! - @abstract - Called after an interstitial has been dismissed. - - @param location The location for the Chartboost impression type. - - @discussion Implement to be notified of when an interstitial has been dismissed for a given CBLocation. - "Dismissal" is defined as any action that removed the interstitial UI such as a click or close. - */ -- (void)didDismissInterstitial:(CBLocation)location; - -/*! - @abstract - Called after an interstitial has been closed. - - @param location The location for the Chartboost impression type. - - @discussion Implement to be notified of when an interstitial has been closed for a given CBLocation. - "Closed" is defined as clicking the close interface for the interstitial. - */ -- (void)didCloseInterstitial:(CBLocation)location; - -/*! - @abstract - Called after an interstitial has been clicked. - - @param location The location for the Chartboost impression type. - - @discussion Implement to be notified of when an interstitial has been click for a given CBLocation. - "Clicked" is defined as clicking the creative interface for the interstitial. - */ -- (void)didClickInterstitial:(CBLocation)location; - - -#pragma mark - Rewarded Video Delegate - -/*! - @abstract - Called before a rewarded video will be displayed on the screen. - - @param location The location for the Chartboost impression type. - - @return YES if execution should proceed, NO if not. - - @discussion Implement to control if the Charboost SDK should display a rewarded video - for the given CBLocation. This is evaluated if the showRewardedVideo:(CBLocation) - is called. If YES is returned the operation will proceed, if NO, then the - operation is treated as a no-op and nothing is displayed. - - Default return is YES. - */ -- (BOOL)shouldDisplayRewardedVideo:(CBLocation)location; - -/*! - @abstract - Called after a rewarded video has been displayed on the screen. - - @param location The location for the Chartboost impression type. - - @discussion Implement to be notified of when a rewarded video has - been displayed on the screen for a given CBLocation. - */ -- (void)didDisplayRewardedVideo:(CBLocation)location; - -/*! - @abstract - Called after a rewarded video has been loaded from the Chartboost API - servers and cached locally. - - @param location The location for the Chartboost impression type. - - @discussion Implement to be notified of when a rewarded video has been loaded from the Chartboost API - servers and cached locally for a given CBLocation. - */ -- (void)didCacheRewardedVideo:(CBLocation)location; - -/*! - @abstract - Called after a rewarded video has attempted to load from the Chartboost API - servers but failed. - - @param location The location for the Chartboost impression type. - - @param error The reason for the error defined via a CBLoadError. - - @discussion Implement to be notified of when an rewarded video has attempted to load from the Chartboost API - servers but failed for a given CBLocation. - */ -- (void)didFailToLoadRewardedVideo:(CBLocation)location - withError:(CBLoadError)error; - -/*! - @abstract - Called after a rewarded video has been dismissed. - - @param location The location for the Chartboost impression type. - - @discussion Implement to be notified of when a rewarded video has been dismissed for a given CBLocation. - "Dismissal" is defined as any action that removed the rewarded video UI such as a click or close. - */ -- (void)didDismissRewardedVideo:(CBLocation)location; - -/*! - @abstract - Called after a rewarded video has been closed. - - @param location The location for the Chartboost impression type. - - @discussion Implement to be notified of when a rewarded video has been closed for a given CBLocation. - "Closed" is defined as clicking the close interface for the rewarded video. - */ -- (void)didCloseRewardedVideo:(CBLocation)location; - -/*! - @abstract - Called after a rewarded video has been clicked. - - @param location The location for the Chartboost impression type. - - @discussion Implement to be notified of when a rewarded video has been click for a given CBLocation. - "Clicked" is defined as clicking the creative interface for the rewarded video. - */ -- (void)didClickRewardedVideo:(CBLocation)location; - -/*! - @abstract - Called after a rewarded video has been viewed completely and user is eligible for reward. - - @param reward The reward for watching the video. - - @param location The location for the Chartboost impression type. - - @discussion Implement to be notified of when a rewarded video has been viewed completely and user is eligible for reward. - */ -- (void)didCompleteRewardedVideo:(CBLocation)location - withReward:(int)reward; - -#pragma mark - InPlay Delegate - -/*! - @abstract - Called after an InPlay object has been loaded from the Chartboost API - servers and cached locally. - - @param location The location for the Chartboost impression type. - - @discussion Implement to be notified of when an InPlay object has been loaded from the Chartboost API - servers and cached locally for a given CBLocation. - */ -- (void)didCacheInPlay:(CBLocation)location; - -/*! - @abstract - Called after a InPlay has attempted to load from the Chartboost API - servers but failed. - - @param location The location for the Chartboost impression type. - - @param error The reason for the error defined via a CBLoadError. - - @discussion Implement to be notified of when an InPlay has attempted to load from the Chartboost API - servers but failed for a given CBLocation. - */ -- (void)didFailToLoadInPlay:(CBLocation)location - withError:(CBLoadError)error; - -#pragma mark - General Delegate - -/*! - @abstract - Called before an interstitial has been displayed on the screen. - - @param location The location for the Chartboost impression type. - - @discussion Implement to be notified of when an interstitial will - be displayed on the screen for a given CBLocation. - */ -- (void)willDisplayInterstitial:(CBLocation)location; - -/*! - @abstract - Called before a video has been displayed on the screen. - - @param location The location for the Chartboost impression type. - - @discussion Implement to be notified of when a video will - be displayed on the screen for a given CBLocation. You can then do things like mute - effects and sounds. - */ -- (void)willDisplayVideo:(CBLocation)location; - -/*! - @abstract - Called after the App Store sheet is dismissed, when displaying the embedded app sheet. - - @discussion Implement to be notified of when the App Store sheet is dismissed. - */ -- (void)didCompleteAppStoreSheetFlow; - -/*! - @abstract - Called if Chartboost SDK pauses click actions awaiting confirmation from the user. - - @discussion Use this method to display any gating you would like to prompt the user for input. - Once confirmed call didPassAgeGate:(BOOL)pass to continue execution. - */ -- (void)didPauseClickForConfirmation; - - - -@end diff --git a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/Current b/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/Current deleted file mode 120000 index 044dcb9..0000000 --- a/plugins/2018.3313/iphone-sim/Chartboost.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -./A \ No newline at end of file diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/ChartboostSDK b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/ChartboostSDK new file mode 100644 index 0000000..77a6a5e Binary files /dev/null and b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/ChartboostSDK differ diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBAd.h b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBAd.h new file mode 100644 index 0000000..13df848 --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBAd.h @@ -0,0 +1,77 @@ +/* + * CHBAd.h + * Chartboost + * + * Copyright 2019 Chartboost. All rights reserved. + */ + +#import + +@protocol CHBAdDelegate; + +NS_ASSUME_NONNULL_BEGIN + +/*! +The protocol to which all Chartboost ads conform to. +# Discussion # +Provides an interface for basic functionalities common to all ads. +*/ +@protocol CHBAd + +/*! +The delegate instance to receive ad callbacks. + */ +@property (nonatomic, weak, nullable) id delegate; + +/*! +Chartboost location for the ad. +# Discussion # +Used to obtain ads with increased performance. + */ +@property (nonatomic, readonly) NSString *location; + +/*! +Determines if a cached ad exists. +- returns: YES if there is a cached ad, and NO if not. +*/ +@property (nonatomic, readonly) BOOL isCached; + +/*! +Caches an ad. +# Discussion # +- This method will first check if there is a cached ad and, if found, will do nothing. +- If no cached ad exists the method will attempt to fetch it from the Chartboost server. +- Implement didCacheAd:error: in your ad delegate to be notified of a cache request result. +*/ +- (void)cache; + +/*! +Caches an ad using an OpenRTB bid response. +# Discussion # +- Use this method if you want to cache an ad using a winning bid obtained from the Chartboost bidder. +- Use the isCached property or implement didCacheAd:error: in your ad delegate to be notified of a cache request result. +- parameter bidResponse: A bid response containing information about the ad to cache in OpenRTB format. +*/ +- (void)cacheBidResponse:(NSString *)bidResponse NS_SWIFT_NAME(cache(bidResponse:)); + +/*! +Clears the ad cache. +# Discussion # + - This will do nothing if there's no cached ad. Otherwise it will remove any data + related to the ad, bringing the ad instance back to a non-cached state. + After calling this method you may call `cache` again and a new ad will be fetched. + */ +- (void)clearCache; + +/*! +Shows an ad. +# Discussion # +- This method will first check if there is a cached ad, if found it will present it. +- Passing a non-nil view controller is required. +- parameter viewController: The view controller to present the ad on. +*/ +- (void)showFromViewController:(UIViewController *)viewController; + +@end + +NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBAdDelegate.h b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBAdDelegate.h new file mode 100644 index 0000000..e48304c --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBAdDelegate.h @@ -0,0 +1,204 @@ +/* + * CHBAdDelegate.h + * Chartboost + * + * Copyright 2019 Chartboost. All rights reserved. + */ + +#import + +NS_ASSUME_NONNULL_BEGIN +@class CHBCacheError; +@class CHBShowError; +@class CHBClickError; + +/*! +The protocol which all Chartboost ad delegates inherit from. +# Discussion # +Provides methods to receive notifications related to an ad's actions and to control its behavior. +*/ +@protocol CHBAdDelegate + +@optional + +/*! +Called after a cache call, either if an ad has been loaded from the Chartboost servers and cached, or tried to but failed. +# Discussion # +Implement to be notified of when an ad is ready to be shown after the cache method has been called. +- parameter event: A cache event with info related to the cached ad. +- parameter error: An error specifying the failure reason, or nil if the operation was successful. + + A typical implementation would look like this: + ```objc + - (void)didCacheAd:(CHBCacheEvent *)event error:(nullable CHBCacheError *)error { + if (error) { + // Handle error + } else { + // At this point event.ad.isCached will be true, and the ad is ready to be shown. + } + } + ``` + */ +- (void)didCacheAd:(CHBCacheEvent *)event error:(nullable CHBCacheError *)error; + +/*! +Called after a showFromViewController: call, right before an ad is presented. +# Discussion # +Implement to be notified of when an ad is about to be presented. +- parameter event: A show event with info related to the ad to be shown. +A typical implementation would look like this: +```objc +- (void)willShowAd:(CHBShowEvent *)event { + // Pause ongoing processes like video or gameplay. +} +``` +*/ +- (void)willShowAd:(CHBShowEvent *)event; + +/*! +Called after a showFromViewController: call, either if the ad has been presented and an ad impression logged, or if the operation failed. +# Discussion # +- Implement to be notified of when the ad presentation process has finished. +- This method will be called once for each call to showFromViewController: on an interstitial or rewarded ad. +- In contrast, this may be called up to two times after showing a banner, if some error occurs after the ad has been successfully shown. + +- parameter event: A show event with info related to the ad shown. +- parameter error: An error specifying the failure reason, or nil if the operation was successful. + +A common practice consists of caching an ad here so there's an ad ready for the next time you need to show it. + ```objc + - (void)didShowAd:(CHBShowEvent *)event error:(nullable CHBShowError *)error { + if (error) { + // Handle error, possibly resuming processes paused in willShowAd: + } else { + [event.ad cache]; + } + } +``` +*/ +- (void)didShowAd:(CHBShowEvent *)event error:(nullable CHBShowError *)error; + +/*! +Called after an ad has been clicked. +# Discussion # +- Implement to be notified of when an ad has been clicked. +- If the click does not result into the opening of a link an error will be provided explaning why. + +- parameter event: A click event with info related to the ad clicked. +- parameter error: An error specifying the failure reason, or nil if the operation was successful. + + A typical implementation would look like this: + ```objc + - (void)didClickAd:(CHBClickEvent *)event error:(nullable CHBClickError *)error { + if (error) { + // Handle error + } else { + // Maybe pause ongoing processes like video or gameplay when a banner ad is clicked. + } + } + ``` +*/ +- (void)didClickAd:(CHBClickEvent *)event error:(nullable CHBClickError *)error; + +/*! +Called after an ad has recorded an impression. +# Discussion # +- Implement to be notified of when an ad has recorded an impression. +- This method will be called once a valid impression is recorded after showing the ad. +- parameter event: An impression event with info related to the visible ad. +*/ +- (void)didRecordImpression:(CHBImpressionEvent *)event; + +@end + +/*! +Delegate protocol for ads that can be dismissed. +# Discussion # +Provides methods to receive notifications related to an ad's actions and to control its behavior. +*/ +@protocol CHBDismissableAdDelegate + +@optional + +/*! +Called after an ad is dismissed. +# Discussion # +- Implement to be notified of when an ad is no longer displayed. +- Note that this method won't get called for ads that failed to be shown. To handle that case implement didShowAd:error: +- You may use the error property inside the event to know if the dismissal was expected or caused by an error. + +- parameter event: A dismiss event with info related to the dismissed ad. + + A typical implementation would look like this: + ```objc + - (void)didDismissAd:(CHBDismissEvent *)event { + // Resume processes paused in willShowAd: + } + ``` +*/ +- (void)didDismissAd:(CHBDismissEvent *)event; + +@end + +/*! +Interstitial delegate protocol. +# Discussion # +- Provides methods to receive notifications related to an interstitial ad behavior. +- In a typical integration you would implement willShowAd:, didShowAd: and didDismissAd:, pausing and resuming ongoing processes (e.g: gameplay, video) there. +*/ +@protocol CHBInterstitialDelegate +@end + +/*! +Rewarded delegate protocol. +# Discussion # +- Provides methods to receive notifications related to a rewarded ad behavior. +- In a typical integration you would implement willShowAd:, didShowAd: and didDismissAd:, pausing and resuming ongoing processes (e.g: gameplay, video) there. +- The method didEarnReward: needs to be implemented in order to be notified when the user earns a reward. +*/ +@protocol CHBRewardedDelegate + +@optional + +/*! +Called when a rewarded ad has completed playing. +# Discussion # +Implement to be notified when a reward is earned. + +- parameter event: A reward event with info related to the ad and the reward. +*/ +- (void)didEarnReward:(CHBRewardEvent *)event; + +@end + +/*! +Banner delegate protocol. +# Discussion # +Provides methods to receive notifications related to a banner ad behavior. +*/ +@protocol CHBBannerDelegate + +@optional + +/*! +Called when the link viewer presented as result of an ad click has been dismissed. +# Discussion # +- Implement to be notified of when an ad click has been handled. +- This can mean an in-app web browser or App Store app sheet has been dismissed, or that the user came back to the app after the link was opened on an external application. + +- parameter event: A click event with info related to the ad clicked. +- parameter error: An error specifying the failure reason, or nil if the operation was successful. + + A typical implementation would look like this: + ```objc + - (void)didFinishHandlingClick:(CHBClickEvent *)event error:(nullable CHBClickError *)error { + // Resume processes previously paused on didClickAd:error: implementation. + } + ``` +*/ + +- (void)didFinishHandlingClick:(CHBClickEvent *)event error:(nullable CHBClickError *)error __attribute__((deprecated("Will be removed with the next major update"))); + +@end + +NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBAdEvent.h b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBAdEvent.h new file mode 100644 index 0000000..39d2bcd --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBAdEvent.h @@ -0,0 +1,82 @@ +// +// Chartboost.h +// Chartboost +// +// Copyright 2021 Chartboost. All rights reserved. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! +CHBAdEvent is a NSObject subclass, it contains information about a specific event and is related to an ad. +# Discussion # +In the SDK exists various types of CHBAdEvent are related to the Ad Delegate callbacks. +- CHBCacheEvent +- CHBShowEvent +- CHBImpressionEvent +- CHBClickEvent +- CHBDismissEvent +- CHBRewardEvent +*/ +@interface CHBAdEvent : NSObject + +/*! +The ad related to the event. +*/ +@property (nonatomic, readonly) id ad; + +/*! +A string that uniquely identifies the cached ad, updated when a cache operation ends. +*/ +@property (nonatomic, readonly, nullable) NSString *adID; +@end + +/*! +A CHBAdEvent subclass passed on cache-related delegate methods. +*/ +@interface CHBCacheEvent : CHBAdEvent +@end + +/*! +A CHBAdEvent subclass passed on show-related delegate methods. +*/ +@interface CHBShowEvent : CHBAdEvent +@end + +/*! +A CHBAdEvent subclass passed on impression-related delegate methods. +*/ +@interface CHBImpressionEvent : CHBAdEvent +@end + +/*! +A CHBAdEvent subclass passed on click-related delegate methods. +*/ +@interface CHBClickEvent : CHBAdEvent +@end + +/*! +A CHBAdEvent subclass passed on dismiss-related delegate methods. +*/ +@interface CHBDismissEvent : CHBAdEvent + +/*! +The error that forced the ad dismissal, or nil if the user (or the ad itself) chose to dismiss the ad. +*/ +@property (nonatomic, readonly, nullable) NSError *error; +@end + +/*! +A CHBAdEvent subclass passed on reward-related delegate methods. +*/ +@interface CHBRewardEvent : CHBAdEvent + +/*! +The earned reward. +*/ +@property (nonatomic, readonly) NSInteger reward; +@end + +NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBBanner.h b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBBanner.h new file mode 100644 index 0000000..ab473aa --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBBanner.h @@ -0,0 +1,152 @@ +/* + * CHBBanner.h + * Chartboost + * + * Copyright 2019 Chartboost. All rights reserved. + */ + +#import +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! +Defines standard sizes for CHBBanner objects. +# Discussion # +Standard sizes used to describe default banner bounds. +*/ +typedef CGSize const CHBBannerSize; +/*! "Banner" - Standard banner size on phones. */ +FOUNDATION_EXPORT CHBBannerSize const CHBBannerSizeStandard; +/*! "Medium Rect" - Medium banner size on phones. */ +FOUNDATION_EXPORT CHBBannerSize const CHBBannerSizeMedium; +/*! "Tablet" - Leaderboard banner size on tablets. */ +FOUNDATION_EXPORT CHBBannerSize const CHBBannerSizeLeaderboard; + +/*! +CHBBanner is a UIView subclass able to show banner ads. Once obtained via the provided initializer, the +developer is responsible of adding it to the app's view hierarchy and laying it out properly. + +A banner ad has a CHBBannerSize which corresponds to the view's intrinsicContentSize. +The developer should not give the banner view object a frame size different than its CHBBannerSize property. +If you are using AutoLayout just give the banner an X and Y position constraint and it will be automatically sized. + +You can create and present as many banners as you want at the same time. +For more information on integrating and using the Chartboost SDK please visit our help site documentation at [Chartboost Helpsite](https://help.chartboost.com) + +A typical implementation would look like this: +```objc +- (void)createAndShowBanner { + CHBBanner *banner = [[CHBBanner alloc] initWithSize:CHBBannerSizeStandard location:@"YOUR_LOCATION_NAME" delegate:self]; + banner.translatesAutoresizingMaskIntoConstraints = NO; + [self.view addSubview:banner]; + [NSLayoutConstraint activateConstraints:@[[banner.bottomAnchor constraintEqualToAnchor:self.view.safeAreaLayoutGuide.bottomAnchor], + [banner.centerXAnchor constraintEqualToAnchor:self.view.centerXAnchor]]]; + [banner showFromViewController:self]; +} +``` +*/ +@interface CHBBanner : UIView + +/*! +Chartboost location for the ad. +# Discussion # +Used to obtain ads with increased performance. +*/ +@property (nonatomic, readonly) NSString *location; + +/*! +Size for the banner ad. +# Discussion # +- You should provide one of the predefined values. +- The `intrinsicContentSize` of the banner view will depend on this value. +*/ +@property (nonatomic, readonly) CHBBannerSize size; + +/*! +The delegate instance to receive banner callbacks. +# Discussion # +See CHBAdDelegate.h for more info. +*/ +@property (nonatomic, weak, nullable) id delegate; + +/*! +Determines if a cached ad exists. +# Discussion # +A return value of YES here indicates that a call to showFromViewController: will present without making additional Chartboost server requests to fetch data. +- returns: YES if there is a cached ad, and NO if not. +*/ +@property (nonatomic, readonly) BOOL isCached; + +/*! +The initializer for the banner object. Default UIView initializers should not be used! +- parameter size: Size for the banner. See the size property documentation. +- parameter location: Location for the banner. See the location property documentation. +- parameter delegate: Delegate for the banner. See the delegate property documentation. +*/ +- (instancetype)initWithSize:(CHBBannerSize)size + location:(NSString *)location + delegate:(nullable id)delegate; + +/*! +The initializer for banner ads intended to be mediated by another SDK. +# Discussion # + Use this initializer only if you are writing an adapter to use Chartboost with another mediation solution. +- parameter size: Size for the banner. See the size property documentation. +- parameter location: Location for the banner ad. See the location property documentation. +- parameter mediation: Information about the mediation SDK that is requesting this ad. +- parameter delegate: Delegate for the banner ad. See the delegate property documentation. +*/ +- (instancetype)initWithSize:(CHBBannerSize)size + location:(NSString *)location + mediation:(nullable CHBMediation *)mediation + delegate:(nullable id)delegate; + +/*! +# Discussion # +Please use -[CHBBanner initWithLocation:size:delegate:] instead. +*/ +- (instancetype)init NS_UNAVAILABLE; + +/*! +Caches an ad. +# Discussion # +- This method will first check if there is a cached ad and, if found, will do nothing. +- If no cached ad exists the method will attempt to fetch it from the Chartboost server. +- Implement didCacheAd:error: in your ad delegate to be notified of a cache request result. +*/ +- (void)cache; + +/*! +Caches an ad using an OpenRTB bid response. +# Discussion # +- Use this method if you want to cache an ad using a winning bid obtained from the Chartboost bidder. +- Use the isCached property or implement didCacheAd:error: in your ad delegate to be notified of a cache request result. +- parameter bidResponse: A bid response containing information about the ad to cache in OpenRTB format. +*/ +- (void)cacheBidResponse:(NSString *)bidResponse NS_SWIFT_NAME(cache(bidResponse:)); + +/*! +Clears the ad cache. +# Discussion # +- This will do nothing if there's no cached ad. Otherwise it will remove any data +- related to the ad, bringing the ad instance back to a non-cached state. After calling this +- method you may call `cache` again and a new ad will be fetched. +*/ +- (void)clearCache; + +/*! +Shows an ad. +# Discussion # +- This method will first check if there is a cached ad, if found it will present it. +- If no cached ad exists the method will attempt to fetch it from the Chartboost server first. +- Passing a non-nil view controller is required. +- Implement ``(didShowAd:error:)`` in your ad delegate to be notified of a show request result, and ``(didCacheAd:error:)`` to be notified of the result of a cache request triggered by showing a non-cached banner. +- parameter viewController: The view controller to present the ad on. +*/ +- (void)showFromViewController:(UIViewController *)viewController; + +@end + +NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBDataUseConsent.h b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBDataUseConsent.h new file mode 100644 index 0000000..673abfb --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBDataUseConsent.h @@ -0,0 +1,144 @@ +// +// CHBDataUseConsent.h +// Chartboost +// +// Copyright 2020 Chartboost. All rights reserved. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! +Constant that identifies a privacy standard to comply to. +*/ +typedef NSString * CHBPrivacyStandard NS_TYPED_EXTENSIBLE_ENUM; +/*! @brief GDPR privacy standard identifier */ +FOUNDATION_EXPORT CHBPrivacyStandard const CHBPrivacyStandardGDPR; +/*! @brief CCPA privacy standard identifier */ +FOUNDATION_EXPORT CHBPrivacyStandard const CHBPrivacyStandardCCPA; +/*! @brief COPPA privacy standard identifier */ +FOUNDATION_EXPORT CHBPrivacyStandard const CHBPrivacyStandardCOPPA; +/*! @brief LGPD privacy standard identifier */ +FOUNDATION_EXPORT CHBPrivacyStandard const CHBPrivacyStandardLGPD; + +/*! +Abstract class. Subclasses define a data use consent option for a privacy standard. +# Discussion # +Not intended to be used directly, always use a subclass to pass to +[Chartboost addDataUseConsent:] or to cast the result of +[Chartboost dataUseConsentForPrivacyStandard:] +*/ +@interface CHBDataUseConsent: NSObject +/*! The identifier for the privacy standard this consent applies to. */ +@property (nonatomic, readonly) CHBPrivacyStandard privacyStandard; +/*! Use the subclasses initializers to obtain a valid consent instance. */ +- (instancetype)init NS_UNAVAILABLE; + +@end + +// MARK: - GDPR + +/*! +Consent options for GDPR compliance. +*/ +typedef NS_ENUM(NSUInteger, CHBGDPRConsent) { + /*! User does not consent to behavioral targeting in compliance with GDPR. */ + CHBGDPRConsentNonBehavioral, + /*! User consents to behavioral targeting in compliance with GDPR. */ + CHBGDPRConsentBehavioral +} NS_SWIFT_NAME(CHBGDPRDataUseConsent.Consent); + +/*! +CHBDataUseConsent subclass for compliance with GDPR. +*/ +NS_SWIFT_NAME(CHBDataUseConsent.GDPR) +@interface CHBGDPRDataUseConsent: CHBDataUseConsent +/*! The GDPR consent option. */ +@property (nonatomic, readonly) CHBGDPRConsent consent; +/*! +Returns a GDPR consent object. +- parameter consent: The desired GDPR consent option. +*/ ++ (CHBGDPRDataUseConsent *)gdprConsent:(CHBGDPRConsent)consent NS_SWIFT_NAME(init(_:)); + +@end + +// MARK: - CCPA + +/*! +Consent options for CCPA compliance. +*/ +typedef NS_ENUM(NSUInteger, CHBCCPAConsent) { + /*! User does not consent to the sale of his or her personal information in compliance with CCPA. */ + CHBCCPAConsentOptOutSale, + /*! User consents to the sale of his or her personal information in compliance with CCPA. */ + CHBCCPAConsentOptInSale +} NS_SWIFT_NAME(CHBCCPADataUseConsent.Consent); + +/*! +CHBDataUseConsent subclass for compliance with CCPA. +*/ +NS_SWIFT_NAME(CHBDataUseConsent.CCPA) +@interface CHBCCPADataUseConsent: CHBDataUseConsent +/*!The CCPA consent option. */ +@property (nonatomic, readonly) CHBCCPAConsent consent; +/*! +Returns a CCPA consent object. +- parameter consent: The desired CCPA consent option. +*/ ++ (CHBCCPADataUseConsent *)ccpaConsent:(CHBCCPAConsent)consent NS_SWIFT_NAME(init(_:)); +@end + +// MARK: - COPPA + +/*! +CHBDataUseConsent subclass for compliance with COPPA. +*/ +NS_SWIFT_NAME(CHBDataUseConsent.COPPA) +@interface CHBCOPPADataUseConsent: CHBDataUseConsent +/*!Indicates if the app is directed to children. */ +@property (nonatomic, readonly) BOOL isChildDirected; +/*! +Returns a COPPA consent object. +- parameter isChildDirected: Pass `true` if your app is directed to children. + */ ++ (CHBCOPPADataUseConsent *)isChildDirected:(BOOL)isChildDirected NS_SWIFT_NAME(init(isChildDirected:)); +@end + +// MARK: - LGPD + +/*! +CHBDataUseConsent subclass for compliance with LGPD. +*/ +NS_SWIFT_NAME(CHBDataUseConsent.LGPD) +@interface CHBLGPDDataUseConsent: CHBDataUseConsent +/*!Indicates if the user consents to behavioral targeting in compliance with LGPD. */ +@property (nonatomic, readonly) BOOL allowBehavioralTargeting; +/*! +Returns a LGPD consent object. +- parameter allowBehavioralTargeting: Pass `true` if the user consents to behavioral targeting, `false` otherwise. +*/ ++ (CHBLGPDDataUseConsent *)allowBehavioralTargeting:(BOOL)allowBehavioralTargeting NS_SWIFT_NAME(init(allowBehavioralTargeting:)); +@end + +// MARK: - Custom + +/*! +CHBDataUseConsent subclass for compliance with a custom privacy standard. +*/ +NS_SWIFT_NAME(CHBDataUseConsent.Custom) +@interface CHBCustomDataUseConsent: CHBDataUseConsent +/*!The custom consent value. */ +@property (nonatomic, readonly) NSString *consent; +/*! +Returns a custom consent object. +# Discussion # +- Normally you would use other CHBDataUseConsent subclasses instead, which provide predefined options for current privacy standards. +- If you decide to use this make sure you pass valid values, as defined in [Chartboost Helpsite - Privacy Methods](https://answers.chartboost.com/en-us/child_article/ios-privacy-methods) +- parameter privacyStandard: The desired privacy standard identifier. +- parameter consent: The desired consent value. +*/ ++ (CHBCustomDataUseConsent *)customConsentWithPrivacyStandard:(CHBPrivacyStandard)privacyStandard consent:(NSString *)consent NS_SWIFT_NAME(init(privacyStandard:consent:)); + +@end + +NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBInterstitial.h b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBInterstitial.h new file mode 100644 index 0000000..9f7602e --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBInterstitial.h @@ -0,0 +1,149 @@ +/* + * CHBInterstitial.h + * Chartboost + * + * Copyright 2019 Chartboost. All rights reserved. + */ + +#import +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! +CHBInterstitial is a full-screen ad. +# Discussion # +- To show an interstitial it first needs to be cached. Trying to show an uncached interstitial will always fail, thus it is recommended to always check if the ad is cached first. +- You can create and cache as many interstitial ads as you want, but only one can be presented at the same time. +- For more information on integrating and using the Chartboost SDK please visit our help site documentation at [Chartboost Helpsite](https://help.chartboost.com) + +A basic implementation would look like this: +```objc +- (void)createAndCacheInterstitial { + self.interstitial = [[CHBInterstitial alloc] initWithLocation:@"YOUR_LOCATION_NAME" delegate:self]; + [self.interstitial cache]; +} + +- (void)showInterstitial { + if (self.interstitial.isCached) { + [self.interstitial showFromViewController:self]; + } +} + +// Delegate methods +- (void)didCacheAd:(CHBCacheEvent *)event error:(nullable CHBCacheError *)error { + if (error) { + // Handle error, possibly scheduling a retry + } +} + +- (void)willShowAd:(CHBShowEvent *)event { + // Pause ongoing processes + } + +- (void)didShowAd:(CHBShowEvent *)event error:(CHBShowError *)error { + if (error) { + // Resume paused processes + } +} + +- (void)didDismissAd:(CHBDismissEvent *)event { + // Resume paused processes +} +``` +# Notes # +- If your application uses a View controller-based status bar appearance (usually the default), an ad shown with a valid view controller will hide the status bar. Otherwise it is your responsibility to hide it or not. +*/ +@interface CHBInterstitial : NSObject + +/*! +Chartboost location for the ad. +# Discussion # +Used to obtain ads with increased performance. +*/ +@property (nonatomic, readonly) NSString *location; + +/*! +The delegate instance to receive interstitial callbacks. +# Discussion # +See CHBAdDelegate.h for more info. +*/ +@property (nonatomic, weak, nullable) id delegate; + +/*! +Determines if a cached ad exists. +# Discussion # +- A return value of YES here indicates that it is safe to call the ``(showFromViewController:)`` method. +- Calling this method when this value is NO will cause the show request to fail with a `CHBShowErrorCodeNoCachedAd` error. +- returns:YES if there is a cached ad, and NO if not. +*/ +@property (nonatomic, readonly) BOOL isCached; + +/*! +The initializer for the interstitial object. +- parameter location: Location for the interstitial. See the location property documentation. +- parameter delegate: Delegate for the interstitial. See the delegate property documentation. +*/ +- (instancetype)initWithLocation:(NSString *)location + delegate:(nullable id)delegate; + +/*! +The initializer for interstitial ads intended to be mediated by another SDK. + # Discussion # + Use this initializer only if you are writing an adapter to use Chartboost with another mediation solution. + - parameter location: Location for the interstitial ad. See the location property documentation. + - parameter mediation: Information about the mediation SDK that is requesting this ad. + - parameter delegate: Delegate for the rewarded ad. See the delegate property documentation. + */ +- (instancetype)initWithLocation:(NSString *)location + mediation:(nullable CHBMediation *)mediation + delegate:(nullable id)delegate; + +/*! +# Discussion # +Please use -[CHBInterstitial initWithLocation:delegate:] instead. +*/ +- (instancetype)init NS_UNAVAILABLE; + +/*! +Caches an ad. +# Discussion # +- This method will first check if there is a cached ad and, if found, will do nothing. +- If no cached ad exists the method will attempt to fetch it from the Chartboost server. +- Implement ``(didCacheAd:error:)`` in your ad delegate to be notified of a cache request result. +*/ +- (void)cache; + +/*! +Caches an ad using an OpenRTB bid response. +# Discussion # +Use this method if you want to cache an ad using a winning bid obtained from the Chartboost bidder. +Use the isCached property or implement ``(didCacheAd:error:)``in your ad delegate to be notified of a cache request result. +- parameter bidResponse: A bid response containing information about the ad to cache in OpenRTB format. +*/ +- (void)cacheBidResponse:(NSString *)bidResponse NS_SWIFT_NAME(cache(bidResponse:)); + +/*! +Clears the ad cache. + # Discussion # + - This will do nothing if there's no cached ad. Otherwise it will remove any data related to the ad, + bringing the ad instance back to a non-cached state. + After calling this method you may call `cache` again and a new ad will be fetched. + */ +- (void)clearCache; + +/*! +Shows an ad. +# Discussion # +- This method will first check if there is a cached ad, if found it will present it. + If no cached ad exists the request will fail with a `CHBShowErrorCodeNoCachedAd` error. +- Passing a non-nil view controller is required. +- Implement ``(didShowAd:error:)`` in your ad delegate to be notified of a show request result. +- parameter viewController: The view controller to present the ad on. +*/ +- (void)showFromViewController:(UIViewController *)viewController; + +@end + +NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBMediation.h b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBMediation.h new file mode 100644 index 0000000..61d0d26 --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBMediation.h @@ -0,0 +1,39 @@ +/* + * CHBMediation.h + * Chartboost + * + * Copyright 2019 Chartboost. All rights reserved. + */ + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! +A class that holds information about the mediation library used to create an ad. +*/ +@interface CHBMediation : NSObject +/*! The mediation library name. */ +@property (nonatomic, readonly) NSString *name; +/*! The mediation library version. */ +@property (nonatomic, readonly) NSString *libraryVersion; +/*! The mediation library adapter version. */ +@property (nonatomic, readonly) NSString *adapterVersion; + +/*! +The initializer for the mediation object. +- parameter name: The name of the mediation library used. E.g. "Helium" +- parameter libraryVersion: A string representing the library version. E.g. "5.1.0" +- parameter adapterVersion: A string representing the Chartbooost adapter version for this library. E.g. "5.1.0.1" +*/ +- (instancetype)initWithName:(NSString *)name libraryVersion:(NSString*)libraryVersion adapterVersion:(NSString*)adapterVersion; + +/* +# Discussion # +Please use -[CHBMediation initWithName:libraryVersion:adapterVersion:] instead. +*/ +- (instancetype)CHBMediation NS_UNAVAILABLE; + +@end + +NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBRewarded.h b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBRewarded.h new file mode 100644 index 0000000..5165c6c --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/CHBRewarded.h @@ -0,0 +1,155 @@ +// +// CHBRewarded.h +// Chartboost +// +// Copyright 2021 Chartboost. All rights reserved. +// + +#import +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! +CHBRewarded is a full-screen ad that provides some reward to the user. +# Discussion # +- To show a rewarded ad it first needs to be cached. Trying to show an uncached rewarded ad will always fail, thus it is recommended to always check if the ad is cached first. +- You can create and cache as many rewarded ads as you want, but only one can be presented at the same time. +- For more information on integrating and using the Chartboost SDK please visit our help site documentation at [Chartboost Helpsite](https://help.chartboost.com) + + A basic implementation would look like this: + ```objc + - (void)createAndCacheRewarded { + self.rewarded = [[CHBRewarded alloc] initWithLocation:@"YOUR_LOCATION_NAME" delegate:self]; + [self.rewarded cache]; + } + + - (void)showRewarded { + if (self.rewarded.isCached) { + [self.rewarded showFromViewController:self]; + } + } + + // Delegate methods + + - (void)didCacheAd:(CHBCacheEvent *)event error:(nullable CHBCacheError *)error { + if (error) { + // Handle error, possibly scheduling a retry + } + } + + - (void)willShowAd:(CHBShowEvent *)event { + // Pause ongoing processes + } + + - (void)didShowAd:(CHBShowEvent *)event error:(CHBShowError *)error { + if (error) { + // Resume paused processes. Note that if showing the ad fails didEarnReward: will not be called. + } + } + + - (void)didDismissAd:(CHBDismissEvent *)event { + // Resume paused processes + } + + - (void)didEarnReward:(CHBRewardEvent *)event { + // Update app state with event.reward + } + ``` +# Notes # + - If your application uses a View controller-based status bar appearance (usually the default), an ad shown with a valid view controller will hide the status bar. Otherwise it is your responsibility to hide it or not. + */ +@interface CHBRewarded : NSObject + +/*! +Chartboost location for the ad. + # Discussion # + Used to obtain ads with increased performance. + */ +@property (nonatomic, readonly) NSString *location; + +/*! +The delegate instance to receive rewarded callbacks. +# Discussion # +See CHBAdDelegate.h for more info. +*/ +@property (nonatomic, weak, nullable) id delegate; + +/*! +Determines if a cached ad exists. +# Discussion # +- A return value of YES here indicates that it is safe to call the ``(showFromViewController:)`` method. +- Calling this method when this value is NO will cause the show request to fail with a `CHBShowErrorCodeNoCachedAd` error. +- returns:YES if there is a cached ad, and NO if not. +*/ +@property (nonatomic, readonly) BOOL isCached; + +/*! +The initializer for the rewarded ad object. + - parameter location: Location for the rewarded ad. See the location property documentation. + - parameter delegate: Delegate for the rewarded ad. See the delegate property documentation. +*/ +- (instancetype)initWithLocation:(NSString *)location + delegate:(nullable id)delegate; + +/*! + The initializer for rewarded ads intended to be mediated by another SDK. + # Discussion # + Use this initializer only if you are writing an adapter to use Chartboost with another mediation solution. + - parameter location: Location for the rewarded ad. See the location property documentation. + - parameter mediation: Information about the mediation SDK that is requesting this ad. + - parameter delegate: Delegate for the rewarded ad. See the delegate property documentation. +*/ +- (instancetype)initWithLocation:(NSString *)location + mediation:(nullable CHBMediation *)mediation + delegate:(nullable id)delegate; + +/*! +# Discussion # +Please use -[CHBRewarded initWithLocation:delegate:] instead. +*/ +- (instancetype)init NS_UNAVAILABLE; + +/*! +Caches an ad. + # Discussion # + - This method will first check if there is a cached ad and, if found, will do nothing. + - If no cached ad exists the method will attempt to fetch it from the Chartboost server. + - Implement ``(didCacheAd:error:)`` in your ad delegate to be notified of a cache request result. + */ +- (void)cache; + +/*! +Caches an ad using an OpenRTB bid response. +# Discussion # +Use this method if you want to cache an ad using a winning bid obtained from the Chartboost bidder. +Use the isCached property or implement ``(didCacheAd:error:)``in your ad delegate to be notified of a cache request result. +- parameter bidResponse: A bid response containing information about the ad to cache in OpenRTB format. +*/ +- (void)cacheBidResponse:(NSString *)bidResponse NS_SWIFT_NAME(cache(bidResponse:)); + +/*! +Clears the ad cache. + # Discussion # + - This will do nothing if there's no cached ad. Otherwise it will remove any data related to the ad, + bringing the ad instance back to a non-cached state. + After calling this method you may call `cache` again and a new ad will be fetched. + */ +- (void)clearCache; + +/*! +Shows an ad. +# Discussion # +- This method will first check if there is a cached ad, if found it will present it. + If no cached ad exists the request will fail with a `CHBShowErrorCodeNoCachedAd` error. +- Passing a non-nil view controller is required. +- Implement ``(didShowAd:error:)`` in your ad delegate to be notified of a show request result. +- parameter viewController: The view controller to present the ad on. +*/ +- (void)showFromViewController:(UIViewController *)viewController; + +@end + +NS_ASSUME_NONNULL_END + diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/Chartboost.h b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/Chartboost.h new file mode 100644 index 0000000..45e8c6c --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/Chartboost.h @@ -0,0 +1,113 @@ +// +// Chartboost.h +// Chartboost +// +// Copyright 2018 Chartboost. All rights reserved. +// + +#import +#import +#import +#import +#import + +@class CHBStartError; + +NS_ASSUME_NONNULL_BEGIN + +/*! +Chartboost SDK logging level options +*/ +typedef NS_ENUM(NSUInteger, CBLoggingLevel) { + CBLoggingLevelOff, + CBLoggingLevelError, + CBLoggingLevelWarning, + CBLoggingLevelInfo, + CBLoggingLevelVerbose +}; + +/*! +Provides global settings and shared functionality for the Chartboost SDK. +# Discussion # +- Make sure to start Chartboost before requesting any ad. +- Setting data use consent information beforehand is also highly recommended, otherwise Chartboost's ability to provide ads might be hindered. +*/ +@interface Chartboost : NSObject + +/*! +Starts the SDK with the publisher app credentials. +# Discussion # +It takes an error parameter which indicates if the initialization succeeded or not. +This method must be called before creating an ad. Other methods, like data use consent or logging level methods, are fine to call before start. +- parameter appID: The Chartboost application ID for this app. +- parameter appSignature: The Chartboost application signature for this app. +- parameter completion: A completion block to be executed when the SDK finishes initializing. +*/ ++ (void)startWithAppID:(NSString *)appID appSignature:(NSString *)appSignature completion:(void (^)(CHBStartError * _Nullable error))completion; + +/*! +Use to restrict Chartboost's ability to collect personal data from the user. +# Discussion # +- This method can be called multiple times to set the consent for different privacy standards. +- If a consent has already been set for a privacy standard, adding a consent object for that standard will overwrite the previous value. +- This method should be called before starting the Chartboost SDK with startWithAppID:appSignature:completion: if possible. +- The added consents are persisted, so you may just call this when the consent status needs to be updated. +*/ ++ (void)addDataUseConsent:(CHBDataUseConsent *)consent NS_SWIFT_NAME(addDataUseConsent(_:)); + +/*! +Clears the previously added consent for the desired privacy standard. +# Discussion # +- Chartboost persists the added consents, so you'll need to call this method if you want to withdraw a previously added consent. +- If no consent was available for the indicated standard nothing will happen. +- parameter privacyStandard: The privacy standard for which you want to clear the consent. +*/ ++ (void)clearDataUseConsentForPrivacyStandard:(CHBPrivacyStandard)privacyStandard NS_SWIFT_NAME(clearDataUseConsent(for:)); + +/*! +Returns the current consent status for the desired privacy standard. +# Discussion # +Use this to check the current consent status, either set by a call to addDataUseConsent: or persisted from a call to the same method on a previous app run. You may need to cast the returned object to the proper CHBDataUseConsent subclass in order to read its consent value. +- parameter privacyStandard: The privacy standard for which you want to obtain the consent status. +- returns: A CHBDataUseConsent subclass (the same one used to set the consent in addDataUseConsent:) or nil if no consent status is currently available. + +For example, to check if a consent is not set for GDPR: + ```objc + // Obj-C + if (![Chartboost dataUseConsentForPrivacyStandard:CHBPrivacyStandardGDPR]) { ... } + // Swift + if Chartboost.dataUseConsent(for: .GDPR) == nil { ... } +``` +To check the specific consent status for GDPR: + ```objc + // Obj-C + CHBGDPRDataUseConsent *gdpr = [Chartboost dataUseConsentForPrivacyStandard:CHBPrivacyStandardGDPR]; + if (gdpr && gdpr.consent == CHBGDPRConsentNonBehavioral) { ... } + // Swift + let gdpr = Chartboost.dataUseConsent(for: .GDPR) as? CHBDataUseConsent.GDPR + if gdpr?.consent == .nonBehavioral { ... } + ``` +*/ ++ (nullable __kindof CHBDataUseConsent *)dataUseConsentForPrivacyStandard:(CHBPrivacyStandard)privacyStandard NS_SWIFT_NAME(dataUseConsent(for:)); + +/*! +The version of the Chartboost SDK. + */ ++ (NSString *)getSDKVersion; + +/*! +Sets a logging level. + - parameter loggingLevel: The minimum level that's going to be logged +# Discussion # +Logging by default is off. + */ ++ (void)setLoggingLevel:(CBLoggingLevel)loggingLevel; + +/*! +Returns the token used to authenticate with the Chartboost servers. + */ ++ (nullable NSString *)bidderToken; + +@end + +NS_ASSUME_NONNULL_END diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/ChartboostSDK-Swift.h b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/ChartboostSDK-Swift.h new file mode 100644 index 0000000..f5100e4 --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/ChartboostSDK-Swift.h @@ -0,0 +1,702 @@ +#if 0 +#elif defined(__arm64__) && __arm64__ +// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +#ifndef CHARTBOOSTSDK_SWIFT_H +#define CHARTBOOSTSDK_SWIFT_H +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wduplicate-method-match" +#pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) +#include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else +#include +#include +#include +#endif + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +#else +# define SWIFT_RELEASES_ARGUMENT +#endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT +#endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#endif +#if defined(__OBJC__) +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#endif +#if !defined(SWIFT_EXTERN) +# if defined(__cplusplus) +# define SWIFT_EXTERN extern "C" +# else +# define SWIFT_EXTERN extern +# endif +#endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +@import Foundation; +#endif + +#import + +#endif +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="ChartboostSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__OBJC__) + +@interface CHBMediation (SWIFT_EXTENSION(ChartboostSDK)) +- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT; +@end + +@class NSString; +@class NSCoder; + +/// An error object passed on cache-related delegate methods. +SWIFT_CLASS_NAMED("CacheError") +@interface CHBCacheError : NSError +- (nonnull instancetype)initWithDomain:(NSString * _Nonnull)domain code:(NSInteger)code userInfo:(NSDictionary * _Nullable)dict OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + +/// Error codes for failed cache operations. +typedef SWIFT_ENUM_NAMED(NSInteger, CHBCacheErrorCode, "CacheErrorCode", open) { + CHBCacheErrorCodeInternalError = 0, + CHBCacheErrorCodeInternetUnavailable = 1, + CHBCacheErrorCodeNetworkFailure = 2, + CHBCacheErrorCodeNoAdFound = 3, + CHBCacheErrorCodeSessionNotStarted = 4, + CHBCacheErrorCodeAssetDownloadFailure = 5, + CHBCacheErrorCodePublisherDisabled = 6, + CHBCacheErrorCodeServerError = 7, +}; + + +/// An error object passed on click-related delegate methods. +SWIFT_CLASS_NAMED("ClickError") +@interface CHBClickError : NSError +- (nonnull instancetype)initWithDomain:(NSString * _Nonnull)domain code:(NSInteger)code userInfo:(NSDictionary * _Nullable)dict OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + +/// Error codes for failed click operations. +typedef SWIFT_ENUM_NAMED(NSInteger, CHBClickErrorCode, "ClickErrorCode", open) { + CHBClickErrorCodeUriInvalid = 0, + CHBClickErrorCodeUriUnrecognized = 1, + CHBClickErrorCodeInternalError = 2, +}; + + +@interface NSError (SWIFT_EXTENSION(ChartboostSDK)) +/// IMPORTANT: For 64-bit and iPhone OS applications, there is a linker bug that prevents -ObjC from loading objects files from static libraries that contain only categories and no classes. The workaround is to use the -all_load or -force_load flags. -all_load forces the linker to load all object files from every archive it sees, even those without Objective-C code. -force_load is available in Xcode 3.2 and later. It allows finer grain control of archive loading. Each -force_load option must be followed by a path to an archive, and every object file in that archive will be loaded. +/// The Solution applied here is to include this trackDescription method inside of a file that already contains other classes so it gets linked. +- (NSString * _Nonnull)trackDescription SWIFT_WARN_UNUSED_RESULT; +@end + + + +/// An error object passed on show-related delegate methods. +SWIFT_CLASS_NAMED("ShowError") +@interface CHBShowError : NSError +- (nonnull instancetype)initWithDomain:(NSString * _Nonnull)domain code:(NSInteger)code userInfo:(NSDictionary * _Nullable)dict OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + +/// Error codes for failed show operations. +typedef SWIFT_ENUM_NAMED(NSInteger, CHBShowErrorCode, "ShowErrorCode", open) { + CHBShowErrorCodeInternalError = 0, + CHBShowErrorCodeSessionNotStarted = 1, + CHBShowErrorCodeInternetUnavailable = 2, + CHBShowErrorCodePresentationFailure = 3, + CHBShowErrorCodeNoCachedAd = 4, + CHBShowErrorCodeNoViewController = 5, + CHBShowErrorCodeNoAdInstance = 6, + CHBShowErrorCodeAssetsFailure = 7, +}; + + +/// An error object passed on SDK start completion callbacks. +SWIFT_CLASS_NAMED("StartError") +@interface CHBStartError : NSError +- (nonnull instancetype)initWithDomain:(NSString * _Nonnull)domain code:(NSInteger)code userInfo:(NSDictionary * _Nullable)dict OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + +/// Error codes for failed start operations. +typedef SWIFT_ENUM_NAMED(NSInteger, CHBStartErrorCode, "StartErrorCode", open) { + CHBStartErrorCodeInvalidCredentials = 0, + CHBStartErrorCodeNetworkFailure = 1, + CHBStartErrorCodeServerError = 2, +}; + + +#endif +#if defined(__cplusplus) +#endif +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#pragma clang diagnostic pop +#endif + +#elif defined(__x86_64__) && __x86_64__ +// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +#ifndef CHARTBOOSTSDK_SWIFT_H +#define CHARTBOOSTSDK_SWIFT_H +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wduplicate-method-match" +#pragma clang diagnostic ignored "-Wauto-import" +#if defined(__OBJC__) +#include +#endif +#if defined(__cplusplus) +#include +#include +#include +#else +#include +#include +#include +#endif + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if __has_attribute(ns_consumed) +# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) +#else +# define SWIFT_RELEASES_ARGUMENT +#endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT +#endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#endif +#if defined(__OBJC__) +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#endif +#if !defined(SWIFT_EXTERN) +# if defined(__cplusplus) +# define SWIFT_EXTERN extern "C" +# else +# define SWIFT_EXTERN extern +# endif +#endif +#if !defined(SWIFT_CALL) +# define SWIFT_CALL __attribute__((swiftcall)) +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT noexcept +#endif +#else +#if !defined(SWIFT_NOEXCEPT) +# define SWIFT_NOEXCEPT +#endif +#endif +#if defined(__cplusplus) +#if !defined(SWIFT_CXX_INT_DEFINED) +#define SWIFT_CXX_INT_DEFINED +namespace swift { +using Int = ptrdiff_t; +using UInt = size_t; +} +#endif +#endif +#if defined(__OBJC__) +#if __has_feature(modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +@import Foundation; +#endif + +#import + +#endif +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" +#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="ChartboostSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__OBJC__) + +@interface CHBMediation (SWIFT_EXTENSION(ChartboostSDK)) +- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT; +@end + +@class NSString; +@class NSCoder; + +/// An error object passed on cache-related delegate methods. +SWIFT_CLASS_NAMED("CacheError") +@interface CHBCacheError : NSError +- (nonnull instancetype)initWithDomain:(NSString * _Nonnull)domain code:(NSInteger)code userInfo:(NSDictionary * _Nullable)dict OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + +/// Error codes for failed cache operations. +typedef SWIFT_ENUM_NAMED(NSInteger, CHBCacheErrorCode, "CacheErrorCode", open) { + CHBCacheErrorCodeInternalError = 0, + CHBCacheErrorCodeInternetUnavailable = 1, + CHBCacheErrorCodeNetworkFailure = 2, + CHBCacheErrorCodeNoAdFound = 3, + CHBCacheErrorCodeSessionNotStarted = 4, + CHBCacheErrorCodeAssetDownloadFailure = 5, + CHBCacheErrorCodePublisherDisabled = 6, + CHBCacheErrorCodeServerError = 7, +}; + + +/// An error object passed on click-related delegate methods. +SWIFT_CLASS_NAMED("ClickError") +@interface CHBClickError : NSError +- (nonnull instancetype)initWithDomain:(NSString * _Nonnull)domain code:(NSInteger)code userInfo:(NSDictionary * _Nullable)dict OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + +/// Error codes for failed click operations. +typedef SWIFT_ENUM_NAMED(NSInteger, CHBClickErrorCode, "ClickErrorCode", open) { + CHBClickErrorCodeUriInvalid = 0, + CHBClickErrorCodeUriUnrecognized = 1, + CHBClickErrorCodeInternalError = 2, +}; + + +@interface NSError (SWIFT_EXTENSION(ChartboostSDK)) +/// IMPORTANT: For 64-bit and iPhone OS applications, there is a linker bug that prevents -ObjC from loading objects files from static libraries that contain only categories and no classes. The workaround is to use the -all_load or -force_load flags. -all_load forces the linker to load all object files from every archive it sees, even those without Objective-C code. -force_load is available in Xcode 3.2 and later. It allows finer grain control of archive loading. Each -force_load option must be followed by a path to an archive, and every object file in that archive will be loaded. +/// The Solution applied here is to include this trackDescription method inside of a file that already contains other classes so it gets linked. +- (NSString * _Nonnull)trackDescription SWIFT_WARN_UNUSED_RESULT; +@end + + + +/// An error object passed on show-related delegate methods. +SWIFT_CLASS_NAMED("ShowError") +@interface CHBShowError : NSError +- (nonnull instancetype)initWithDomain:(NSString * _Nonnull)domain code:(NSInteger)code userInfo:(NSDictionary * _Nullable)dict OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + +/// Error codes for failed show operations. +typedef SWIFT_ENUM_NAMED(NSInteger, CHBShowErrorCode, "ShowErrorCode", open) { + CHBShowErrorCodeInternalError = 0, + CHBShowErrorCodeSessionNotStarted = 1, + CHBShowErrorCodeInternetUnavailable = 2, + CHBShowErrorCodePresentationFailure = 3, + CHBShowErrorCodeNoCachedAd = 4, + CHBShowErrorCodeNoViewController = 5, + CHBShowErrorCodeNoAdInstance = 6, + CHBShowErrorCodeAssetsFailure = 7, +}; + + +/// An error object passed on SDK start completion callbacks. +SWIFT_CLASS_NAMED("StartError") +@interface CHBStartError : NSError +- (nonnull instancetype)initWithDomain:(NSString * _Nonnull)domain code:(NSInteger)code userInfo:(NSDictionary * _Nullable)dict OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder OBJC_DESIGNATED_INITIALIZER; +@end + +/// Error codes for failed start operations. +typedef SWIFT_ENUM_NAMED(NSInteger, CHBStartErrorCode, "StartErrorCode", open) { + CHBStartErrorCodeInvalidCredentials = 0, + CHBStartErrorCodeNetworkFailure = 1, + CHBStartErrorCodeServerError = 2, +}; + + +#endif +#if defined(__cplusplus) +#endif +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#pragma clang diagnostic pop +#endif + +#else +#error unsupported Swift architecture +#endif diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/ChartboostSDK.h b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/ChartboostSDK.h new file mode 100644 index 0000000..fe015a6 --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Headers/ChartboostSDK.h @@ -0,0 +1,16 @@ +// +// ChartboostSDK.h +// Chartboost +// +// Copyright 2021 Chartboost. All rights reserved. +// + +#import + +//! Project version number for Chartboost. +FOUNDATION_EXPORT double ChartboostVersionNumber; + +//! Project version string for Chartboost. +FOUNDATION_EXPORT const unsigned char ChartboostVersionString[]; + +#import diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Info.plist b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Info.plist new file mode 100644 index 0000000..eff9e13 Binary files /dev/null and b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Info.plist differ diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.abi.json b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..7c25cb8 --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,4542 @@ +{ + "ABIRoot" : { + "kind" : "Root", + "json_format_version" : 8, + "name" : "TopLevel", + "printedName" : "TopLevel", + "children" : [ + { + "printedName" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import" + }, + { + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "printedName" : "Foundation" + }, + { + "declKind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "kind" : "Import", + "printedName" : "Foundation", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "printedName" : "UIKit", + "moduleName" : "ChartboostSDK", + "name" : "UIKit", + "declKind" : "Import", + "kind" : "Import" + }, + { + "printedName" : "WebKit", + "name" : "WebKit", + "declKind" : "Import", + "kind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "kind" : "Import" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "name" : "Foundation", + "kind" : "Import", + "declKind" : "Import" + }, + { + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "kind" : "Import", + "declKind" : "Import", + "name" : "Foundation" + }, + { + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "printedName" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declKind" : "Import", + "kind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "name" : "Foundation", + "kind" : "Import", + "declKind" : "Import" + }, + { + "kind" : "Import", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declKind" : "Import" + }, + { + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "declKind" : "Import", + "kind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declKind" : "Import", + "printedName" : "CoreGraphics", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "CoreGraphics" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declKind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "kind" : "Import", + "declKind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declKind" : "Import", + "printedName" : "WebKit", + "name" : "WebKit" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "declKind" : "Import" + }, + { + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "kind" : "Import", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "name" : "Foundation" + }, + { + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "name" : "Foundation" + }, + { + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "printedName" : "Foundation" + }, + { + "kind" : "Import", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "WebKit", + "printedName" : "WebKit" + }, + { + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation" + }, + { + "declKind" : "Import", + "kind" : "Import", + "name" : "WebKit", + "printedName" : "WebKit", + "moduleName" : "ChartboostSDK" + }, + { + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "kind" : "Import", + "declKind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import" + }, + { + "kind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import" + }, + { + "declKind" : "Import", + "name" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation" + }, + { + "name" : "UIKit", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import", + "printedName" : "UIKit", + "moduleName" : "ChartboostSDK" + }, + { + "printedName" : "Foundation", + "name" : "Foundation", + "kind" : "Import", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK" + }, + { + "printedName" : "Foundation", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "name" : "Foundation" + }, + { + "kind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "name" : "Foundation" + }, + { + "printedName" : "Foundation", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "name" : "Foundation", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "printedName" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "printedName" : "AVFAudio", + "kind" : "Import", + "declKind" : "Import", + "name" : "AVFAudio" + }, + { + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "declKind" : "Import" + }, + { + "kind" : "Import", + "declKind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation" + }, + { + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "declKind" : "Import" + }, + { + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import" + }, + { + "kind" : "Import", + "name" : "CoreTelephony", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "printedName" : "CoreTelephony" + }, + { + "declKind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import" + }, + { + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import" + }, + { + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "kind" : "Import", + "declKind" : "Import" + }, + { + "declKind" : "Import", + "name" : "UIKit", + "printedName" : "UIKit", + "kind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "declKind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation" + }, + { + "name" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "printedName" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "declKind" : "Import" + }, + { + "name" : "Foundation", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "kind" : "Import", + "declKind" : "Import", + "printedName" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "printedName" : "Foundation" + }, + { + "declKind" : "Import", + "name" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation" + }, + { + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declKind" : "Import", + "name" : "Foundation" + }, + { + "printedName" : "Foundation", + "kind" : "Import", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "name" : "Foundation", + "printedName" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK" + }, + { + "name" : "Foundation", + "printedName" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "name" : "Foundation", + "printedName" : "Foundation", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "declKind" : "Import", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "StoreKit", + "printedName" : "StoreKit" + }, + { + "printedName" : "Foundation", + "declKind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "printedName" : "UIKit", + "moduleName" : "ChartboostSDK", + "name" : "UIKit", + "declKind" : "Import", + "kind" : "Import" + }, + { + "declKind" : "Import", + "kind" : "Import", + "printedName" : "StoreKit", + "moduleName" : "ChartboostSDK", + "name" : "StoreKit" + }, + { + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "declKind" : "Import", + "name" : "Foundation" + }, + { + "name" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "declKind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "printedName" : "Foundation", + "kind" : "Import", + "name" : "Foundation", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "printedName" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import" + }, + { + "printedName" : "UIKit", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "name" : "UIKit" + }, + { + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation" + }, + { + "printedName" : "Foundation", + "kind" : "Import", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "name" : "Foundation", + "kind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import" + }, + { + "printedName" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "name" : "Foundation" + }, + { + "declKind" : "Import", + "name" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "printedName" : "Foundation", + "kind" : "Import", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "kind" : "Import", + "declKind" : "Import" + }, + { + "kind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "printedName" : "Foundation" + }, + { + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation" + }, + { + "printedName" : "UIKit", + "name" : "UIKit", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "printedName" : "UIKit", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "name" : "UIKit", + "kind" : "Import" + }, + { + "kind" : "Import", + "name" : "SafariServices", + "declKind" : "Import", + "printedName" : "SafariServices", + "moduleName" : "ChartboostSDK" + }, + { + "declKind" : "Import", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation" + }, + { + "printedName" : "Foundation", + "kind" : "Import", + "name" : "Foundation", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "printedName" : "Foundation", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "Foundation" + }, + { + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "name" : "AVFoundation", + "printedName" : "AVFoundation" + }, + { + "name" : "Foundation", + "printedName" : "Foundation", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declKind" : "Import", + "name" : "WebKit", + "printedName" : "WebKit" + }, + { + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import" + }, + { + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "name" : "Foundation", + "kind" : "Import" + }, + { + "name" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation" + }, + { + "kind" : "Import", + "name" : "Foundation", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "name" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declKind" : "Import" + }, + { + "printedName" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation" + }, + { + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import" + }, + { + "name" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "printedName" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "name" : "Foundation" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "name" : "Foundation" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declKind" : "Import", + "name" : "Foundation", + "kind" : "Import" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "declKind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "printedName" : "Foundation", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declKind" : "Import", + "printedName" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "Foundation" + }, + { + "printedName" : "Foundation", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "kind" : "Import", + "printedName" : "Foundation", + "declKind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "declKind" : "Import", + "printedName" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation" + }, + { + "name" : "Foundation", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "name" : "WebKit", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "WebKit", + "kind" : "Import" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "kind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "name" : "Foundation" + }, + { + "name" : "Foundation", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "printedName" : "Foundation", + "kind" : "Import" + }, + { + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declKind" : "Import", + "printedName" : "StoreKit", + "name" : "StoreKit" + }, + { + "kind" : "Import", + "printedName" : "Foundation", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "printedName" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import" + }, + { + "moduleName" : "ChartboostSDK", + "printedName" : "UIKit", + "name" : "UIKit", + "declKind" : "Import", + "kind" : "Import" + }, + { + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "WebKit", + "name" : "WebKit", + "kind" : "Import" + }, + { + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "Foundation" + }, + { + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "name" : "Foundation", + "declKind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import" + }, + { + "printedName" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "declKind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "name" : "AppTrackingTransparency", + "printedName" : "AppTrackingTransparency" + }, + { + "kind" : "Import", + "name" : "Foundation", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "name" : "Foundation", + "kind" : "Import" + }, + { + "kind" : "Import", + "declKind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "printedName" : "Foundation", + "name" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "name" : "Foundation", + "kind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "name" : "Foundation" + }, + { + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "name" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "kind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import" + }, + { + "declKind" : "Enum", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO", + "enumRawTypeName" : "Int", + "kind" : "TypeDecl", + "name" : "CacheErrorCode", + "objc_name" : "CHBCacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "conformances" : [ + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "usr" : "s:SY", + "mangledName" : "$sSY", + "kind" : "Conformance", + "name" : "RawRepresentable", + "children" : [ + { + "kind" : "TypeWitness", + "name" : "RawValue", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "printedName" : "RawValue" + } + ], + "printedName" : "RawRepresentable" + } + ], + "printedName" : "CacheErrorCode", + "children" : [ + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodeInternalError", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO08internalD0yA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 0, + "moduleName" : "ChartboostSDK", + "printedName" : "internalError", + "kind" : "Var", + "name" : "internalError", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodeInternetUnavailable", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO19internetUnavailableyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 1, + "moduleName" : "ChartboostSDK", + "printedName" : "internetUnavailable", + "kind" : "Var", + "name" : "internetUnavailable", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodeNetworkFailure", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO14networkFailureyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 2, + "moduleName" : "ChartboostSDK", + "printedName" : "networkFailure", + "kind" : "Var", + "name" : "networkFailure", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodeNoAdFound", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO9noAdFoundyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 3, + "moduleName" : "ChartboostSDK", + "printedName" : "noAdFound", + "kind" : "Var", + "name" : "noAdFound", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodeSessionNotStarted", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO17sessionNotStartedyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 4, + "moduleName" : "ChartboostSDK", + "printedName" : "sessionNotStarted", + "kind" : "Var", + "name" : "sessionNotStarted", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodeAssetDownloadFailure", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO20assetDownloadFailureyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 5, + "moduleName" : "ChartboostSDK", + "printedName" : "assetDownloadFailure", + "kind" : "Var", + "name" : "assetDownloadFailure", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodePublisherDisabled", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO17publisherDisabledyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 6, + "moduleName" : "ChartboostSDK", + "printedName" : "publisherDisabled", + "kind" : "Var", + "name" : "publisherDisabled", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodeServerError", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO06serverD0yA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 7, + "moduleName" : "ChartboostSDK", + "printedName" : "serverError", + "kind" : "Var", + "name" : "serverError", + "declKind" : "EnumElement" + }, + { + "usr" : "s:13ChartboostSDK14CacheErrorCodeO11descriptionSSvp", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO11descriptionSSvp", + "declAttributes" : [ + "AccessControl" + ], + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK14CacheErrorCodeO11descriptionSSvg", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO11descriptionSSvg", + "accessorKind" : "get", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "description", + "kind" : "Var", + "name" : "description", + "declKind" : "Var" + }, + { + "usr" : "s:13ChartboostSDK14CacheErrorCodeO8rawValueACSgSi_tcfc", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO8rawValueACSgSi_tcfc", + "implicit" : true, + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode?" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "init_kind" : "Designated", + "moduleName" : "ChartboostSDK", + "printedName" : "init(rawValue:)", + "kind" : "Constructor", + "name" : "init", + "declKind" : "Constructor" + }, + { + "usr" : "s:13ChartboostSDK14CacheErrorCodeO8rawValueSivp", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO8rawValueSivp", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK14CacheErrorCodeO8rawValueSivg", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO8rawValueSivg", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessorKind" : "get", + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "rawValue", + "kind" : "Var", + "name" : "rawValue", + "declKind" : "Var" + } + ], + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "inheritsConvenienceInitializers" : true, + "kind" : "TypeDecl", + "objc_name" : "CHBCacheError", + "superclassUsr" : "c:objc(cs)NSError", + "superclassNames" : [ + "Foundation.NSError", + "ObjectiveC.NSObject" + ], + "name" : "CacheError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBCacheError", + "children" : [ + { + "usr" : "s:13ChartboostSDK10CacheErrorC9cacheCodeAA0cdF0OSgvp", + "mangledName" : "$s13ChartboostSDK10CacheErrorC9cacheCodeAA0cdF0OSgvp", + "declAttributes" : [ + "AccessControl", + "RawDocComment" + ], + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode?" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK10CacheErrorC9cacheCodeAA0cdF0OSgvg", + "mangledName" : "$s13ChartboostSDK10CacheErrorC9cacheCodeAA0cdF0OSgvg", + "accessorKind" : "get", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode?" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "cacheCode", + "kind" : "Var", + "name" : "cacheCode", + "declKind" : "Var" + }, + { + "objc_name" : "initWithDomain:code:userInfo:", + "mangledName" : "$s13ChartboostSDK10CacheErrorC6domain4code8userInfoACSS_SiSDySSypGSgtcfc", + "printedName" : "init(domain:code:userInfo:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBCacheError(im)initWithDomain:code:userInfo:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind" : "Designated", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBCacheError", + "printedName" : "ChartboostSDK.CacheError" + }, + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + }, + { + "hasDefaultArg" : true, + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "usr" : "s:SD", + "kind" : "TypeNominal", + "name" : "Dictionary", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "ProtocolComposition", + "printedName" : "Any" + } + ], + "printedName" : "[Swift.String : Any]" + } + ], + "printedName" : "[Swift.String : Any]?" + } + ], + "kind" : "Constructor", + "name" : "init" + }, + { + "objc_name" : "initWithCoder:", + "mangledName" : "$s13ChartboostSDK10CacheErrorC5coderACSgSo7NSCoderC_tcfc", + "printedName" : "init(coder:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBCacheError(im)initWithCoder:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Required" + ], + "init_kind" : "Designated", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBCacheError", + "printedName" : "ChartboostSDK.CacheError" + } + ], + "printedName" : "ChartboostSDK.CacheError?" + }, + { + "kind" : "TypeNominal", + "name" : "NSCoder", + "usr" : "c:objc(cs)NSCoder", + "printedName" : "Foundation.NSCoder" + } + ], + "kind" : "Constructor", + "name" : "init" + } + ], + "conformances" : [ + { + "mangledName" : "$ss8SendableP", + "kind" : "Conformance", + "name" : "Sendable", + "usr" : "s:s8SendableP", + "printedName" : "Sendable" + }, + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + }, + { + "mangledName" : "$ss5ErrorP", + "kind" : "Conformance", + "name" : "Error", + "usr" : "s:s5ErrorP", + "printedName" : "Error" + } + ], + "declKind" : "Class", + "mangledName" : "$s13ChartboostSDK10CacheErrorC", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "printedName" : "CacheError" + }, + { + "conformances" : [ + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "usr" : "s:SY", + "mangledName" : "$sSY", + "kind" : "Conformance", + "name" : "RawRepresentable", + "children" : [ + { + "kind" : "TypeWitness", + "name" : "RawValue", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "printedName" : "RawValue" + } + ], + "printedName" : "RawRepresentable" + } + ], + "children" : [ + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodeInternalError", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO08internalD0yA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 0, + "moduleName" : "ChartboostSDK", + "printedName" : "internalError", + "kind" : "Var", + "name" : "internalError", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodeSessionNotStarted", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO17sessionNotStartedyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 1, + "moduleName" : "ChartboostSDK", + "printedName" : "sessionNotStarted", + "kind" : "Var", + "name" : "sessionNotStarted", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodeInternetUnavailable", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO19internetUnavailableyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 2, + "moduleName" : "ChartboostSDK", + "printedName" : "internetUnavailable", + "kind" : "Var", + "name" : "internetUnavailable", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodePresentationFailure", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO19presentationFailureyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 3, + "moduleName" : "ChartboostSDK", + "printedName" : "presentationFailure", + "kind" : "Var", + "name" : "presentationFailure", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodeNoCachedAd", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO10noCachedAdyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 4, + "moduleName" : "ChartboostSDK", + "printedName" : "noCachedAd", + "kind" : "Var", + "name" : "noCachedAd", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodeNoViewController", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO16noViewControlleryA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 5, + "moduleName" : "ChartboostSDK", + "printedName" : "noViewController", + "kind" : "Var", + "name" : "noViewController", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodeNoAdInstance", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO12noAdInstanceyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 6, + "moduleName" : "ChartboostSDK", + "printedName" : "noAdInstance", + "kind" : "Var", + "name" : "noAdInstance", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodeAssetsFailure", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO13assetsFailureyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 7, + "moduleName" : "ChartboostSDK", + "printedName" : "assetsFailure", + "kind" : "Var", + "name" : "assetsFailure", + "declKind" : "EnumElement" + }, + { + "usr" : "s:13ChartboostSDK13ShowErrorCodeO11descriptionSSvp", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO11descriptionSSvp", + "declAttributes" : [ + "AccessControl" + ], + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK13ShowErrorCodeO11descriptionSSvg", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO11descriptionSSvg", + "accessorKind" : "get", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "description", + "kind" : "Var", + "name" : "description", + "declKind" : "Var" + }, + { + "usr" : "s:13ChartboostSDK13ShowErrorCodeO8rawValueACSgSi_tcfc", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO8rawValueACSgSi_tcfc", + "implicit" : true, + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode?" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "init_kind" : "Designated", + "moduleName" : "ChartboostSDK", + "printedName" : "init(rawValue:)", + "kind" : "Constructor", + "name" : "init", + "declKind" : "Constructor" + }, + { + "usr" : "s:13ChartboostSDK13ShowErrorCodeO8rawValueSivp", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO8rawValueSivp", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK13ShowErrorCodeO8rawValueSivg", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO8rawValueSivg", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessorKind" : "get", + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "rawValue", + "kind" : "Var", + "name" : "rawValue", + "declKind" : "Var" + } + ], + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO", + "declKind" : "Enum", + "objc_name" : "CHBShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "enumRawTypeName" : "Int", + "printedName" : "ShowErrorCode", + "name" : "ShowErrorCode", + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "kind" : "TypeDecl" + }, + { + "kind" : "TypeDecl", + "name" : "ShowError", + "objc_name" : "CHBShowError", + "conformances" : [ + { + "mangledName" : "$ss8SendableP", + "kind" : "Conformance", + "name" : "Sendable", + "usr" : "s:s8SendableP", + "printedName" : "Sendable" + }, + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + }, + { + "mangledName" : "$ss5ErrorP", + "kind" : "Conformance", + "name" : "Error", + "usr" : "s:s5ErrorP", + "printedName" : "Error" + } + ], + "declKind" : "Class", + "mangledName" : "$s13ChartboostSDK9ShowErrorC", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBShowError", + "children" : [ + { + "usr" : "s:13ChartboostSDK9ShowErrorC8showCodeAA0cdF0OSgvp", + "mangledName" : "$s13ChartboostSDK9ShowErrorC8showCodeAA0cdF0OSgvp", + "declAttributes" : [ + "AccessControl", + "RawDocComment" + ], + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode?" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK9ShowErrorC8showCodeAA0cdF0OSgvg", + "mangledName" : "$s13ChartboostSDK9ShowErrorC8showCodeAA0cdF0OSgvg", + "accessorKind" : "get", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode?" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "showCode", + "kind" : "Var", + "name" : "showCode", + "declKind" : "Var" + }, + { + "objc_name" : "initWithDomain:code:userInfo:", + "mangledName" : "$s13ChartboostSDK9ShowErrorC6domain4code8userInfoACSS_SiSDySSypGSgtcfc", + "printedName" : "init(domain:code:userInfo:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBShowError(im)initWithDomain:code:userInfo:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind" : "Designated", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBShowError", + "printedName" : "ChartboostSDK.ShowError" + }, + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + }, + { + "hasDefaultArg" : true, + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "usr" : "s:SD", + "kind" : "TypeNominal", + "name" : "Dictionary", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "ProtocolComposition", + "printedName" : "Any" + } + ], + "printedName" : "[Swift.String : Any]" + } + ], + "printedName" : "[Swift.String : Any]?" + } + ], + "kind" : "Constructor", + "name" : "init" + }, + { + "objc_name" : "initWithCoder:", + "mangledName" : "$s13ChartboostSDK9ShowErrorC5coderACSgSo7NSCoderC_tcfc", + "printedName" : "init(coder:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBShowError(im)initWithCoder:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Required" + ], + "init_kind" : "Designated", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBShowError", + "printedName" : "ChartboostSDK.ShowError" + } + ], + "printedName" : "ChartboostSDK.ShowError?" + }, + { + "kind" : "TypeNominal", + "name" : "NSCoder", + "usr" : "c:objc(cs)NSCoder", + "printedName" : "Foundation.NSCoder" + } + ], + "kind" : "Constructor", + "name" : "init" + } + ], + "moduleName" : "ChartboostSDK", + "superclassUsr" : "c:objc(cs)NSError", + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "printedName" : "ShowError", + "inheritsConvenienceInitializers" : true, + "superclassNames" : [ + "Foundation.NSError", + "ObjectiveC.NSObject" + ] + }, + { + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "printedName" : "ClickErrorCode", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO", + "enumRawTypeName" : "Int", + "conformances" : [ + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "usr" : "s:SY", + "mangledName" : "$sSY", + "kind" : "Conformance", + "name" : "RawRepresentable", + "children" : [ + { + "kind" : "TypeWitness", + "name" : "RawValue", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "printedName" : "RawValue" + } + ], + "printedName" : "RawRepresentable" + } + ], + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "children" : [ + { + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode@CHBClickErrorCodeUriInvalid", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO10uriInvalidyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + } + ], + "printedName" : "ChartboostSDK.ClickErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ClickErrorCode.Type) -> ChartboostSDK.ClickErrorCode" + } + ], + "fixedbinaryorder" : 0, + "moduleName" : "ChartboostSDK", + "printedName" : "uriInvalid", + "kind" : "Var", + "name" : "uriInvalid", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode@CHBClickErrorCodeUriUnrecognized", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO15uriUnrecognizedyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + } + ], + "printedName" : "ChartboostSDK.ClickErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ClickErrorCode.Type) -> ChartboostSDK.ClickErrorCode" + } + ], + "fixedbinaryorder" : 1, + "moduleName" : "ChartboostSDK", + "printedName" : "uriUnrecognized", + "kind" : "Var", + "name" : "uriUnrecognized", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode@CHBClickErrorCodeInternalError", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO08internalD0yA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + } + ], + "printedName" : "ChartboostSDK.ClickErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ClickErrorCode.Type) -> ChartboostSDK.ClickErrorCode" + } + ], + "fixedbinaryorder" : 2, + "moduleName" : "ChartboostSDK", + "printedName" : "internalError", + "kind" : "Var", + "name" : "internalError", + "declKind" : "EnumElement" + }, + { + "usr" : "s:13ChartboostSDK14ClickErrorCodeO11descriptionSSvp", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO11descriptionSSvp", + "declAttributes" : [ + "AccessControl" + ], + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK14ClickErrorCodeO11descriptionSSvg", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO11descriptionSSvg", + "accessorKind" : "get", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "description", + "kind" : "Var", + "name" : "description", + "declKind" : "Var" + }, + { + "usr" : "s:13ChartboostSDK14ClickErrorCodeO8rawValueACSgSi_tcfc", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO8rawValueACSgSi_tcfc", + "implicit" : true, + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + } + ], + "printedName" : "ChartboostSDK.ClickErrorCode?" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "init_kind" : "Designated", + "moduleName" : "ChartboostSDK", + "printedName" : "init(rawValue:)", + "kind" : "Constructor", + "name" : "init", + "declKind" : "Constructor" + }, + { + "usr" : "s:13ChartboostSDK14ClickErrorCodeO8rawValueSivp", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO8rawValueSivp", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK14ClickErrorCodeO8rawValueSivg", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO8rawValueSivg", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessorKind" : "get", + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "rawValue", + "kind" : "Var", + "name" : "rawValue", + "declKind" : "Var" + } + ], + "name" : "ClickErrorCode", + "objc_name" : "CHBClickErrorCode", + "kind" : "TypeDecl", + "moduleName" : "ChartboostSDK", + "declKind" : "Enum" + }, + { + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBClickError", + "objc_name" : "CHBClickError", + "superclassNames" : [ + "Foundation.NSError", + "ObjectiveC.NSObject" + ], + "printedName" : "ClickError", + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "children" : [ + { + "usr" : "s:13ChartboostSDK10ClickErrorC9clickCodeAA0cdF0OSgvp", + "mangledName" : "$s13ChartboostSDK10ClickErrorC9clickCodeAA0cdF0OSgvp", + "declAttributes" : [ + "AccessControl", + "RawDocComment" + ], + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + } + ], + "printedName" : "ChartboostSDK.ClickErrorCode?" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK10ClickErrorC9clickCodeAA0cdF0OSgvg", + "mangledName" : "$s13ChartboostSDK10ClickErrorC9clickCodeAA0cdF0OSgvg", + "accessorKind" : "get", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + } + ], + "printedName" : "ChartboostSDK.ClickErrorCode?" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "clickCode", + "kind" : "Var", + "name" : "clickCode", + "declKind" : "Var" + }, + { + "objc_name" : "initWithDomain:code:userInfo:", + "mangledName" : "$s13ChartboostSDK10ClickErrorC6domain4code8userInfoACSS_SiSDySSypGSgtcfc", + "printedName" : "init(domain:code:userInfo:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBClickError(im)initWithDomain:code:userInfo:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind" : "Designated", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBClickError", + "printedName" : "ChartboostSDK.ClickError" + }, + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + }, + { + "hasDefaultArg" : true, + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "usr" : "s:SD", + "kind" : "TypeNominal", + "name" : "Dictionary", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "ProtocolComposition", + "printedName" : "Any" + } + ], + "printedName" : "[Swift.String : Any]" + } + ], + "printedName" : "[Swift.String : Any]?" + } + ], + "kind" : "Constructor", + "name" : "init" + }, + { + "objc_name" : "initWithCoder:", + "mangledName" : "$s13ChartboostSDK10ClickErrorC5coderACSgSo7NSCoderC_tcfc", + "printedName" : "init(coder:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBClickError(im)initWithCoder:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Required" + ], + "init_kind" : "Designated", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBClickError", + "printedName" : "ChartboostSDK.ClickError" + } + ], + "printedName" : "ChartboostSDK.ClickError?" + }, + { + "kind" : "TypeNominal", + "name" : "NSCoder", + "usr" : "c:objc(cs)NSCoder", + "printedName" : "Foundation.NSCoder" + } + ], + "kind" : "Constructor", + "name" : "init" + } + ], + "superclassUsr" : "c:objc(cs)NSError", + "declKind" : "Class", + "moduleName" : "ChartboostSDK", + "inheritsConvenienceInitializers" : true, + "kind" : "TypeDecl", + "conformances" : [ + { + "mangledName" : "$ss8SendableP", + "kind" : "Conformance", + "name" : "Sendable", + "usr" : "s:s8SendableP", + "printedName" : "Sendable" + }, + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + }, + { + "mangledName" : "$ss5ErrorP", + "kind" : "Conformance", + "name" : "Error", + "usr" : "s:s5ErrorP", + "printedName" : "Error" + } + ], + "name" : "ClickError", + "mangledName" : "$s13ChartboostSDK10ClickErrorC" + }, + { + "enumRawTypeName" : "Int", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "kind" : "TypeDecl", + "conformances" : [ + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "usr" : "s:SY", + "mangledName" : "$sSY", + "kind" : "Conformance", + "name" : "RawRepresentable", + "children" : [ + { + "kind" : "TypeWitness", + "name" : "RawValue", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "printedName" : "RawValue" + } + ], + "printedName" : "RawRepresentable" + } + ], + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "children" : [ + { + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode@CHBStartErrorCodeInvalidCredentials", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO18invalidCredentialsyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + } + ], + "printedName" : "ChartboostSDK.StartErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.StartErrorCode.Type) -> ChartboostSDK.StartErrorCode" + } + ], + "fixedbinaryorder" : 0, + "moduleName" : "ChartboostSDK", + "printedName" : "invalidCredentials", + "kind" : "Var", + "name" : "invalidCredentials", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode@CHBStartErrorCodeNetworkFailure", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO14networkFailureyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + } + ], + "printedName" : "ChartboostSDK.StartErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.StartErrorCode.Type) -> ChartboostSDK.StartErrorCode" + } + ], + "fixedbinaryorder" : 1, + "moduleName" : "ChartboostSDK", + "printedName" : "networkFailure", + "kind" : "Var", + "name" : "networkFailure", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode@CHBStartErrorCodeServerError", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO06serverD0yA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + } + ], + "printedName" : "ChartboostSDK.StartErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.StartErrorCode.Type) -> ChartboostSDK.StartErrorCode" + } + ], + "fixedbinaryorder" : 2, + "moduleName" : "ChartboostSDK", + "printedName" : "serverError", + "kind" : "Var", + "name" : "serverError", + "declKind" : "EnumElement" + }, + { + "usr" : "s:13ChartboostSDK14StartErrorCodeO11descriptionSSvp", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO11descriptionSSvp", + "declAttributes" : [ + "AccessControl" + ], + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK14StartErrorCodeO11descriptionSSvg", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO11descriptionSSvg", + "accessorKind" : "get", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "description", + "kind" : "Var", + "name" : "description", + "declKind" : "Var" + }, + { + "usr" : "s:13ChartboostSDK14StartErrorCodeO8rawValueACSgSi_tcfc", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO8rawValueACSgSi_tcfc", + "implicit" : true, + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + } + ], + "printedName" : "ChartboostSDK.StartErrorCode?" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "init_kind" : "Designated", + "moduleName" : "ChartboostSDK", + "printedName" : "init(rawValue:)", + "kind" : "Constructor", + "name" : "init", + "declKind" : "Constructor" + }, + { + "usr" : "s:13ChartboostSDK14StartErrorCodeO8rawValueSivp", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO8rawValueSivp", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK14StartErrorCodeO8rawValueSivg", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO8rawValueSivg", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessorKind" : "get", + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "rawValue", + "kind" : "Var", + "name" : "rawValue", + "declKind" : "Var" + } + ], + "printedName" : "StartErrorCode", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO", + "declKind" : "Enum", + "name" : "StartErrorCode", + "objc_name" : "CHBStartErrorCode" + }, + { + "superclassNames" : [ + "Foundation.NSError", + "ObjectiveC.NSObject" + ], + "objc_name" : "CHBStartError", + "conformances" : [ + { + "mangledName" : "$ss8SendableP", + "kind" : "Conformance", + "name" : "Sendable", + "usr" : "s:s8SendableP", + "printedName" : "Sendable" + }, + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + }, + { + "mangledName" : "$ss5ErrorP", + "kind" : "Conformance", + "name" : "Error", + "usr" : "s:s5ErrorP", + "printedName" : "Error" + } + ], + "children" : [ + { + "usr" : "s:13ChartboostSDK10StartErrorC9startCodeAA0cdF0OSgvp", + "mangledName" : "$s13ChartboostSDK10StartErrorC9startCodeAA0cdF0OSgvp", + "declAttributes" : [ + "AccessControl", + "RawDocComment" + ], + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + } + ], + "printedName" : "ChartboostSDK.StartErrorCode?" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK10StartErrorC9startCodeAA0cdF0OSgvg", + "mangledName" : "$s13ChartboostSDK10StartErrorC9startCodeAA0cdF0OSgvg", + "accessorKind" : "get", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + } + ], + "printedName" : "ChartboostSDK.StartErrorCode?" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "startCode", + "kind" : "Var", + "name" : "startCode", + "declKind" : "Var" + }, + { + "objc_name" : "initWithDomain:code:userInfo:", + "mangledName" : "$s13ChartboostSDK10StartErrorC6domain4code8userInfoACSS_SiSDySSypGSgtcfc", + "printedName" : "init(domain:code:userInfo:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBStartError(im)initWithDomain:code:userInfo:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind" : "Designated", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBStartError", + "printedName" : "ChartboostSDK.StartError" + }, + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + }, + { + "hasDefaultArg" : true, + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "usr" : "s:SD", + "kind" : "TypeNominal", + "name" : "Dictionary", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "ProtocolComposition", + "printedName" : "Any" + } + ], + "printedName" : "[Swift.String : Any]" + } + ], + "printedName" : "[Swift.String : Any]?" + } + ], + "kind" : "Constructor", + "name" : "init" + }, + { + "objc_name" : "initWithCoder:", + "mangledName" : "$s13ChartboostSDK10StartErrorC5coderACSgSo7NSCoderC_tcfc", + "printedName" : "init(coder:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBStartError(im)initWithCoder:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Required" + ], + "init_kind" : "Designated", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBStartError", + "printedName" : "ChartboostSDK.StartError" + } + ], + "printedName" : "ChartboostSDK.StartError?" + }, + { + "kind" : "TypeNominal", + "name" : "NSCoder", + "usr" : "c:objc(cs)NSCoder", + "printedName" : "Foundation.NSCoder" + } + ], + "kind" : "Constructor", + "name" : "init" + } + ], + "moduleName" : "ChartboostSDK", + "kind" : "TypeDecl", + "superclassUsr" : "c:objc(cs)NSError", + "name" : "StartError", + "declKind" : "Class", + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBStartError", + "printedName" : "StartError", + "mangledName" : "$s13ChartboostSDK10StartErrorC", + "inheritsConvenienceInitializers" : true + }, + { + "kind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation" + }, + { + "declKind" : "Import", + "printedName" : "Foundation", + "kind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "declKind" : "Import" + }, + { + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declKind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import" + }, + { + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "printedName" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "name" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "moduleName" : "ChartboostSDK", + "name" : "AppTrackingTransparency", + "kind" : "Import", + "printedName" : "AppTrackingTransparency", + "declKind" : "Import" + }, + { + "kind" : "Import", + "printedName" : "AdSupport", + "name" : "AdSupport", + "declKind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declKind" : "Import" + }, + { + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "printedName" : "Foundation" + }, + { + "kind" : "Import", + "printedName" : "Foundation", + "declKind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK" + }, + { + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "printedName" : "Foundation", + "kind" : "Import" + }, + { + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import", + "printedName" : "StoreKit", + "name" : "StoreKit" + }, + { + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "printedName" : "Foundation", + "name" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "name" : "CHBMediation", + "declAttributes" : [ + "ObjC", + "Dynamic" + ], + "isOpen" : true, + "declKind" : "Class", + "superclassUsr" : "c:objc(cs)NSObject", + "kind" : "TypeDecl", + "inheritsConvenienceInitializers" : true, + "superclassNames" : [ + "ObjectiveC.NSObject" + ], + "children" : [ + { + "isFromExtension" : true, + "mangledName" : "$sSo12CHBMediationC13ChartboostSDKE6encode2toys7Encoder_p_tKF", + "printedName" : "encode(to:)", + "throwing" : true, + "funcSelfKind" : "NonMutating", + "usr" : "s:So12CHBMediationC13ChartboostSDKE6encode2toys7Encoder_p_tKF", + "declAttributes" : [ + "AccessControl" + ], + "declKind" : "Func", + "moduleName" : "ChartboostSDK", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Void", + "printedName" : "()" + }, + { + "kind" : "TypeNominal", + "name" : "Encoder", + "usr" : "s:s7EncoderP", + "printedName" : "Swift.Encoder" + } + ], + "kind" : "Function", + "name" : "encode" + }, + { + "isFromExtension" : true, + "mangledName" : "$sSo12CHBMediationC13ChartboostSDKE4fromABs7Decoder_p_tKcfc", + "printedName" : "init(from:)", + "throwing" : true, + "usr" : "s:So12CHBMediationC13ChartboostSDKE4fromABs7Decoder_p_tKcfc", + "declAttributes" : [ + "Convenience", + "Required", + "AccessControl" + ], + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "init_kind" : "Convenience", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CHBMediation", + "usr" : "c:objc(cs)CHBMediation", + "printedName" : "ChartboostSDK.CHBMediation" + }, + { + "kind" : "TypeNominal", + "name" : "Decoder", + "usr" : "s:s7DecoderP", + "printedName" : "Swift.Decoder" + } + ], + "kind" : "Constructor", + "name" : "init" + }, + { + "isFromExtension" : true, + "objc_name" : "isEqual:", + "mangledName" : "$sSo12CHBMediationC13ChartboostSDKE7isEqualySbypSgF", + "printedName" : "isEqual(_:)", + "funcSelfKind" : "NonMutating", + "usr" : "c:@CM@ChartboostSDK@@objc(cs)CHBMediation(im)isEqual:", + "overriding" : true, + "declAttributes" : [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "declKind" : "Func", + "moduleName" : "ChartboostSDK", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Bool", + "usr" : "s:Sb", + "printedName" : "Swift.Bool" + }, + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ProtocolComposition", + "printedName" : "Any" + } + ], + "printedName" : "Any?" + } + ], + "isOpen" : true, + "kind" : "Function", + "name" : "isEqual" + } + ], + "printedName" : "CHBMediation", + "isExternal" : true, + "conformances" : [ + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + }, + { + "mangledName" : "$sSe", + "kind" : "Conformance", + "name" : "Decodable", + "usr" : "s:Se", + "printedName" : "Decodable" + }, + { + "mangledName" : "$sSE", + "kind" : "Conformance", + "name" : "Encodable", + "usr" : "s:SE", + "printedName" : "Encodable" + } + ], + "objc_name" : "CHBMediation", + "moduleName" : "ChartboostSDK", + "usr" : "c:objc(cs)CHBMediation" + }, + { + "declKind" : "Class", + "isOpen" : true, + "declAttributes" : [ + "Available", + "ObjC", + "NonSendable", + "Dynamic" + ], + "intro_iOS" : "3.0", + "isExternal" : true, + "superclassNames" : [ + "StoreKit.SKRequest", + "ObjectiveC.NSObject" + ], + "moduleName" : "StoreKit", + "superclassUsr" : "c:objc(cs)SKRequest", + "name" : "SKProductsRequest", + "inheritsConvenienceInitializers" : true, + "conformances" : [ + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + } + ], + "objc_name" : "SKProductsRequest", + "kind" : "TypeDecl", + "printedName" : "SKProductsRequest", + "usr" : "c:objc(cs)SKProductsRequest" + }, + { + "declAttributes" : [ + "ObjC", + "NonSendable", + "Dynamic" + ], + "isExternal" : true, + "conformances" : [ + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + } + ], + "inheritsConvenienceInitializers" : true, + "declKind" : "Class", + "isOpen" : true, + "objc_name" : "NSTimer", + "moduleName" : "Foundation", + "usr" : "c:objc(cs)NSTimer", + "superclassNames" : [ + "ObjectiveC.NSObject" + ], + "kind" : "TypeDecl", + "printedName" : "Timer", + "superclassUsr" : "c:objc(cs)NSObject", + "name" : "Timer" + }, + { + "printedName" : "NSError", + "declKind" : "Class", + "moduleName" : "Foundation", + "kind" : "TypeDecl", + "superclassUsr" : "c:objc(cs)NSObject", + "isOpen" : true, + "superclassNames" : [ + "ObjectiveC.NSObject" + ], + "usr" : "c:objc(cs)NSError", + "name" : "NSError", + "inheritsConvenienceInitializers" : true, + "children" : [ + { + "usr" : "c:@CM@ChartboostSDK@@objc(cs)NSError(im)trackDescription", + "mangledName" : "$sSo7NSErrorC13ChartboostSDKE16trackDescriptionSSyF", + "declAttributes" : [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "isFromExtension" : true, + "moduleName" : "ChartboostSDK", + "printedName" : "trackDescription()", + "kind" : "Function", + "funcSelfKind" : "NonMutating", + "name" : "trackDescription", + "declKind" : "Func" + } + ], + "objc_name" : "NSError", + "declAttributes" : [ + "ObjC", + "SynthesizedProtocol", + "NonSendable", + "Sendable", + "Dynamic" + ], + "conformances" : [ + { + "mangledName" : "$ss8SendableP", + "kind" : "Conformance", + "name" : "Sendable", + "usr" : "s:s8SendableP", + "printedName" : "Sendable" + }, + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + }, + { + "mangledName" : "$ss5ErrorP", + "kind" : "Conformance", + "name" : "Error", + "usr" : "s:s5ErrorP", + "printedName" : "Error" + } + ], + "isExternal" : true + } + ] + } +} \ No newline at end of file diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 0000000..28c4236 --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,134 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +// swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name ChartboostSDK +// swift-module-flags-ignorable: -enable-bare-slash-regex +import AVFAudio +import AVFoundation +import AdSupport +import AppTrackingTransparency +@_exported import ChartboostSDK +import CoreGraphics +import CoreTelephony +import Foundation +import SafariServices +import StoreKit +import Swift +import UIKit +import WebKit +import _Concurrency +import _StringProcessing +extension ChartboostSDK.CHBMediation : Swift.Codable { + public func encode(to encoder: Swift.Encoder) throws + required convenience public init(from decoder: Swift.Decoder) throws + @objc override dynamic open func isEqual(_ object: Any?) -> Swift.Bool +} +public typealias RedirectionURLFinished = (url: Foundation.URL, redirected: Swift.Bool) +@objc(CHBCacheErrorCode) public enum CacheErrorCode : Swift.Int { + case internalError + case internetUnavailable + case networkFailure + case noAdFound + case sessionNotStarted + case assetDownloadFailure + case publisherDisabled + case serverError + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBCacheError) public class CacheError : Foundation.NSError { + public var cacheCode: ChartboostSDK.CacheErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objc(CHBShowErrorCode) public enum ShowErrorCode : Swift.Int { + case internalError + case sessionNotStarted + case internetUnavailable + case presentationFailure + case noCachedAd + case noViewController + case noAdInstance + case assetsFailure + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBShowError) public class ShowError : Foundation.NSError { + public var showCode: ChartboostSDK.ShowErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objc(CHBClickErrorCode) public enum ClickErrorCode : Swift.Int { + case uriInvalid + case uriUnrecognized + case internalError + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBClickError) public class ClickError : Foundation.NSError { + public var clickCode: ChartboostSDK.ClickErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objc(CHBStartErrorCode) public enum StartErrorCode : Swift.Int { + case invalidCredentials + case networkFailure + case serverError + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBStartError) public class StartError : Foundation.NSError { + public var startCode: ChartboostSDK.StartErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +extension Foundation.NSError { + @objc dynamic public func trackDescription() -> Swift.String +} +extension ChartboostSDK.CacheErrorCode : Swift.Equatable {} +extension ChartboostSDK.CacheErrorCode : Swift.Hashable {} +extension ChartboostSDK.CacheErrorCode : Swift.RawRepresentable {} +extension ChartboostSDK.ShowErrorCode : Swift.Equatable {} +extension ChartboostSDK.ShowErrorCode : Swift.Hashable {} +extension ChartboostSDK.ShowErrorCode : Swift.RawRepresentable {} +extension ChartboostSDK.ClickErrorCode : Swift.Equatable {} +extension ChartboostSDK.ClickErrorCode : Swift.Hashable {} +extension ChartboostSDK.ClickErrorCode : Swift.RawRepresentable {} +extension ChartboostSDK.StartErrorCode : Swift.Equatable {} +extension ChartboostSDK.StartErrorCode : Swift.Hashable {} +extension ChartboostSDK.StartErrorCode : Swift.RawRepresentable {} diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc new file mode 100644 index 0000000..ac1d94c Binary files /dev/null and b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface new file mode 100644 index 0000000..28c4236 --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -0,0 +1,134 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +// swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name ChartboostSDK +// swift-module-flags-ignorable: -enable-bare-slash-regex +import AVFAudio +import AVFoundation +import AdSupport +import AppTrackingTransparency +@_exported import ChartboostSDK +import CoreGraphics +import CoreTelephony +import Foundation +import SafariServices +import StoreKit +import Swift +import UIKit +import WebKit +import _Concurrency +import _StringProcessing +extension ChartboostSDK.CHBMediation : Swift.Codable { + public func encode(to encoder: Swift.Encoder) throws + required convenience public init(from decoder: Swift.Decoder) throws + @objc override dynamic open func isEqual(_ object: Any?) -> Swift.Bool +} +public typealias RedirectionURLFinished = (url: Foundation.URL, redirected: Swift.Bool) +@objc(CHBCacheErrorCode) public enum CacheErrorCode : Swift.Int { + case internalError + case internetUnavailable + case networkFailure + case noAdFound + case sessionNotStarted + case assetDownloadFailure + case publisherDisabled + case serverError + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBCacheError) public class CacheError : Foundation.NSError { + public var cacheCode: ChartboostSDK.CacheErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objc(CHBShowErrorCode) public enum ShowErrorCode : Swift.Int { + case internalError + case sessionNotStarted + case internetUnavailable + case presentationFailure + case noCachedAd + case noViewController + case noAdInstance + case assetsFailure + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBShowError) public class ShowError : Foundation.NSError { + public var showCode: ChartboostSDK.ShowErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objc(CHBClickErrorCode) public enum ClickErrorCode : Swift.Int { + case uriInvalid + case uriUnrecognized + case internalError + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBClickError) public class ClickError : Foundation.NSError { + public var clickCode: ChartboostSDK.ClickErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objc(CHBStartErrorCode) public enum StartErrorCode : Swift.Int { + case invalidCredentials + case networkFailure + case serverError + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBStartError) public class StartError : Foundation.NSError { + public var startCode: ChartboostSDK.StartErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +extension Foundation.NSError { + @objc dynamic public func trackDescription() -> Swift.String +} +extension ChartboostSDK.CacheErrorCode : Swift.Equatable {} +extension ChartboostSDK.CacheErrorCode : Swift.Hashable {} +extension ChartboostSDK.CacheErrorCode : Swift.RawRepresentable {} +extension ChartboostSDK.ShowErrorCode : Swift.Equatable {} +extension ChartboostSDK.ShowErrorCode : Swift.Hashable {} +extension ChartboostSDK.ShowErrorCode : Swift.RawRepresentable {} +extension ChartboostSDK.ClickErrorCode : Swift.Equatable {} +extension ChartboostSDK.ClickErrorCode : Swift.Hashable {} +extension ChartboostSDK.ClickErrorCode : Swift.RawRepresentable {} +extension ChartboostSDK.StartErrorCode : Swift.Equatable {} +extension ChartboostSDK.StartErrorCode : Swift.Hashable {} +extension ChartboostSDK.StartErrorCode : Swift.RawRepresentable {} diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..797599e --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,4542 @@ +{ + "ABIRoot" : { + "printedName" : "TopLevel", + "json_format_version" : 8, + "kind" : "Root", + "children" : [ + { + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "kind" : "Import", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "name" : "Foundation" + }, + { + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "name" : "UIKit", + "printedName" : "UIKit", + "kind" : "Import", + "declKind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "declKind" : "Import", + "printedName" : "WebKit", + "name" : "WebKit", + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import", + "printedName" : "Foundation" + }, + { + "name" : "Foundation", + "printedName" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK" + }, + { + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "name" : "Foundation", + "kind" : "Import", + "printedName" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "name" : "Foundation", + "kind" : "Import" + }, + { + "declKind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "printedName" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "kind" : "Import", + "declKind" : "Import", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "printedName" : "Foundation", + "declKind" : "Import", + "kind" : "Import" + }, + { + "kind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declKind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "printedName" : "CoreGraphics", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "name" : "CoreGraphics", + "declKind" : "Import" + }, + { + "name" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK" + }, + { + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "kind" : "Import", + "name" : "Foundation" + }, + { + "declKind" : "Import", + "name" : "Foundation", + "kind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "kind" : "Import", + "name" : "WebKit", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "printedName" : "WebKit" + }, + { + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation" + }, + { + "printedName" : "Foundation", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "printedName" : "Foundation", + "declKind" : "Import" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "kind" : "Import", + "printedName" : "WebKit", + "moduleName" : "ChartboostSDK", + "name" : "WebKit", + "declKind" : "Import" + }, + { + "name" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "printedName" : "WebKit", + "kind" : "Import", + "name" : "WebKit" + }, + { + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "kind" : "Import" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declKind" : "Import" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "name" : "Foundation", + "kind" : "Import", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "name" : "UIKit", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "UIKit" + }, + { + "declKind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import" + }, + { + "declKind" : "Import", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "kind" : "Import" + }, + { + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import" + }, + { + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declKind" : "Import" + }, + { + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declKind" : "Import", + "kind" : "Import" + }, + { + "kind" : "Import", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "name" : "Foundation" + }, + { + "kind" : "Import", + "printedName" : "AVFAudio", + "moduleName" : "ChartboostSDK", + "name" : "AVFAudio", + "declKind" : "Import" + }, + { + "kind" : "Import", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declKind" : "Import" + }, + { + "printedName" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declKind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import" + }, + { + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "CoreTelephony", + "printedName" : "CoreTelephony", + "declKind" : "Import" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "name" : "Foundation", + "printedName" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation" + }, + { + "printedName" : "UIKit", + "moduleName" : "ChartboostSDK", + "name" : "UIKit", + "declKind" : "Import", + "kind" : "Import" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "kind" : "Import", + "declKind" : "Import" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "name" : "Foundation" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "printedName" : "Foundation", + "declKind" : "Import" + }, + { + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation" + }, + { + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "kind" : "Import" + }, + { + "kind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "kind" : "Import", + "printedName" : "Foundation" + }, + { + "printedName" : "Foundation", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declKind" : "Import" + }, + { + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "kind" : "Import", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "name" : "Foundation", + "kind" : "Import", + "declKind" : "Import" + }, + { + "kind" : "Import", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "moduleName" : "ChartboostSDK", + "printedName" : "StoreKit", + "kind" : "Import", + "declKind" : "Import", + "name" : "StoreKit" + }, + { + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "printedName" : "UIKit", + "declKind" : "Import", + "kind" : "Import", + "name" : "UIKit" + }, + { + "declKind" : "Import", + "name" : "StoreKit", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "StoreKit" + }, + { + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "printedName" : "Foundation" + }, + { + "printedName" : "Foundation", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "name" : "Foundation", + "declKind" : "Import", + "printedName" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "name" : "Foundation", + "declKind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "kind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation" + }, + { + "kind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "kind" : "Import", + "name" : "UIKit", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "UIKit" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "printedName" : "Foundation" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "kind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "name" : "Foundation" + }, + { + "declKind" : "Import", + "printedName" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "name" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "name" : "Foundation", + "declKind" : "Import", + "kind" : "Import" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import" + }, + { + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "printedName" : "Foundation", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "declKind" : "Import" + }, + { + "declKind" : "Import", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "UIKit", + "name" : "UIKit" + }, + { + "name" : "Foundation", + "kind" : "Import", + "declKind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import", + "name" : "UIKit", + "printedName" : "UIKit" + }, + { + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import", + "printedName" : "SafariServices", + "name" : "SafariServices" + }, + { + "kind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import", + "name" : "Foundation" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "kind" : "Import" + }, + { + "declKind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK" + }, + { + "moduleName" : "ChartboostSDK", + "printedName" : "AVFoundation", + "kind" : "Import", + "name" : "AVFoundation", + "declKind" : "Import" + }, + { + "kind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import" + }, + { + "printedName" : "WebKit", + "name" : "WebKit", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declKind" : "Import" + }, + { + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation" + }, + { + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "declKind" : "Import" + }, + { + "declKind" : "Import", + "name" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "printedName" : "Foundation", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declKind" : "Import" + }, + { + "name" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "printedName" : "Foundation", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "kind" : "Import", + "declKind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declKind" : "Import", + "kind" : "Import", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "declKind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "kind" : "Import" + }, + { + "printedName" : "Foundation", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import" + }, + { + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "printedName" : "Foundation", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "declKind" : "Import", + "name" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "name" : "Foundation", + "kind" : "Import" + }, + { + "printedName" : "Foundation", + "name" : "Foundation", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "name" : "WebKit", + "printedName" : "WebKit", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "kind" : "Import" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "name" : "Foundation" + }, + { + "printedName" : "Foundation", + "name" : "Foundation", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "name" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "kind" : "Import", + "declKind" : "Import" + }, + { + "printedName" : "StoreKit", + "kind" : "Import", + "name" : "StoreKit", + "declKind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "printedName" : "Foundation", + "declKind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation" + }, + { + "kind" : "Import", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation" + }, + { + "name" : "UIKit", + "moduleName" : "ChartboostSDK", + "printedName" : "UIKit", + "declKind" : "Import", + "kind" : "Import" + }, + { + "kind" : "Import", + "printedName" : "WebKit", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "name" : "WebKit" + }, + { + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "declKind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation" + }, + { + "printedName" : "Foundation", + "name" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "moduleName" : "ChartboostSDK" + }, + { + "kind" : "Import", + "printedName" : "AppTrackingTransparency", + "name" : "AppTrackingTransparency", + "moduleName" : "ChartboostSDK", + "declKind" : "Import" + }, + { + "kind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "kind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK", + "declKind" : "Import" + }, + { + "declKind" : "Import", + "kind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declKind" : "Import", + "name" : "Foundation", + "printedName" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declKind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "printedName" : "Foundation", + "name" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation" + }, + { + "kind" : "Import", + "declKind" : "Import", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "kind" : "TypeDecl", + "moduleName" : "ChartboostSDK", + "children" : [ + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodeInternalError", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO08internalD0yA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 0, + "moduleName" : "ChartboostSDK", + "printedName" : "internalError", + "kind" : "Var", + "name" : "internalError", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodeInternetUnavailable", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO19internetUnavailableyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 1, + "moduleName" : "ChartboostSDK", + "printedName" : "internetUnavailable", + "kind" : "Var", + "name" : "internetUnavailable", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodeNetworkFailure", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO14networkFailureyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 2, + "moduleName" : "ChartboostSDK", + "printedName" : "networkFailure", + "kind" : "Var", + "name" : "networkFailure", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodeNoAdFound", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO9noAdFoundyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 3, + "moduleName" : "ChartboostSDK", + "printedName" : "noAdFound", + "kind" : "Var", + "name" : "noAdFound", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodeSessionNotStarted", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO17sessionNotStartedyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 4, + "moduleName" : "ChartboostSDK", + "printedName" : "sessionNotStarted", + "kind" : "Var", + "name" : "sessionNotStarted", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodeAssetDownloadFailure", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO20assetDownloadFailureyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 5, + "moduleName" : "ChartboostSDK", + "printedName" : "assetDownloadFailure", + "kind" : "Var", + "name" : "assetDownloadFailure", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodePublisherDisabled", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO17publisherDisabledyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 6, + "moduleName" : "ChartboostSDK", + "printedName" : "publisherDisabled", + "kind" : "Var", + "name" : "publisherDisabled", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode@CHBCacheErrorCodeServerError", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO06serverD0yA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.CacheErrorCode.Type) -> ChartboostSDK.CacheErrorCode" + } + ], + "fixedbinaryorder" : 7, + "moduleName" : "ChartboostSDK", + "printedName" : "serverError", + "kind" : "Var", + "name" : "serverError", + "declKind" : "EnumElement" + }, + { + "usr" : "s:13ChartboostSDK14CacheErrorCodeO11descriptionSSvp", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO11descriptionSSvp", + "declAttributes" : [ + "AccessControl" + ], + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK14CacheErrorCodeO11descriptionSSvg", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO11descriptionSSvg", + "accessorKind" : "get", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "description", + "kind" : "Var", + "name" : "description", + "declKind" : "Var" + }, + { + "usr" : "s:13ChartboostSDK14CacheErrorCodeO8rawValueACSgSi_tcfc", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO8rawValueACSgSi_tcfc", + "implicit" : true, + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode?" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "init_kind" : "Designated", + "moduleName" : "ChartboostSDK", + "printedName" : "init(rawValue:)", + "kind" : "Constructor", + "name" : "init", + "declKind" : "Constructor" + }, + { + "usr" : "s:13ChartboostSDK14CacheErrorCodeO8rawValueSivp", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO8rawValueSivp", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK14CacheErrorCodeO8rawValueSivg", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO8rawValueSivg", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessorKind" : "get", + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "rawValue", + "kind" : "Var", + "name" : "rawValue", + "declKind" : "Var" + } + ], + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "declKind" : "Enum", + "objc_name" : "CHBCacheErrorCode", + "mangledName" : "$s13ChartboostSDK14CacheErrorCodeO", + "name" : "CacheErrorCode", + "conformances" : [ + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "usr" : "s:SY", + "mangledName" : "$sSY", + "kind" : "Conformance", + "name" : "RawRepresentable", + "children" : [ + { + "kind" : "TypeWitness", + "name" : "RawValue", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "printedName" : "RawValue" + } + ], + "printedName" : "RawRepresentable" + } + ], + "enumRawTypeName" : "Int", + "printedName" : "CacheErrorCode" + }, + { + "superclassNames" : [ + "Foundation.NSError", + "ObjectiveC.NSObject" + ], + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "kind" : "TypeDecl", + "objc_name" : "CHBCacheError", + "conformances" : [ + { + "mangledName" : "$ss8SendableP", + "kind" : "Conformance", + "name" : "Sendable", + "usr" : "s:s8SendableP", + "printedName" : "Sendable" + }, + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + }, + { + "mangledName" : "$ss5ErrorP", + "kind" : "Conformance", + "name" : "Error", + "usr" : "s:s5ErrorP", + "printedName" : "Error" + } + ], + "declKind" : "Class", + "mangledName" : "$s13ChartboostSDK10CacheErrorC", + "children" : [ + { + "usr" : "s:13ChartboostSDK10CacheErrorC9cacheCodeAA0cdF0OSgvp", + "mangledName" : "$s13ChartboostSDK10CacheErrorC9cacheCodeAA0cdF0OSgvp", + "declAttributes" : [ + "AccessControl", + "RawDocComment" + ], + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode?" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK10CacheErrorC9cacheCodeAA0cdF0OSgvg", + "mangledName" : "$s13ChartboostSDK10CacheErrorC9cacheCodeAA0cdF0OSgvg", + "accessorKind" : "get", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBCacheErrorCode", + "printedName" : "ChartboostSDK.CacheErrorCode" + } + ], + "printedName" : "ChartboostSDK.CacheErrorCode?" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "cacheCode", + "kind" : "Var", + "name" : "cacheCode", + "declKind" : "Var" + }, + { + "objc_name" : "initWithDomain:code:userInfo:", + "mangledName" : "$s13ChartboostSDK10CacheErrorC6domain4code8userInfoACSS_SiSDySSypGSgtcfc", + "printedName" : "init(domain:code:userInfo:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBCacheError(im)initWithDomain:code:userInfo:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind" : "Designated", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBCacheError", + "printedName" : "ChartboostSDK.CacheError" + }, + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + }, + { + "hasDefaultArg" : true, + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "usr" : "s:SD", + "kind" : "TypeNominal", + "name" : "Dictionary", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "ProtocolComposition", + "printedName" : "Any" + } + ], + "printedName" : "[Swift.String : Any]" + } + ], + "printedName" : "[Swift.String : Any]?" + } + ], + "kind" : "Constructor", + "name" : "init" + }, + { + "objc_name" : "initWithCoder:", + "mangledName" : "$s13ChartboostSDK10CacheErrorC5coderACSgSo7NSCoderC_tcfc", + "printedName" : "init(coder:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBCacheError(im)initWithCoder:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Required" + ], + "init_kind" : "Designated", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CacheError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBCacheError", + "printedName" : "ChartboostSDK.CacheError" + } + ], + "printedName" : "ChartboostSDK.CacheError?" + }, + { + "kind" : "TypeNominal", + "name" : "NSCoder", + "usr" : "c:objc(cs)NSCoder", + "printedName" : "Foundation.NSCoder" + } + ], + "kind" : "Constructor", + "name" : "init" + } + ], + "moduleName" : "ChartboostSDK", + "name" : "CacheError", + "printedName" : "CacheError", + "inheritsConvenienceInitializers" : true, + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBCacheError", + "superclassUsr" : "c:objc(cs)NSError" + }, + { + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "children" : [ + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodeInternalError", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO08internalD0yA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 0, + "moduleName" : "ChartboostSDK", + "printedName" : "internalError", + "kind" : "Var", + "name" : "internalError", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodeSessionNotStarted", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO17sessionNotStartedyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 1, + "moduleName" : "ChartboostSDK", + "printedName" : "sessionNotStarted", + "kind" : "Var", + "name" : "sessionNotStarted", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodeInternetUnavailable", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO19internetUnavailableyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 2, + "moduleName" : "ChartboostSDK", + "printedName" : "internetUnavailable", + "kind" : "Var", + "name" : "internetUnavailable", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodePresentationFailure", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO19presentationFailureyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 3, + "moduleName" : "ChartboostSDK", + "printedName" : "presentationFailure", + "kind" : "Var", + "name" : "presentationFailure", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodeNoCachedAd", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO10noCachedAdyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 4, + "moduleName" : "ChartboostSDK", + "printedName" : "noCachedAd", + "kind" : "Var", + "name" : "noCachedAd", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodeNoViewController", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO16noViewControlleryA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 5, + "moduleName" : "ChartboostSDK", + "printedName" : "noViewController", + "kind" : "Var", + "name" : "noViewController", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodeNoAdInstance", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO12noAdInstanceyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 6, + "moduleName" : "ChartboostSDK", + "printedName" : "noAdInstance", + "kind" : "Var", + "name" : "noAdInstance", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode@CHBShowErrorCodeAssetsFailure", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO13assetsFailureyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ShowErrorCode.Type) -> ChartboostSDK.ShowErrorCode" + } + ], + "fixedbinaryorder" : 7, + "moduleName" : "ChartboostSDK", + "printedName" : "assetsFailure", + "kind" : "Var", + "name" : "assetsFailure", + "declKind" : "EnumElement" + }, + { + "usr" : "s:13ChartboostSDK13ShowErrorCodeO11descriptionSSvp", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO11descriptionSSvp", + "declAttributes" : [ + "AccessControl" + ], + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK13ShowErrorCodeO11descriptionSSvg", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO11descriptionSSvg", + "accessorKind" : "get", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "description", + "kind" : "Var", + "name" : "description", + "declKind" : "Var" + }, + { + "usr" : "s:13ChartboostSDK13ShowErrorCodeO8rawValueACSgSi_tcfc", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO8rawValueACSgSi_tcfc", + "implicit" : true, + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode?" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "init_kind" : "Designated", + "moduleName" : "ChartboostSDK", + "printedName" : "init(rawValue:)", + "kind" : "Constructor", + "name" : "init", + "declKind" : "Constructor" + }, + { + "usr" : "s:13ChartboostSDK13ShowErrorCodeO8rawValueSivp", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO8rawValueSivp", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK13ShowErrorCodeO8rawValueSivg", + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO8rawValueSivg", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessorKind" : "get", + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "rawValue", + "kind" : "Var", + "name" : "rawValue", + "declKind" : "Var" + } + ], + "mangledName" : "$s13ChartboostSDK13ShowErrorCodeO", + "printedName" : "ShowErrorCode", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "declKind" : "Enum", + "kind" : "TypeDecl", + "conformances" : [ + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "usr" : "s:SY", + "mangledName" : "$sSY", + "kind" : "Conformance", + "name" : "RawRepresentable", + "children" : [ + { + "kind" : "TypeWitness", + "name" : "RawValue", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "printedName" : "RawValue" + } + ], + "printedName" : "RawRepresentable" + } + ], + "enumRawTypeName" : "Int", + "objc_name" : "CHBShowErrorCode" + }, + { + "objc_name" : "CHBShowError", + "superclassUsr" : "c:objc(cs)NSError", + "kind" : "TypeDecl", + "declKind" : "Class", + "name" : "ShowError", + "moduleName" : "ChartboostSDK", + "superclassNames" : [ + "Foundation.NSError", + "ObjectiveC.NSObject" + ], + "inheritsConvenienceInitializers" : true, + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBShowError", + "children" : [ + { + "usr" : "s:13ChartboostSDK9ShowErrorC8showCodeAA0cdF0OSgvp", + "mangledName" : "$s13ChartboostSDK9ShowErrorC8showCodeAA0cdF0OSgvp", + "declAttributes" : [ + "AccessControl", + "RawDocComment" + ], + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode?" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK9ShowErrorC8showCodeAA0cdF0OSgvg", + "mangledName" : "$s13ChartboostSDK9ShowErrorC8showCodeAA0cdF0OSgvg", + "accessorKind" : "get", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBShowErrorCode", + "printedName" : "ChartboostSDK.ShowErrorCode" + } + ], + "printedName" : "ChartboostSDK.ShowErrorCode?" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "showCode", + "kind" : "Var", + "name" : "showCode", + "declKind" : "Var" + }, + { + "objc_name" : "initWithDomain:code:userInfo:", + "mangledName" : "$s13ChartboostSDK9ShowErrorC6domain4code8userInfoACSS_SiSDySSypGSgtcfc", + "printedName" : "init(domain:code:userInfo:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBShowError(im)initWithDomain:code:userInfo:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind" : "Designated", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBShowError", + "printedName" : "ChartboostSDK.ShowError" + }, + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + }, + { + "hasDefaultArg" : true, + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "usr" : "s:SD", + "kind" : "TypeNominal", + "name" : "Dictionary", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "ProtocolComposition", + "printedName" : "Any" + } + ], + "printedName" : "[Swift.String : Any]" + } + ], + "printedName" : "[Swift.String : Any]?" + } + ], + "kind" : "Constructor", + "name" : "init" + }, + { + "objc_name" : "initWithCoder:", + "mangledName" : "$s13ChartboostSDK9ShowErrorC5coderACSgSo7NSCoderC_tcfc", + "printedName" : "init(coder:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBShowError(im)initWithCoder:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Required" + ], + "init_kind" : "Designated", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ShowError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBShowError", + "printedName" : "ChartboostSDK.ShowError" + } + ], + "printedName" : "ChartboostSDK.ShowError?" + }, + { + "kind" : "TypeNominal", + "name" : "NSCoder", + "usr" : "c:objc(cs)NSCoder", + "printedName" : "Foundation.NSCoder" + } + ], + "kind" : "Constructor", + "name" : "init" + } + ], + "printedName" : "ShowError", + "mangledName" : "$s13ChartboostSDK9ShowErrorC", + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "conformances" : [ + { + "mangledName" : "$ss8SendableP", + "kind" : "Conformance", + "name" : "Sendable", + "usr" : "s:s8SendableP", + "printedName" : "Sendable" + }, + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + }, + { + "mangledName" : "$ss5ErrorP", + "kind" : "Conformance", + "name" : "Error", + "usr" : "s:s5ErrorP", + "printedName" : "Error" + } + ] + }, + { + "name" : "ClickErrorCode", + "enumRawTypeName" : "Int", + "objc_name" : "CHBClickErrorCode", + "children" : [ + { + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode@CHBClickErrorCodeUriInvalid", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO10uriInvalidyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + } + ], + "printedName" : "ChartboostSDK.ClickErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ClickErrorCode.Type) -> ChartboostSDK.ClickErrorCode" + } + ], + "fixedbinaryorder" : 0, + "moduleName" : "ChartboostSDK", + "printedName" : "uriInvalid", + "kind" : "Var", + "name" : "uriInvalid", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode@CHBClickErrorCodeUriUnrecognized", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO15uriUnrecognizedyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + } + ], + "printedName" : "ChartboostSDK.ClickErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ClickErrorCode.Type) -> ChartboostSDK.ClickErrorCode" + } + ], + "fixedbinaryorder" : 1, + "moduleName" : "ChartboostSDK", + "printedName" : "uriUnrecognized", + "kind" : "Var", + "name" : "uriUnrecognized", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode@CHBClickErrorCodeInternalError", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO08internalD0yA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + } + ], + "printedName" : "ChartboostSDK.ClickErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.ClickErrorCode.Type) -> ChartboostSDK.ClickErrorCode" + } + ], + "fixedbinaryorder" : 2, + "moduleName" : "ChartboostSDK", + "printedName" : "internalError", + "kind" : "Var", + "name" : "internalError", + "declKind" : "EnumElement" + }, + { + "usr" : "s:13ChartboostSDK14ClickErrorCodeO11descriptionSSvp", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO11descriptionSSvp", + "declAttributes" : [ + "AccessControl" + ], + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK14ClickErrorCodeO11descriptionSSvg", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO11descriptionSSvg", + "accessorKind" : "get", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "description", + "kind" : "Var", + "name" : "description", + "declKind" : "Var" + }, + { + "usr" : "s:13ChartboostSDK14ClickErrorCodeO8rawValueACSgSi_tcfc", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO8rawValueACSgSi_tcfc", + "implicit" : true, + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + } + ], + "printedName" : "ChartboostSDK.ClickErrorCode?" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "init_kind" : "Designated", + "moduleName" : "ChartboostSDK", + "printedName" : "init(rawValue:)", + "kind" : "Constructor", + "name" : "init", + "declKind" : "Constructor" + }, + { + "usr" : "s:13ChartboostSDK14ClickErrorCodeO8rawValueSivp", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO8rawValueSivp", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK14ClickErrorCodeO8rawValueSivg", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO8rawValueSivg", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessorKind" : "get", + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "rawValue", + "kind" : "Var", + "name" : "rawValue", + "declKind" : "Var" + } + ], + "conformances" : [ + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "usr" : "s:SY", + "mangledName" : "$sSY", + "kind" : "Conformance", + "name" : "RawRepresentable", + "children" : [ + { + "kind" : "TypeWitness", + "name" : "RawValue", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "printedName" : "RawValue" + } + ], + "printedName" : "RawRepresentable" + } + ], + "moduleName" : "ChartboostSDK", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ClickErrorCode", + "mangledName" : "$s13ChartboostSDK14ClickErrorCodeO", + "kind" : "TypeDecl", + "declKind" : "Enum", + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ] + }, + { + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBClickError", + "printedName" : "ClickError", + "objc_name" : "CHBClickError", + "inheritsConvenienceInitializers" : true, + "kind" : "TypeDecl", + "moduleName" : "ChartboostSDK", + "declKind" : "Class", + "superclassUsr" : "c:objc(cs)NSError", + "superclassNames" : [ + "Foundation.NSError", + "ObjectiveC.NSObject" + ], + "conformances" : [ + { + "mangledName" : "$ss8SendableP", + "kind" : "Conformance", + "name" : "Sendable", + "usr" : "s:s8SendableP", + "printedName" : "Sendable" + }, + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + }, + { + "mangledName" : "$ss5ErrorP", + "kind" : "Conformance", + "name" : "Error", + "usr" : "s:s5ErrorP", + "printedName" : "Error" + } + ], + "children" : [ + { + "usr" : "s:13ChartboostSDK10ClickErrorC9clickCodeAA0cdF0OSgvp", + "mangledName" : "$s13ChartboostSDK10ClickErrorC9clickCodeAA0cdF0OSgvp", + "declAttributes" : [ + "AccessControl", + "RawDocComment" + ], + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + } + ], + "printedName" : "ChartboostSDK.ClickErrorCode?" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK10ClickErrorC9clickCodeAA0cdF0OSgvg", + "mangledName" : "$s13ChartboostSDK10ClickErrorC9clickCodeAA0cdF0OSgvg", + "accessorKind" : "get", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBClickErrorCode", + "printedName" : "ChartboostSDK.ClickErrorCode" + } + ], + "printedName" : "ChartboostSDK.ClickErrorCode?" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "clickCode", + "kind" : "Var", + "name" : "clickCode", + "declKind" : "Var" + }, + { + "objc_name" : "initWithDomain:code:userInfo:", + "mangledName" : "$s13ChartboostSDK10ClickErrorC6domain4code8userInfoACSS_SiSDySSypGSgtcfc", + "printedName" : "init(domain:code:userInfo:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBClickError(im)initWithDomain:code:userInfo:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind" : "Designated", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBClickError", + "printedName" : "ChartboostSDK.ClickError" + }, + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + }, + { + "hasDefaultArg" : true, + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "usr" : "s:SD", + "kind" : "TypeNominal", + "name" : "Dictionary", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "ProtocolComposition", + "printedName" : "Any" + } + ], + "printedName" : "[Swift.String : Any]" + } + ], + "printedName" : "[Swift.String : Any]?" + } + ], + "kind" : "Constructor", + "name" : "init" + }, + { + "objc_name" : "initWithCoder:", + "mangledName" : "$s13ChartboostSDK10ClickErrorC5coderACSgSo7NSCoderC_tcfc", + "printedName" : "init(coder:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBClickError(im)initWithCoder:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Required" + ], + "init_kind" : "Designated", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ClickError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBClickError", + "printedName" : "ChartboostSDK.ClickError" + } + ], + "printedName" : "ChartboostSDK.ClickError?" + }, + { + "kind" : "TypeNominal", + "name" : "NSCoder", + "usr" : "c:objc(cs)NSCoder", + "printedName" : "Foundation.NSCoder" + } + ], + "kind" : "Constructor", + "name" : "init" + } + ], + "mangledName" : "$s13ChartboostSDK10ClickErrorC", + "name" : "ClickError" + }, + { + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO", + "enumRawTypeName" : "Int", + "name" : "StartErrorCode", + "objc_name" : "CHBStartErrorCode", + "conformances" : [ + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "usr" : "s:SY", + "mangledName" : "$sSY", + "kind" : "Conformance", + "name" : "RawRepresentable", + "children" : [ + { + "kind" : "TypeWitness", + "name" : "RawValue", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "printedName" : "RawValue" + } + ], + "printedName" : "RawRepresentable" + } + ], + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "printedName" : "StartErrorCode", + "declKind" : "Enum", + "kind" : "TypeDecl", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "children" : [ + { + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode@CHBStartErrorCodeInvalidCredentials", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO18invalidCredentialsyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + } + ], + "printedName" : "ChartboostSDK.StartErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.StartErrorCode.Type) -> ChartboostSDK.StartErrorCode" + } + ], + "fixedbinaryorder" : 0, + "moduleName" : "ChartboostSDK", + "printedName" : "invalidCredentials", + "kind" : "Var", + "name" : "invalidCredentials", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode@CHBStartErrorCodeNetworkFailure", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO14networkFailureyA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + } + ], + "printedName" : "ChartboostSDK.StartErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.StartErrorCode.Type) -> ChartboostSDK.StartErrorCode" + } + ], + "fixedbinaryorder" : 1, + "moduleName" : "ChartboostSDK", + "printedName" : "networkFailure", + "kind" : "Var", + "name" : "networkFailure", + "declKind" : "EnumElement" + }, + { + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode@CHBStartErrorCodeServerError", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO06serverD0yA2CmF", + "declAttributes" : [ + "ObjC" + ], + "children" : [ + { + "kind" : "TypeFunc", + "name" : "Function", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + }, + { + "kind" : "TypeNominal", + "name" : "Metatype", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + } + ], + "printedName" : "ChartboostSDK.StartErrorCode.Type" + } + ], + "printedName" : "(ChartboostSDK.StartErrorCode.Type) -> ChartboostSDK.StartErrorCode" + } + ], + "fixedbinaryorder" : 2, + "moduleName" : "ChartboostSDK", + "printedName" : "serverError", + "kind" : "Var", + "name" : "serverError", + "declKind" : "EnumElement" + }, + { + "usr" : "s:13ChartboostSDK14StartErrorCodeO11descriptionSSvp", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO11descriptionSSvp", + "declAttributes" : [ + "AccessControl" + ], + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK14StartErrorCodeO11descriptionSSvg", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO11descriptionSSvg", + "accessorKind" : "get", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "description", + "kind" : "Var", + "name" : "description", + "declKind" : "Var" + }, + { + "usr" : "s:13ChartboostSDK14StartErrorCodeO8rawValueACSgSi_tcfc", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO8rawValueACSgSi_tcfc", + "implicit" : true, + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + } + ], + "printedName" : "ChartboostSDK.StartErrorCode?" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "init_kind" : "Designated", + "moduleName" : "ChartboostSDK", + "printedName" : "init(rawValue:)", + "kind" : "Constructor", + "name" : "init", + "declKind" : "Constructor" + }, + { + "usr" : "s:13ChartboostSDK14StartErrorCodeO8rawValueSivp", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO8rawValueSivp", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK14StartErrorCodeO8rawValueSivg", + "mangledName" : "$s13ChartboostSDK14StartErrorCodeO8rawValueSivg", + "implicit" : true, + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + } + ], + "accessorKind" : "get", + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "rawValue", + "kind" : "Var", + "name" : "rawValue", + "declKind" : "Var" + } + ] + }, + { + "kind" : "TypeDecl", + "objc_name" : "CHBStartError", + "conformances" : [ + { + "mangledName" : "$ss8SendableP", + "kind" : "Conformance", + "name" : "Sendable", + "usr" : "s:s8SendableP", + "printedName" : "Sendable" + }, + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + }, + { + "mangledName" : "$ss5ErrorP", + "kind" : "Conformance", + "name" : "Error", + "usr" : "s:s5ErrorP", + "printedName" : "Error" + } + ], + "inheritsConvenienceInitializers" : true, + "superclassNames" : [ + "Foundation.NSError", + "ObjectiveC.NSObject" + ], + "declAttributes" : [ + "AccessControl", + "ObjC", + "RawDocComment" + ], + "name" : "StartError", + "moduleName" : "ChartboostSDK", + "superclassUsr" : "c:objc(cs)NSError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBStartError", + "children" : [ + { + "usr" : "s:13ChartboostSDK10StartErrorC9startCodeAA0cdF0OSgvp", + "mangledName" : "$s13ChartboostSDK10StartErrorC9startCodeAA0cdF0OSgvp", + "declAttributes" : [ + "AccessControl", + "RawDocComment" + ], + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + } + ], + "printedName" : "ChartboostSDK.StartErrorCode?" + } + ], + "accessors" : [ + { + "usr" : "s:13ChartboostSDK10StartErrorC9startCodeAA0cdF0OSgvg", + "mangledName" : "$s13ChartboostSDK10StartErrorC9startCodeAA0cdF0OSgvg", + "accessorKind" : "get", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartErrorCode", + "usr" : "c:@M@ChartboostSDK@E@CHBStartErrorCode", + "printedName" : "ChartboostSDK.StartErrorCode" + } + ], + "printedName" : "ChartboostSDK.StartErrorCode?" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "Get()", + "kind" : "Accessor", + "name" : "Get", + "declKind" : "Accessor" + } + ], + "moduleName" : "ChartboostSDK", + "printedName" : "startCode", + "kind" : "Var", + "name" : "startCode", + "declKind" : "Var" + }, + { + "objc_name" : "initWithDomain:code:userInfo:", + "mangledName" : "$s13ChartboostSDK10StartErrorC6domain4code8userInfoACSS_SiSDySSypGSgtcfc", + "printedName" : "init(domain:code:userInfo:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBStartError(im)initWithDomain:code:userInfo:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Override" + ], + "init_kind" : "Designated", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBStartError", + "printedName" : "ChartboostSDK.StartError" + }, + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "Int", + "usr" : "s:Si", + "printedName" : "Swift.Int" + }, + { + "hasDefaultArg" : true, + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "usr" : "s:SD", + "kind" : "TypeNominal", + "name" : "Dictionary", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + }, + { + "kind" : "TypeNominal", + "name" : "ProtocolComposition", + "printedName" : "Any" + } + ], + "printedName" : "[Swift.String : Any]" + } + ], + "printedName" : "[Swift.String : Any]?" + } + ], + "kind" : "Constructor", + "name" : "init" + }, + { + "objc_name" : "initWithCoder:", + "mangledName" : "$s13ChartboostSDK10StartErrorC5coderACSgSo7NSCoderC_tcfc", + "printedName" : "init(coder:)", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBStartError(im)initWithCoder:", + "overriding" : true, + "implicit" : true, + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "declAttributes" : [ + "Dynamic", + "ObjC", + "Required" + ], + "init_kind" : "Designated", + "children" : [ + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "StartError", + "usr" : "c:@M@ChartboostSDK@objc(cs)CHBStartError", + "printedName" : "ChartboostSDK.StartError" + } + ], + "printedName" : "ChartboostSDK.StartError?" + }, + { + "kind" : "TypeNominal", + "name" : "NSCoder", + "usr" : "c:objc(cs)NSCoder", + "printedName" : "Foundation.NSCoder" + } + ], + "kind" : "Constructor", + "name" : "init" + } + ], + "mangledName" : "$s13ChartboostSDK10StartErrorC", + "declKind" : "Class", + "printedName" : "StartError" + }, + { + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "name" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "name" : "Foundation", + "kind" : "Import" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "name" : "Foundation", + "declKind" : "Import" + }, + { + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "name" : "Foundation", + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "declKind" : "Import" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import", + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "name" : "Foundation", + "printedName" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "kind" : "Import", + "printedName" : "Foundation", + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ] + }, + { + "moduleName" : "ChartboostSDK", + "printedName" : "AppTrackingTransparency", + "kind" : "Import", + "name" : "AppTrackingTransparency", + "declKind" : "Import" + }, + { + "printedName" : "AdSupport", + "moduleName" : "ChartboostSDK", + "declKind" : "Import", + "name" : "AdSupport", + "kind" : "Import" + }, + { + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "declKind" : "Import", + "kind" : "Import" + }, + { + "printedName" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "declKind" : "Import", + "name" : "Foundation", + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "declKind" : "Import", + "kind" : "Import", + "printedName" : "Foundation", + "name" : "Foundation", + "declAttributes" : [ + "RawDocComment" + ], + "moduleName" : "ChartboostSDK" + }, + { + "name" : "StoreKit", + "printedName" : "StoreKit", + "declKind" : "Import", + "moduleName" : "ChartboostSDK", + "kind" : "Import" + }, + { + "name" : "Foundation", + "declKind" : "Import", + "kind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "printedName" : "Foundation", + "moduleName" : "ChartboostSDK" + }, + { + "declKind" : "Import", + "declAttributes" : [ + "RawDocComment" + ], + "kind" : "Import", + "moduleName" : "ChartboostSDK", + "printedName" : "Foundation", + "name" : "Foundation" + }, + { + "moduleName" : "ChartboostSDK", + "children" : [ + { + "isFromExtension" : true, + "mangledName" : "$sSo12CHBMediationC13ChartboostSDKE6encode2toys7Encoder_p_tKF", + "printedName" : "encode(to:)", + "throwing" : true, + "funcSelfKind" : "NonMutating", + "usr" : "s:So12CHBMediationC13ChartboostSDKE6encode2toys7Encoder_p_tKF", + "declAttributes" : [ + "AccessControl" + ], + "declKind" : "Func", + "moduleName" : "ChartboostSDK", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Void", + "printedName" : "()" + }, + { + "kind" : "TypeNominal", + "name" : "Encoder", + "usr" : "s:s7EncoderP", + "printedName" : "Swift.Encoder" + } + ], + "kind" : "Function", + "name" : "encode" + }, + { + "isFromExtension" : true, + "mangledName" : "$sSo12CHBMediationC13ChartboostSDKE4fromABs7Decoder_p_tKcfc", + "printedName" : "init(from:)", + "throwing" : true, + "usr" : "s:So12CHBMediationC13ChartboostSDKE4fromABs7Decoder_p_tKcfc", + "declAttributes" : [ + "Convenience", + "Required", + "AccessControl" + ], + "declKind" : "Constructor", + "moduleName" : "ChartboostSDK", + "init_kind" : "Convenience", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "CHBMediation", + "usr" : "c:objc(cs)CHBMediation", + "printedName" : "ChartboostSDK.CHBMediation" + }, + { + "kind" : "TypeNominal", + "name" : "Decoder", + "usr" : "s:s7DecoderP", + "printedName" : "Swift.Decoder" + } + ], + "kind" : "Constructor", + "name" : "init" + }, + { + "isFromExtension" : true, + "objc_name" : "isEqual:", + "mangledName" : "$sSo12CHBMediationC13ChartboostSDKE7isEqualySbypSgF", + "printedName" : "isEqual(_:)", + "funcSelfKind" : "NonMutating", + "usr" : "c:@CM@ChartboostSDK@@objc(cs)CHBMediation(im)isEqual:", + "overriding" : true, + "declAttributes" : [ + "Dynamic", + "ObjC", + "Override", + "AccessControl" + ], + "declKind" : "Func", + "moduleName" : "ChartboostSDK", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "Bool", + "usr" : "s:Sb", + "printedName" : "Swift.Bool" + }, + { + "usr" : "s:Sq", + "kind" : "TypeNominal", + "name" : "Optional", + "children" : [ + { + "kind" : "TypeNominal", + "name" : "ProtocolComposition", + "printedName" : "Any" + } + ], + "printedName" : "Any?" + } + ], + "isOpen" : true, + "kind" : "Function", + "name" : "isEqual" + } + ], + "declAttributes" : [ + "ObjC", + "Dynamic" + ], + "printedName" : "CHBMediation", + "superclassNames" : [ + "ObjectiveC.NSObject" + ], + "isExternal" : true, + "superclassUsr" : "c:objc(cs)NSObject", + "kind" : "TypeDecl", + "objc_name" : "CHBMediation", + "inheritsConvenienceInitializers" : true, + "declKind" : "Class", + "isOpen" : true, + "conformances" : [ + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + }, + { + "mangledName" : "$sSe", + "kind" : "Conformance", + "name" : "Decodable", + "usr" : "s:Se", + "printedName" : "Decodable" + }, + { + "mangledName" : "$sSE", + "kind" : "Conformance", + "name" : "Encodable", + "usr" : "s:SE", + "printedName" : "Encodable" + } + ], + "name" : "CHBMediation", + "usr" : "c:objc(cs)CHBMediation" + }, + { + "isExternal" : true, + "usr" : "c:objc(cs)SKProductsRequest", + "declKind" : "Class", + "moduleName" : "StoreKit", + "name" : "SKProductsRequest", + "declAttributes" : [ + "Available", + "ObjC", + "NonSendable", + "Dynamic" + ], + "inheritsConvenienceInitializers" : true, + "printedName" : "SKProductsRequest", + "kind" : "TypeDecl", + "conformances" : [ + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + } + ], + "objc_name" : "SKProductsRequest", + "superclassUsr" : "c:objc(cs)SKRequest", + "isOpen" : true, + "superclassNames" : [ + "StoreKit.SKRequest", + "ObjectiveC.NSObject" + ], + "intro_iOS" : "3.0" + }, + { + "isExternal" : true, + "objc_name" : "NSTimer", + "printedName" : "Timer", + "superclassUsr" : "c:objc(cs)NSObject", + "kind" : "TypeDecl", + "inheritsConvenienceInitializers" : true, + "usr" : "c:objc(cs)NSTimer", + "superclassNames" : [ + "ObjectiveC.NSObject" + ], + "conformances" : [ + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + } + ], + "name" : "Timer", + "isOpen" : true, + "moduleName" : "Foundation", + "declKind" : "Class", + "declAttributes" : [ + "ObjC", + "NonSendable", + "Dynamic" + ] + }, + { + "kind" : "TypeDecl", + "objc_name" : "NSError", + "conformances" : [ + { + "mangledName" : "$ss8SendableP", + "kind" : "Conformance", + "name" : "Sendable", + "usr" : "s:s8SendableP", + "printedName" : "Sendable" + }, + { + "mangledName" : "$sSQ", + "kind" : "Conformance", + "name" : "Equatable", + "usr" : "s:SQ", + "printedName" : "Equatable" + }, + { + "mangledName" : "$sSH", + "kind" : "Conformance", + "name" : "Hashable", + "usr" : "s:SH", + "printedName" : "Hashable" + }, + { + "mangledName" : "$ss7CVarArgP", + "kind" : "Conformance", + "name" : "CVarArg", + "usr" : "s:s7CVarArgP", + "printedName" : "CVarArg" + }, + { + "mangledName" : "$s10Foundation37_KeyValueCodingAndObservingPublishingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObservingPublishing", + "usr" : "s:10Foundation37_KeyValueCodingAndObservingPublishingP", + "printedName" : "_KeyValueCodingAndObservingPublishing" + }, + { + "mangledName" : "$s10Foundation27_KeyValueCodingAndObservingP", + "kind" : "Conformance", + "name" : "_KeyValueCodingAndObserving", + "usr" : "s:10Foundation27_KeyValueCodingAndObservingP", + "printedName" : "_KeyValueCodingAndObserving" + }, + { + "mangledName" : "$ss23CustomStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomStringConvertible", + "usr" : "s:s23CustomStringConvertibleP", + "printedName" : "CustomStringConvertible" + }, + { + "mangledName" : "$ss28CustomDebugStringConvertibleP", + "kind" : "Conformance", + "name" : "CustomDebugStringConvertible", + "usr" : "s:s28CustomDebugStringConvertibleP", + "printedName" : "CustomDebugStringConvertible" + }, + { + "mangledName" : "$ss5ErrorP", + "kind" : "Conformance", + "name" : "Error", + "usr" : "s:s5ErrorP", + "printedName" : "Error" + } + ], + "superclassNames" : [ + "ObjectiveC.NSObject" + ], + "declKind" : "Class", + "isExternal" : true, + "isOpen" : true, + "usr" : "c:objc(cs)NSError", + "declAttributes" : [ + "ObjC", + "SynthesizedProtocol", + "NonSendable", + "Sendable", + "Dynamic" + ], + "name" : "NSError", + "inheritsConvenienceInitializers" : true, + "moduleName" : "Foundation", + "children" : [ + { + "usr" : "c:@CM@ChartboostSDK@@objc(cs)NSError(im)trackDescription", + "mangledName" : "$sSo7NSErrorC13ChartboostSDKE16trackDescriptionSSyF", + "declAttributes" : [ + "Dynamic", + "AccessControl", + "ObjC", + "RawDocComment" + ], + "children" : [ + { + "kind" : "TypeNominal", + "name" : "String", + "usr" : "s:SS", + "printedName" : "Swift.String" + } + ], + "isFromExtension" : true, + "moduleName" : "ChartboostSDK", + "printedName" : "trackDescription()", + "kind" : "Function", + "funcSelfKind" : "NonMutating", + "name" : "trackDescription", + "declKind" : "Func" + } + ], + "superclassUsr" : "c:objc(cs)NSObject", + "printedName" : "NSError" + } + ], + "name" : "TopLevel" + } +} \ No newline at end of file diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 0000000..34077dd --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,134 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +// swift-module-flags: -target x86_64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name ChartboostSDK +// swift-module-flags-ignorable: -enable-bare-slash-regex +import AVFAudio +import AVFoundation +import AdSupport +import AppTrackingTransparency +@_exported import ChartboostSDK +import CoreGraphics +import CoreTelephony +import Foundation +import SafariServices +import StoreKit +import Swift +import UIKit +import WebKit +import _Concurrency +import _StringProcessing +extension ChartboostSDK.CHBMediation : Swift.Codable { + public func encode(to encoder: Swift.Encoder) throws + required convenience public init(from decoder: Swift.Decoder) throws + @objc override dynamic open func isEqual(_ object: Any?) -> Swift.Bool +} +public typealias RedirectionURLFinished = (url: Foundation.URL, redirected: Swift.Bool) +@objc(CHBCacheErrorCode) public enum CacheErrorCode : Swift.Int { + case internalError + case internetUnavailable + case networkFailure + case noAdFound + case sessionNotStarted + case assetDownloadFailure + case publisherDisabled + case serverError + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBCacheError) public class CacheError : Foundation.NSError { + public var cacheCode: ChartboostSDK.CacheErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objc(CHBShowErrorCode) public enum ShowErrorCode : Swift.Int { + case internalError + case sessionNotStarted + case internetUnavailable + case presentationFailure + case noCachedAd + case noViewController + case noAdInstance + case assetsFailure + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBShowError) public class ShowError : Foundation.NSError { + public var showCode: ChartboostSDK.ShowErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objc(CHBClickErrorCode) public enum ClickErrorCode : Swift.Int { + case uriInvalid + case uriUnrecognized + case internalError + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBClickError) public class ClickError : Foundation.NSError { + public var clickCode: ChartboostSDK.ClickErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objc(CHBStartErrorCode) public enum StartErrorCode : Swift.Int { + case invalidCredentials + case networkFailure + case serverError + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBStartError) public class StartError : Foundation.NSError { + public var startCode: ChartboostSDK.StartErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +extension Foundation.NSError { + @objc dynamic public func trackDescription() -> Swift.String +} +extension ChartboostSDK.CacheErrorCode : Swift.Equatable {} +extension ChartboostSDK.CacheErrorCode : Swift.Hashable {} +extension ChartboostSDK.CacheErrorCode : Swift.RawRepresentable {} +extension ChartboostSDK.ShowErrorCode : Swift.Equatable {} +extension ChartboostSDK.ShowErrorCode : Swift.Hashable {} +extension ChartboostSDK.ShowErrorCode : Swift.RawRepresentable {} +extension ChartboostSDK.ClickErrorCode : Swift.Equatable {} +extension ChartboostSDK.ClickErrorCode : Swift.Hashable {} +extension ChartboostSDK.ClickErrorCode : Swift.RawRepresentable {} +extension ChartboostSDK.StartErrorCode : Swift.Equatable {} +extension ChartboostSDK.StartErrorCode : Swift.Hashable {} +extension ChartboostSDK.StartErrorCode : Swift.RawRepresentable {} diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc new file mode 100644 index 0000000..5a9fc90 Binary files /dev/null and b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface new file mode 100644 index 0000000..34077dd --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -0,0 +1,134 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51) +// swift-module-flags: -target x86_64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name ChartboostSDK +// swift-module-flags-ignorable: -enable-bare-slash-regex +import AVFAudio +import AVFoundation +import AdSupport +import AppTrackingTransparency +@_exported import ChartboostSDK +import CoreGraphics +import CoreTelephony +import Foundation +import SafariServices +import StoreKit +import Swift +import UIKit +import WebKit +import _Concurrency +import _StringProcessing +extension ChartboostSDK.CHBMediation : Swift.Codable { + public func encode(to encoder: Swift.Encoder) throws + required convenience public init(from decoder: Swift.Decoder) throws + @objc override dynamic open func isEqual(_ object: Any?) -> Swift.Bool +} +public typealias RedirectionURLFinished = (url: Foundation.URL, redirected: Swift.Bool) +@objc(CHBCacheErrorCode) public enum CacheErrorCode : Swift.Int { + case internalError + case internetUnavailable + case networkFailure + case noAdFound + case sessionNotStarted + case assetDownloadFailure + case publisherDisabled + case serverError + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBCacheError) public class CacheError : Foundation.NSError { + public var cacheCode: ChartboostSDK.CacheErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objc(CHBShowErrorCode) public enum ShowErrorCode : Swift.Int { + case internalError + case sessionNotStarted + case internetUnavailable + case presentationFailure + case noCachedAd + case noViewController + case noAdInstance + case assetsFailure + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBShowError) public class ShowError : Foundation.NSError { + public var showCode: ChartboostSDK.ShowErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objc(CHBClickErrorCode) public enum ClickErrorCode : Swift.Int { + case uriInvalid + case uriUnrecognized + case internalError + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBClickError) public class ClickError : Foundation.NSError { + public var clickCode: ChartboostSDK.ClickErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +@objc(CHBStartErrorCode) public enum StartErrorCode : Swift.Int { + case invalidCredentials + case networkFailure + case serverError + public var description: Swift.String { + get + } + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@_inheritsConvenienceInitializers @objc(CHBStartError) public class StartError : Foundation.NSError { + public var startCode: ChartboostSDK.StartErrorCode? { + get + } + @objc override dynamic public init(domain: Swift.String, code: Swift.Int, userInfo dict: [Swift.String : Any]? = nil) + @objc required dynamic public init?(coder: Foundation.NSCoder) + @objc deinit +} +extension Foundation.NSError { + @objc dynamic public func trackDescription() -> Swift.String +} +extension ChartboostSDK.CacheErrorCode : Swift.Equatable {} +extension ChartboostSDK.CacheErrorCode : Swift.Hashable {} +extension ChartboostSDK.CacheErrorCode : Swift.RawRepresentable {} +extension ChartboostSDK.ShowErrorCode : Swift.Equatable {} +extension ChartboostSDK.ShowErrorCode : Swift.Hashable {} +extension ChartboostSDK.ShowErrorCode : Swift.RawRepresentable {} +extension ChartboostSDK.ClickErrorCode : Swift.Equatable {} +extension ChartboostSDK.ClickErrorCode : Swift.Hashable {} +extension ChartboostSDK.ClickErrorCode : Swift.RawRepresentable {} +extension ChartboostSDK.StartErrorCode : Swift.Equatable {} +extension ChartboostSDK.StartErrorCode : Swift.Hashable {} +extension ChartboostSDK.StartErrorCode : Swift.RawRepresentable {} diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/module.modulemap b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/module.modulemap new file mode 100644 index 0000000..8550e5f --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/Modules/module.modulemap @@ -0,0 +1,24 @@ +framework module ChartboostSDK { + + umbrella header "ChartboostSDK.h" + + export * + module * { export * } + + + link framework "UIKit" + link framework "WebKit" + link framework "StoreKit" + link framework "CoreMedia" + link framework "AVFoundation" + link framework "AppTrackingTransparency" + link framework "AdSupport" + link framework "CoreTelephony" + link framework "SafariServices" + link framework "CoreFoundation" + link framework "SystemConfiguration" +} +module ChartboostSDK.Swift { + header "ChartboostSDK-Swift.h" + requires objc +} \ No newline at end of file diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/PrivacyInfo.xcprivacy b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..44a4ccd --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/PrivacyInfo.xcprivacy @@ -0,0 +1,130 @@ + + + + + NSPrivacyAccessedAPITypes + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryUserDefaults + NSPrivacyAccessedAPITypeReasons + + CA92.1 + + + + NSPrivacyAccessedAPITypeReasons + + C617.1 + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryFileTimestamp + + + NSPrivacyCollectedDataTypes + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeCoarseLocation + NSPrivacyCollectedDataTypeLinked + + NSPrivacyCollectedDataTypeTracking + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAnalytics + NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeProductInteraction + NSPrivacyCollectedDataTypeLinked + + NSPrivacyCollectedDataTypeTracking + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAnalytics + NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising + NSPrivacyCollectedDataTypePurposeAppFunctionality + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeAdvertisingData + NSPrivacyCollectedDataTypeLinked + + NSPrivacyCollectedDataTypeTracking + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAnalytics + NSPrivacyCollectedDataTypePurposeAppFunctionality + NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeCustomerSupport + NSPrivacyCollectedDataTypeLinked + + NSPrivacyCollectedDataTypeTracking + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAppFunctionality + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeDeviceID + NSPrivacyCollectedDataTypeLinked + + NSPrivacyCollectedDataTypeTracking + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAnalytics + NSPrivacyCollectedDataTypePurposeAppFunctionality + NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeOtherDataTypes + NSPrivacyCollectedDataTypeLinked + + NSPrivacyCollectedDataTypeTracking + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAnalytics + NSPrivacyCollectedDataTypePurposeAppFunctionality + NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising + + + + NSPrivacyCollectedDataType + NSPrivacyCollectedDataTypeUserID + NSPrivacyCollectedDataTypeLinked + + NSPrivacyCollectedDataTypeTracking + + NSPrivacyCollectedDataTypePurposes + + NSPrivacyCollectedDataTypePurposeAnalytics + NSPrivacyCollectedDataTypePurposeAppFunctionality + NSPrivacyCollectedDataTypePurposeThirdPartyAdvertising + + + + NSPrivacyTrackingDomains + + tracking-webview.monetization-sdk.chartboost.com + tracking-da.monetization-sdk.chartboost.com + + NSPrivacyTracking + + + diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/_CodeSignature/CodeDirectory b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/_CodeSignature/CodeDirectory new file mode 100644 index 0000000..c737540 Binary files /dev/null and b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/_CodeSignature/CodeDirectory differ diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/_CodeSignature/CodeRequirements b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/_CodeSignature/CodeRequirements new file mode 100644 index 0000000..dbf9d61 Binary files /dev/null and b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/_CodeSignature/CodeRequirements differ diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/_CodeSignature/CodeRequirements-1 b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/_CodeSignature/CodeRequirements-1 new file mode 100644 index 0000000..982e317 Binary files /dev/null and b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/_CodeSignature/CodeResources b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/_CodeSignature/CodeResources new file mode 100644 index 0000000..ba1a910 --- /dev/null +++ b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/_CodeSignature/CodeResources @@ -0,0 +1,462 @@ + + + + + files + + Headers/CHBAd.h + + Hqerc/VGCU+T8bx9Kjf4o3oduWA= + + Headers/CHBAdDelegate.h + + RIZkuv7XipQsTtmMs/udPT+p5gg= + + Headers/CHBAdEvent.h + + Z9iOSKEUWLpQLoVHeiG5oaNYN60= + + Headers/CHBBanner.h + + AR9un6+2AfRyuX+HjVP2CyyRGvM= + + Headers/CHBDataUseConsent.h + + Rl93NbPPkOhFjclwFJ+YgsNJGz8= + + Headers/CHBInterstitial.h + + j+6Io5e3N5V2bHmvF8NF06ojVvw= + + Headers/CHBMediation.h + + f/qPODbJN5IX2h0CjWE/Wk+B7QY= + + Headers/CHBRewarded.h + + rX362tL3ko4Le4/eA+4fb0mThUM= + + Headers/Chartboost.h + + eFeAPjweXjdytKoh0mwt1HH2igE= + + Headers/ChartboostSDK-Swift.h + + V0CGLgoztGoPUqM2ghcoIFlx+14= + + Headers/ChartboostSDK.h + + vIvNxaYm+maQHuy7Orh4Y03IL20= + + Info.plist + + q4lrHM98f0a0ZxzY2I2XDa6qv+Q= + + Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.abi.json + + vMknqpOE8hUonWZX4QO853QWNVo= + + Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + CPoN6TlnVvWK3fJTD+aFrivi/pE= + + Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc + + wlk3zn9TP2077S7l3GWH5QptklI= + + Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface + + CPoN6TlnVvWK3fJTD+aFrivi/pE= + + Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule + + aYlPDt7vhcXlXq9gCHdlC+30sb0= + + Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json + + vMknqpOE8hUonWZX4QO853QWNVo= + + Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + mvBSFjGSNtlaSls1i6BZDB0wA+w= + + Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc + + 21HWohH51gcQJMcqr1D1R5bKIkU= + + Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface + + mvBSFjGSNtlaSls1i6BZDB0wA+w= + + Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule + + OR4IMJdap7ywupjpR30Bwtg+f+Q= + + Modules/module.modulemap + + nFHhKUqbFTMiqx019DJWgXlTob0= + + PrivacyInfo.xcprivacy + + 4Q6ZldxeYHcejcuGiVOZBPEZtpU= + + PrivateHeaders/ChartboostOMID.h + + wI1v8d5v8RTMNQXuHZQ/IzE3Few= + + + files2 + + Headers/CHBAd.h + + hash + + Hqerc/VGCU+T8bx9Kjf4o3oduWA= + + hash2 + + vp4q9acOAbhzzG+BcO7K6W6vC1o7FtTje2zgaicRTiw= + + + Headers/CHBAdDelegate.h + + hash + + RIZkuv7XipQsTtmMs/udPT+p5gg= + + hash2 + + nR6ZABusGq2LECyw6enTNNj8qcqsQMhJLu4ywlKTfJ0= + + + Headers/CHBAdEvent.h + + hash + + Z9iOSKEUWLpQLoVHeiG5oaNYN60= + + hash2 + + Z66X8hx8Gshx78fqK+jNWxUrc/JeYNJ6tDNoGIJlnfI= + + + Headers/CHBBanner.h + + hash + + AR9un6+2AfRyuX+HjVP2CyyRGvM= + + hash2 + + 0oJSi3vUqPuYWfn/dJ8uBxE/o3pAVL2/Ddqe6ehLMqY= + + + Headers/CHBDataUseConsent.h + + hash + + Rl93NbPPkOhFjclwFJ+YgsNJGz8= + + hash2 + + Masw0wruSwoql2Xd7feu12tHKpT2YA/fVKl/Kd2kp9g= + + + Headers/CHBInterstitial.h + + hash + + j+6Io5e3N5V2bHmvF8NF06ojVvw= + + hash2 + + Fmm8Nlf2Ho5AYkMQMgdhcT6RpSTgD5vKGcZnXTtxcLc= + + + Headers/CHBMediation.h + + hash + + f/qPODbJN5IX2h0CjWE/Wk+B7QY= + + hash2 + + jFjB4AZG96k08Mr7dGh0IqHx44wJaMj6k5u8B1502cs= + + + Headers/CHBRewarded.h + + hash + + rX362tL3ko4Le4/eA+4fb0mThUM= + + hash2 + + mpVM/xOTDlLGet5ePmpB13q1R55cQ3KHkyA6lX5z+Xo= + + + Headers/Chartboost.h + + hash + + eFeAPjweXjdytKoh0mwt1HH2igE= + + hash2 + + /+uAcoCjE9tvOwY6euFNt8XOHHP+ldtnoBqLQ6WwUp0= + + + Headers/ChartboostSDK-Swift.h + + hash + + V0CGLgoztGoPUqM2ghcoIFlx+14= + + hash2 + + UinD73IXcT80gbYpHA4HKPpHNB/VytOJOE+jb/FrauE= + + + Headers/ChartboostSDK.h + + hash + + vIvNxaYm+maQHuy7Orh4Y03IL20= + + hash2 + + 0x3fNm0M2yRnw7Nie71m+Dt3YlmCKz7gvPDakejMaOM= + + + Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.abi.json + + hash + + vMknqpOE8hUonWZX4QO853QWNVo= + + hash2 + + 8/XB2ohW/gFR89PbX9r3+IXmkb2D7he4QizCca2DZBs= + + + Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + hash + + CPoN6TlnVvWK3fJTD+aFrivi/pE= + + hash2 + + uUX9MB/vLMvhU3pplnVPSb3gaqhmQUAOzrm5nMxzMf8= + + + Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc + + hash + + wlk3zn9TP2077S7l3GWH5QptklI= + + hash2 + + HKsm+dYyzysIfU84qO2qZkT6QYxt0HQAot4baVN4xMk= + + + Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface + + hash + + CPoN6TlnVvWK3fJTD+aFrivi/pE= + + hash2 + + uUX9MB/vLMvhU3pplnVPSb3gaqhmQUAOzrm5nMxzMf8= + + + Modules/ChartboostSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule + + hash + + aYlPDt7vhcXlXq9gCHdlC+30sb0= + + hash2 + + 3/6+JhInqvFXahUCymVJXEUkL08zAVUzAXJS7MyZs9A= + + + Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json + + hash + + vMknqpOE8hUonWZX4QO853QWNVo= + + hash2 + + 8/XB2ohW/gFR89PbX9r3+IXmkb2D7he4QizCca2DZBs= + + + Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface + + hash + + mvBSFjGSNtlaSls1i6BZDB0wA+w= + + hash2 + + 2ALQitxuktgMfDVyvw3eg+N0MGAU7J1Mn7dQ47hV8ZY= + + + Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc + + hash + + 21HWohH51gcQJMcqr1D1R5bKIkU= + + hash2 + + gxnd6b9vDBRbEtSNTjzgCtfzbypU/DQKY3el+k9K83g= + + + Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface + + hash + + mvBSFjGSNtlaSls1i6BZDB0wA+w= + + hash2 + + 2ALQitxuktgMfDVyvw3eg+N0MGAU7J1Mn7dQ47hV8ZY= + + + Modules/ChartboostSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule + + hash + + OR4IMJdap7ywupjpR30Bwtg+f+Q= + + hash2 + + /rUJppGyMaA8ossAdgazmEuEmkiGERx2n+z7hVED6vs= + + + Modules/module.modulemap + + hash + + nFHhKUqbFTMiqx019DJWgXlTob0= + + hash2 + + O8T1cENekr25WaGkoUt+4DYoDLgbX7PeJBZ1qdL75X4= + + + PrivacyInfo.xcprivacy + + hash + + 4Q6ZldxeYHcejcuGiVOZBPEZtpU= + + hash2 + + w1gG3A84IZBAWL0PiMF7xI6l8RpAbQqqdo4/p2ZOckA= + + + PrivateHeaders/ChartboostOMID.h + + hash + + wI1v8d5v8RTMNQXuHZQ/IzE3Few= + + hash2 + + Rc4wzWx6hHyymS3qlPtxSaERsFPMn/7I3s7agVEGtUc= + + + + rules + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Base\.lproj/ + + weight + 1010 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/_CodeSignature/CodeSignature b/plugins/2018.3313/iphone-sim/ChartboostSDK.framework/_CodeSignature/CodeSignature new file mode 100644 index 0000000..e69de29 diff --git a/plugins/2018.3313/iphone-sim/libplugin_chartboost.a b/plugins/2018.3313/iphone-sim/libplugin_chartboost.a index c6bbc17..deed43c 100644 Binary files a/plugins/2018.3313/iphone-sim/libplugin_chartboost.a and b/plugins/2018.3313/iphone-sim/libplugin_chartboost.a differ diff --git a/plugins/2018.3313/iphone-sim/metadata.lua b/plugins/2018.3313/iphone-sim/metadata.lua index 952c1d1..b549da0 100644 --- a/plugins/2018.3313/iphone-sim/metadata.lua +++ b/plugins/2018.3313/iphone-sim/metadata.lua @@ -4,7 +4,7 @@ local metadata = { format = 'staticLibrary', staticLibs = { 'plugin_chartboost', }, - frameworks = { 'Chartboost', }, + frameworks = { 'ChartboostSDK', }, frameworksOptional = { 'AppTrackingTransparency', }, -- usesSwift = true, }, diff --git a/plugins/2018.3313/iphone-sim/resources/.DS_Store b/plugins/2018.3313/iphone-sim/resources/.DS_Store new file mode 100644 index 0000000..df918c9 Binary files /dev/null and b/plugins/2018.3313/iphone-sim/resources/.DS_Store differ diff --git a/plugins/2018.3313/iphone-sim/resources/ChartboostSDKResources.bundle/Contents/Info.plist b/plugins/2018.3313/iphone-sim/resources/ChartboostSDKResources.bundle/Contents/Info.plist new file mode 100644 index 0000000..3085f72 --- /dev/null +++ b/plugins/2018.3313/iphone-sim/resources/ChartboostSDKResources.bundle/Contents/Info.plist @@ -0,0 +1,48 @@ + + + + + BuildMachineOSBuild + 22G91 + CFBundleDevelopmentRegion + en + CFBundleIdentifier + com.chartboost.ChartboostSDKResources + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ChartboostSDKResources + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSupportedPlatforms + + MacOSX + + CFBundleVersion + 1 + DTCompiler + com.apple.compilers.llvm.clang.1_0 + DTPlatformBuild + 14B47b + DTPlatformName + macosx + DTPlatformVersion + 13.0 + DTSDKBuild + 22A372 + DTSDKName + macosx13.0 + DTXcode + 1410 + DTXcodeBuild + 14B47b + LSMinimumSystemVersion + 10.15 + UIDeviceFamily + + 2 + + + diff --git a/plugins/2018.3313/iphone-sim/resources/ChartboostSDKResources.bundle/Contents/Resources/info.png b/plugins/2018.3313/iphone-sim/resources/ChartboostSDKResources.bundle/Contents/Resources/info.png new file mode 100644 index 0000000..5192a24 Binary files /dev/null and b/plugins/2018.3313/iphone-sim/resources/ChartboostSDKResources.bundle/Contents/Resources/info.png differ diff --git a/plugins/2018.3313/iphone-sim/resources/ChartboostSDKResources.bundle/Contents/Resources/omsdk-v1.js b/plugins/2018.3313/iphone-sim/resources/ChartboostSDKResources.bundle/Contents/Resources/omsdk-v1.js new file mode 100644 index 0000000..1a04260 --- /dev/null +++ b/plugins/2018.3313/iphone-sim/resources/ChartboostSDKResources.bundle/Contents/Resources/omsdk-v1.js @@ -0,0 +1,78 @@ +;(function(omidGlobal) { + 'use strict';var n;function aa(a){var b=0;return function(){return bc&&(c=Math.max(c+e,0));cf&&w.yh){m=!0;break}}m&&(c+=Math.round(l)*Math.round(k))}}return c} +function Da(a,b){a=A(a);for(var c=[],d=[],e=0;eMath.abs(f-c))||(f=b.x,f=f>e||.01>Math.abs(f-e));(e=f)||(e=b.endY,e=eMath.abs(e-d));(d=e)||(b=b.y,d=b>a||.01>Math.abs(b-a));b=!d}return b}function B(a,b){for(var c=!1,d=0;dd.time&&(d=b[e]);c=d;a.g=Nb(c.rootBounds);a.a=Nb(c.boundingClientRect);a.v=Nb(c.intersectionRect);a.G=!!c.isIntersecting;yb(a)}}catch(f){a.m(),hb(a.F,'generic','Problem handling IntersectionObserver callback: '+f.message)}},{root:null,rootMargin:'0px',threshold:[0,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]})} +function Mb(a){a.f.ResizeObserver?a.l||(a.l=Ob(a,function(){return Pb(a)}),a.l.observe(a.b)):(a.o||(a.o=function(){return Pb(a)},(0,a.f.addEventListener)('resize',a.o)),a.j||(a.j=new MutationObserver(function(){return Pb(a)}),a.j.observe(a.b,{childList:!1,attributes:!0,subtree:!1})))}function Pb(a){a.b&&!Lb(a.b)&&(Kb(a),Ib(a))}function Ob(a,b){return new a.f.ResizeObserver(b)}function Nb(a){if(a&&null!==a.x&&null!==a.y&&null!==a.width&&null!==a.height)return new z(a,!1)};function Sb(a){return a&&L(a)?Object.entries(a).reduce(function(b,c){var d=p(c);c=d.next().value;d=d.next().value;return b&&N(c)&&null!=d&&L(d)&&N(d.resourceUrl)},!0):!1};function T(a,b,c,d){this.b=a;this.method=b;this.version=c;this.a=d}function Tb(a){return!!a&&void 0!==a.omid_message_guid&&void 0!==a.omid_message_method&&void 0!==a.omid_message_version&&'string'===typeof a.omid_message_guid&&'string'===typeof a.omid_message_method&&'string'===typeof a.omid_message_version&&(void 0===a.omid_message_args||void 0!==a.omid_message_args)}function Ub(a){return new T(a.omid_message_guid,a.omid_message_method,a.omid_message_version,a.omid_message_args)} +function Vb(a){var b={};b=(b.omid_message_guid=a.b,b.omid_message_method=a.method,b.omid_message_version=a.version,b);void 0!==a.a&&(b.omid_message_args=a.a);return b};function Wb(a){this.c=a};function U(a){this.c=a;this.handleExportedMessage=U.prototype.f.bind(this)}r(U,Wb);U.prototype.b=function(a,b){b=void 0===b?this.c:b;if(!b)throw Error('Message destination must be defined at construction time or when sending the message.');b.handleExportedMessage(Vb(a),this)};U.prototype.f=function(a,b){Tb(a)&&this.a&&this.a(Ub(a),b)};function Xb(a){return Yb(a,'SessionService.')}function Yb(a,b){return(a=a.match(new RegExp('^'+b+'(.*)')))&&a[1]};function Zb(a,b){this.c=b=void 0===b?F:b;var c=this;a.addEventListener('message',function(d){if('object'===typeof d.data){var e=d.data;Tb(e)&&d.source&&c.a&&c.a(Ub(e),d.source)}})}r(Zb,Wb);Zb.prototype.b=function(a,b){b=void 0===b?this.c:b;if(!b)throw Error('Message destination must be defined at construction time or when sending the message.');b.postMessage(Vb(a),'*')};function $b(){return'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g,function(a){var b=16*Math.random()|0;return'y'===a?(b&3|8).toString(16):b.toString(16)})};function ac(a){if(!a.a||!a.a.document)throw Error('OMID Service Script is not running within a window.');var b=a.b;a.b=[];b.forEach(function(c){try{var d=a.c.B?'limited':'full',e=O(c.accessMode,ua)?c.accessMode:null;var f=e?'full'==e&&'limited'==d?d:'domain'==e?'limited':e:d;c.accessMode=f;a:{var l=c.resourceUrl,g=a.a.location.origin;try{var h=new URL(l,g);break a}catch(X){}try{h=new URL(l);break a}catch(X){}h=null}if(d=h){var k=$b(),m=a.a.document,t=m.createElement('iframe');t.id='omid-verification-script-frame-'+ +k;t.style.display='none';['full','limited'].includes(f)?t.srcdoc="\n