• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root Updater-script

Android Addict

Android Enthusiast
I'm making a new theme for my phone and have an old update-script that doesn't seem to work because I need a newer updater-script. Does anybody have one that I could use or could anyone help me with making one?
 
You can try a app called Ninja Morph its pretty good you can change framework apps. This is located in the playstore and its a paid and lite version.
 
You can try a app called Ninja Morph its pretty good you can change framework apps. This is located in the playstore and its a paid and lite version.

Yeah I've already done it that way thanks to determined sou. I would honestly just rather have a flashable zip for it. It makes things a lot easier for people that want to try it out.
 
I'm making a new theme for my phone and have an old update-script that doesn't seem to work because I need a newer updater-script. Does anybody have one that I could use or could anyone help me with making one?

here's what i use for all my flashable apk's themes etc....
Code:
 show_progress(0.500000, 0);
ui_print("::::::::::::::::::::::::::::::");
ui_print("::                          ::");
ui_print("::                          ::");
ui_print("::::::::::::::::::::::::::::::");

ui_print("");


ui_print("");
ui_print("Mounting /system");
mount("ext4", "EMMC", "/dev/block/platform/msm_sdcc.1/by-name/system", "/system");
ui_print("");
ui_print("Extracting files to /system");
package_extract_dir("system", "/system");

ui_print("");

show_progress(0.200000, 0);
unmount("/system");
ui_print("::::::::::::::::::::::::::::::");
ui_print("::                          ::");
ui_print("::         FINISHED         ::");
ui_print("::                          ::");
ui_print("::::::::::::::::::::::::::::::");
ui_print("");

ui_print("");

if your still getting errors it could be the update-binary. just use the one from pg's rom or someone else's flashable.
 
Back
Top Bottom