Skip to content

Installation

Bobby Galli edited this page Oct 23, 2023 · 2 revisions

Installation with CocoaPods

CocoaPods is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries like BugsplatMac in your projects. You can install it with the following command:

$ gem install cocoapods

Podfile

To integrate BugsplatMac into your Xcode project using CocoaPods, specify it in your Podfile:

target 'TargetName' do
pod 'BugsplatMac'
end

Then, run the following command:

pod install

The pod install command creates an xcworkspace file next to your application's xcodeproj file. Open the xcworkspace file instead of the xcodeproj file to ensure BugsplatMac.framework is included in your build.

You can update BugSplat by running:

pod update

If you run into an error regarding rsync, you can fix this error by setting User Script Sandboxing to No under Build Settings.

Installation with Carthage

Carthage is a decentralized dependency manager that builds your dependencies and provides binary frameworks.

You can install Carthage with Homebrew using the following command:

$ brew update
$ brew install carthage

To integrate BugsplatMac into your Xcode project using Carthage, specify it in your Cartfile:

github "BugsplatGit/BugsplatMac"

Run carthage to build the framework and drag the built BugsplatMac.framework into your Xcode project.

Manual Setup

To use this library in your project manually, you may:

  1. Download the latest release from https://github.com/BugSplatGit/BugsplatMac/releases, which is provided as a zip file
  2. Unzip the archive and add BugsplatMac.framework to your Xcode project
  3. Drag & drop BugsplatMac.framework from your window in the Finder into your project in Xcode and move it to the desired location in the Project Navigator
  4. A popup will appear. Select Create groups for any added folders and set the checkmark for your target. Then click Finish.
  5. Configure the framework to be copied into your app bundle:
  • Click on your project in the Project Navigator (⌘+1).
  • Click your target in the project editor.
  • Click on the Build Phases tab.
  • Click the Add Build Phase button at the bottom and choose Add Copy Files.
  • Click the disclosure triangle next to the new build phase.
  • Choose Frameworks from the Destination list.
  • Drag BugsplatMac from the Project Navigator left sidebar to the list in the new Copy Files phase.
Clone this wiki locally