kotlin returns error:'Couldn't read row 0, col -1 from CursorWindow. Make sure the Cursor is initialized correctly before accessing data from it.'
cannot inflate fragment as I'm getting the mentioned error:'java.lang.IllegalStateException: Couldn't read row 0, col -1 from CursorWindow. Make sure the Cursor is initialized correctly before accessing data from it.'this is the method I'm trying to override:
fun Context.fetchItems() : MutableList {
val items = mutableListOf()
val cursor = contentResolver.query(MY_PROVIDER_CONTENT_URI,
null, null, null, null)
while (cursor != null &&...