forked from nordicsemi/IOS-DFU-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiOSDFULibrary.podspec
More file actions
36 lines (29 loc) · 1.97 KB
/
iOSDFULibrary.podspec
File metadata and controls
36 lines (29 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#
# Be sure to run `pod lib lint iOSDFULibrary.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "iOSDFULibrary"
s.version = "1.0.12"
s.summary = "This repository contains a tested library for iOS 8+ devices to perform Device Firmware Update on the nRF5x devices"
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
The nRF5x Series chips are flash-based SoCs, and as such they represent the most flexible solution available. A key feature of the nRF5x Series and their associated software architecture and S-Series SoftDevices is the possibility for Over-The-Air Device Firmware Upgrade (OTA-DFU). See Figure 1. OTA-DFU allows firmware upgrades to be issued and downloaded to products in the field via the cloud and so enables OEMs to fix bugs and introduce new features to products that are already out on the market. This brings added security and flexibility to product development when using the nRF5x Series SoCs.
DESC
s.homepage = "https://github.com/NordicSemiconductor/IOS-Pods-DFU-Library"
s.license = 'MIT'
s.author = { "Mostafa Berg" => "mostafa.berg@nordicsemi.no" }
s.source = { :git => "https://github.com/NordicSemiconductor/IOS-Pods-DFU-Library.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/nordictweets'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.source_files = 'iOSDFULibrary/Classes/**/*'
s.dependency 'Zip', '~> 0.3'
end