So i downloaded DB Browser which is gui for viewing sqlite db. The question i have is when i debug my android emulator i have the following path to my db:
/data/user/0/com.HotelStash/files/.local/share/HotelStash.db3
The path is derived from following line of code:
private static readonly string dbPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "HotelStash.db3");
So if i wanted to be able to open this from db browser or view in windows explorer how would i do that?
Note: I am using visual studio emulator for android.