This is Rover Campaigns, the marketing campaigns automation SDK from Rover. Rover Campaigns augments our core Rover Experiences product to enable mobile engagement and monetization with better mobile campaigns.
The Campaigns SDK is a collection of Cocoa Touch Frameworks written in Swift. Instead of a single monolithic framework, the Rover SDK takes a modular approach, allowing you to include only the functionality relevant to your application. The SDK is 100% open-source and available on GitHub.
The recommended way to install the Rover Campaigns SDK is via SwiftPM.
In Xcode, in your Project Settings, under Package Dependencies, add a new dependency with the URL of this repository: https://github.com/roverplatform/rover-campaigns-ios
.
Note that as of Xcode 13, you have to type the repository URL into the search box and press return.
Leave the dependency rule at the default, "Up To Next Major Version". Rover follows the standard semver semantic versioning rules.
Then, in the subsequent dialog box, choose the Package Products (frameworks) you wish to use.
As an alternative, you can use Cocoapods.
The Rover Podspec breaks each of the Rover frameworks out into a separate Subspec.
The simplest approach is to specify Rover
as a dependency of your app's target which will add all required and optional subspecs to your project.
target 'MyAppTarget' do
pod 'RoverCampaigns', '~> 3.11.0'
end
Alternatively you can specify the exact set of subspecs you want to include.
target 'MyAppTarget' do
pod 'RoverCampaigns/Foundation', '~> 3.11.0'
pod 'RoverCampaigns/Data', '~> 3.11.0'
pod 'RoverCampaigns/UI', '~> 3.11.0'
pod 'RoverCampaigns/Notifications', '~> 3.11.0'
pod 'RoverCampaigns/Location', '~> 3.11.0'
pod 'RoverCampaigns/Debug', '~> 3.11.0'
end
Please continue onwards from https://github.com/RoverPlatform/rover-campaigns-ios/wiki.