-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinWearKit.podspec
More file actions
32 lines (27 loc) · 1.36 KB
/
LinWearKit.podspec
File metadata and controls
32 lines (27 loc) · 1.36 KB
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
Pod::Spec.new do |spec|
spec.name = "LinWearKit"
spec.version = "1.0.6"
spec.summary = "LinWearKit 智能设备 SDK for iOS"
spec.description = <<-DESC
LinWearKit 智能设备的 iOS 框架,负责与智能设备通信等功能的封装。
DESC
spec.homepage = "https://github.com/wsr1949/LinWearKit"
spec.license = 'MIT'
spec.author = { "wsr1949" => "921903719@qq.com" }
spec.social_media_url = 'https://github.com/wsr1949'
spec.platform = :ios, '14.0'
spec.swift_versions = '5.0'
spec.source = { :git => "https://github.com/wsr1949/LinWearKit.git", :tag => spec.version.to_s }
spec.documentation_url = spec.homepage
spec.requires_arc = true
spec.frameworks = 'CoreBluetooth'
spec.vendored_frameworks = 'XCFramework/LinWearKit.xcframework'
spec.dependency 'Protobuf'
spec.dependency 'libopus'
spec.dependency 'libogg'
spec.dependency 'MJExtension'
spec.pod_target_xcconfig = {
'OTHER_LDFLAGS' => '-lObjC',
'BUILD_LIBRARY_FOR_DISTRIBUTION' => 'YES'
}
end