I’m trying out Corona Viewer for the first time. I can’t get it to connect to Dropbox. I launch the app, it opens dropbox but dropbox gives me the error:
Error: The app was not correctly configured and cannot access your Dropbox.
Here is my config.lua
local aspectRatio = display.pixelHeight / display.pixelWidth local width = aspectRatio \> 1.5 and 800 or math.ceil( 1200 / aspectRatio ) local height = aspectRatio \< 1.5 and 1200 or math.ceil( 800 \* aspectRatio ) if(aspectRatio \< 1.4) then --iPad or similar aspect ratio width, height = 800, 1300 end application = { content = { width = width, height = height, scale = "letterBox", fps = 60, imageSuffix = { ["@2x"] = 2, -- for iPhone, iPod touch, iPad1, and iPad2 ["@4x"] = 4, -- for iPad 3 }, }, }
I haven’t touched build.settings. Anybody experience this issue?