Samsung Galaxy Mini
My wife’s phone (
Samsung Galaxy Mini GT-S5570I
) doesn’t get system updates any more, so I need to manually move Google’s updates into ROM to make space for regular apps. You need root privileges to do this, so I was following
these instructions on the XDA Forum which almost work fine. You need to download and apply a file
update.zip
but the problem is the update script inside doesn’t include S5570I in the list of phone models it checks for, so the script aborts.
All you need to do is edit /META-INF/com/google/android/updater-script
inside update.zip and include this phone model in the assertion list, for example, I duplicated lines 15 and 16 and just added an I
to the end:
getprop("ro.product.device") == "GT-S5570" ||
getprop("ro.build.product") == "GT-S5570" ||
getprop("ro.product.device") == "GT-S5570I" ||
getprop("ro.build.product") == "GT-S5570I" ||
Everything works completely fine after that. Obviously this is not a general solution when rooting, you can’t just blindly add your own phone model into any update.zip not knowing what’s in it, but since this was from a post for specifically this model and it already had several very similar models listed, I thought it was worth the risk and it turned out just fine. Woop! 😎