Integrating Using CocoaPods
We maintain a CocoaPods Podspec for integrating Reveal into your Xcode projects.
Our instructions assume that you've already configured your project or workspace for use with CocoaPods — if you haven't, please do so now. We also assume that you are using an up-to-date version of CocoaPods: if the instructions below aren't working, please update your copy of CocoaPods to the latest release.
Video Tutorial
Instructions
WARNING: Never ship a product which has been linked with the Reveal Server framework. The Podfile example below will only link the Reveal Server framework into builds of your app compiled using the "Debug" configuration.
Add the following to your Podfile:
target 'YourMainAppTargetName' do pod 'Reveal-SDK', :configurations => ['Debug'] endThe
:configurationsparameter ensures that Reveal will only be linked into your Debug builds.Run
pod installin your project directory (orpod update Reveal-SDKif you've previously used CocoaPods with your project).