diff --git a/plugins/2018.3326/iphone-sim/AdColony.framework/AdColony b/plugins/2018.3326/iphone-sim/AdColony.framework/AdColony index c187e84..9650b80 100644 Binary files a/plugins/2018.3326/iphone-sim/AdColony.framework/AdColony and b/plugins/2018.3326/iphone-sim/AdColony.framework/AdColony differ diff --git a/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyAdSize.h b/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyAdSize.h old mode 100755 new mode 100644 diff --git a/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyAdView.h b/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyAdView.h index 5f292bf..4e9cc59 100644 --- a/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyAdView.h +++ b/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyAdView.h @@ -18,12 +18,6 @@ NS_ASSUME_NONNULL_BEGIN */ @property (nonatomic, strong, readonly) NSString *zoneID; -/** - @abstract AdColonyAdView's delegate. - @discussion Use this delegate to get ad event callbacks. - */ -@property (nonatomic, weak, nullable) id delegate __attribute__((deprecated("Deprecated in v4.7.0"))); - /** @abstract Indicates that the AdColonyAdView has been removed from the view hierarchy and should be destroyed. @discussion The AdColony SDK maintains internal resources when the ad is being displayed. diff --git a/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyAdViewDelegate.h b/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyAdViewDelegate.h index 2a29a5a..7bc461e 100644 --- a/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyAdViewDelegate.h +++ b/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyAdViewDelegate.h @@ -29,6 +29,13 @@ - (void)adColonyAdViewDidFailToLoad:(AdColonyAdRequestError * _Nonnull)error; @optional +/** + @abstract Did show notification + @discussion Ad view was added to a view with active window + @param adView Shown ad view + */ +- (void)adColonyAdViewDidShow:(AdColonyAdView * _Nonnull)adView; + /** @abstract Application leave notification @discussion Notifies you when ad view is going to redirect user to content outside of the application. @@ -59,9 +66,19 @@ @end +/** + * The delegate of an AdColonyAdView object. This delegate receives ad view lifecycle notifications. + */ +@protocol AdColonyAdViewAdvancedDelegate -#ifndef AdColonyAdViewDelegate_h -#define AdColonyAdViewDelegate_h +@required +/** + @abstract Host view controller request + @discussion Requests hosting view controller when needed if it wasn't provided during ad request. + @param adView The ad view which requests host view controller. + @return view controller that hosts given ad view + */ +- (UIViewController * _Nonnull)adColonyAdViewHostViewController:(AdColonyAdView * _Nonnull)adView; -#endif /* AdColonyAdViewDelegate_h */ +@end diff --git a/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyPublic.h b/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyPublic.h index 03ff9f5..8d36be6 100644 --- a/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyPublic.h +++ b/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyPublic.h @@ -8,6 +8,7 @@ @class AdColonyZone; @protocol AdColonyAdViewDelegate; +@protocol AdColonyAdViewAdvancedDelegate; @protocol AdColonyInterstitialDelegate; NS_ASSUME_NONNULL_BEGIN @@ -19,6 +20,24 @@ NS_ASSUME_NONNULL_BEGIN /** @name Starting AdColony */ +- (instancetype)init NS_UNAVAILABLE; + +/** + @abstract Configures AdColony specifically for your app; required for usage of the rest of the API. + @discussion This method returns immediately; any long-running work such as network connections are performed in the background. + AdColony does not begin preparing ads for display or performing reporting until after it is configured by your app. + The required appID parameter for this method can be created and retrieved at the [Control Panel](http://clients.adcolony.com). + If appID is `nil`, app will be unable to play ads and AdColony will only provide limited reporting and install-tracking functionality. + Please note the completion handler. You should not start requesting ads until it has fired. + If there is a configuration error, the set of zones passed to the completion handler will be nil. + @param appID The AdColony app ID for your app. + @param options (optional) Configuration options for your app. + @param completion (optional) A block of code to be executed upon completion of the configuration operation. Dispatched on main thread. + @see AdColonyAppOptions + @see AdColonyZone + */ ++ (void)configureWithAppID:(NSString *)appID options:(nullable AdColonyAppOptions *)options completion:(nullable void (^)(NSArray *zones))completion; + /** @abstract Configures AdColony specifically for your app; required for usage of the rest of the API. @discussion This method returns immediately; any long-running work such as network connections are performed in the background. @@ -33,8 +52,9 @@ NS_ASSUME_NONNULL_BEGIN @param completion (optional) A block of code to be executed upon completion of the configuration operation. Dispatched on main thread. @see AdColonyAppOptions @see AdColonyZone + @deprecated please use configure without zoneIDs */ -+ (void)configureWithAppID:(NSString *)appID zoneIDs:(NSArray *)zoneIDs options:(nullable AdColonyAppOptions *)options completion:(nullable void (^)(NSArray *zones))completion; ++ (void)configureWithAppID:(NSString *)appID zoneIDs:(NSArray *)zoneIDs options:(nullable AdColonyAppOptions *)options completion:(nullable void (^)(NSArray *zones))completion __attribute__((deprecated("Deprecated in v4.8.0"))); /** @abstract Requests an AdColonyInterstitial. @@ -82,6 +102,21 @@ NS_ASSUME_NONNULL_BEGIN */ + (void)requestAdViewInZone:(NSString *)zoneID withSize:(AdColonyAdSize)size andOptions:(nullable AdColonyAdOptions *)options viewController:(UIViewController *)viewController andDelegate:(id)delegate; +/** + @abstract Request an AdColonyAdView. + @discussion This method returns immediately, before the ad request completes. + If the request is successful, an AdColonyAdView object will be passed to the delegate adColonyAdViewDidLoad: method. + If the request is unsuccessful, an AdColonyAdRequestError object will be passed to the delegate adColonyAdViewDidFailToLoad method. + @param zoneID The AdColony zone identifier string indicating which zone the ad request is for. + @param size The desired size of the banner ad view. + @param options An AdColonyAdOptions object used to set configurable aspects of the ad request. + @param delegate ad view advanced delegate + @see AdColonyAdOptions + @see AdColonyAdView + @see AdColonyAdRequestError + */ ++ (void)requestAdViewInZone:(NSString *)zoneID withSize:(AdColonyAdSize)size options:(nullable AdColonyAdOptions *)options andDelegate:(id)delegate; + /** @name Zone */ /** @@ -185,6 +220,7 @@ NS_ASSUME_NONNULL_BEGIN @abstract Gathers AdColony specific information to be passed into OpenRTB bid request. @discussion Gathers AdColony specific information to be passed into OpenRTB bid requests from a mediation setting. @param completion A block of code to be executed when collection finishes, with result or error, on target dispatch. If nil dispatch is provided, this method behaves like collectSignals:. +@param dispatch Target dispatch queue for completion callback block */ + (void)collectSignals:(nonnull void (^)(NSString * _Nullable signals, NSError * _Nullable error))completion targetDispatch:(nullable dispatch_queue_t)dispatch; diff --git a/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyTypes.h b/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyTypes.h index 249ac86..5038236 100644 --- a/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyTypes.h +++ b/plugins/2018.3326/iphone-sim/AdColony.framework/Headers/AdColonyTypes.h @@ -21,6 +21,9 @@ typedef NS_ENUM(NSUInteger, AdColonyRequestError) { /** This iOS version is no longer supported. */ AdColonyRequestErrorFeatureUnsupported, + + /** Unexpected result */ + AdColonyRequestErrorUnexpected }; /** diff --git a/plugins/2018.3326/iphone-sim/AdColony.framework/Info.plist b/plugins/2018.3326/iphone-sim/AdColony.framework/Info.plist index 8dc7843..64756c3 100644 Binary files a/plugins/2018.3326/iphone-sim/AdColony.framework/Info.plist and b/plugins/2018.3326/iphone-sim/AdColony.framework/Info.plist differ diff --git a/plugins/2018.3326/iphone-sim/AdColony.framework/_CodeSignature/CodeDirectory b/plugins/2018.3326/iphone-sim/AdColony.framework/_CodeSignature/CodeDirectory index 0581095..12a298f 100644 Binary files a/plugins/2018.3326/iphone-sim/AdColony.framework/_CodeSignature/CodeDirectory and b/plugins/2018.3326/iphone-sim/AdColony.framework/_CodeSignature/CodeDirectory differ diff --git a/plugins/2018.3326/iphone-sim/AdColony.framework/_CodeSignature/CodeRequirements-1 b/plugins/2018.3326/iphone-sim/AdColony.framework/_CodeSignature/CodeRequirements-1 index fd96538..f890185 100644 Binary files a/plugins/2018.3326/iphone-sim/AdColony.framework/_CodeSignature/CodeRequirements-1 and b/plugins/2018.3326/iphone-sim/AdColony.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/plugins/2018.3326/iphone-sim/AdColony.framework/_CodeSignature/CodeResources b/plugins/2018.3326/iphone-sim/AdColony.framework/_CodeSignature/CodeResources index 6889310..eea8d91 100644 --- a/plugins/2018.3326/iphone-sim/AdColony.framework/_CodeSignature/CodeResources +++ b/plugins/2018.3326/iphone-sim/AdColony.framework/_CodeSignature/CodeResources @@ -22,11 +22,11 @@ Headers/AdColonyAdView.h - XxP3Jjab5afk0kCXZpiW5U0SmGc= + LlbLgL75+6g6Q7fFLSJ4TXmc6NQ= Headers/AdColonyAdViewDelegate.h - MxJTDpv48kltPCJO1JfSSJMbenc= + BojYu9LVUvi+0CgVb2OubqmDdD0= Headers/AdColonyAppOptions.h @@ -50,11 +50,11 @@ Headers/AdColonyPublic.h - sELZc85rp+S8u0Do3N4oLG8jPm4= + Ujl5iAKTgIaswgtG20gBJOkk+8A= Headers/AdColonyTypes.h - Uza0maPO4B9XWWPa1OCzhLloWGk= + j1CJiFoNc4XD1P+ti6WXuvWwKd4= Headers/AdColonyUserMetadata.h @@ -66,7 +66,7 @@ Info.plist - HmhNN+IuRHIt1zVKuVsCjWoiNXI= + Tr1mb19jMY8EejvkxqaLLOVN9fE= Modules/module.modulemap @@ -123,22 +123,22 @@ hash - XxP3Jjab5afk0kCXZpiW5U0SmGc= + LlbLgL75+6g6Q7fFLSJ4TXmc6NQ= hash2 - vjXfpAmtC04pU+GGAfSGJKDBeigrbkgVFZxStvo6zyg= + EZ82RSC0gLSrYIRptT977PZsTbWfVWOFsTebt/ouJ2M= Headers/AdColonyAdViewDelegate.h hash - MxJTDpv48kltPCJO1JfSSJMbenc= + BojYu9LVUvi+0CgVb2OubqmDdD0= hash2 - 9HhugofD8MimsBp1YK+HXniczyeh1FnVhbu3PsdVBTA= + FHOdH7AqQ0usVXxUVvjL4eeYuPXYTuFFp1r1aD1RrT0= Headers/AdColonyAppOptions.h @@ -200,22 +200,22 @@ hash - sELZc85rp+S8u0Do3N4oLG8jPm4= + Ujl5iAKTgIaswgtG20gBJOkk+8A= hash2 - uM2xJqiA87cgKe5+Uv0wKakNa1YxBs+xWXbfo4NxhWQ= + AwlGuFSRDnqlF8Cz+j8vTRJbkS/DPvxNNSljaczEAXY= Headers/AdColonyTypes.h hash - Uza0maPO4B9XWWPa1OCzhLloWGk= + j1CJiFoNc4XD1P+ti6WXuvWwKd4= hash2 - ZY0YcIi8nHV59ic8iQcsjxQSiJ6IT8LCb8FSJ9ma2QI= + zCmvdDRrfT4EiIVDp8TPlwTXMDsCARyF7hMGhEweM+Q= Headers/AdColonyUserMetadata.h diff --git a/plugins/2018.3326/iphone-sim/libAPDAdColonyAdapter.a b/plugins/2018.3326/iphone-sim/libAPDAdColonyAdapter.a index e1b5f70..c29fdb6 100644 Binary files a/plugins/2018.3326/iphone-sim/libAPDAdColonyAdapter.a and b/plugins/2018.3326/iphone-sim/libAPDAdColonyAdapter.a differ diff --git a/plugins/2018.3326/iphone/AdColony.framework/AdColony b/plugins/2018.3326/iphone/AdColony.framework/AdColony index 0cf2c9c..3254c33 100644 Binary files a/plugins/2018.3326/iphone/AdColony.framework/AdColony and b/plugins/2018.3326/iphone/AdColony.framework/AdColony differ diff --git a/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyAdSize.h b/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyAdSize.h old mode 100755 new mode 100644 diff --git a/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyAdView.h b/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyAdView.h index 5f292bf..4e9cc59 100644 --- a/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyAdView.h +++ b/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyAdView.h @@ -18,12 +18,6 @@ NS_ASSUME_NONNULL_BEGIN */ @property (nonatomic, strong, readonly) NSString *zoneID; -/** - @abstract AdColonyAdView's delegate. - @discussion Use this delegate to get ad event callbacks. - */ -@property (nonatomic, weak, nullable) id delegate __attribute__((deprecated("Deprecated in v4.7.0"))); - /** @abstract Indicates that the AdColonyAdView has been removed from the view hierarchy and should be destroyed. @discussion The AdColony SDK maintains internal resources when the ad is being displayed. diff --git a/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyAdViewDelegate.h b/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyAdViewDelegate.h index 2a29a5a..7bc461e 100644 --- a/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyAdViewDelegate.h +++ b/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyAdViewDelegate.h @@ -29,6 +29,13 @@ - (void)adColonyAdViewDidFailToLoad:(AdColonyAdRequestError * _Nonnull)error; @optional +/** + @abstract Did show notification + @discussion Ad view was added to a view with active window + @param adView Shown ad view + */ +- (void)adColonyAdViewDidShow:(AdColonyAdView * _Nonnull)adView; + /** @abstract Application leave notification @discussion Notifies you when ad view is going to redirect user to content outside of the application. @@ -59,9 +66,19 @@ @end +/** + * The delegate of an AdColonyAdView object. This delegate receives ad view lifecycle notifications. + */ +@protocol AdColonyAdViewAdvancedDelegate -#ifndef AdColonyAdViewDelegate_h -#define AdColonyAdViewDelegate_h +@required +/** + @abstract Host view controller request + @discussion Requests hosting view controller when needed if it wasn't provided during ad request. + @param adView The ad view which requests host view controller. + @return view controller that hosts given ad view + */ +- (UIViewController * _Nonnull)adColonyAdViewHostViewController:(AdColonyAdView * _Nonnull)adView; -#endif /* AdColonyAdViewDelegate_h */ +@end diff --git a/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyPublic.h b/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyPublic.h index 03ff9f5..8d36be6 100644 --- a/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyPublic.h +++ b/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyPublic.h @@ -8,6 +8,7 @@ @class AdColonyZone; @protocol AdColonyAdViewDelegate; +@protocol AdColonyAdViewAdvancedDelegate; @protocol AdColonyInterstitialDelegate; NS_ASSUME_NONNULL_BEGIN @@ -19,6 +20,24 @@ NS_ASSUME_NONNULL_BEGIN /** @name Starting AdColony */ +- (instancetype)init NS_UNAVAILABLE; + +/** + @abstract Configures AdColony specifically for your app; required for usage of the rest of the API. + @discussion This method returns immediately; any long-running work such as network connections are performed in the background. + AdColony does not begin preparing ads for display or performing reporting until after it is configured by your app. + The required appID parameter for this method can be created and retrieved at the [Control Panel](http://clients.adcolony.com). + If appID is `nil`, app will be unable to play ads and AdColony will only provide limited reporting and install-tracking functionality. + Please note the completion handler. You should not start requesting ads until it has fired. + If there is a configuration error, the set of zones passed to the completion handler will be nil. + @param appID The AdColony app ID for your app. + @param options (optional) Configuration options for your app. + @param completion (optional) A block of code to be executed upon completion of the configuration operation. Dispatched on main thread. + @see AdColonyAppOptions + @see AdColonyZone + */ ++ (void)configureWithAppID:(NSString *)appID options:(nullable AdColonyAppOptions *)options completion:(nullable void (^)(NSArray *zones))completion; + /** @abstract Configures AdColony specifically for your app; required for usage of the rest of the API. @discussion This method returns immediately; any long-running work such as network connections are performed in the background. @@ -33,8 +52,9 @@ NS_ASSUME_NONNULL_BEGIN @param completion (optional) A block of code to be executed upon completion of the configuration operation. Dispatched on main thread. @see AdColonyAppOptions @see AdColonyZone + @deprecated please use configure without zoneIDs */ -+ (void)configureWithAppID:(NSString *)appID zoneIDs:(NSArray *)zoneIDs options:(nullable AdColonyAppOptions *)options completion:(nullable void (^)(NSArray *zones))completion; ++ (void)configureWithAppID:(NSString *)appID zoneIDs:(NSArray *)zoneIDs options:(nullable AdColonyAppOptions *)options completion:(nullable void (^)(NSArray *zones))completion __attribute__((deprecated("Deprecated in v4.8.0"))); /** @abstract Requests an AdColonyInterstitial. @@ -82,6 +102,21 @@ NS_ASSUME_NONNULL_BEGIN */ + (void)requestAdViewInZone:(NSString *)zoneID withSize:(AdColonyAdSize)size andOptions:(nullable AdColonyAdOptions *)options viewController:(UIViewController *)viewController andDelegate:(id)delegate; +/** + @abstract Request an AdColonyAdView. + @discussion This method returns immediately, before the ad request completes. + If the request is successful, an AdColonyAdView object will be passed to the delegate adColonyAdViewDidLoad: method. + If the request is unsuccessful, an AdColonyAdRequestError object will be passed to the delegate adColonyAdViewDidFailToLoad method. + @param zoneID The AdColony zone identifier string indicating which zone the ad request is for. + @param size The desired size of the banner ad view. + @param options An AdColonyAdOptions object used to set configurable aspects of the ad request. + @param delegate ad view advanced delegate + @see AdColonyAdOptions + @see AdColonyAdView + @see AdColonyAdRequestError + */ ++ (void)requestAdViewInZone:(NSString *)zoneID withSize:(AdColonyAdSize)size options:(nullable AdColonyAdOptions *)options andDelegate:(id)delegate; + /** @name Zone */ /** @@ -185,6 +220,7 @@ NS_ASSUME_NONNULL_BEGIN @abstract Gathers AdColony specific information to be passed into OpenRTB bid request. @discussion Gathers AdColony specific information to be passed into OpenRTB bid requests from a mediation setting. @param completion A block of code to be executed when collection finishes, with result or error, on target dispatch. If nil dispatch is provided, this method behaves like collectSignals:. +@param dispatch Target dispatch queue for completion callback block */ + (void)collectSignals:(nonnull void (^)(NSString * _Nullable signals, NSError * _Nullable error))completion targetDispatch:(nullable dispatch_queue_t)dispatch; diff --git a/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyTypes.h b/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyTypes.h index 249ac86..5038236 100644 --- a/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyTypes.h +++ b/plugins/2018.3326/iphone/AdColony.framework/Headers/AdColonyTypes.h @@ -21,6 +21,9 @@ typedef NS_ENUM(NSUInteger, AdColonyRequestError) { /** This iOS version is no longer supported. */ AdColonyRequestErrorFeatureUnsupported, + + /** Unexpected result */ + AdColonyRequestErrorUnexpected }; /** diff --git a/plugins/2018.3326/iphone/AdColony.framework/Info.plist b/plugins/2018.3326/iphone/AdColony.framework/Info.plist index af49424..f76f850 100644 Binary files a/plugins/2018.3326/iphone/AdColony.framework/Info.plist and b/plugins/2018.3326/iphone/AdColony.framework/Info.plist differ diff --git a/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeDirectory b/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeDirectory index f5f9cfe..ea7deb5 100644 Binary files a/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeDirectory and b/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeDirectory differ diff --git a/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeRequirements b/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeRequirements index 5bce65b..2f11b0a 100644 Binary files a/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeRequirements and b/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeRequirements differ diff --git a/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeRequirements-1 b/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeRequirements-1 index e7b5102..14b67a0 100644 Binary files a/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeRequirements-1 and b/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeResources b/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeResources index 03309e0..a68f3a4 100644 --- a/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeResources +++ b/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeResources @@ -22,11 +22,11 @@ Headers/AdColonyAdView.h - XxP3Jjab5afk0kCXZpiW5U0SmGc= + LlbLgL75+6g6Q7fFLSJ4TXmc6NQ= Headers/AdColonyAdViewDelegate.h - MxJTDpv48kltPCJO1JfSSJMbenc= + BojYu9LVUvi+0CgVb2OubqmDdD0= Headers/AdColonyAppOptions.h @@ -50,11 +50,11 @@ Headers/AdColonyPublic.h - sELZc85rp+S8u0Do3N4oLG8jPm4= + Ujl5iAKTgIaswgtG20gBJOkk+8A= Headers/AdColonyTypes.h - Uza0maPO4B9XWWPa1OCzhLloWGk= + j1CJiFoNc4XD1P+ti6WXuvWwKd4= Headers/AdColonyUserMetadata.h @@ -66,7 +66,7 @@ Info.plist - sX4IkCZzDLLpUIfB+KEN8c7k43w= + 83h+t2JOyw6y3VmYhq0lDyBiH2Q= Modules/module.modulemap @@ -123,22 +123,22 @@ hash - XxP3Jjab5afk0kCXZpiW5U0SmGc= + LlbLgL75+6g6Q7fFLSJ4TXmc6NQ= hash2 - vjXfpAmtC04pU+GGAfSGJKDBeigrbkgVFZxStvo6zyg= + EZ82RSC0gLSrYIRptT977PZsTbWfVWOFsTebt/ouJ2M= Headers/AdColonyAdViewDelegate.h hash - MxJTDpv48kltPCJO1JfSSJMbenc= + BojYu9LVUvi+0CgVb2OubqmDdD0= hash2 - 9HhugofD8MimsBp1YK+HXniczyeh1FnVhbu3PsdVBTA= + FHOdH7AqQ0usVXxUVvjL4eeYuPXYTuFFp1r1aD1RrT0= Headers/AdColonyAppOptions.h @@ -200,22 +200,22 @@ hash - sELZc85rp+S8u0Do3N4oLG8jPm4= + Ujl5iAKTgIaswgtG20gBJOkk+8A= hash2 - uM2xJqiA87cgKe5+Uv0wKakNa1YxBs+xWXbfo4NxhWQ= + AwlGuFSRDnqlF8Cz+j8vTRJbkS/DPvxNNSljaczEAXY= Headers/AdColonyTypes.h hash - Uza0maPO4B9XWWPa1OCzhLloWGk= + j1CJiFoNc4XD1P+ti6WXuvWwKd4= hash2 - ZY0YcIi8nHV59ic8iQcsjxQSiJ6IT8LCb8FSJ9ma2QI= + zCmvdDRrfT4EiIVDp8TPlwTXMDsCARyF7hMGhEweM+Q= Headers/AdColonyUserMetadata.h diff --git a/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeSignature b/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeSignature index 25310d8..ba34cd8 100644 Binary files a/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeSignature and b/plugins/2018.3326/iphone/AdColony.framework/_CodeSignature/CodeSignature differ diff --git a/plugins/2018.3326/iphone/libAPDAdColonyAdapter.a b/plugins/2018.3326/iphone/libAPDAdColonyAdapter.a index 89369f6..2311106 100644 Binary files a/plugins/2018.3326/iphone/libAPDAdColonyAdapter.a and b/plugins/2018.3326/iphone/libAPDAdColonyAdapter.a differ