Skip to content

Commit 7467c54

Browse files
committed
1.1.1 and docs
1 parent 93f695d commit 7467c54

File tree

94 files changed

+6746
-1535
lines changed

Some content is hidden

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

94 files changed

+6746
-1535
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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.1.1 - 2023-06-05
8+
9+
### Added
10+
- Support for Cocoapods, with Cocoapods SwiftUI Sample App
11+
12+
### Changed
13+
- Interface for Timers and Counters now more detailed and consistent.
14+
715
## v1.1.0 - 2023-05-17
816

917
### Added

QuickPoseCamera.podspec

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'QuickPoseCamera'
3+
s.version = '1.1.1'
4+
s.summary = 'QuickPoseCamera'
5+
s.homepage = 'https://quickpose.ai'
6+
s.authors = 'QuickPose.ai'
7+
s.license = { :type => "QuickPose", :file => "LICENSE" }
8+
9+
s.source = {
10+
:git => 'https://github.com/quickpose/quickpose-ios-sdk.git',
11+
:tag => 'v' + s.version = '1.1.1'
12+
}
13+
s.platform = :ios
14+
s.module_name = 'QuickPoseCamera'
15+
16+
s.ios.deployment_target = '14.0'
17+
s.cocoapods_version = '>= 1.4.0'
18+
19+
s.swift_version = '5.3'
20+
21+
s.default_subspecs = 'Camera'
22+
23+
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
24+
25+
26+
s.subspec 'Camera' do |ss|
27+
ss.dependency 'QuickPoseCore'
28+
ss.platform = :ios
29+
ss.ios.deployment_target = '14.0'
30+
ss.source_files = 'Sources/QuickPoseCamera/*.swift'
31+
end
32+
33+
34+
end

QuickPoseCore.podspec

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'QuickPoseCore'
3+
s.version = '1.1.1'
4+
s.summary = 'QuickPoseCore'
5+
s.homepage = 'https://quickpose.ai'
6+
s.authors = 'QuickPose.ai'
7+
s.license = { :type => "QuickPose", :file => "LICENSE" }
8+
9+
s.source = {
10+
:git => 'https://github.com/quickpose/quickpose-ios-sdk.git',
11+
:tag => 'v' + s.version = '1.1.1'
12+
}
13+
s.platform = :ios
14+
s.module_name = 'QuickPoseCore'
15+
16+
s.ios.deployment_target = '14.0'
17+
s.cocoapods_version = '>= 1.4.0'
18+
19+
s.swift_version = '5.3'
20+
21+
s.default_subspecs = 'Core'
22+
23+
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
24+
25+
s.subspec 'Core' do |ss|
26+
ss.platform = :ios
27+
ss.ios.deployment_target = '14.0'
28+
29+
ss.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
30+
ss.pod_target_xcconfig = { 'VALID_ARCHS' => 'arm64 armv7' }
31+
32+
ss.ios.vendored_frameworks = 'QuickPoseCore.xcframework','QuickPoseMP.xcframework'
33+
34+
end
35+
36+
37+
end

0 commit comments

Comments
 (0)