Flutter SDK 2.4.0
SDK Installation
Download the Flutter SDK here.
Unzip the downloaded SDK zip file to a folder in your local drive.
Setup the SDK:
bashcd vital_sign_camera flutter pub get
Sample Code
The quickest and simplest way to kickstart your journey with the Flutter SDK is by downloading and experimenting with our full-featured sample code. To run the sample code, go to the demo_app folder, execute the commands:
flutter pub get
flutter runIMPORTANT
In the above sample codes, the strings __YOUR_USER_ID__ and __YOUR_API_KEY__ should be replaced by your own User ID and API Key repectively. Please contact us to obtain your User ID and API Key.
Project Integration
To integrate our Flutter SDK into your Flutter project, add the Flutter SDK package by:
flutter pub add vital_sign_camera --path "/path_of_downloaded_folder/flutter-vital-sign-sdk/vital_sign_camera"Please replace the string path_of_downloaded_folder above with the actual downloaded path.
Project Integration (for iOS)
IMPORTANT
This version of the SDK requires targeting iOS 16.0 or above. If targeting iOS 12, please use SDK version 1.6.x.
Add the following to the 'ios/Podfile' file for the iOS simulator support:
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# Support x86_64 simulator only
config.build_settings['ARCHS[sdk=iphonesimulator*]'] = 'x86_64'
end
flutter_additional_ios_build_settings(target)
end
endCamera Permission (for iOS)
When developing for iOS, you need to allow the app to use the camera by specifying the following in the file Info.plist:
<key>NSCameraUsageDescription</key>
<string>Use for measuring vital signs</string>TIP
In Info.plist, the string "Use for measuring vital signs" is an example description of the camera usage. You should specify your own description that matches the usage of your application.
Project Integration (for Android)
IMPORTANT
Please note that for Android, the minimum SDK version must be at least 24.
Add the following line to the file android/settings.gradle:
include ':vital-sign-engine'
project(':vital-sign-engine').projectDir = new File('/path_of_downloaded_folder/flutter-vital-sign-sdk/vital_sign_camera/android/libs')Please replace the string path_of_downloaded_folder above with the actual downloaded path.
Camera Permission (for Android)
When developing for Android, you need to allow the app to use the camera by specifying the following in the file AndroidManifest.xml:
<uses-permission android:name="android.permission.CAMERA" />What's new
2.4.0 (4-Dec-2025)
- Fixed a crash on certain Android devices that occurred when the library could not be loaded due to low memory.
- Added an
onErrorAPI, allowing applications to observe and handle errors.