[ROM][JB]something[8010/8013][01-16-2013]

Search This thread

marcxs

Member
Oct 10, 2012
24
2
Biel
Nice Rom, thank you very much. :victory:

You could get rid of the "Facebook Log-in" if you un-toggle the help text in the lockscreen settings.
 

rgerrans

Senior Member
Aug 29, 2010
255
136
I'm running on an 8013 and noticed the Play Store won't let me install B&N Nook Reader or Realtor.com. I had a TB backup of Nook so tried to install that and it FC's when I go to open a book. Anyone having any luck with either of these apps?

Thanks
 

st0nec01d

Senior Member
Dec 9, 2010
131
40
Why don't you all leave him alone
To fix it. He knows there are bugs. Do you know how hard it is to fix things while a group of people moan down his ear? Go do something useful and check back in a couple of days.

Sent from my HTC One X+ using Tapatalk 2

Um, I am leaving him alone, pointed out a couple of things I wasn't sure he was aware of. Suggested a potential fix to one, when it didn't work, made sure other people were aware so that they didn't make the same mistake and give more headaches. Other than that I already stated I was leaving things to see how they develop over weekend.

Sent from my GT-N8010 using Tapatalk 2
 

gmfeny

Senior Member
Mar 21, 2007
1,265
166
Why don't you all leave him alone
To fix it. He knows there are bugs. Do you know how hard it is to fix things while a group of people moan down his ear? Go do something useful and check back in a couple of days.

Sent from my HTC One X+ using Tapatalk 2

They aren't moaning. They are reporting bugs. If this doesn't happen smaw will think everything is fine. I'm sure he doesn't mind people reporting bugs. Nobody complained or was being disrespectful and saying the ROM sucks...

Sent from my Galaxy Nexus using Tapatalk 2
 

smaw51

Senior Member
Nov 22, 2010
885
431
Tempe
Haha yeah, I realized I had restored to my old modded 8000 ROM, that's why the lock screen stuff was different. But yeah, unticking help text removed the face book thing. Now that I got this back on my note, I can do better diagnostics.

As far as the news ticker in the lock screen, that is probably from the removed Yahoo news thing, get the boat apps I put up and try installing the news one.

The next release will have all the bloat stuff as I'm sure most everyone has a zip program to remove the ones they don't want.

I think some more if the issues with the text stuff could stem from this being built from some dudes system dump after getting the update. I don't think I will be able to do much today, but tomorrow and the next day I will get a lot done
 
  • Like
Reactions: alperin1 and gmfeny

smaw51

Senior Member
Nov 22, 2010
885
431
Tempe
I'm running on an 8013 and noticed the Play Store won't let me install B&N Nook Reader or Realtor.com. I had a TB backup of Nook so tried to install that and it FC's when I go to open a book. Anyone having any luck with either of these apps?

Thanks

That sounds like one of those build.prop things.
If you have an editor for that like rom tool box, go through and change it from 8010 to 8013
 

rgerrans

Senior Member
Aug 29, 2010
255
136
That sounds like one of those build.prop things.
If you have an editor for that like rom tool box, go through and change it from 8010 to 8013

Good suggestion, but unfortunately didn't solve the problem. Here is the error event from the log file when Nook crashes.


--------- beginning of /dev/log/main

E/SpannableStringBuilder(14160): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
E/SpannableStringBuilder(14160): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
 

shrek4224

Senior Member
Nov 26, 2011
94
9
I'm running on an 8013 and noticed the Play Store won't let me install B&N Nook Reader or Realtor.com. I had a TB backup of Nook so tried to install that and it FC's when I go to open a book. Anyone having any luck with either of these apps?

Thanks

I also use Nook, just search for the .apk or if you have a samsung phone backup your app and then move it into the titatium backup folder and restore it, that is what I did. Before using it I cleared all the app data and then it works great.
 
Last edited:
  • Like
Reactions: rgerrans

rgerrans

Senior Member
Aug 29, 2010
255
136
That sounds like one of those build.prop things.
If you have an editor for that like rom tool box, go through and change it from 8010 to 8013

