Hello,
I did a math game with Unity + Firebase. I prepared a Json file with questions wrote in it and uploaded it to Firebase. In some questions are contains shapes (questions which have geometrical shapes). In such questions I wrote the URL of the image.
Like this;
“Questions”: [
{
“id”: “1”,
“question”: “http://www.mywebsite.com/math/1.png”,
“hint”: “+”,
“answer”: “28”
},
{
“id”: “2”,
“question”: “http://www.mywebsite.com/math/2.png”,
“hint”: “-”,
“answer”: “12”
}, …
My problem; some phones or Android versions are showing the image but some others does not showing. How can I fix that? I don’t know if the problem has anything to do with this, but is it sufficient to allow HTTP from the info.plist section? or should it be https? Which URLs are allowed?
Thanks…