---
title: "Check your PSPDFKit version now"
canonical_url: "https://www.nutrient.io/guides/react-native/troubleshooting/getting-the-currently-used-version/"
md_url: "https://www.nutrient.io/guides/react-native/troubleshooting/getting-the-currently-used-version.md"
last_updated: "2026-06-19T09:21:00.309Z"
description: "Learn how to quickly determine the currently used version of PSPDFKit in React Native with simple steps and code examples."
---

# Find out your Nutrient version easily

If you’re unsure which version of Nutrient you’re using, there are ways to find out.

The current way to ask for the framework version at runtime is:

### SWIFT

```swift

let pspdfVersionString = PSPDFKit.SDK.versionString

```

### OBJECTIVE-C

```objc

NSString *pspdfVersionString = PSPDFKitGlobal.versionString;

```

Another option is to open `PSPDFKit.xcframework` or `PSPDFKitUI.xcframework`. Inside, you’ll find the `VERSION` file with the version number inside.

It’s necessary to use the same version from the same disk image for both `PSPDFKit.xcframework` and `PSPDFKitUI.xcframework``

Beginning with Nutrient iOS SDK 6.6.0, the topmost folder in the downloaded disk image has the same name as the version of Nutrient in use.

---

## Related pages

- [How to find your iOS app bundle ID easily](/guides/react-native/troubleshooting/finding-the-bundle-id.md)
- [Guide to adding a Nutrient license key in React Native](/guides/react-native/troubleshooting/add-license-key.md)
- [Troubleshooting](/guides/react-native/troubleshooting.md)
- [Android Gradle Plugin Requires Java 11](/guides/react-native/troubleshooting/android-gradle-plugin-requires-java-11.md)
- [Fixing Android back button crash with Nutrient](/guides/react-native/troubleshooting/handling-back-navigation-with-react-native-screens.md)
- [Fix new architecture build issues in React Native](/guides/react-native/troubleshooting/new-architecture-build-issues.md)
- [Managing Nutrient's render cache effectively](/guides/react-native/troubleshooting/outdated-render-cache.md)
- [Nightlies](/guides/react-native/troubleshooting/nightlies.md)
- [NutrientView inside a modal is blank or crashes on Android](/guides/react-native/troubleshooting/nutrientview-modal-android.md)
- [Out Of Memory Error React Native Android](/guides/react-native/troubleshooting/out-of-memory-error-react-native-android.md)
- [React Navigation](/guides/react-native/troubleshooting/react-navigation.md)
- [Textinput Error React Native Android](/guides/react-native/troubleshooting/textinput-error-react-native-android.md)
- [CMake/Ninja build error caused by long file paths on Windows](/guides/react-native/troubleshooting/windows-path-length-cmake-error.md)
- [View controller-based status bar appearance](/guides/react-native/troubleshooting/view-controller-based-status-bar-appearance.md)
- [Understanding bundle IDs for iOS app development](/guides/react-native/troubleshooting/what-is-a-bundle-id.md)
- [Fix Xcode error code 65 for React Native on M1 Macs](/guides/react-native/troubleshooting/xcode-error-65-missing-required-target-architectures-react-native.md)
- [Understanding app IDs in Android development](/guides/react-native/troubleshooting/what-is-an-app-id.md)

