-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
3e6be80
commit f448dcd
Showing
105 changed files
with
15,385 additions
and
378 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
dependencies { | ||
implementation 'com.appodeal.ads.sdk.networks:applovin:3.1.3.1' | ||
implementation 'com.appodeal.ads.sdk.networks:applovin:3.2.1.0' | ||
} |
Binary file modified
BIN
+2.38 MB
(110%)
plugins/2018.3326/iphone-sim/AppLovinSDK.framework/AppLovinSDK
Binary file not shown.
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
62 changes: 62 additions & 0 deletions
62
plugins/2018.3326/iphone-sim/AppLovinSDK.framework/Headers/ALCMPError.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,62 @@ | ||
// | ||
// ALCMPError.h | ||
// AppLovinSDK | ||
// | ||
// Created by Thomas So on 7/26/23. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
typedef NS_ENUM(NSInteger, ALCMPErrorCode) | ||
{ | ||
/** | ||
* Indicates that an unspecified error has occurred. | ||
*/ | ||
ALCMPErrorCodeUnspecified = -1, | ||
|
||
/** | ||
* Indicates that the CMP has not been integrated correctly. | ||
*/ | ||
ALCMPErrorCodeIntegrationError = 1, | ||
|
||
/** | ||
* Indicates that the CMP form is unavailable. | ||
*/ | ||
ALCMPErrorCodeFormUnavailable = 2, | ||
|
||
/** | ||
* Indicates that the CMP form is not required. | ||
*/ | ||
ALCMPErrorCodeFormNotRequired = 3, | ||
}; | ||
|
||
@interface ALCMPError : NSObject | ||
|
||
/** | ||
* The error code for this error. | ||
*/ | ||
@property (nonatomic, assign, readonly) ALCMPErrorCode code; | ||
|
||
/** | ||
* The error message for this error. | ||
*/ | ||
@property (nonatomic, copy, readonly) NSString *message; | ||
|
||
/** | ||
* The error code returned by the CMP. | ||
*/ | ||
@property (nonatomic, assign, readonly) NSInteger cmpCode; | ||
|
||
/** | ||
* The error message returned by the CMP. | ||
*/ | ||
@property (nonatomic, copy, readonly) NSString *cmpMessage; | ||
|
||
- (instancetype)init NS_UNAVAILABLE; | ||
- (instancetype)new NS_UNAVAILABLE; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
42 changes: 42 additions & 0 deletions
42
plugins/2018.3326/iphone-sim/AppLovinSDK.framework/Headers/ALCMPService.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,42 @@ | ||
// | ||
// ALCMPService.h | ||
// AppLovinSDK | ||
// | ||
// Created by Thomas So on 7/26/23. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@class ALCMPError; | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* This class provides direct APIs for interfacing with the Google-certified CMP installed, if any. | ||
*/ | ||
@interface ALCMPService : NSObject | ||
|
||
/** | ||
* @param error @c nil if the flow completed successfully. Otherwise, the error object contains more details about the reason for failure. | ||
*/ | ||
typedef void (^ALCMPCompletionHandler) (ALCMPError *_Nullable error); | ||
|
||
/** | ||
* Shows the CMP flow to an existing user. | ||
* Note that the user's current consent will be reset before the CMP alert is shown. | ||
* | ||
* @param completion The completion handler that will be called once the flow finishes showing. | ||
*/ | ||
- (void)showCMPForExistingUserWithCompletion:(ALCMPCompletionHandler)completion; | ||
|
||
/** | ||
* @return @c YES if a supported CMP is integrated. | ||
*/ | ||
- (BOOL)hasSupportedCMP; | ||
|
||
- (instancetype)init NS_UNAVAILABLE; | ||
+ (instancetype)new NS_UNAVAILABLE; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
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
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
Oops, something went wrong.