1. Home
  2. Docs
  3. Bugfender SDK for iOS
  4. Installing the SDK
  5. Manually installing the Bugfender framework

Manually installing the Bugfender framework

  • Download the latest xcframework version of our SDK and unzip it
  • Go to your Project > Your Target > General > Linked Frameworks and Libraries and drag BugfenderSDK.xcframework there.
  • Make sure you have SystemConfiguration.framework, Security.framework, MobileCoreServices.framework, CoreGraphics.framework and libc++.tbd there as well.
  • In your AppDelegate add the following header:
@_exported import BugfenderSDK
  • Then in application:didFinishLaunchingWithOptions:
Bugfender.activateLogger("YOUR APP KEY")
Bugfender.enableCrashReporting()
Bugfender.enableUIEventLogging()  // optional, log user interactions automatically

If you do not have a Bugfender account yet, Sign up to get your key from the Install SDK wizard.