Radar SDK - iOS
Source for iOS Radar SDK
Setup
Simply clone this repository and open up RadarSDK.xcodeproj
in XCode
Deploy
To deploy a new version of the SDK, first ensure the version name has been updated in RadarDeviceHelper.m
Then simply create and push a tag named with the new version:
git tag x.y.z
git push origin master --tags
Pushing a new tag will automatically kick off the deploy
workflow in CI for the release.
From the radar-sdk-ios repo:
Once the Bitrise workflow is completed, it will automatically create a release/x.y.z
branch in the public repository. Just create a pull request to master
from the newly created branch.
Once merged, create a new release with the same title and tag as the new version name. Attach the framework zip as a release binary. The zip can be found as one of the artificats of the deploy
bitrise workflow.
And finally push the new SDK to CocoaPods repo with
pod trunk push RadarSDK.podspec
Local Build/Deploy/Test/Docs
Check out our list of fastlane actions for a full list of available actions.