How does one securely store the password and username inside of an android app that connects to an FTP server? Can't anyone decompile an .apk and see its source in more or less an easy to read format?
I'm implementing the ability to upload photos in an app I'm working on and they are then sent to an FTP server in the background. Below is how most examples show how to do it. I don't think there's much of a way around this.
String username = "Austin"; //Example Username
String password = "123456"; //Example Password
//FTP Client init after this and then connect.