Page 1 of 1

education and sport problem

Posted: 22 Jan 2017, 10:02
by antimax
hi. i built schools and sport facilities near residental zone. but no one goes my school. education and sport rate still 50 percent. i read lots of comment written in google play market about education and sport problem. here is my device Samsung Galaxy Tab 4 7,0 SM-T230.

Posted: 22 Jan 2017, 11:01
by antimax
waiting newer version then

Posted: 22 Jan 2017, 11:36
by Lobby
That's a good idea, it's likely that this is already fixed in the beta program. We plan to rollout a new public version today :)

Posted: 22 Jan 2017, 11:51
by antimax
Image

i have became beta tester at google play store and updated newer version few minutes ago. but problem still exists. too excited for public version

Posted: 22 Jan 2017, 12:08
by Lobby
May you send me your city to info[at]theotown.de please? If there's still a bug I would like to fix it :)

Posted: 22 Jan 2017, 16:04
by Lobby
Thank you, now I could spot the bug.

I used this code to get the id for specific coverage aspects:

Code: Select all

coverageAspectName.toLowerCase().replace('_', ' ');
Unfortunately the behavior of String.toLowerCase is dependent on the System language. In languages like Turkish I is replaced with ı instead of a regular i (notice the missing point). Therefore the corresponding id could not be resolved.

An easy fix is to explicit define the language to use for the method:

Code: Select all

coverageAspectName.toLowerCase(Locale.ENGLISH).replace('_', ' ');
It's not the first time we discover a bug like that, hopefully it's the last one :roll:

Posted: 22 Jan 2017, 16:17
by Ahmad Nur Aizat
I think you need more patience because there will be more bugs coming in the future. It's not easy to maintain these systems, so try your best to face them patiently