Skip to main content

Version 1.0.10

Released: January 26, 2026

New Features

  • Disk space checking: The SDK now checks for sufficient disk space before starting analysis and throws SdkNotEnoughDiskSpaceException if there is insufficient space available.

API Changes

  • Added SdkNotInitializedException exception thrown when SDK methods are called before initialization.
  • Added @throws documentation for SdkNotInitializedException and SdkNotEnoughDiskSpaceException on startAnalysis().

Bug Fixes

  • Improved error handling when writing to the database to prevent crashes on low disk space.

Version 1.0.9

Released: January 15, 2026

New Features

  • Preferred audio device: Added ability to specify a preferred audio input device via the preferredDevice parameter in createLiveDataSource().

API Changes

  • Added support for stereo audio input.
  • The dataSource parameter in startAnalysis() and resumeAnalysis() is now mandatory (non-nullable) with a default value of createLiveDataSource().
  • Added createLiveDataSource() factory method for creating a live data source that captures from device sensors.
  • Made LiveDataSource class public, allowing direct instantiation for custom configurations.
  • Extended DataSource interface with new methods:
    • audioOutputEnabled() - Check if audio output is enabled
    • accelerometerOutputEnabled() - Check if accelerometer output is enabled
    • getAudioFormat() - Returns the audio channel configuration (MONO or STEREO)
  • Published artifact now includes source files (excluding internal package) for easier debugging.