forked from MobiVM/robovm-robopods
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
101 changed files
with
2,425 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 0 additions & 14 deletions
14
ironsource/ios/src/main/bro-gen/IronSource.framework/Headers/Environment/SSEnvironment.h
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
ironsource/ios/src/main/bro-gen/IronSource.framework/Headers/ISAdOptionsPosition.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// | ||
// ISAdOptionsPosition.h | ||
// IronSource | ||
// | ||
// Created by Hadar Pur on 06/07/2023. | ||
// Copyright © 2023 IronSource. All rights reserved. | ||
// | ||
|
||
|
||
// ISAdOptionsPosition | ||
typedef NS_ENUM(NSInteger, ISAdOptionsPosition) { | ||
ISAdOptionsPositionTopLeft, | ||
ISAdOptionsPositionTopRight, | ||
ISAdOptionsPositionBottomLeft, | ||
ISAdOptionsPositionBottomRight | ||
}; | ||
|
||
static NSString * const kAdOptionsPosKey = @"adOptionsPos"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
ironsource/ios/src/main/bro-gen/IronSource.framework/Headers/ISAdapterNativeAdData.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// | ||
// ISAdapterNativeAdData.h | ||
// IronSource | ||
// | ||
// Created by Hadar Pur on 27/06/2023. | ||
// Copyright © 2023 IronSource. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "ISNativeAdDataProtocol.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface ISAdapterNativeAdData : NSObject <ISNativeAdDataProtocol> | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
17 changes: 17 additions & 0 deletions
17
ironsource/ios/src/main/bro-gen/IronSource.framework/Headers/ISAdapterNativeAdViewBinder.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// ISAdapterNativeAdViewBinder.h | ||
// IronSource | ||
// | ||
// Created by Hadar Pur on 19/06/2023. | ||
// Copyright © 2023 IronSource. All rights reserved. | ||
// | ||
|
||
#import "ISAdapterNativeAdViewBinderProtocol.h" | ||
#import "ISNativeAdViewHolder.h" | ||
|
||
@interface ISAdapterNativeAdViewBinder : NSObject <ISAdapterNativeAdViewBinderProtocol> | ||
|
||
@property (nonatomic, strong, nullable) ISNativeAdViewHolder *adViewHolder; | ||
|
||
@end | ||
|
24 changes: 24 additions & 0 deletions
24
...e/ios/src/main/bro-gen/IronSource.framework/Headers/ISAdapterNativeAdViewBinderProtocol.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// ISAdapterNativeAdViewBinderProtocol.h | ||
// IronSource | ||
// | ||
// Created by Hadar Pur on 02/07/2023. | ||
// Copyright © 2023 IronSource. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
#import "ISNativeAdViewBinderProtocol.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@protocol ISAdapterNativeAdViewBinderProtocol <ISNativeAdViewBinderProtocol> | ||
|
||
@required | ||
|
||
@property (nonatomic, strong, nullable) UIView *networkNativeAdView; | ||
|
||
- (void)setNativeAdView:(UIView *_Nullable)nativeAdView; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
ironsource/ios/src/main/bro-gen/IronSource.framework/Headers/ISBaseNativeAdAdapter.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// | ||
// ISBaseNativeAdAdapter.h | ||
// IronSource | ||
// | ||
// Created by Hadar Pur on 06/07/2023. | ||
// Copyright © 2023 IronSource. All rights reserved. | ||
// | ||
|
||
#import "ISBaseAdUnitAdapter.h" | ||
#import "ISNativeAdAdapterProtocol.h" | ||
#import "ISNativeAdProperties.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface ISBaseNativeAdAdapter : ISBaseAdUnitAdapter <ISNativeAdAdapterProtocol> | ||
|
||
- (ISNativeAdProperties *)getNativeAdPropertiesWithAdapterConfig:(nonnull ISAdapterConfig *)adapterConfig; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.