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

white_wu's avatar
white_wu
New member | Level 2
6 years ago

How to upload iOS ipa file to Dropbox using fastlane and circleci script?

I want to add steps in Fastlane and CircleCI script to upload iOS IPA file to Dropbox after each release.  I use the Fastlane plugin 'dropbox' to upload the IPA file.  I created an app in the dropbox website(https://www.dropbox.com/developers/apps), then I got the App key and App secret, these look great and the prompt "Starting upload of /Users/distiller/project/output/gym/Carepilot.ipa to Dropbox", but finally failed, prompt " No value found for 'password' ".

1.Is my above method effective?

2.How can I add the password here? How can I solve my problem?

3.If my above practice is invalid, is there any other way to help me automatically upload the IPA file through the fastlane and circleci script?

The code in FastLane file as follow:

lane :beta do
match
gym
dropbox( file_path: '/Users/distiller/project/output/gym/Carepilot.ipa', dropbox_path: '/home/Apps/CarePilot', app_key: 'XXXXX', app_secret: 'XXXX' )

 

The failure images as following: