Skip to content

Commit

Permalink
4.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbushnell committed Mar 15, 2021
1 parent e5c5a98 commit 6ce62f4
Show file tree
Hide file tree
Showing 90 changed files with 1,061 additions and 410 deletions.
60 changes: 31 additions & 29 deletions KochavaLocation.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,102 +6,104 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>tvos-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>KochavaLocation.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<string>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>macos-x86_64</string>
<string>ios-arm64_x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>KochavaLocation.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>watchos-arm64_i386_x86_64-simulator</string>
<string>ios-arm64_armv7</string>
<key>LibraryPath</key>
<string>KochavaLocation.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
<string>armv7</string>
</array>
<key>SupportedPlatform</key>
<string>watchos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>ios</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>tvos-arm64_x86_64-simulator</string>
<string>watchos-arm64_32_armv7k</string>
<key>LibraryPath</key>
<string>KochavaLocation.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
<string>arm64_32</string>
<string>armv7k</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>watchos</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-x86_64-maccatalyst</string>
<string>macos-arm64_x86_64</string>
<key>LibraryPath</key>
<string>KochavaLocation.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>macos</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>watchos-arm64_32_armv7k</string>
<string>tvos-arm64</string>
<key>LibraryPath</key>
<string>KochavaLocation.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64_32</string>
<string>armv7k</string>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>watchos</string>
<string>tvos</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>tvos-arm64</string>
<string>ios-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>KochavaLocation.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_i386_x86_64-simulator</string>
<string>watchos-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>KochavaLocation.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -111,7 +113,7 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<string>watchos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,7 @@



#ifdef KOCHAVA_FRAMEWORK
#import <KochavaCore/KochavaCore.h>
#else
#import "KVAAsForContextObjectProtocol.h"
#import "KVAConfigureWithObjectProtocol.h"
#import "KVAFromObjectProtocol.h"
#endif
#import "KVALocationServicesProtocol.h"



Expand All @@ -46,7 +40,7 @@
@copyright 2017 - 2021 Kochava, Inc.
*/
@interface KVALocationServices : NSObject <KVAAsForContextObjectProtocol, KVAConfigureWithObjectProtocol, KVAFromObjectProtocol>
@interface KVALocationServices : NSObject <KVALocationServicesProtocol>



Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
//
// KVALocationServicesProtocol.h
// KochavaLocation
//
// Created by John Bushnell on 2/1/18.
// Copyright © 2018 - 2021 Kochava, Inc. All rights reserved.
//



#if TARGET_OS_IOS



#ifndef KVALocationServicesProtocol_h
#define KVALocationServicesProtocol_h



#pragma mark - IMPORT



#ifdef KOCHAVA_FRAMEWORK
#import <KochavaCore/KochavaCore.h>
#else
#import "KVAAsForContextObjectProtocol.h"
#import "KVAConfigureWithObjectProtocol.h"
#import "KVAFromObjectProtocol.h"
#endif



#pragma mark - INTERFACE - INTERNAL



@protocol KVALocationServicesProtocol <KVAAsForContextObjectProtocol, KVAConfigureWithObjectProtocol, KVAFromObjectProtocol>



@end



#endif



#endif



Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

#import <KochavaLocation/KVALocationProduct.h>
#import <KochavaLocation/KVALocationServices.h>
#import <KochavaLocation/KVALocationServicesProtocol.h>



Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,7 @@



#ifdef KOCHAVA_FRAMEWORK
#import <KochavaCore/KochavaCore.h>
#else
#import "KVAAsForContextObjectProtocol.h"
#import "KVAConfigureWithObjectProtocol.h"
#import "KVAFromObjectProtocol.h"
#endif
#import "KVALocationServicesProtocol.h"



Expand All @@ -46,7 +40,7 @@
@copyright 2017 - 2021 Kochava, Inc.
*/
@interface KVALocationServices : NSObject <KVAAsForContextObjectProtocol, KVAConfigureWithObjectProtocol, KVAFromObjectProtocol>
@interface KVALocationServices : NSObject <KVALocationServicesProtocol>



Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
//
// KVALocationServicesProtocol.h
// KochavaLocation
//
// Created by John Bushnell on 2/1/18.
// Copyright © 2018 - 2021 Kochava, Inc. All rights reserved.
//