I also use Nook, just search for the .apk or if you have a samsung phone backup your app and then move it into the titatium backup folder and restore it, that is what I did. Before using it I cleared all the app data and then it works great.

Thanks. I had tried that but didn't work. Just tried again but retrieved it from my last nandroid backup and success.Thanks for the suggestion. My TB backup must have been from before the most recent Nook update.
 

omnia1994

Senior Member
Apr 18, 2009
806
73
i just found that shortcuts are not available in lockscreen, and i cant find that option in settings
is this normal?@@
 

Asure

Senior Member
May 13, 2010
88
6
Bug report

I can't disable root. (Some apps require root to be temp disabled when starting up.)
This worked before with CWM-SuperSU-v0.94.zip i used to root 4.0.4. I reinstalled that zip with CWM and it works fine.

Here's the script it uses:

Code:
ui_print("- Mounting /system and rootfs");
run_program("/sbin/busybox", "mount", "/system");
run_program("/sbin/busybox", "mount", "-o", "rw,remount", "/system", "/system");
run_program("/sbin/busybox", "mount", "-o", "rw,remount", "/", "/");

ui_print("- Removing old files");
delete("/system/bin/su");
delete("/system/xbin/su");
delete("/system/app/Superuser.apk");
delete("/system/app/SuperUser.apk");

ui_print("- Creating space");
run_program("/sbin/busybox", "cp", "/system/app/Maps.apk", "/Maps.apk");
run_program("/sbin/busybox", "cp", "/system/app/GMS_Maps.apk", "/GMS_Maps.apk");
run_program("/sbin/busybox", "cp", "/system/app/YouTube.apk", "/YouTube.apk");
run_program("/sbin/busybox", "rm", "/system/app/Maps.apk");
run_program("/sbin/busybox", "rm", "/system/app/GMS_Maps.apk");
run_program("/sbin/busybox", "rm", "/system/app/YouTube.apk");

ui_print("- Extracting files");
package_extract_dir("system", "/system");

ui_print("- Restoring files");
run_program("/sbin/busybox", "cp", "/Maps.apk", "/system/app/Maps.apk");
run_program("/sbin/busybox", "cp", "/GMS_Maps.apk", "/system/app/GMS_Maps.apk");
run_program("/sbin/busybox", "cp", "/YouTube.apk", "/system/app/YouTube.apk");
run_program("/sbin/busybox", "rm", "/Maps.apk");
run_program("/sbin/busybox", "rm", "/GMS_Maps.apk");
run_program("/sbin/busybox", "rm", "/YouTube.apk");

ui_print("- Setting permissions");
set_perm(0, 0, 06755, "/system/xbin/su");
set_perm(0, 0, 0644, "/system/app/Superuser.apk");
set_perm(0, 0, 0644, "/system/app/Maps.apk");
set_perm(0, 0, 0644, "/system/app/GMS_Maps.apk");
set_perm(0, 0, 0644, "/system/app/YouTube.apk");

ui_print("- Unmounting /system");
unmount("/system");

ui_print("- Done !");

And the zip itself is attached to the post.
 

Attachments

  • CWM-SuperSU-v0.94.zip
    658.9 KB · Views: 7
  • Like
Reactions: smaw51

Skizzy034

Senior Member
Mar 10, 2010
5,509
1,123
40
Amsterdam, NY
www.facebook.com
Why don't you all leave him alone
To fix it. He knows there are bugs. Do you know how hard it is to fix things while a group of people moan down his ear? Go do something useful and check back in a couple of days.

Sent from my HTC One X+ using Tapatalk 2

Dude seriously? We weren't complaining at all. Just stating what our specific problems we were having in case he didn't have the same ones or didn't know about them.

Edit: I always seem to be a few hours behind in answering back. I didn't see this was already explained to the poster until I read a little further lol.

---------- Post added at 06:43 PM ---------- Previous post was at 06:38 PM ----------

Haha yeah, I realized I had restored to my old modded 8000 ROM, that's why the lock screen stuff was different. But yeah, unticking help text removed the face book thing. Now that I got this back on my note, I can do better diagnostics.

As far as the news ticker in the lock screen, that is probably from the removed Yahoo news thing, get the boat apps I put up and try installing the news one.

The next release will have all the bloat stuff as I'm sure most everyone has a zip program to remove the ones they don't want.

I think some more if the issues with the text stuff could stem from this being built from some dudes system dump after getting the update. I don't think I will be able to do much today, but tomorrow and the next day I will get a lot done

Flashing that un themed SystemUI and framework-res zip you posted changed that facebook text to the normal slide to unlock even with the help text box selected. It also took out the 4-way reboot but that was expected. I tried adding the bloat stuff you took out and it didn't bring back the news ticker.
 
Last edited:

Top Liked Posts

  • There are no posts matching your filters.
  • 43
    SOMETHING​

    updated 01/16/2013
    this is Jelly Bean 4.1.2 for the 8013 N8013UEUCMA3
    http://www.mediafire.com/?xm1u6puzemmzsk8
    unlimited multi window in second post
    only thing missing the the advanced power menu for now



    This is built from the latest jelly bean update for the 8010 released in Germany.​

    What's in it:
    Root
    de-odexed
    Busybox
    zipaligned
    init.d support
    4 way reboot
    Slightly de-bloated
    Slightly themed
    mods to build.prop and init.d scripts to increase performance
    1% circle battery mod



    Instructions:

    Use CWM
    Make a backup first
    Wipe your stuff:
    • wipe data/factory reset
    • wipe cache partition
    • mounts and storage/ format /data
    • mounts and storage/ format /system
    • mounts and storage/ format /cache
    • advanced/ wipe dalvik cache
    • Repeat a couple times for good measure
    flash the rom
    wipe your cache again for good measure
    boot up and after logging in, wait a few minuets to let everything settle


    Downloads:
    All: http://d-h.st/users/smaw51

    something updated 12-17-2012 http://d-h.st/8Ys

    Updates
    8010 themed, reboot fixed http://d-h.st/3aC
    8013 themed, reboot fixed http://d-h.st/eIe
    just the reboot fix http://d-h.st/Ws9



    Bugs:
    *let me know




    people, do with this what you please, the more mods posted and shared the better!
    As always, Flash at your own risk


    Thanks to everyone in the community for helping with stuff and dsixda's kitchen!
    graffixnyc for getting the system image out before sammobile
    UOT kitchen http://uot.dakra.lt/kitchen/
    darkman_rs for unknowingly assisting with the updater-script
    8
    Op is updated with fixed stuff

    and a complete version as well
    7
    Multi window stuff:
    to decrease the size of the multiwindow button, not the bottom middle one, the other one: http://d-h.st/MZG
    multi-window mod, thanks to xperiacle for his guide: http://d-h.st/YRJ
    to get back to original: http://d-h.st/NgY

    theme stuff:
    for the multiwindow mod here: http://xdaforums.com/showthread.php?t=2069173
    use the XXBLK9 mod, and here is the stuff to get the theme here back: http://d-h.st/Umu

    Screenshots:
    https://www.dropbox.com/s/5lyiu35g4n29uux/2012-12-13 19.24.33.png
    https://www.dropbox.com/s/o79no3tjh265e8j/2012-12-13 20.14.47.png


    Stock stuff and bloat:
    here is the bloat I removed, this is NOT flashable, just plop it in you sd card, extract and install like any other apk
    http://d-h.st/Qsn

    here is the stock theme, and no reboot menu
    http://d-h.st/G8P
    if you want to keep the reboot how it is, just erase the android.policy.jar from the system/framework in the zip before flashing
    6
    Got the reboot thing fixed, putting everything together and will have it up in a few
    4
    I'm uploading a rom now based off the latest release of JB for the 8013 rom. From what I can tell so far, there are a few differences with this and the stuff that has been out for the 8010. I am uploading it to media fire, once up, if anyone wants to mirror it or do anything to it feel free.

    Also, there is not an advanced reboot menu for it, and my battery icon is a little funny when charging it from my computer.