in my App i send bugreports via email. I heard that the to hardcode my password here is not secure so how do i protect it?
Is it enough to write into my /res/values and then read it from there?
The reason for this is that i won't use the internal email app. then the user exits my app and thats not very good because he may won't come back
GMailSender sender = new GMailSender("my_emailadress@gmail.com", "my_password");
sender.sendMail("Bugreport",
currentQuestion.getID(),
"my_emailadress@gmail.com",
"my_emailadress@gmail.com");
Please help me. Thanks