Skip to content

Commit f4741d8

Browse files
committed
adding SampleApps/SwiftUI/RecordingDemos
1 parent eee8d88 commit f4741d8

File tree

52 files changed

+3733
-1852
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+3733
-1852
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## v1.2.4 - 2023-10-05
8+
9+
### Added
10+
- OS Screen Recording Demo
11+
- SDK Video Recording Demo
12+
13+
### Fixed
14+
- iOS17 Compatibility
15+
716
## v1.2.2 - 2023-07-11
817

918
### Added

QuickPoseCamera.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'QuickPoseCamera'
3-
s.version = '1.2.2'
3+
s.version = '1.2.4'
44
s.summary = 'QuickPoseCamera'
55
s.homepage = 'https://quickpose.ai'
66
s.authors = 'QuickPose.ai'

QuickPoseCore.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'QuickPoseCore'
3-
s.version = '1.2.2'
3+
s.version = '1.2.4'
44
s.summary = 'QuickPoseCore'
55
s.homepage = 'https://quickpose.ai'
66
s.authors = 'QuickPose.ai'

QuickPoseCore.xcframework/Info.plist

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,34 @@
55
<key>AvailableLibraries</key>
66
<array>
77
<dict>
8+
<key>BinaryPath</key>
9+
<string>QuickPoseCore.framework/QuickPoseCore</string>
810
<key>LibraryIdentifier</key>
9-
<string>ios-x86_64-simulator</string>
11+
<string>ios-arm64</string>
1012
<key>LibraryPath</key>
1113
<string>QuickPoseCore.framework</string>
1214
<key>SupportedArchitectures</key>
1315
<array>
14-
<string>x86_64</string>
16+
<string>arm64</string>
1517
</array>
1618
<key>SupportedPlatform</key>
1719
<string>ios</string>
18-
<key>SupportedPlatformVariant</key>
19-
<string>simulator</string>
2020
</dict>
2121
<dict>
22+
<key>BinaryPath</key>
23+
<string>QuickPoseCore.framework/QuickPoseCore</string>
2224
<key>LibraryIdentifier</key>
23-
<string>ios-arm64</string>
25+
<string>ios-x86_64-simulator</string>
2426
<key>LibraryPath</key>
2527
<string>QuickPoseCore.framework</string>
2628
<key>SupportedArchitectures</key>
2729
<array>
28-
<string>arm64</string>
30+
<string>x86_64</string>
2931
</array>
3032
<key>SupportedPlatform</key>
3133
<string>ios</string>
34+
<key>SupportedPlatformVariant</key>
35+
<string>simulator</string>
3236
</dict>
3337
</array>
3438
<key>CFBundlePackageType</key>

QuickPoseCore.xcframework/ios-arm64/QuickPoseCore.framework/Headers/QuickPoseCore-Swift.h

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#if 0
22
#elif defined(__arm64__) && __arm64__
3-
// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
3+
// Generated by Apple Swift version 5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)
44
#ifndef QUICKPOSECORE_SWIFT_H
55
#define QUICKPOSECORE_SWIFT_H
66
#pragma clang diagnostic push
@@ -42,12 +42,18 @@
4242
#include <string.h>
4343
#endif
4444
#if defined(__cplusplus)
45-
#if __has_include(<ptrauth.h>)
45+
#if defined(__arm64e__) && __has_include(<ptrauth.h>)
4646
# include <ptrauth.h>
4747
#else
48+
#pragma clang diagnostic push
49+
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
4850
# ifndef __ptrauth_swift_value_witness_function_pointer
4951
# define __ptrauth_swift_value_witness_function_pointer(x)
5052
# endif
53+
# ifndef __ptrauth_swift_class_method_pointer
54+
# define __ptrauth_swift_class_method_pointer(x)
55+
# endif
56+
#pragma clang diagnostic pop
5157
#endif
5258
#endif
5359

@@ -246,6 +252,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
246252
#else
247253
# define SWIFT_NOEXCEPT
248254
#endif
255+
#if !defined(SWIFT_C_INLINE_THUNK)
256+
# if __has_attribute(always_inline)
257+
# if __has_attribute(nodebug)
258+
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
259+
# else
260+
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
261+
# endif
262+
# else
263+
# define SWIFT_C_INLINE_THUNK inline
264+
# endif
265+
#endif
249266
#if defined(_WIN32)
250267
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
251268
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
@@ -420,13 +437,12 @@ SWIFT_CLASS("_TtC13QuickPoseCore9QuickPose")
420437

421438

422439

423-
424-
#endif
425-
#if defined(__cplusplus)
426440
#endif
427441
#if __has_attribute(external_source_symbol)
428442
# pragma clang attribute pop
429443
#endif
444+
#if defined(__cplusplus)
445+
#endif
430446
#pragma clang diagnostic pop
431447
#endif
432448

Binary file not shown.

0 commit comments

Comments
 (0)