-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
garenwang
committed
Jan 19, 2024
1 parent
1d8465a
commit fffe76f
Showing
8 changed files
with
313 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+28.5 KB
(110%)
QCloudCOSXMLDemo.xcworkspace/xcuserdata/garenwang.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
Pod::Spec.new do |s| | ||
s.name = "QCloudTrack" | ||
s.version = "6.3.4" | ||
s.version = "6.3.5" | ||
s.summary = "QCloudTrack 腾讯云iOS-SDK组件" | ||
|
||
# This description is used to generate tags and improve search results. | ||
|
@@ -27,27 +27,31 @@ TODO: Add long description of the pod here.aaa | |
s.author = { "QCloudTerminalLab" => "[email protected]" } | ||
s.source = { :git => "https://github.com/tencentyun/qcloud-sdk-ios.git", :tag => s.version.to_s } | ||
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>' | ||
s.ios.deployment_target = '9.0' | ||
s.osx.deployment_target = "10.12" | ||
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } | ||
# s.frameworks = 'UIKit', 'MapKit' | ||
s.static_framework = true | ||
|
||
s.default_subspec = 'Default' | ||
|
||
s.subspec 'Default' do |default| | ||
default.ios.deployment_target = '9.0' | ||
default.osx.deployment_target = "10.12" | ||
default.source_files = 'QCloudTrack/Classes/*.{h,m}','QCloudTrack/Classes/Default/*.{h,m}','QCloudTrack/Classes/Default/*/*.{h,m}' | ||
end | ||
|
||
s.subspec 'Beacon' do |beacon| | ||
beacon.ios.deployment_target = '9.0' | ||
beacon.osx.deployment_target = "10.12" | ||
beacon.source_files = 'QCloudTrack/Classes/*.{h,m}','QCloudTrack/Classes/Default/*.{h,m}','QCloudTrack/Classes/Default/*/*.{h,m}','QCloudTrack/Classes/Beacon/*.{h,m}' | ||
beacon.vendored_frameworks = 'QCloudTrack/Classes/BeaconFramework/BeaconAPI_Base.framework','QCloudTrack/Classes/BeaconFramework/QimeiSDK.framework' | ||
end | ||
|
||
s.subspec 'Cls' do |cls| | ||
cls.ios.deployment_target = '9.0' | ||
cls.source_files = 'QCloudTrack/Classes/*.{h,m}', | ||
'QCloudTrack/Classes/Default/*.{h,m}', | ||
'QCloudTrack/Classes/Default/*/*.{h,m}', | ||
'QCloudTrack/Classes/Cls/*.{h,m}' | ||
cls.dependency "TencentCloudLogProducer" | ||
end | ||
end |
Oops, something went wrong.