Dziękuję, znalazłem i działa!
Podsyłam:
I just found a workaround for mobile data while roaming! It should work on all lollipop versions for MI2(s).
To enable data while roaming open the file:
Code:
/data/data/com.android.providers.settings/databases/settings.db
as root with your favourite sqlite editor (I use SQLite Debugger, which works fine) and update the values of every row which contains "data_roaming" in the table global to 1.
You can do this with the following command:
Code:
UPDATE global SET value = 1 WHERE name like 'data_roaming%'
Do not forget to commit the changes if you use SQLite Debugger and then reboot your phone. If this doesn't work, try to switch data off and on again.