education and sport problem
education and sport problem
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.
- Lobby
- Developer
- Posts: 3719
- Joined: 26 Oct 2008, 12:34
- Plugins: Showcase Store
- Version: Beta
-
Platform
Thank you, now I could spot the bug.
I used this code to get the id for specific coverage aspects:
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:
It's not the first time we discover a bug like that, hopefully it's the last one 
I used this code to get the id for specific coverage aspects:
Code: Select all
coverageAspectName.toLowerCase().replace('_', ' ');
An easy fix is to explicit define the language to use for the method:
Code: Select all
coverageAspectName.toLowerCase(Locale.ENGLISH).replace('_', ' ');

- Ahmad Nur Aizat
- TheoTown Veteran
- Posts: 8260
- Joined: 25 Oct 2016, 15:20
- Location: Johor Bahru
- Plugins: Showcase Store
- Version: Beta
- Contact:
-
Plugin Creator
Platform