-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from azerion/release/v5.0.0
Release/v5.0.0
- Loading branch information
Showing
36 changed files
with
29,623 additions
and
19 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
Binary file modified
BIN
+852 KB
(110%)
BlueStackSDK.xcframework/ios-arm64/BlueStackSDK.framework/BlueStackSDK
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...os-arm64/BlueStackSDK.framework/BlueStackSDKResources.bundle/_CodeSignature/CodeSignature
Binary file not shown.
21 changes: 21 additions & 0 deletions
21
BlueStackSDK.xcframework/ios-arm64/BlueStackSDK.framework/Headers/AdapterInitConfig.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 @@ | ||
// | ||
// AdapterInitConfig.h | ||
// BlueStackSDK | ||
// | ||
// Created by Nagib Bin Azad on 31/5/23. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface AdapterInitConfig : NSObject | ||
|
||
@property (nonatomic, strong, nonnull) NSString *name; | ||
@property (nonatomic, strong, nonnull) NSDictionary *params; | ||
|
||
+ (instancetype)initWithName:(nonnull NSString *)name params:(nonnull NSDictionary *)params; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
22 changes: 22 additions & 0 deletions
22
BlueStackSDK.xcframework/ios-arm64/BlueStackSDK.framework/Headers/BlueStackConfig.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,22 @@ | ||
// | ||
// BlueStackConfig.h | ||
// BlueStackSDK | ||
// | ||
// Created by Nagib Bin Azad on 31/5/23. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "AdapterInitConfig.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface BlueStackConfig : NSObject | ||
|
||
@property (nonatomic, strong, nullable) NSString *supplyChainObject; | ||
@property (nonatomic, strong, nullable) NSArray<AdapterInitConfig *> *adapterInitConfigs; | ||
|
||
- (NSArray<NSString *> *)getAdapterWaitList; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
17 changes: 17 additions & 0 deletions
17
BlueStackSDK.xcframework/ios-arm64/BlueStackSDK.framework/Headers/BlueStackError.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 @@ | ||
// | ||
// BlueStackError.h | ||
// BlueStackSDK | ||
// | ||
// Created by MedSghaier on 23/3/2023. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface BlueStackError : NSError | ||
|
||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
30 changes: 30 additions & 0 deletions
30
BlueStackSDK.xcframework/ios-arm64/BlueStackSDK.framework/Headers/BlueStackErrorCode.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,30 @@ | ||
// | ||
// BlueStackErrorCode.h | ||
// BlueStackSDK | ||
// | ||
// Created by Nagib Bin Azad on 27/11/24. | ||
// | ||
|
||
#ifndef BlueStackErrorCode_h | ||
#define BlueStackErrorCode_h | ||
|
||
typedef NS_ENUM(NSInteger, BlueStackErrorCode) { | ||
BlueStackErrorWrongPlacement, //Wrong PlacementId | ||
BlueStackErrorAdServer = -1000, | ||
BlueStackErrorDataAdServer = -1001, | ||
BlueStackErrorNoInternet, | ||
BlueStackErrorSDKUninitialized, | ||
BlueStackErrorCappedRequest, //Request has been capped | ||
BlueStackErrorLockedPlacement, //placement locked by another factory | ||
BlueStackErrorBusyFactory, | ||
BlueStackErrorBusy, | ||
BlueStackErrorUnallowedBackgroundRequest, //Cannot send request when application is on background | ||
BlueStackErrorNoAds, | ||
MAdvertiseErrorInterstitialCooldown, //Time between last [interstitalDisappear] and [createInterstital] Must be more than 5s | ||
BlueStackErrorAlreadyShownInterstitial, //Other Interstitial is shown | ||
BlueStackErrorRequestTimedOut, | ||
BlueStackErrorMissingViewController, //Factory's viewController was not assigned | ||
BlueStackErrorUnableToDisplayAd | ||
}; | ||
|
||
#endif /* BlueStackErrorCode_h */ |
Oops, something went wrong.