From d6d9a09d505d11148599a95a5be3e1351edbe0ac Mon Sep 17 00:00:00 2001 From: hc Date: Mon, 13 Apr 2026 15:17:52 +0800 Subject: Local iHealth SDK, device detail screen, iOS event fixes --- libs/ihealth-sdk/ReactNativeIOSLibrary.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 libs/ihealth-sdk/ReactNativeIOSLibrary.podspec (limited to 'libs/ihealth-sdk/ReactNativeIOSLibrary.podspec') diff --git a/libs/ihealth-sdk/ReactNativeIOSLibrary.podspec b/libs/ihealth-sdk/ReactNativeIOSLibrary.podspec new file mode 100644 index 0000000..dea217c --- /dev/null +++ b/libs/ihealth-sdk/ReactNativeIOSLibrary.podspec @@ -0,0 +1,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 -- cgit