File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ #
2+ # Be sure to run `pod spec lint LivenessUtility.podspec' to ensure this is a
3+ # valid spec and to remove all comments including this before submitting the spec.
4+ #
5+ # To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
6+ # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
7+ #
8+
9+ Pod ::Spec . new do |spec |
10+
11+ # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
12+ #
13+ # These will help people to find your library, and whilst it
14+ # can feel like a chore to fill in it's definitely to your advantage. The
15+ # summary should be tweet-length, and the description more in depth.
16+ #
17+
18+ spec . name = "LivenessUtility"
19+ spec . version = "1.0.0"
20+ spec . summary = "A short description of LivenessUtility."
21+ spec . homepage = "https://github.com/Techainer/ios-sdk"
22+ spec . author = { 'My Name' => '[email protected] ' } 23+ spec . license = "MIT"
24+
25+ spec . platform = :ios
26+ spec . ios . deployment_target = "13.0"
27+
28+ spec . source = { :http => 'https://github.com/Techainer/ios-sdk/releases/download/1.0.0/LivenessUtility.zip' }
29+ spec . vendored_frameworks = 'LivenessUtility/LivenessUtility.xcframework'
30+ spec . swift_version = "5.0"
31+ spec . pod_target_xcconfig = {
32+ 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
33+ }
34+ spec . user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
35+
36+
37+ end
You can’t perform that action at this time.
0 commit comments