My app uses a library to send emails to a pre defined mailbox.
In my Constants file I have defined my smtp host, smtp username and smtp password.
The problem is, the password is in plain text.
How can I store it safely?
This a preview of my Constants.kt
file:
const val SMTP_HOST = "smtp.gmail.com"
const val SMTP_USER = "test@test.com"
const val SMTP_PASSWORD = "123456"