# SDK Version

Capture SDK exposes a way to query the current version of the SDK at runtime. This is provided as metadata that can be helpful to troubleshoot issues should they arise.

=== "Android (kotlin)"

    ```kotlin
    Capture.Logger.sdkVersion
    ```

=== "Android (Java)"

    ```java
    Capture.Logger.getSdkVersion()
    ```

=== "iOS (Swift)"

    ```swift
    Capture.Logger.sdkVersion
    ```

=== "iOS (Objective-C)"

    ```objective-c
    [CAPLogger sdkVersion]
    ```
