831 B
831 B
Setting up Dropbox integration
- Create a Dropbox app.
- Add the following to
ios/app/src/Info.plist
by replacing<APP_KEY>
with your own Dropbox app key (which can be found in the App Console):
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string></string>
<key>CFBundleURLSchemes</key>
<array>
<string>db-<APP_KEY></string>
</array>
</dict>
</array>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>dbapi-2</string>
<string>dbapi-8-emm</string>
</array>
NOTE: Both Android and iOS builds of the apps will parse the Dropbox app key
from ios/app/src/Info.plist
.
NOTE: See Dropbox developer guide for more information