If you have a string (or string constant) with "ENCRYPTED" in it in your code and for some reason it is being modified after the build, please read on... The issue here is that the string "ENCRYPTED" is used by the e2 studio secure builder to identify encrypted source files. However, if the secure builder sees the string anywhere in the code, it removes it during build process. The end result is that your string is modified and it does not contain "ENCRYPTED". This is identified as a secure builder bug and will be fixed in a later release. The workaround is to create a dummy string with "ENCRYPTED" before your string. In this case, the secure builder removes only the first occurrence of "ENCRYPTED" but not the subsequent ones.
↧