I have an Android App which has a service and this should only be installed internally. However some users with ROOT are installing it on SD-Card and are reporting all kinds of strange errors.
When a user does that, where do the SharedPreferences go? Are they also stored on SD-Card (really bad for me as I write them often) or are they always on internal storage? Some of the errors I've seen seem to indicate this situation.
If so, how do I detect that my SharedPreference file is indeed on the SD-Card?
Thanks!