Skip to content

Commit

Permalink
6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbushnell committed Mar 8, 2023
1 parent 351e904 commit cc3f9ef
Show file tree
Hide file tree
Showing 220 changed files with 40,062 additions and 19,620 deletions.
58 changes: 29 additions & 29 deletions KochavaTracker.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,92 +6,89 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>watchos-arm64_32_armv7k</string>
<string>tvos-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>KochavaTracker.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64_32</string>
<string>armv7k</string>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>watchos</string>
<string>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>tvos-arm64</string>
<string>macos-arm64_x86_64</string>
<key>LibraryPath</key>
<string>KochavaTracker.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<string>macos</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-maccatalyst</string>
<string>tvos-arm64</string>
<key>LibraryPath</key>
<string>KochavaTracker.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
<string>tvos</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>macos-arm64_x86_64</string>
<string>watchos-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>KochavaTracker.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
<string>watchos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>watchos-arm64_i386_x86_64-simulator</string>
<string>watchos-arm64_32_armv7k</string>
<key>LibraryPath</key>
<string>KochavaTracker.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
<string>arm64_32</string>
<string>armv7k</string>
</array>
<key>SupportedPlatform</key>
<string>watchos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_i386_x86_64-simulator</string>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>KochavaTracker.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>tvos-arm64_x86_64-simulator</string>
<string>ios-arm64_x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>KochavaTracker.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -100,22 +97,25 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>maccatalyst</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>ios-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>KochavaTracker.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
//
// KVAAdNetwork.h
// KochavaAdNetwork
//
// Created by John Bushnell on 8/20/20.
// Copyright © 2020 - 2022 Kochava, Inc. All rights reserved.
//



#ifndef KVAAdNetwork_h
#define KVAAdNetwork_h



#pragma mark - CLASS



@class KVAAdNetwork;



#pragma mark - Typealiases



/*!
@brief A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution 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 (^ KVAAdNetworkDidRegisterAppForAttributionBlock)
(
KVAAdNetwork * _Nonnull adNetwork
);



#endif



Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
//
// KVAAdNetworkConversion.h
// KochavaAdNetwork
//
// Created by John Bushnell on 8/20/20.
// Copyright © 2020 - 2022 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 updateConversionValue 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
);



#endif



This file was deleted.

Loading

0 comments on commit cc3f9ef

Please sign in to comment.