forked from Backendless/Swift-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBackendlessSwift.podspec
24 lines (22 loc) · 1.14 KB
/
BackendlessSwift.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
Pod::Spec.new do |s|
s.name = 'BackendlessSwift'
s.module_name = 'Backendless'
s.version = '7.0.4'
s.source = { :git => 'https://github.com/Backendless/Swift-SDK.git', :tag => '7.0.4' }
s.license = { :type => 'MIT', :text => 'Copyright (c) 2013-2023 by Backendless Corp' }
s.homepage = 'http://backendless.com'
s.authors = { 'Mark Piller' => '[email protected]', 'Olha Danylova' => '[email protected]' }
s.summary = 'Backendless is a Mobile Backend and API Services Platform'
s.description = 'Backendless is a development and a run-time platform. It helps software developers to create mobile and desktop applications while removing the need for server-side coding.'
s.swift_version = '5'
s.pod_target_xcconfig = {
'SWIFT_VERSION' => '5.0'
}
s.ios.deployment_target = '12.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '12.0'
s.watchos.deployment_target = '5.0'
s.requires_arc = true
s.source_files = 'Sources/SwiftSDK/**/*.swift', 'Sources/SwiftSDK/*.swift', 'Tests/SwiftSDKTests/TestObjects/*.swift'
s.dependency 'Socket.IO-Client-Swift', '~> 16.0'
end