The Kid Cassidy
Member
Just wondering if someone could add this to build 12.31 for me and have it work on boot? it's the black an transparent new market!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Why don't you just open the 12.31 zip file, crack open the apps section, and drop in the Vending.apk from this zip file?
-Mike
you mean replace the original apk with this one right?
you mean replace the original apk with this one right?
Right. I customize some of my apps, and that is how I get them into the ROM's I use.
-Mike
Weird indeed. I'll try it tonight and see what happens too.
-Mike
Weird indeed. I'll try it tonight and see what happens too.
-Mike
Please do let me know, wanna get this to work!!!
Weird indeed. I'll try it tonight and see what happens too.
-Mike
Please do let me know, wanna get this to work!!!
Dumb question maybe, but are you fixing permissions and rebooting after you drop the apk in system ?
package_extract_dir("kernel", "/tmp");
set_perm(0, 3004, 02755, "/system/bin/ping");
set_perm(0, 0, 0777, "/tmp/dump_image");
set_perm(0, 0, 0777, "/tmp/mkbootimg");
set_perm(0, 0, 0777, "/tmp/unpackbootimg");
run_program("/tmp/dump_image", "boot", "/tmp/boot.img");
run_program("/tmp/unpackbootimg", "/tmp/boot.img", "/tmp/");
run_program("/tmp/mkbootimg", "--kernel", "/tmp/zImage", "--ramdisk", "/tmp/boot.img-ramdisk.img", "--cmdline", "console=ttyS2,115200n8 rw mem=244M@0x80C00000 init=/init ip=off brdrev=P3A_CDMA mtdparts=omap2-nand.0:640k@128k(mbm),384k@1408k(cdt),384k@3328k(lbl),384k@6272k(misc),3584k(boot),4608k(recovery),143744k(system),94848k(cache),268032k(userdata),2m(kpanic)", "--base", "0x10000000", "--output", "/tmp/newboot.img");
write_raw_image("/tmp/newboot.img", "boot");
I looked at the updater-script file from the META-INF folder of the zip and this zip does more than just push the apk into system.
The easy solution would be to just flash this zip rather than add it to the ROM, but I would guess you could get it to work by adding these lines from the updater-script of this zip to the updater-script of the full ROM zip:
package_extract_dir("kernel", "/tmp");
set_perm(0, 3004, 02755, "/system/bin/ping");
set_perm(0, 0, 0777, "/tmp/dump_image");
set_perm(0, 0, 0777, "/tmp/mkbootimg");
set_perm(0, 0, 0777, "/tmp/unpackbootimg");
run_program("/tmp/dump_image", "boot", "/tmp/boot.img");
run_program("/tmp/unpackbootimg", "/tmp/boot.img", "/tmp/");
run_program("/tmp/mkbootimg", "--kernel", "/tmp/zImage", "--ramdisk", "/tmp/boot.img-ramdisk.img", "--cmdline", "console=ttyS2,115200n8 rw mem=244M@0x80C00000 init=/init ip=off brdrev=P3A_CDMA mtdparts=omap2-nand.0:640k@128k(mbm),384k@1408k(cdt),384k@3328k(lbl),384k@6272k(misc),3584k(boot),4608k(recovery),143744k(system),94848k(cache),268032k(userdata),2m(kpanic)", "--base", "0x10000000", "--output", "/tmp/newboot.img");
write_raw_image("/tmp/newboot.img", "boot");
I looked at the updater-script file from the META-INF folder of the zip and this zip does more than just push the apk into system.
The easy solution would be to just flash this zip rather than add it to the ROM, but I would guess you could get it to work by adding these lines from the updater-script of this zip to the updater-script of the full ROM zip:
package_extract_dir("kernel", "/tmp");
set_perm(0, 3004, 02755, "/system/bin/ping");
set_perm(0, 0, 0777, "/tmp/dump_image");
set_perm(0, 0, 0777, "/tmp/mkbootimg");
set_perm(0, 0, 0777, "/tmp/unpackbootimg");
run_program("/tmp/dump_image", "boot", "/tmp/boot.img");
run_program("/tmp/unpackbootimg", "/tmp/boot.img", "/tmp/");
run_program("/tmp/mkbootimg", "--kernel", "/tmp/zImage", "--ramdisk", "/tmp/boot.img-ramdisk.img", "--cmdline", "console=ttyS2,115200n8 rw mem=244M@0x80C00000 init=/init ip=off brdrev=P3A_CDMA mtdparts=omap2-nand.0:640k@128k(mbm),384k@1408k(cdt),384k@3328k(lbl),384k@6272k(misc),3584k(boot),4608k(recovery),143744k(system),94848k(cache),268032k(userdata),2m(kpanic)", "--base", "0x10000000", "--output", "/tmp/newboot.img");
write_raw_image("/tmp/newboot.img", "boot");
mount("MTD", "system", "/system");
package_extract_dir("system", "/system");
unmount("/system");