-
Notifications
You must be signed in to change notification settings - Fork 95
/
LineSDKSwift.podspec
37 lines (28 loc) · 1.45 KB
/
LineSDKSwift.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
31
32
33
34
35
36
37
Pod::Spec.new do |s|
s.name = "LineSDKSwift"
s.version = "5.11.2"
s.summary = "The LINE SDK for iOS Swift provides a modern way of implementing LINE APIs."
s.description = <<-DESC
Developed in Swift, the LINE SDK for iOS Swift provides a modern way of implementing
LINE APIs. The features included in this SDK will help you develop an iOS app with
engaging and personalized user experience.
DESC
s.homepage = "https://developers.line.biz/"
s.license = "Apache License, Version 2.0"
s.author = "LINE"
s.platform = :ios, "13.0"
s.module_name = "LineSDK"
s.swift_version = "5.0"
s.swift_versions = ["4.2", "5.0"]
s.source = { :git => "https://github.com/line/line-sdk-ios-swift.git", :tag => "#{s.version}" }
s.default_subspecs = "Core"
s.pod_target_xcconfig = { 'OTHER_SWIFT_FLAGS' => '-DLineSDKCocoaPods' }
s.subspec "Core" do |sp|
sp.source_files = ["LineSDK/LineSDK/**/*.swift", "LineSDK/LineSDK/LineSDK.h"]
sp.resource_bundles = { 'LineSDK' => ["LineSDK/LineSDK/Assets.xcassets", "LineSDK/LineSDK/Resource.bundle"] }
end
s.subspec "ObjC" do |sp|
sp.source_files = ["LineSDK/LineSDKObjC/**/*.swift", "LineSDK/LineSDKObjC/LineSDKObjC.h"]
sp.dependency "LineSDKSwift/Core"
end
end