As a developer, I want to have a secure and simple way of storing the IP adress of our backend server (especially after deployment).
Currently, the IP is stored in two seperate (clear text) files, just normal Kotlin code as a hard coded string. This should be changed to for example a env file during development so we don't leak our servers hostname or IP on GitHub.
For deployment, we can probably use an IP Handler to store the host name, since .apk files don't really offer any possibility to read the code.
As a developer, I want to have a secure and simple way of storing the IP adress of our backend server (especially after deployment).
Currently, the IP is stored in two seperate (clear text) files, just normal Kotlin code as a hard coded string. This should be changed to for example a env file during development so we don't leak our servers hostname or IP on GitHub.
For deployment, we can probably use an IP Handler to store the host name, since .apk files don't really offer any possibility to read the code.