...I am working with a B4XPages project for the first time... comments in the Activity module "Main" discourage any code in there, so I've been declaring all string constants etc in "B4XMainPage" Class_Globals. However now that I've read a few posts, I'm led to believe that strings will not be obfuscated there.
In a B4XPages B4A project, where should I place strings that need to be obfuscated?
I'm considering obfuscating basically all literal strings in my application by declaring them in process_globals. Any limitations? Arrays too? I would do this...
B4X:
Public Literals() As String = Array As String("Miller", "Smith", "Johnson", "Jordan")
...array constants like above obfuscated as well? Don't see why they wouldn't be. Any limit to how big Process_Globals obfuscated content can be? Sorry in advance for dumb questions, but just trying to make sure. My only real concern with B4X (awesome tools!) is whether people can easily investigate our code.