Robert Valentino Well-Known Member Licensed User Longtime User Apr 26, 2025 #1 I can say #If Debug or #If Release is there a way to do #If Release (obfuscated) I want to run a custom action but only when compiling in Release (obfuscated) Anyway to do this?
I can say #If Debug or #If Release is there a way to do #If Release (obfuscated) I want to run a custom action but only when compiling in Release (obfuscated) Anyway to do this?
Erel B4X founder Staff member Licensed User Longtime User Apr 27, 2025 #2 Yes, with the OBFUSCATED symbol: B4X: #IF OBFUSCATED Log("obfuscated") #END IF Note that the code will be grey during editing as this symbol is set during compilation. Upvote 0
Yes, with the OBFUSCATED symbol: B4X: #IF OBFUSCATED Log("obfuscated") #END IF Note that the code will be grey during editing as this symbol is set during compilation.