I'm learning how to integrate databases (SQLite) into my app.
I checked out this tutorial and at the 10m mark, OP enters the FileExplorer in Android Device Manager in Android Studio.
Can't see ANY files in the File Explorer. Using the File Explorer is the desired result. Last Night, I've Rooted my Nexus 6p (7.0) and reinstalled Studio 2.2.2 after reading these stackoverflow dialogues with no desired result, the issue has a long history:
1) Android Device Monitor "data" folder is empty
How to Find my App's /data/data using Android Device Monitor's File Explorer
-Rooted phone (6p) doesn't show any files in FileExplorer (Verfied with Root Checker)
-Emulator doesn't show anything in FileExplorer
2) How to access data/data folder in Android device?
How do I view the SQLite database on an Android device?
SQLite database cannot be accessed although device is rooted
Android Studio - Android Device Monitor's File explorer not working
Android: No files appearing in File Explorer
a) adb shell
run-as com.your.packagename
Has corrupt installation - maybe it's me
b) adb shell
su
chmod /data /data/data /data/data/com.application.package
bad mode '/data'
Nothing, doesn't show any files in FileExplorer
c) adb shell
su
chmod 777 /data /data/data /data/data/
Nothing, doesn't show any files in FileExplorer
d) adb shell
su
chmod -R 777 data/
Nothing, doesn't show any files in FileExplorer
3) How can I see the contents of a sqlite db of my app in a real device?
Nothing, doesn't show any files in FileExplorer
4) http://forum.xda-developers.com/nexus-6p/help/android-device-manager-7-0-nougat-t3454419
Maybe it's not just me, and something is wrong with Nougat 7.0, but there seems to be a continuous stream of the same issue.
Any help would be greatly appreciated. I'm tempted to restart my application and try IntelliJ or Eclipse but I'm not sure if that would solve my problem.