Installation
Getting Started / iOS
Adding the MOVE SDK
Using Cocoapods
CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects. Check out their homepage for more details.
If your project already uses CocoaPods, then add the dependency to your Podfile:
Run the following command from the terminal:
See also Troubleshooting.
Swift Package Manager
Add the package with the URL:
Add the frameworks to the project:
Go to the General tab of your target settings
Click the + button under the Frameworks, Libraries, and Embedded Content heading
Click Add Other and then Add Package Dependency
Manual Installation
If you need to install the Framework manually you will have to extract the download link for the zip from the latest Swift Package. If you want to use a specific version refer to the tags in the repository.
Download and extract the latest Move SDK XCFramework
Add the frameworks to the project ()
Go to the General tab of your target settings
Click the + button under the Frameworks, Libraries, and Embedded Content heading
Click Add Other and then Add Files
Choose the Move XCFramework file and click Open
Change the Embed option next to the framework to Do Not Embed
Important Notes
For versions bellow 2.3:
When exporting your application archive make sure the manageAppVersionAndBuildNumber option is set to false, otherwise the version numbers of all frameworks (including MoveSDK) included in your application will be overwritten. This can cause issues with migration code since the correct version number is lost.
When building with Fastlane this is done by adding export options to your gym export command, see following code snippet:
Last updated