-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
3 changed files
with
44 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
Pod::Spec.new do |s| | ||
s.name = 'BPBleOTA' | ||
s.version = '0.5.0' | ||
s.version = '0.6.0' | ||
s.summary = 'a swift library aggregating NordicDFU and SMPDFU implement' | ||
|
||
# This description is used to generate tags and improve search results. | ||
|
@@ -18,21 +18,22 @@ Pod::Spec.new do |s| | |
# * Finally, don't worry about the indent, CocoaPods strips it! | ||
|
||
s.description = <<-DESC | ||
BPBleOTA is a swift library support NordicDFU and SMPDFU for compatible devices. It depended on iOSDFULibrary and iOSMcuManagerLibrary,so can support NordicDFU and SMPDFU by BLE. All things BPBleOTA done are aggregating them and provide a unified interface,So it can support pure Objective-C projects which are not supported directly by NordicDFU and SMPDFU | ||
DESC | ||
BPBleOTA is a swift library support NordicDFU and SMPDFU for compatible devices. | ||
It depended on iOSDFULibrary and iOSMcuManagerLibrary,so can support NordicDFU and SMPDFU by BLE. | ||
All things BPBleOTA done are aggregating them and provide a unified interface,So it can support pure Objective-C projects which are not supported directly by NordicDFU and SMPDFU. | ||
DESC | ||
|
||
s.homepage = 'https://github.com/zhxf2012/BPBleOTA' | ||
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'zhouxingfa' => '[email protected]' } | ||
#s.source = { :git => 'https://github.com/zhxf2012/BPBleOTA.git', :tag => s.version.to_s } | ||
s.source = { :git => 'https://github.com/zhxf2012/BPBleOTA.git', :tag => s.version.to_s } | ||
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>' | ||
|
||
s.ios.deployment_target = '9.0' | ||
s.ios.deployment_target = '11.0' | ||
s.swift_versions = ["5.0", "5.1", "5.2", "5.3", "5.4", "5.5", "5.6", "5.7"] | ||
s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } | ||
s.user_target_xcconfig = {'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } | ||
#s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } | ||
#s.user_target_xcconfig = {'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } | ||
|
||
|
||
s.source_files = 'Sources/BPBleOTA/Classes/**/*' | ||
|
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