Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
Flurry 12.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Hunter Hays committed Aug 16, 2023
1 parent fbfb331 commit 70a9eff
Show file tree
Hide file tree
Showing 65 changed files with 78 additions and 81 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<key>Flurry-Package.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>0</integer>
<integer>1</integer>
</dict>
<key>Flurry.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>1</integer>
<integer>0</integer>
</dict>
<key>FlurryConfig.xcscheme_^#shared#^_</key>
<dict>
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Version 12.x

### Version 12.4.0 - 08/16/2023

* Resolves crash with timedId when string is very long
* Minimum iOS version is 12.0

### Version 12.3.1 - 06/16/2023

* Adds new apis to provide more flexibility for closing timed events
Expand Down Expand Up @@ -37,6 +42,7 @@
* Flurry's xcframework uses framework rather than static libraries
* Fix for tvOS arm64 simulator support


### Version 12.0.0 - 04/18/2022

* Introduced the XCFramework in our build pipeline to replace legacy static library
Expand Down
Binary file modified artifacts/.DS_Store
Binary file not shown.
42 changes: 21 additions & 21 deletions artifacts/Flurry.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>tvos-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>Flurry_iOS_SDK.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -15,93 +15,93 @@
<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>tvos-arm64_x86_64-simulator</string>
<string>watchos-arm64_i386_x86_64-simulator</string>
<key>LibraryPath</key>
<string>Flurry_iOS_SDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>tvos</string>
<string>watchos</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-maccatalyst</string>
<string>watchos-arm64_arm64_32_armv7k</string>
<key>LibraryPath</key>
<string>Flurry_iOS_SDK.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>maccatalyst</string>
<string>watchos</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>watchos-arm64_i386_x86_64-simulator</string>
<string>ios-arm64_x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>Flurry_iOS_SDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>i386</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>watchos</string>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>maccatalyst</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>tvos-arm64</string>
<key>LibraryPath</key>
<string>Flurry_iOS_SDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<string>tvos</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>watchos-arm64_arm64_32_armv7k</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>Flurry_iOS_SDK.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>arm64_32</string>
<string>armv7k</string>
</array>
<key>SupportedPlatform</key>
<string>watchos</string>
<string>ios</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>tvos-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>Flurry_iOS_SDK.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>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,6 @@ NS_SWIFT_NAME(log(eventName:parameters:timed:));
+ (void)endTimedEvent:(nonnull NSString *)eventName withParameters:(nullable NSDictionary *)parameters
NS_SWIFT_NAME(endTimedEvent(eventName:parameters:)); // non-nil parameters will update the parameters


