This repository houses the Optimizely Mobile and OTT experimentation SDKs.
See the Mobile developer documentation or OTT developer documentation to learn how to set up an Optimizely X project and start using the SDK.
- iOS 8.0+ / tvOS 9.0+
Please note below that <platform> is used to represent the platform on which you are building your app. Currently, we support iOS
and tvOS
platforms.
- Add the following lines to the Podfile:
use_frameworks!
pod 'OptimizelySDK<platform>'
- Run the following command:
pod install
Further installation instructions for Cocoapods: https://guides.cocoapods.org/using/getting-started.html
- Add the following lines to the Cartfile:
github "optimizely/objective-c-sdk"
-
Run the following command:
carthage update
-
Link the frameworks to your project. Go to your project target's Link Binary With Libraries and drag over the following from the Carthage/Build/<platform> folder:
OptimizelySDKCore.framework OptimizelySDKDatafileManager.framework OptimizelySDKEventDispatcher.framework OptimizelySDKShared.framework OptimizelySDKUserProfileService.framework OptimizelySDK<platform>.framework
-
To ensure that proper bitcode-related files and dSYMs are copied when archiving your app, you will need to install a Carthage build script:
- Add a new Run Script phase in your target's Build Phase.
- In the script area include:
/usr/local/bin/carthage copy-frameworks
- Add the frameworks to the Input Files list:
$(SRCROOT)/Carthage/Build/<platform>/OptimizelySDKCore.framework
$(SRCROOT)/Carthage/Build/<platform>/OptimizelySDKDatafileManager.framework
$(SRCROOT)/Carthage/Build/<platform>/OptimizelySDKEventDispatcher.framework
$(SRCROOT)/Carthage/Build/<platform>/OptimizelySDKShared.framework
$(SRCROOT)/Carthage/Build/<platform>/OptimizelySDKUserProfileService.framework
$(SRCROOT)/Carthage/Build/<platform>/OptimizelySDK<platform>.framework
- Add a new Run Script phase in your target's Build Phase.
Futher installation instructions for Carthage: https://github.com/Carthage/Carthage
The universal framework can be used in an application without the need for a third-party dependency manager. The universal framework packages up all Optimizely X Mobile modules, which include:
OptimizelySDKCore
OptimizelySDKShared
OptimizelySDKDatafileManager
OptimizelySDKEventDispatcher
OptimizelySDKUserProfileService
The universal framework for iOS includes builds for the following architectures:
i386
x86_64
ARMv7
ARMv7s
ARM64
The universal framework for tvOS includes builds for the following architectures:
x86_64
ARM64
Bitcode is enabled for both the iOS and tvOS universal frameworks.
In order to install the universal framework, follow the steps below:
-
Unzip the framework, then drag the framework to your project in Xcode; Xcode should prompt you to select a target. Go to Build Phases and make sure that the framework is under the Link Binary with Libraries section.
-
Go to the General tab and add the framework to the Embedded Binaries section. If the Embedded Binaries section is not visible, add the framework in the Copy Files section (you can add this section in Build Settings).
-
The Apple store will reject your app if you have the universal framework installed as it includes simulator binaries. Therefore, a script to strip the extra binaries needs to be run before you upload the app. To do this, go to Build Phases and add a Run Script section by clicking the
+
symbol. Copy and paste the following script (make sure you replace theFRAMEWORK_NAME
with the proper framework name! ):FRAMEWORK="FRAMEWORK_NAME" FRAMEWORK_EXECUTABLE_PATH="${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}/$FRAMEWORK.framework/$FRAMEWORK" EXTRACTED_ARCHS=() for ARCH in $ARCHS do lipo -extract "$ARCH" "$FRAMEWORK_EXECUTABLE_PATH" -o "$FRAMEWORK_EXECUTABLE_PATH-$ARCH" EXTRACTED_ARCHS+=("$FRAMEWORK_EXECUTABLE_PATH-$ARCH") done lipo -o "$FRAMEWORK_EXECUTABLE_PATH-merged" -create "${EXTRACTED_ARCHS[@]}" rm "${EXTRACTED_ARCHS[@]}" rm "$FRAMEWORK_EXECUTABLE_PATH" mv "$FRAMEWORK_EXECUTABLE_PATH-merged" "$FRAMEWORK_EXECUTABLE_PATH"
If you choose to build the universal framework yourself, you can do so by running the OptimizelySDKiOS-Universal
or OptimizelySDKTVOS-Universal
schemes. After building these schemes, the frameworks are output in the OptimizelySDKUniversal/generated-frameworks folder.
Please see CONTRIBUTING.