KinesteX

Installation

Follow these steps to install the KinesteX SDK in your project.

Step 1: Add Dependencies

Add the KinesteX SDK to your project using your platform's package manager.

Install SDK
Swift example:
11. In Xcode: File > Add Package Dependencies...
22. Enter URL: https://github.com/KinesteX/KinesteX-AI-Kit.git
33. Click "Add Package"

Step 2: Configure Permissions

Add the required permissions for camera and motion sensors.

Required Permissions
Swift example:
1<!-- Info.plist -->
2<key>NSCameraUsageDescription</key>
3<string>Camera access is required for AI-powered workout tracking</string>
4<key>NSMotionUsageDescription</key>
5<string>Motion sensors help position your device correctly for workouts</string>

Step 3: Import the SDK

Import the KinesteX SDK in your code to start using it.

Import Statement
Swift example:
1import KinesteXAIKit