I've an app written in Xamarin.Forms to create a new sqlite db in my Android device. I use this code:
string dbPath = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
database = new SQLiteAsyncConnection(dbPath);
database.CreateTableAsync<TodoItem>().Wait();
The database is created correctly, but I cannot find it on specified path (in this case '/data/data/Todo.Android/files/TodoSQLite.db3')
I searched using File Explore, but nothing. So, where is located this file?