-
Notifications
You must be signed in to change notification settings - Fork 1
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
ae94e10
commit 2233763
Showing
149 changed files
with
804,678 additions
and
8,864 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
47 changes: 47 additions & 0 deletions
47
...vaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KVAAdNetworkConversion.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,47 @@ | ||
// | ||
// KVAAdNetworkConversion.h | ||
// KochavaTracker | ||
// | ||
// Created by John Bushnell on 8/20/20. | ||
// Copyright © 2020 - 2023 Kochava, Inc. All rights reserved. | ||
// | ||
|
||
|
||
|
||
#ifndef KVAAdNetworkConversion_h | ||
#define KVAAdNetworkConversion_h | ||
|
||
|
||
|
||
#pragma mark - CLASS | ||
|
||
|
||
|
||
@class KVAAdNetworkConversion; | ||
@class KVAAdNetworkConversionResult; | ||
|
||
|
||
|
||
#pragma mark - Typealiases | ||
|
||
|
||
|
||
/*! | ||
@typedef KVAAdNetworkConversionDidUpdateValueBlock | ||
@brief A closure which is called when the SKAdNetwork updatePostbackConversionValue API has been called. | ||
@discussion Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it. | ||
*/ | ||
typedef void (^ KVAAdNetworkConversionDidUpdateValueBlock) | ||
( | ||
KVAAdNetworkConversion * _Nonnull conversion, | ||
KVAAdNetworkConversionResult * _Nonnull result | ||
) DEPRECATED_MSG_ATTRIBUTE("renamed to 'KVAAdNetworkConversion.Closure_DidUpdatePostbackValue'. Use 'KVAAdNetworkConversion.Closure_DidUpdatePostbackValue' instead. If in Objective-C then describe the closure through its low-level format instead. Example: void (^closure_didUpdatePostbackValue)(KVAAdNetworkConversion * _Nonnull conversion, KVAAdNetworkConversionResult * _Nonnull result) = ^(KVAAdNetworkConversion * _Nonnull conversion, KVAAdNetworkConversionResult * _Nonnull result) { /* ... */ };"); | ||
|
||
|
||
|
||
#endif | ||
|
||
|
||
|
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.