Skip to content

Commit

Permalink
7.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbushnell committed May 2, 2023
1 parent 767a7f8 commit c993a61
Show file tree
Hide file tree
Showing 97 changed files with 8,267 additions and 4,891 deletions.
46 changes: 23 additions & 23 deletions KochavaCore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,28 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>tvos-arm64_x86_64-simulator</string>
<string>tvos-arm64</string>
<key>LibraryPath</key>
<string>KochavaCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>macos-arm64_x86_64</string>
<key>LibraryPath</key>
<string>KochavaCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<string>macos</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
Expand All @@ -49,48 +47,49 @@
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>watchos-arm64_arm64_32_armv7k</string>
<string>tvos-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>KochavaCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>arm64_32</string>
<string>armv7k</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>ios-arm64_x86_64-maccatalyst</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>KochavaCore.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>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>tvos-arm64</string>
<string>ios-arm64_x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>KochavaCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>macos-arm64_x86_64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>KochavaCore.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -99,22 +98,23 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>watchos-arm64_arm64_32_armv7k</string>
<key>LibraryPath</key>
<string>KochavaCore.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>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>watchos</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -959,22 +959,38 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVASystem *
- (void)stateActiveDidBecome;
/// A method which can be called to report that the active state should become true.
/// Calling this method is generally redundant when the host is an application, as this change is observed automatically. But this method can and should be called in app extensions, such as iMessage apps, to notify when the state is reported to have become active.
/// \param sourceIdentifier An identifier which describes the source that is originating the state change.
///
- (void)stateActiveDidBecomeWithSourceIdentifier:(NSString * _Nonnull)sourceIdentifier;
/// A method which can be called to report that the active state should become true.
/// Calling this method is generally redundant when the host is an application, as this change is observed automatically. But this method can and should be called in app extensions, such as iMessage apps, to notify when the state is reported to have become active.
/// \param sourceString A string which describes the source that is originating the state change.
///
- (void)stateActiveDidBecomeWithSourceString:(NSString * _Nonnull)sourceString;
- (void)stateActiveDidBecomeWithSourceString:(NSString * _Nonnull)sourceString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func stateActiveDidBecome(sourceIdentifier:) instead. In Objective-C use method stateActiveDidBecomeWithSourceIdentifier:", "stateActiveDidBecomeWithSourceIdentifier:");
/// A method which can be called to report that the active state should resign true.
/// Calling this method is generally redundant when the host is an application, as this change is observed automatically. But this method can and should be called in app extensions, such as iMessage apps, to notify when the state is reported to have resigned active.
- (void)stateActiveWillResign;
/// A method which can be called to report that the active state should resign true.
/// Calling this method is generally redundant when the host is an application, as this change is observed automatically. But this method can and should be called in app extensions, such as iMessage apps, to notify when the state is reported to have resigned active.
/// \param sourceIdentifier An identifier which describes the source that is originating the state change.
///
- (void)stateActiveWillResignWithSourceIdentifier:(NSString * _Nonnull)sourceIdentifier;
/// A method which can be called to report that the active state should resign true.
/// Calling this method is generally redundant when the host is an application, as this change is observed automatically. But this method can and should be called in app extensions, such as iMessage apps, to notify when the state is reported to have resigned active.
/// \param sourceString A string which describes the source that is originating the state change.
///
- (void)stateActiveWillResignWithSourceString:(NSString * _Nonnull)sourceString;
- (void)stateActiveWillResignWithSourceString:(NSString * _Nonnull)sourceString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func stateActiveWillResign(sourceIdentifier:) instead. In Objective-C use method stateActiveWillResignWithSourceIdentifier:", "stateActiveWillResignWithSourceIdentifier:");
/// A constant to use as the source when reporting that a MessagesAppViewController did become active.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull messagesAppViewControllerDidBecomeActiveSourceString;)
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull messagesAppViewControllerDidBecomeActiveSourceIdentifier;)
+ (NSString * _Nonnull)messagesAppViewControllerDidBecomeActiveSourceIdentifier SWIFT_WARN_UNUSED_RESULT;
/// A constant to use as the source when reporting that a MessagesAppViewController did become active.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull messagesAppViewControllerDidBecomeActiveSourceString SWIFT_DEPRECATED_MSG("", "messagesAppViewControllerDidBecomeActiveSourceIdentifier");)
+ (NSString * _Nonnull)messagesAppViewControllerDidBecomeActiveSourceString SWIFT_WARN_UNUSED_RESULT;
/// A constant to use as the source when reporting that a MessagesAppViewController did resign active.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull messagesAppViewControllerDidResignActiveSourceString;)
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull messagesAppViewControllerDidResignActiveSourceIdentifier;)
+ (NSString * _Nonnull)messagesAppViewControllerDidResignActiveSourceIdentifier SWIFT_WARN_UNUSED_RESULT;
/// A constant to use as the source when reporting that a MessagesAppViewController did resign active.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull messagesAppViewControllerDidResignActiveSourceString SWIFT_DEPRECATED_MSG("", "messagesAppViewControllerDidResignActiveSourceIdentifier");)
+ (NSString * _Nonnull)messagesAppViewControllerDidResignActiveSourceString SWIFT_WARN_UNUSED_RESULT;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>7.1.0</string>
<string>7.1.1</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>iPhoneOS</string>
Expand All @@ -41,7 +41,7 @@
<key>DTXcodeBuild</key>
<string>14B47b</string>
<key>KVABuildDateString</key>
<string>2023-04-25T10:31:54-0700</string>
<string>2023-05-01T12:18:11-0700</string>
<key>MinimumOSVersion</key>
<string>12.4</string>
<key>UIDeviceFamily</key>
Expand Down
Binary file modified KochavaCore.xcframework/ios-arm64/KochavaCore.framework/KochavaCore
Binary file not shown.
Loading

0 comments on commit c993a61

Please sign in to comment.