I want to use FastLane to upload the IPA file to Dropbox. I follow the Dropbox documentation: https://github.com/tommy071/fastlane-plugin-publish_dropbox and the Circleci has run successfully, but I can't find the IPA file in my dropbox catalog.
The code is as follows:
- run: bundle exec fastlane add_plugin publish_dropbox
publish_dropbox(
file_path: '/Users/distiller/project/output/gym/xxx.ipa',
dropbox_path: 'https://www.dropbox.com/home/xxx%20xxx%20xx%20Folder/Development/xxx-IOS',
app_key: 'xxxxxx',
app_secret: 'xxxxx'
)
The progress of circleci is as follows:
In addition, I noticed that there is a dropbox document here. I don't know if it is useful. Should I add my project?
Dropbox document: https://www.dropbox.com/developers/documentation/swift

https://www.dropbox.commight not be needed in the path, instead just use the path within dropbox itselfdropbox_pathis probably meant to be used in a different way. But as the docs even say it is optional (The dropbox_path parameter is optional - if not provided, the file at file_path would be put in the Dropbox root directory.) so maybe just leave that out and see if it uploads to the Dropbox root first before trying other things.