I'm using the searhcview of the toolbar to search for recyclerview items, the search works, but the Firebase query differentiates between upper and lower case and accented words. I would like Case Insensitive to search for Firebase.
Ex: I searched the word Sao Paulo and typed in the sao paulo search.
In the recyclerview I would like the word São Paulo to appear with capital letters and also with ã.
As my query is only appears São Paulo if I put the word São Paulo in the search.
Query Q = organizacao.orderByChild("nomeOrganizacao").
startAt(newText).endAt(newText + "\uf8ff");