#if TARGET_OS_IOS



#ifndef KVALocationServicesProtocol_h
#define KVALocationServicesProtocol_h



#pragma mark - IMPORT



#ifdef KOCHAVA_FRAMEWORK
#import <KochavaCore/KochavaCore.h>
#else
#import "KVAAsForContextObjectProtocol.h"
#import "KVAConfigureWithObjectProtocol.h"
#import "KVAFromObjectProtocol.h"
#endif



#pragma mark - INTERFACE - INTERNAL



@protocol KVALocationServicesProtocol <KVAAsForContextObjectProtocol, KVAConfigureWithObjectProtocol, KVAFromObjectProtocol>



@end



#endif



#endif



Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

#import <KochavaLocation/KVALocationProduct.h>
#import <KochavaLocation/KVALocationServices.h>
#import <KochavaLocation/KVALocationServicesProtocol.h>



Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,19 @@
</data>
<key>Headers/KVALocationServices.h</key>
<data>
Aa0c2qdIYnNkyviOhaswZvyPrLw=
2JNHF/+XJYzirZOg7z5v+LsDvN4=
</data>
<key>Headers/KVALocationServicesProtocol.h</key>
<data>
GWnW9F+nx1EtXPR9d9FoDG5jQQ4=
</data>
<key>Headers/KochavaLocation.h</key>
<data>
oDikDE/FvX+WWIiZKBlHU8NcT/Q=
pD+csghJChARgp0ENnarqIrScx0=
</data>
<key>Info.plist</key>
<data>
NovUYjRaoMepK3R7bMCatbS5/J4=
Uhb6I0APu9BrjzbndCQT0u91oaQ=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand All @@ -42,22 +46,33 @@
<dict>
<key>hash</key>
<data>
Aa0c2qdIYnNkyviOhaswZvyPrLw=
2JNHF/+XJYzirZOg7z5v+LsDvN4=
</data>
<key>hash2</key>
<data>
vn/pnVv4zHHWAgJbZ9/EKOMROWjpO7BfsNANdUHnweE=
</data>
</dict>
<key>Headers/KVALocationServicesProtocol.h</key>
<dict>
<key>hash</key>
<data>
GWnW9F+nx1EtXPR9d9FoDG5jQQ4=
</data>
<key>hash2</key>
<data>
qKgZDz/LTsQdoOq35OrlL18NCIktRad4+PBIdD74Qkk=
LMtPYNWTI4Ganj5lr/joWt/FolmNWscvedu36mMqFn8=
</data>
</dict>
<key>Headers/KochavaLocation.h</key>
<dict>
<key>hash</key>
<data>
oDikDE/FvX+WWIiZKBlHU8NcT/Q=
pD+csghJChARgp0ENnarqIrScx0=
</data>
<key>hash2</key>
<data>
Vs6IyTBHVv6QYMgnjl8eXyHzvrHjc+ZLASy/or4qmrI=
NEiosaOL5iGcM8l5ZlZhTe2aQ99E33RssTeOzLnIggU=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,7 @@



#ifdef KOCHAVA_FRAMEWORK
#import <KochavaCore/KochavaCore.h>
#else
#import "KVAAsForContextObjectProtocol.h"
#import "KVAConfigureWithObjectProtocol.h"
#import "KVAFromObjectProtocol.h"
#endif
#import "KVALocationServicesProtocol.h"



Expand All @@ -46,7 +40,7 @@
@copyright 2017 - 2021 Kochava, Inc.
*/
@interface KVALocationServices : NSObject <KVAAsForContextObjectProtocol, KVAConfigureWithObjectProtocol, KVAFromObjectProtocol>
@interface KVALocationServices : NSObject <KVALocationServicesProtocol>



Expand Down
Loading

0 comments on commit 6ce62f4

Please sign in to comment.