You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
Mark L.45
8 years agoCollaborator | Level 9
SwiftyDropbox was compiled with optimization - stepping may behave oddly
Using Carthage to build and use Swifty DropBox. For the main part it works well, but seem to be running into an issue relating to optimization every now and again as the subject line says.
How ...
Greg-DB
8 years agoDropbox Staff
Can you share the steps you took, and the full output/a screenshot showing the issue so we can make sure we follow exactly what you're seeing? Thanks in advance!
- Mark L.458 years agoCollaborator | Level 9
Hi Greg,
In answer to your question, in short, no. I cannot share cause it isn't that clear cut, that said I am only using a four methods...
let client = DropboxClientsManager.authorizedClient!
_ = client.files.download(path:sourcePath)
.response { response, error in
if let response = response { etc etc andlet client = DropboxClientsManager.authorizedClient!
_ = client.files.getThumbnail(path: sourcePath, format: Files.ThumbnailFormat.png, size: Files.ThumbnailSize.w64h64)
.response { response, error in
if let response = response { etc etclet client = DropboxClientsManager.authorizedClient!
_ = client.files.listFolder(path:sourcePath).response(queue: DispatchQueue(label: "MyCustomSerialQueue")) { re sponse, error in
if let response = response { etc etclet client = DropboxClientsManager.authorizedClient!
_ = client.sharing.createSharedLinkWithSettings(path: sourcePath).response(queue: DispatchQueue(label: "MyCustomSerialQueue")) { response, error in
if let response = response { etc etcI call list files, I call create shared links, I call thumbs... it works the first time around, but on the second pass if navigate to a different tree I call list files again it crashes. I can send you a link to a youtube video showing the behavior if you email me directly perhaps.
I simply want to compile and use Swifty Dropbox frameworks without optimization, installing them thru carthage? I suspect that will fix it. I hope so.
- Greg-DB8 years agoDropbox Staff
It looks like there are some potential solutions here, if you haven't already seen these:
https://github.com/Carthage/Carthage/issues/1135
https://stackoverflow.com/questions/32772573/project-name-was-compiled-with-optimization-stepping-may-behave-oddly-variaIf those don't help, feel free to open a ticket with the specifics, e.g., that video, here, and we'll take a look:
- Mark L.458 years agoCollaborator | Level 9
Ok,
Tried this and so far so good. Works without crashing...
carthage update --configuration Debug --verbose --platform iOS
Is this good from an apps store deployment point of view, I don't know; well see.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 12 months agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!