generated from solar2d/plugin-template
-
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
d763edd
commit 9a6c97a
Showing
37 changed files
with
84,503 additions
and
5 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
28 changes: 28 additions & 0 deletions
28
plugins/2018.3326/iphone-sim/InMobiSDK.framework/Headers/IMODTargetingService.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,28 @@ | ||
// | ||
// IMODTargetingService.h | ||
// InMobiSDK | ||
// | ||
// Copyright © 2022 InMobi. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
/** | ||
* Class to integrate On-Device Targeting Service | ||
*/ | ||
|
||
@interface IMODTargetingService : NSObject | ||
|
||
/** | ||
* Update user's email to IMODTargetingService in md5 hashed form. | ||
* This method is used for identifying the user for user targeted ads. | ||
* Expected to be called on every user login. | ||
* @param hashId Represents user email in md5 hashed format | ||
*/ | ||
+ (void)push:(NSString *)hashId; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.