/*!
* @brief Records a timed event specified by @c eventId.
* @since 12.3.1
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,6 @@ NS_SWIFT_NAME(log(eventName:parameters:timed:));
+ (void)endTimedEvent:(nonnull NSString *)eventName withParameters:(nullable NSDictionary *)parameters
NS_SWIFT_NAME(endTimedEvent(eventName:parameters:)); // non-nil parameters will update the parameters


/*!
* @brief Records a timed event specified by @c eventId.
* @since 12.3.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>21G646</string>
<string>22G74</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
Expand All @@ -27,19 +27,19 @@
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>14C18</string>
<string></string>
<key>DTPlatformName</key>
<string>macosx</string>
<key>DTPlatformVersion</key>
<string>13.1</string>
<string>13.3</string>
<key>DTSDKBuild</key>
<string>22C55</string>
<string>22E245</string>
<key>DTSDKName</key>
<string>macosx13.1</string>
<string>macosx13.3</string>
<key>DTXcode</key>
<string>1420</string>
<string>1431</string>
<key>DTXcodeBuild</key>
<string>14C18</string>
<string>14E300c</string>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>NSHumanReadableCopyright</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,6 @@ NS_SWIFT_NAME(log(eventName:parameters:timed:));
+ (void)endTimedEvent:(nonnull NSString *)eventName withParameters:(nullable NSDictionary *)parameters
NS_SWIFT_NAME(endTimedEvent(eventName:parameters:)); // non-nil parameters will update the parameters


/*!
* @brief Records a timed event specified by @c eventId.
* @since 12.3.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>21G646</string>
<string>22G74</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
Expand All @@ -27,19 +27,19 @@
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>14C18</string>
<string></string>
<key>DTPlatformName</key>
<string>macosx</string>
<key>DTPlatformVersion</key>
<string>13.1</string>
<string>13.3</string>
<key>DTSDKBuild</key>
<string>22C55</string>
<string>22E245</string>
<key>DTSDKName</key>
<string>macosx13.1</string>
<string>macosx13.3</string>
<key>DTXcode</key>
<string>1420</string>
<string>1431</string>
<key>DTXcodeBuild</key>
<string>14C18</string>
<string>14E300c</string>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>NSHumanReadableCopyright</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,6 @@ NS_SWIFT_NAME(log(eventName:parameters:timed:));
+ (void)endTimedEvent:(nonnull NSString *)eventName withParameters:(nullable NSDictionary *)parameters
NS_SWIFT_NAME(endTimedEvent(eventName:parameters:)); // non-nil parameters will update the parameters


/*!
* @brief Records a timed event specified by @c eventId.
* @since 12.3.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>21G646</string>
<string>22G74</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
Expand All @@ -27,19 +27,19 @@
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>14C18</string>
<string></string>
<key>DTPlatformName</key>
<string>macosx</string>
<key>DTPlatformVersion</key>
<string>13.1</string>
<string>13.3</string>
<key>DTSDKBuild</key>
<string>22C55</string>
<string>22E245</string>
<key>DTSDKName</key>
<string>macosx13.1</string>
<string>macosx13.3</string>
<key>DTXcode</key>
<string>1420</string>
<string>1431</string>
<key>DTXcodeBuild</key>
<string>14C18</string>
<string>14E300c</string>
<key>LSMinimumSystemVersion</key>
<string>10.15</string>
<key>NSHumanReadableCopyright</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,6 @@ NS_SWIFT_NAME(log(eventName:parameters:timed:));
+ (void)endTimedEvent:(nonnull NSString *)eventName withParameters:(nullable NSDictionary *)parameters
NS_SWIFT_NAME(endTimedEvent(eventName:parameters:)); // non-nil parameters will update the parameters


/*!
* @brief Records a timed event specified by @c eventId.
* @since 12.3.1
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</data>
<key>Headers/Flurry.h</key>
<data>
9PoXS+qMpDYwCDv1bMVTclGukEQ=
Z1ppF4kyG6/rPbq6zeAAbqkfOf0=
</data>
<key>Headers/FlurryCCPA.h</key>
<data>
Expand Down Expand Up @@ -38,7 +38,7 @@
</data>
<key>Info.plist</key>
<data>
zP83Y/Kvek4AivKGdtLUhn0X9WQ=
Y58DoGPc8KM6GkqQuUf6JrBYu6U=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand All @@ -62,11 +62,11 @@
<dict>
<key>hash</key>
<data>
9PoXS+qMpDYwCDv1bMVTclGukEQ=
Z1ppF4kyG6/rPbq6zeAAbqkfOf0=
</data>
<key>hash2</key>
<data>
5KfESVdOrVqoM+VAhdB3RKyFKtklF/Gqt0FJIMdycv0=
NuSbreSNKkg6UVsZOQVBAjU3HFC+7EmO+7am1aW6j0U=
</data>
</dict>
<key>Headers/FlurryCCPA.h</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,6 @@ NS_SWIFT_NAME(log(eventName:parameters:timed:));
+ (void)endTimedEvent:(nonnull NSString *)eventName withParameters:(nullable NSDictionary *)parameters
NS_SWIFT_NAME(endTimedEvent(eventName:parameters:)); // non-nil parameters will update the parameters


/*!
* @brief Records a timed event specified by @c eventId.
* @since 12.3.1
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,6 @@ NS_SWIFT_NAME(log(eventName:parameters:timed:));
+ (void)endTimedEvent:(nonnull NSString *)eventName withParameters:(nullable NSDictionary *)parameters
NS_SWIFT_NAME(endTimedEvent(eventName:parameters:)); // non-nil parameters will update the parameters


/*!
* @brief Records a timed event specified by @c eventId.
* @since 12.3.1
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</data>
<key>Headers/Flurry.h</key>
<data>
9PoXS+qMpDYwCDv1bMVTclGukEQ=
Z1ppF4kyG6/rPbq6zeAAbqkfOf0=
</data>
<key>Headers/FlurryCCPA.h</key>
<data>
Expand All @@ -34,7 +34,7 @@
</data>
<key>Info.plist</key>
<data>
xHeigwSib63EWGdj8zDzlgW7hCI=
IDgc0KflpuU4Ng7xDvCznvK6sZI=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand All @@ -58,11 +58,11 @@
<dict>
<key>hash</key>
<data>
9PoXS+qMpDYwCDv1bMVTclGukEQ=
Z1ppF4kyG6/rPbq6zeAAbqkfOf0=
</data>
<key>hash2</key>
<data>
5KfESVdOrVqoM+VAhdB3RKyFKtklF/Gqt0FJIMdycv0=
NuSbreSNKkg6UVsZOQVBAjU3HFC+7EmO+7am1aW6j0U=
</data>
</dict>
<key>Headers/FlurryCCPA.h</key>
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,6 @@ NS_SWIFT_NAME(log(eventName:parameters:timed:));
+ (void)endTimedEvent:(nonnull NSString *)eventName withParameters:(nullable NSDictionary *)parameters
NS_SWIFT_NAME(endTimedEvent(eventName:parameters:)); // non-nil parameters will update the parameters


/*!
* @brief Records a timed event specified by @c eventId.
* @since 12.3.1
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,6 @@ NS_SWIFT_NAME(log(eventName:parameters:timed:));
+ (void)endTimedEvent:(nonnull NSString *)eventName withParameters:(nullable NSDictionary *)parameters
NS_SWIFT_NAME(endTimedEvent(eventName:parameters:)); // non-nil parameters will update the parameters


/*!
* @brief Records a timed event specified by @c eventId.
* @since 12.3.1
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 70a9eff

Please sign in to comment.