-
File Upload Limit
Hi there, In our iOS app we are uploading files to our Dropbox with this Swift method: func upload(_ destinationPath: String, fileUrl: URL, completion: @escaping (Bool) -> Void) { client.files.upload(path: destinationPath, input: fileUrl) .response { response, error in if error != nil { print(error?.description) } if let…
-
SwiftyDropbox Import Error
Hi there, I'm using Xcode 8.3.3 and CocoaPods. I successfully installed the SwiftyDropbox and its dependency Alamorefire. Then I opened the generated workspace file and tried to import SwiftyDropbox but got the error "No such module 'SwiftyDropbox'". I tried to remove the derived data and shift-alt-command-k, but did not…
-
Alamofire compilation errors after installing the SwiftyDropbox in Xcode project with CocoaPods
Hi there, Since the Dropbox API V1 has been turned off, the file download and upload in all our apps are not working any more. I'm now migrating to the API V2 and using Xcode 8.3.3 and Swift. I followed the instructions here: https://github.com/dropbox/SwiftyDropbox#get-started and successfully installed the SwiftyDropbox…