1) Is the excel sheet itself protected?
2) Are you storing the correct username/password combo in plaintext?
3) Is your algorithm sensitive or just the information it handles?
4) Are you storing the post-processed information in a file?
==============================================
1) The information source itself MUST be protected, there are a few ways to do it. If needed we can point you in the right direction.
2) Storing login information in plaintext is a huge mistake, you MUST hash the user/pass combo, preferably "salted". Again, there are many tutorials on this subject around the web.
3) If your algorithms are sensitive enough themselves to be secured, these parts of your code should be separately compiled as native (.so) library.
4) Your post-processed sensitive data should only be stored if absolutely required. A good practice would be clearing all the variables and data structures once they done their job. The memory should be cleared as well in Activity_Pause, so that it would, at least in theory,
impossibilitate any memory scanners from sniff your data.