All Collections
Advanced usage
Which is the minimum iOS version supported?
Which is the minimum iOS version supported?
Jordi Giménez avatar
Written by Jordi Giménez
Updated over a week ago

The minimum Bugfender SDK version supported at the moment is 1.4.7.

Supported iOS versions:

  • BugfenderSDK 1.12 works on iOS 11.0 and newer.

  • For iOS 10 support, you can use BugfenderSDK 1.10.6.

  • For iOS 8 support, you can use BugfenderSDK 1.8. Please note since February 25th, 2023 you will need to take additional steps to configure iOS 8 and 9 devices to trust the ISRG Root X1 Certification Authority.

We will try to keep as much compatibility with old devices as possible, but as Apple stops providing support for older versions, we will also drop support since we can not reliably test on old versions.

Dealing with older iOS versions

You can integrate it into a project that supports older versions of iOS and disable it for those versions. You can do that by configuring BugfenderSDK.framework as an Optional dependency.

Then, when you reference Bugfender in your code, you need to check if it's present like this:

if ([Bugfender class]) {
// whatever you need to do
}
Did this answer your question?