Im new in android development and I'm working on a small app right now.
I have JSON file that I use to make a list. Everything was fine with the app until I changed the JSON file. I need to use cyrillic alphabet. The problem is that when I run the app nothing shows and log is full of warnings and other stuff (no errors).
Here is a sample of my JSON:
{
"contacts": [
{
"name":"Вангел",
"hometown":"Битола"
},
....
]
}
I've been searching on internet about this for 2 days and no answer. I'm using UTF-8 encoding by the way.