-
Notifications
You must be signed in to change notification settings - Fork 11
Install
Mark R. Masterson edited this page Mar 16, 2019
·
3 revisions
Installing TransloaditKit
can be done in two different ways, CocoaPods or manually.
Simply add the following line into your pod file
pod 'Transloadit'
And then run
pod install
This will fully install TransloaditKit
and TUSKit
dependency
- Download the repo
- Download TUSKit
- Drag the
Transloadit
folder into your project - Drag the
TUSKit
folder into the same directory you draggedTransloadit
into.
To begin using TransloaditKit
you will need to add your API keys to the projects plist
{PROJECT_NAME}.plist
<key>TRANSLOADIT_SECRET</key>
<string>SECRET_KEY_HERE</string>
<key>TRANSLOADIT_KEY</key>
<string>API_KEY_HERE</string>
Then simply import Transloadit
into your project where needed
Objective-C
import <TransloaditKit/Transloadit.h>
Swift
import Transloadit