forked from liveservices/LiveSDK-for-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLiveSDK.podspec
30 lines (24 loc) · 1.16 KB
/
LiveSDK.podspec
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
Pod::Spec.new do |s|
s.name = "LiveSDK"
s.version = "5.6.2"
s.summary = "Client libraries for calling Live Services from iOS apps"
s.description = <<-DESC
Client libraries for calling the Live Services from iOS apps. Provides
easy access to OneDrive, Outlook.com, and Microsoft Account authentication
from your iOS application.
DESC
s.homepage = "http://dev.onedrive.com"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "onedriveapi" => "[email protected]" }
s.social_media_url = "http://twitter.com/onedrivedev"
s.ios.deployment_target = "5.1.1"
s.compiler_flags = "-DNS_BLOCK_ASSERTIONS=1"
s.source = { :git => "https://github.com/liveservices/LiveSDK-for-iOS.git",
:tag => "#{s.version}" }
s.source_files = "src/LiveSDK/**/*.{h,m}"
s.exclude_files = "src/UnitTests/**", "Examples/**"
s.public_header_files = "src/LiveSDK/Library/Public/*.h"
s.resources = "src/LiveSDK/Library/Internal/Resources/*.png",
"src/LiveSDK/Library/Internal/*.xib"
s.requires_arc = false
end