Hello everyone,
I have a question about string obfuscation. In this thread:
https://www.b4x.com/android/forum/threads/obfuscation.37699/#content
Erel has made the following posts:
Post#1
Post#2
I suppose that if I have 3 activities every string that I put in Process_Globals in each and every activity will be obfuscated... Am I correct? Is this valid also for the Starter service?
Cheers
I have a question about string obfuscation. In this thread:
https://www.b4x.com/android/forum/threads/obfuscation.37699/#content
Erel has made the following posts:
Post#1
Yes. Any string that appears in Process_Globals sub will be obfuscated.
B4X:Sub Process_Globals Dim Keys() As String = Array As String("These", "strings", "will", "be", "obfuscated") Dim k As String = "This will also be obfuscated" Dim b() As Byte = "this too".GetBytes("UTF8")
Post#2
The string in the main activity will not be included in the compiled library. You cannot obfuscate strings in libraries. You will need to put the string in one of the project modules.
I suppose that if I have 3 activities every string that I put in Process_Globals in each and every activity will be obfuscated... Am I correct? Is this valid also for the Starter service?
Cheers
Last edited: