Looks for hardcoded references to /sdcard
Your code should not reference the /sdcard
path directly; instead use Environment.getExternalStorageDirectory().getPath()
.
Similarly, do not reference the /data/data/
path directly; it can vary in multi-user scenarios. Instead, use Context.getFilesDir().getPath()
.