-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEnodeLinkKit.podspec
More file actions
31 lines (25 loc) · 1.06 KB
/
EnodeLinkKit.podspec
File metadata and controls
31 lines (25 loc) · 1.06 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
Pod::Spec.new do |spec|
spec.name = "EnodeLinkKit"
spec.version = "1.0.10"
spec.summary = "Enode iOS SDK for energy device linking"
spec.description = <<-DESC
LinkKit enables seamless integration of energy device linking capabilities
into iOS applications. Features include:
- Web-based UI for device linking flows
- WebBLE (Bluetooth Low Energy) support
- OAuth integration for third-party authentication
- Real-time device state tracking
DESC
spec.homepage = "https://github.com/enode/enode-link-ios"
spec.documentation_url = "https://developers.enode.com/docs/link-sdks/ios"
spec.license = { :type => "Apache-2.0" }
spec.author = { "Enode" => "support@enode.com" }
spec.platform = :ios, "13.1"
spec.swift_version = "5.0"
spec.source = {
:git => "https://github.com/enode/enode-link-ios.git",
:tag => spec.version.to_s
}
spec.ios.vendored_frameworks = "LinkKit.xcframework"
spec.frameworks = "CoreBluetooth", "WebKit", "Foundation", "UIKit", "Security"
end