Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Normal
It it tough to comment on particular scenario. But, it could happen because of difference in optimization levels. When optimization is not enabled, compiler keeps all the temporary variables you created for legibility. At higher optimization levels, these variables may get optimized out.Debug mode usually uses optimization level -O0. Release can be any thing depending on the compiler and IDE. Take your release config and add -g option to it to do an apples-to-apples comparison.If you changed any interface section of your classes, always do clean compile.
It it tough to comment on particular scenario. But, it could happen because of difference in optimization levels. When optimization is not enabled, compiler keeps all the temporary variables you created for legibility. At higher optimization levels, these variables may get optimized out.
Debug mode usually uses optimization level -O0. Release can be any thing depending on the compiler and IDE. Take your release config and add -g option to it to do an apples-to-apples comparison.
If you changed any interface section of your classes, always do clean compile.