Whatever I type after adb shell
it fails with Permission denied
:
D:\\android-sdk-windows\\platform-tools>adb shell find /data -na
Without rooting: If you can't root your phone, use the run-as <package>
command to be able to access data of your application.
Example:
$ adb exec-out run-as com.yourcompany.app ls -R /data/data/com.yourcompany.app/
exec-out
executes the command without starting a shell and mangling the output.
Do adb remount. And then try adb shell
Solution for me was (thx to David Ljung Madison post)
adb kill-server