-
Notifications
You must be signed in to change notification settings - Fork 17
/
Gigya.podspec
27 lines (23 loc) · 949 Bytes
/
Gigya.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
Pod::Spec.new do |spec|
spec.name = 'Gigya'
spec.version = '1.7.1'
spec.license = 'Apache 2.0'
spec.homepage = 'https://developers.gigya.com/display/GD/Swift+SDK'
spec.author = 'Gigya SAP'
spec.summary = <<-DESC
The Swift SDK provides an interface for the Gigya API.
The library makes it simple to integrate Gigya's service in
your Swift application
DESC
spec.source = { :git => 'https://github.com/SAP/gigya-swift-sdk.git', :tag => 'core/v1.7.1' }
spec.module_name = 'Gigya'
spec.swift_version = '5.3'
# spec.platform = :ios
spec.ios.deployment_target = '11.0'
spec.source_files = 'GigyaSwift/*/*.swift', 'GigyaSwift/*/*/*.swift', 'GigyaSwift/*/*/*/*.swift', 'GigyaSwift/*/*/*/*/*.swift'
spec.resource_bundle = {
"Gigya_Privacy" => "GigyaSwift/PrivacyInfo.xcprivacy"
}
spec.framework = 'SystemConfiguration'
spec.library = 'c++', 'z'
end