-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
09e3e64
commit c83ed72
Showing
14 changed files
with
276 additions
and
118 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
8 changes: 4 additions & 4 deletions
8
ios-framework/gdnative_ios/AppsFlyerLib.framework/Modules/module.modulemap
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,6 +1,6 @@ | ||
framework module AppsFlyerLib { | ||
umbrella header "AppsFlyerTracker.h" | ||
umbrella header "AppsFlyerLib.h" | ||
|
||
export * | ||
module * { export * } | ||
} | ||
export * | ||
module * { export * } | ||
} |
Binary file modified
BIN
+1.76 MB
(130%)
ios-framework/gdnative_ios/AppsFlyerLib.framework/Versions/A/AppsFlyerLib
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
36 changes: 36 additions & 0 deletions
36
ios-framework/gdnative_ios/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLink.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,36 @@ | ||
// | ||
// AFSDKDeeplink.h | ||
// AppsFlyerLib | ||
// | ||
// Created by Andrii Hahan on 20.08.2020. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
NS_SWIFT_NAME(DeepLink) | ||
@interface AppsFlyerDeepLink : NSObject | ||
|
||
- (nonnull instancetype)init NS_UNAVAILABLE; | ||
+ (nonnull instancetype)new NS_UNAVAILABLE; | ||
|
||
@property (readonly, nonnull) NSDictionary<NSString *, id> *clickEvent; | ||
@property (readonly, nullable) NSString *deeplinkValue; | ||
@property (readonly, nullable) NSString *matchType; | ||
@property (readonly, nullable) NSString *clickHTTPReferrer; | ||
@property (readonly, nullable) NSString *mediaSource; | ||
@property (readonly, nullable) NSString *campaign; | ||
@property (readonly, nullable) NSString *campaignId; | ||
@property (readonly, nullable) NSString *afSub1; | ||
@property (readonly, nullable) NSString *afSub2; | ||
@property (readonly, nullable) NSString *afSub3; | ||
@property (readonly, nullable) NSString *afSub4; | ||
@property (readonly, nullable) NSString *afSub5; | ||
@property (readonly) BOOL isDeferred; | ||
|
||
- (NSString *)toString; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
29 changes: 29 additions & 0 deletions
29
...mework/gdnative_ios/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkObserver.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,29 @@ | ||
// | ||
// AFSDKDeepLinkObserver.h | ||
// AppsFlyerLib | ||
// | ||
// Created by Andrii Hahan on 09.09.2020. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@class AppsFlyerDeepLinkResult; | ||
|
||
NS_SWIFT_NAME(DeepLinkObserverDelegate) | ||
@protocol AppsFlyerDeepLinkObserverDelegate <NSObject> | ||
|
||
@optional | ||
- (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *_Nonnull)result; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
NS_SWIFT_NAME(DeepLinkObserver) | ||
@interface AppsFlyerDeepLinkObserver : NSObject | ||
|
||
@property(weak, nonatomic) id<AppsFlyerDeepLinkObserverDelegate> delegate; | ||
@property NSTimeInterval timeoutInterval; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
29 changes: 29 additions & 0 deletions
29
...ramework/gdnative_ios/AppsFlyerLib.framework/Versions/A/Headers/AppsFlyerDeepLinkResult.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,29 @@ | ||
// | ||
// AFSDKDeeplinkResult.h | ||
// AppsFlyerLib | ||
// | ||
// Created by Andrii Hahan on 20.08.2020. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@class AppsFlyerDeepLink; | ||
|
||
typedef NS_CLOSED_ENUM(NSUInteger, AFSDKDeepLinkResultStatus) { | ||
AFSDKDeepLinkResultStatusNotFound, | ||
AFSDKDeepLinkResultStatusFound, | ||
AFSDKDeepLinkResultStatusFailure, | ||
} NS_SWIFT_NAME(DeepLinkResultStatus); | ||
|
||
NS_SWIFT_NAME(DeepLinkResult) | ||
@interface AppsFlyerDeepLinkResult : NSObject | ||
|
||
- (nonnull instancetype)init NS_UNAVAILABLE; | ||
+ (nonnull instancetype)new NS_UNAVAILABLE; | ||
|
||
@property(readonly) AFSDKDeepLinkResultStatus status; | ||
|
||
@property(readonly, nullable) AppsFlyerDeepLink *deepLink; | ||
@property(readonly, nullable) NSError *error; | ||
|
||
@end |
Oops, something went wrong.