blob: dea217cb7c3a42de82ebe00f61e4fe433a96f008 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
Pod::Spec.new do |s|
s.name = "ReactNativeIOSLibrary"
s.version = "1.5.0"
s.summary = "iHealth React Native SDK"
s.description = "React Native bridge for iHealth device SDK"
s.homepage = "https://dev.ihealthlabs.com"
s.license = "MIT"
s.author = { "iHealthLabs" => "sdk@ihealthlabs.com" }
s.platform = :ios, "13.0"
s.source = { :git => "https://github.com/iHealthDeviceLabs/iHealth-React-Native-SDK.git", :tag => "v#{s.version}" }
s.source_files = "ios/**/*.{h,m}"
s.public_header_files = "ios/ReactNativeIOSLibrary/Communication_SDK/Headers/*.h"
s.vendored_libraries = "ios/ReactNativeIOSLibrary/Communication_SDK/libiHealthSDK2.7.5.a"
s.requires_arc = true
s.frameworks = "CoreBluetooth"
s.dependency "React-Core"
end
|