Skip to content Skip to sidebar Skip to footer

Can Build Types Resources Be Visible While Reverse Engineering The App?

I have two build variant in my Application, one is release and other is debug. In a release, I have set my https URL. In Debug, I have set my local URL for testing purpose. is it p

Solution 1:

If you just use flag to switch running environment and sorce code contain the local testing URL, it'll able to find in the disassembled smali files even if you obfuscated it

You can try to split building const from resource using gradle, ref here: Change constant values when building a release edition

Post a Comment for "Can Build Types Resources Be Visible While Reverse Engineering The App?"