Can run my project after Corona update (resolved)

Hi,

I’m having a problem where it appears that the CiderDebugger has been wiped out after a Corona update

Runtime error module 'CiderDebugger' not found:resource (CiderDebugger.lu) does not exist in archive  
no field package.preload['CiderDebugger']  
no file '.../CiderDebugger.lua'  

Tried reinstalling Glider but it didn’t help… any ideas?

Thanks,
Nathan. [import]uid: 27228 topic_id: 36067 reply_id: 336067[/import]

Worked it out - just stripped the require statement for CiderDebugger and it seems to be working well now. [import]uid: 27228 topic_id: 36067 reply_id: 143261[/import]

Worked it out - just stripped the require statement for CiderDebugger and it seems to be working well now. [import]uid: 27228 topic_id: 36067 reply_id: 143261[/import]

Worked it out - just stripped the require statement for CiderDebugger and it seems to be working well now. [import]uid: 27228 topic_id: 36067 reply_id: 143261[/import]

Worked it out - just stripped the require statement for CiderDebugger and it seems to be working well now. [import]uid: 27228 topic_id: 36067 reply_id: 143261[/import]

Hey Nathan,

I am having this problem as well.  If you strip the require the debugger does not work, at least it will not stop at breakpoints. Does it work without the require for you?

daf

Hey Nathan,

I am having this problem as well.  If you strip the require the debugger does not work, at least it will not stop at breakpoints. Does it work without the require for you?

daf

I have the same problem now.
Yesterday I was able to debug. Today I’m not able any more!

I do not have require “CiderDebugger” in my code.

Breakpoints are not working.

If I add the require “CiderDebugger” I have this error:

module ‘CiderDebugger’ not found:resource (CiderDebugger.lu) does not exist in archive

        no field package.preload[‘CiderDebugger’]

        no file ‘C:\Program Files (x86)\Corona Labs\Corona SDK\Plugins\CiderDebugger.lua’

        no file 'c:\users\eornella\

I found the reason just few seconds after posting  :slight_smile:

I need a ; at the end, so

require “CiderDebugger”;

instead of

require “CiderDebugger”

For any reason this character was removed

Ema

Hello Everyone,

The new project management features in1.9 will fix this once and for all by copying your files to a separate directory and modifying the main.lua in there. We hope to have it released in a few days.

Regards,

M.Y. Developers

I have the same problem now.
Yesterday I was able to debug. Today I’m not able any more!

I do not have require “CiderDebugger” in my code.

Breakpoints are not working.

If I add the require “CiderDebugger” I have this error:

module ‘CiderDebugger’ not found:resource (CiderDebugger.lu) does not exist in archive

        no field package.preload[‘CiderDebugger’]

        no file ‘C:\Program Files (x86)\Corona Labs\Corona SDK\Plugins\CiderDebugger.lua’

        no file 'c:\users\eornella\

I found the reason just few seconds after posting  :slight_smile:

I need a ; at the end, so

require “CiderDebugger”;

instead of

require “CiderDebugger”

For any reason this character was removed

Ema

Hello Everyone,

The new project management features in1.9 will fix this once and for all by copying your files to a separate directory and modifying the main.lua in there. We hope to have it released in a few days.

Regards,

M.Y. Developers