@sency/react-native-smkit-ui 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/android/build.gradle +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,6 +25,7 @@ AI-powered fitness assessments, custom workouts, and workout programs with real-
|
|
|
25
25
|
- **Multiple Assessment Types** - Fitness, Body360, Strength, Cardio, and custom assessments
|
|
26
26
|
- **Cross-Platform** - Native support for iOS and Android
|
|
27
27
|
- **Configurable Workouts** - Customize by body zone, difficulty, and duration
|
|
28
|
+
- **Intelligent Model Selection** (Android) - Automatically selects the best pose estimation model based on device capabilities for optimal performance
|
|
28
29
|
|
|
29
30
|
---
|
|
30
31
|
|
|
@@ -152,6 +153,15 @@ android {
|
|
|
152
153
|
}
|
|
153
154
|
```
|
|
154
155
|
|
|
156
|
+
3. **Pose Estimation Model Selection** (v2.0.5+)
|
|
157
|
+
|
|
158
|
+
The SMKit SDK automatically selects the best pose estimation model based on device capabilities:
|
|
159
|
+
- **Pro Model** - High-end devices for maximum accuracy and detailed pose detection
|
|
160
|
+
- **Lite Model** - Mid-range devices for balanced performance and accuracy
|
|
161
|
+
- **UltraLite Model** - Lower-end devices for smooth real-time performance
|
|
162
|
+
|
|
163
|
+
This automatic selection ensures optimal performance and accuracy across a wide range of Android devices without requiring manual configuration.
|
|
164
|
+
|
|
155
165
|
---
|
|
156
166
|
|
|
157
167
|
## Getting Started
|
package/android/build.gradle
CHANGED
|
@@ -95,7 +95,7 @@ dependencies {
|
|
|
95
95
|
implementation "com.facebook.react:react-android"
|
|
96
96
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
97
97
|
|
|
98
|
-
implementation("com.sency.smkitui:smkitui:1.4.
|
|
98
|
+
implementation("com.sency.smkitui:smkitui:1.4.5") {
|
|
99
99
|
exclude group: 'com.facebook.fbjni', module: 'fbjni-java-only'
|
|
100
100
|
// // Don't exclude native libraries
|
|
101
101
|
// exclude group: 'com.facebook.react', module: 'react-native'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sency/react-native-smkit-ui",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "React Native library for SMKit UI - Advanced fitness assessments and workout programs with AI-powered motion detection and real-time performance tracking",
|
|
5
5
|
"main": "lib/commonjs/index",
|
|
6
6
|
"module": "lib/module/index",
|