forked from liferay/liferay-mobile-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLiferay-iOS-SDK.podspec
30 lines (30 loc) · 967 Bytes
/
Liferay-iOS-SDK.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 = "Liferay-iOS-SDK"
s.version = "6.2.0.7"
s.summary = "Build iOS apps for Liferay."
s.homepage = "https://www.liferay.com/community/liferay-projects/liferay-mobile-sdk"
s.license = {
:type => "LPGL 2.1",
:file => "ios/copyright.txt"
}
s.authors = {
"Bruno Farache" => "[email protected]"
}
s.platform = :ios
s.ios.deployment_target = '6.1'
s.source = {
:git => "https://github.com/liferay/liferay-mobile-sdk.git",
:tag => "6.2.0.7"
}
s.source_files = "ios/Source/**/*.{h,m}"
s.subspec 'Liferay-Sync-iOS-SDK' do |sync|
sync.source_files = "modules/sync-web/ios/Source/**/*.{h,m}","ios/Source/{Core,Http,Util}/**/*.h"
end
s.resource_bundles = {
"Liferay-iOS-SDK" => [
"ios/Source/Util/Localization/*.lproj"
]
}
s.requires_arc = true
s.dependency "AFNetworking", "~> 2.3.0"
end