# Debug & Development

Parameters for debugging and development purposes.

| Parameter | Type | Default | Description | Effect |
|-----------|------|---------|-------------|--------|
| showDebugRecording | boolean | false | Show debug recording UI | Displays recording controls for debugging |
| showNetworkDebugTool | boolean | - | Show network debug panel | Displays network request monitoring tool |
| newModelId | string | - | Test model identifier | Loads a specific ML model version for testing |

**Note:** `showDebugRecording` can also be enabled via URL parameter `?debug=true`

**Debug & Development Settings**

_Swift (iOS)_
```swift
// Via customParams
kinestex.createView(
    customParams: [
        "showDebugRecording": true,
        "showNetworkDebugTool": true,
        "newModelId": "pose_model_v2_beta"
    ]
)
```

_Kotlin (Android)_
```kotlin
// Via customParams
KinesteXSDK.createView(
    customParams = mapOf(
        "showDebugRecording" to true,
        "showNetworkDebugTool" to true,
        "newModelId" to "pose_model_v2_beta"
    )
)
```

_React Native_
```jsx
// Via customParameters
const postData: IPostData = {
  key: 'YOUR_API_KEY',
  userId: 'user-123',
  company: 'YOUR_COMPANY',
  customParameters: {
    showDebugRecording: true,
    showNetworkDebugTool: true,
    newModelId: 'pose_model_v2_beta',
  },
};
```

_Flutter_
```dart
// Via customParams
KinesteXAIFramework.createView(
  customParams: {
    "showDebugRecording": true,
    "showNetworkDebugTool": true,
    "newModelId": "pose_model_v2_beta",
  },
);
```

_HTML / JavaScript_
```html
// Direct in postData object
const postData = {
  userId: "user-123",
  company: "YOUR_COMPANY",
  key: "YOUR_API_KEY",
  showDebugRecording: true,
  showNetworkDebugTool: true,
  newModelId: "pose_model_v2_beta",
};
```

_React (TypeScript)_
```tsx
// Via customParameters
const postData: IPostData = {
  key: 'YOUR_API_KEY',
  userId: 'user-123',
  company: 'YOUR_COMPANY',
  customParameters: {
    showDebugRecording: true,
    showNetworkDebugTool: true,
    newModelId: 'pose_model_v2_beta',
  },
};
```

---
Source: https://kinestex.com/docs/customization-parameters/debug-development · Index: https://kinestex.com/llms.txt
