Hello,
Is there was a way to know -by code- if the application has been obfuscated or not?
I would like to execute a customBuildAction when the code is obfuscated and not if it's just compiled in release mode:
My current alternative option is to run an exe that reads the code and tries to figure out if the code has been obfuscated or not after compiling...
Thanks for your help
Jmon
Is there was a way to know -by code- if the application has been obfuscated or not?
I would like to execute a customBuildAction when the code is obfuscated and not if it's just compiled in release mode:
B4X:
#If OBFUSCATED
#CustomBuildAction: 2, myobfuscated.exe,
#End If
#If NOT OBFUSCATED
#CustomBuildAction: 2, myNOTobfuscated.exe,
#End If
My current alternative option is to run an exe that reads the code and tries to figure out if the code has been obfuscated or not after compiling...
Thanks for your help
Jmon