I'm developing an application that sends an email without using intents (as described in Sending Email in Android using JavaMail API without using the default/built-in app).
This requires the email and password credentials of the developer's mail account. At the moment, i have stored them as static variables within a class:
public static final String EMAIL="myemail@gmail.com";
public static final String EMAIL_PASSWD="mypasswd";
I'm really concerned about security in case of reverse apk engineering.
Would it be safer to store these credentials in values/strings? Or maybe is there any better solution?
Thanks