Obfuscate web links in Java

Hi guys, just wondering if there is a good way to obfuscate links when developing an Android app. ProGuard doesn’t do much to http links, so when decompiling the apk you can easily see the links the app is using/calling, which might cause serious security issues.

Maybe there is a good method to make it as hard as possible to get readable links after decompiling an apk.

Hope you can help :slight_smile:

to obfuscate or encrypt strings, you can use dexguard (https://www.guardsquare.com/dexguard), stringer (https://jfxstore.com/stringer/), or some other obfuscator

Base64 encode/decode strings