Skip to content

Commit

Permalink
Update to 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
scottrules44 committed Feb 29, 2024
1 parent a691828 commit e8cbfb5
Show file tree
Hide file tree
Showing 49 changed files with 98,336 additions and 1,482 deletions.
2 changes: 1 addition & 1 deletion plugins/2018.3326/android/corona.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dependencies {
implementation 'com.appodeal.ads.sdk.networks:unity_ads:3.1.3.0'
implementation 'com.appodeal.ads.sdk.networks:unity_ads:3.2.1.0'
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ typedef NS_ENUM (NSInteger, UADSBannerErrorCode) {
UADSBannerErrorCodeUnknown = 0,
UADSBannerErrorCodeNativeError = 1,
UADSBannerErrorCodeWebViewError = 2,
UADSBannerErrorCodeNoFillError = 3
UADSBannerErrorCodeNoFillError = 3,
UADSBannerErrorInitializeFailed = 4,
UADSBannerErrorInvalidArgument = 5
};

@interface UADSBannerError : NSError
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <UnityAds/UADSBannerViewDelegate.h>
#import <UnityAds/UADSLoadOptions.h>

NS_ASSUME_NONNULL_BEGIN

Expand All @@ -12,7 +13,8 @@ NS_ASSUME_NONNULL_BEGIN

- (instancetype)initWithPlacementId: (NSString *)placementId size: (CGSize)size;

- (void) load;
- (void) load;
- (void) loadWithOptions: (UADSLoadOptions *)options;

@end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@
*/
- (void)bannerViewDidLoad: (UADSBannerView *)bannerView;

@optional
/**
* Called when the banner is showed in the view hierarchy.
*
* @param bannerView View that was showed
*/
- (void)bannerViewDidShow: (UADSBannerView *)bannerView;

/**
* Called when the user clicks the banner.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ typedef NS_ENUM (NSInteger, USRVInitializeStateType) {
@protocol USRVInitializeTask <NSObject>
- (void)startWithCompletion:(void (^)(void))completion error:(void (^)(NSError *))error;
- (NSString *)systemName;
- (NSInteger)retryCount;
@end

NS_ASSUME_NONNULL_END
Expand Down
Loading

0 comments on commit e8cbfb5

Please sign in to comment.