Difference between Debug and Relese Publishing

Posted by Dennis on 06-Dec-2017 01:45

Hello everybody, 

What are the differeneces between the Debug and Relese version when I'm publishing my App?

Apart from the availability of debugging. 

Is there any PDF or so on where I can have a look? 

Can't find anything. 

Posted by Radoslav Kirilov on 06-Dec-2017 02:51

Hi,

The difference is that in the debug version the code is not minified and obfuscated like in the release. Also in the release version, the bigger js files like app.bundle.js has compressed gz version in order browsers to download them quickly.

In general, the debug version can be used for testing, debugging problems and hosting on staging server where any JavaScript error can be seen and traversed.

Best,

Rado

All Replies

Posted by Radoslav Kirilov on 06-Dec-2017 02:51

Hi,

The difference is that in the debug version the code is not minified and obfuscated like in the release. Also in the release version, the bigger js files like app.bundle.js has compressed gz version in order browsers to download them quickly.

In general, the debug version can be used for testing, debugging problems and hosting on staging server where any JavaScript error can be seen and traversed.

Best,

Rado

Posted by Dennis on 06-Dec-2017 03:14

Ok, exactly what I expected. Thanks!

This thread is closed