I'm completely new to Xamarin Forms and mobile development. I'm trying my luck with a test application following a tutorial from the internet to create an Android app.
The app is running so far and I can store data in a local SQLite database inside the Android emulator of Visual Studio 2017.
Now I'd like to inspect the created SQLite database on my windows host computer. Is there any way to get the created SQLite database out of the Android emulator?
I googled and found an article telling me to use the "Android Device Monitor" from Visual Studio, and inside this monitor I have a tab called "File Explorer" which seems to show me a file system looking kind of linux-y, so I guess it's the file system of the emulated Android. But where do I find my SQLite database inside this "File Explorer"?
The database has been created inside the folder System.Environment.GetFolderPath(System.Environment.SpecialFolder.ApplicationData)
and I read that I would find my database inside the folder "data", but I can't open this folder in the "File Explorer" of the "Android Device Monitor" with no apparent reason given to me.
Any help on that matter would be great.