https://github.com/movableink/ios-sdk
https://github.com/movableink/ios-sdk
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/movableink/ios-sdk
- Owner: movableink
- Created: 2022-12-20T18:21:26.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-27T16:23:33.000Z (over 1 year ago)
- Last Synced: 2025-02-27T23:11:04.347Z (over 1 year ago)
- Language: Swift
- Size: 13.3 MB
- Stars: 1
- Watchers: 8
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Installation
You can install the SDK using Swift Package Manager (SPM), Carthage, CocoaPods, or manually.
The MovableInk SDK requires iOS 13 and Swift 5.7 (Xcode 14) as a minimum.
### Manual
1. Go to the [MovableInk Releases](https://github.com/movableink/ios-sdk/releases)
1. Download the SDK by opening the Assets accordion and selecting `MovableInk.xcframework.zip`
1. Unzip the file, then drag the `MovableInk.xcframework` file into your project under the `Frameworks, Libraries, and Embedded Content` section
### Swift Package Manager (SPM) - Recommended
1. In Xcode, open your project, select the project under the PROJECT header, then select Package Dependencies
1. Search for `https://github.com/movableink/ios-sdk`
1. Tap _Add Package_
### Carthage
```
# Cartfile
binary "https://raw.githubusercontent.com/movableink/ios-sdk/main/Carthage/MovableInkSDK.json" == 1.7.3
```
In the root of your project, run
```bash
$ carthage update --use-xcframeworks
```
### CocoaPods
```ruby
# Podfile
use_frameworks!
target "YOUR_TARGET_NAME" do
pod "MovableInk", podspec: "https://raw.githubusercontent.com/movableink/ios-sdk/1.7.3/MovableInk.podspec"
end
```
Replace YOUR_TARGET_NAME and then, in the Podfile directory, run:
```bash
$ pod install
```
## Usage Documentation
Documentation can be found at [https://sdk-mobile.movableink.com](https://sdk-mobile.movableink.com).