Just started learning this stuff about a month ago. Decided to use my Infuse and Captivate as sacrificial phones to learn on before I do anything on my S3. I have been successful with rooting the Infuse and Captivate along with installing several custom roms on each.
A couple of weeks ago I sucessfully rooted my S3 which had the AT&T 4.3 OTA update on it. I rooted using this method by Loxla http://forum.xda-developers.com/showthread.php?t=2562802.
I have enjoyed the advantages of a rooted S3. Now I would like to install a custom rom on this S3. In consideration of the bootloader dangers, what are my options for installing a custom rom?
Many thanks. And thanks to Loxla for a successful root.
Maybe I need to rephrase my question. I rooted my S3 AFTER I did the 4.3 AT&T OTA update. What ROM's can I flash from this point forward? Any rom that is based on 4.3 or higher? I understand that there is an issue if the bootloader is downgraded. But what about going UP? I have done extensive searching on this scenario but can't come up with an answer.
Thanks.
kevinga said:
Maybe I need to rephrase my question. I rooted my S3 AFTER I did the 4.3 AT&T OTA update. What ROM's can I flash from this point forward? Any rom that is based on 4.3 or higher? I understand that there is an issue if the bootloader is downgraded. But what about going UP? I have done extensive searching on this scenario but can't come up with an answer.
Thanks.
Click to expand...
Click to collapse
For me, I used cyanogenmod 10.2 d2att stable rom and it flashed successfully with twrp recovery. My phone was a samsung s3 i747m and it had android 4.3 OTA update and it was also rooted.
kevinga said:
Maybe I need to rephrase my question. I rooted my S3 AFTER I did the 4.3 AT&T OTA update. What ROM's can I flash from this point forward? Any rom that is based on 4.3 or higher? I understand that there is an issue if the bootloader is downgraded. But what about going UP? I have done extensive searching on this scenario but can't come up with an answer.
Thanks.
Click to expand...
Click to collapse
You could try Dandroid 5, its 4.3 touchwiz with asop looks.
Sent from my SAMSUNG-SGH-I747 using Tapatalk 2
kevinga said:
Just started learning this stuff about a month ago. Decided to use my Infuse and Captivate as sacrificial phones to learn on before I do anything on my S3. I have been successful with rooting the Infuse and Captivate along with installing several custom roms on each.
A couple of weeks ago I sucessfully rooted my S3 which had the AT&T 4.3 OTA update on it. I rooted using this method by Loxla http://forum.xda-developers.com/showthread.php?t=2562802.
I have enjoyed the advantages of a rooted S3. Now I would like to install a custom rom on this S3. In consideration of the bootloader dangers, what are my options for installing a custom rom?
Many thanks. And thanks to Loxla for a successful root.
Click to expand...
Click to collapse
I answered this question in a different thread here.
dntesinfrno said:
I answered this question in a different thread here.
Click to expand...
Click to collapse
Thanks for the reply and the link. Could I install the Beanstalk 4.4 rom? I can't find any information regarding the bootloader. Here is the link to the rom http://forum.xda-developers.com/showthread.php?t=2485628
Cooro said:
For me, I used cyanogenmod 10.2 d2att stable rom and it flashed successfully with twrp recovery. My phone was a samsung s3 i747m and it had android 4.3 OTA update and it was also rooted.
Click to expand...
Click to collapse
I am assuming that you rooted AFTER you did the 4.3 OTA?
Cooro said:
For me, I used cyanogenmod 10.2 d2att stable rom and it flashed successfully with twrp recovery. My phone was a samsung s3 i747m and it had android 4.3 OTA update and it was also rooted.
Click to expand...
Click to collapse
I thought once someone updated to 4.3, installing custom recovery would crash the device?
I know Verizon and at&t are different, I was just curious.
Sent from my SCH-I535 using XDA Premium 4 mobile app
No, custom recovery won't brick your phone. Just trying to downgrade the boot loader will.
To the OP, most custom ROMs do not change the boot loader. If know of no ROM that changes the boot loader when you install thru recovery.
Sent from my SAMSUNG-SGH-I747 using XDA Premium HD app
indymx said:
No, custom recovery won't brick your phone. Just trying to downgrade the boot loader will.
To the OP, most custom ROMs do not change the boot loader. If know of no ROM that changes the boot loader when you install thru recovery.
Sent from my SAMSUNG-SGH-I747 using XDA Premium HD app
Click to expand...
Click to collapse
So could I flash a 4.4 ROM? I miss cm 11.
Sent from my SCH-I535 using XDA Premium 4 mobile app
XXDroidZillaXX said:
So could I flash a 4.4 ROM? I miss cm 11.
Sent from my SCH-I535 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Certainly, the only potential road block would be the bootloader assert in the updater script. If the list of acceptable bootloader's doesn't include MJB then it wont flash. The updater script is located under \META-INF\com\google\android in the rom zip. Here is a sample of the code :
assert(getprop("ro.product.device") == "d2att" || getprop("ro.build.product") == "d2att");
assert(getprop("ro.bootloader") == "I747UCDLK3" ||
getprop("ro.bootloader") == "I747UCDMG2" ||
getprop("ro.bootloader") == "I747MVLDLK4" ||
getprop("ro.bootloader") == "I747MVLDMF1" ||
getprop("ro.bootloader") == "I747MUMBLK3" ||
getprop("ro.bootloader") == "I747MUMBLL1");
If your bootloader isn't listed you can either add a new line for it to add it to the check, or delete the entire segment. Be warned that this will force and/or skip the check and go straight into installing the ROM regardless of the bootloader on your device, do so at your own risk. From what i've read the only functional difference between MJB and the earlier bootloaders is the addition of the Qfuse disallowing bootloader downgrading, adding the warranty bit counter, and implementing KNOX support in the security chain of trust so it shouldn't be a big deal but just sayin.
OK thanks, I'm not real comfortable getting in to code just yet I'm still learning.
I just didn't want to brick my phone, I couldn't care less about the KNOX warranty or whatever. I'm due for a new phone in a few months anyway.
Sent from my SCH-I535 using XDA Premium 4 mobile app
---------- Post added at 06:07 PM ---------- Previous post was at 06:05 PM ----------
dntesinfrno said:
Certainly, the only potential road block would be the bootloader assert in the updater script. If the list of acceptable bootloader's doesn't include MJB then it wont flash. The updater script is located under \META-INF\com\google\android in the rom zip. Here is a sample of the code :
assert(getprop("ro.product.device") == "d2att" || getprop("ro.build.product") == "d2att");
assert(getprop("ro.bootloader") == "I747UCDLK3" ||
getprop("ro.bootloader") == "I747UCDMG2" ||
getprop("ro.bootloader") == "I747MVLDLK4" ||
getprop("ro.bootloader") == "I747MVLDMF1" ||
getprop("ro.bootloader") == "I747MUMBLK3" ||
getprop("ro.bootloader") == "I747MUMBLL1");
If your bootloader isn't listed you can either add a new line for it to add it to the check, or delete the entire segment. Be warned that this will force and/or skip the check and go straight into installing the ROM regardless of the bootloader on your device, do so at your own risk. From what i've read the only functional difference between MJB and the earlier bootloaders is the addition of the Qfuse disallowing bootloader downgrading, adding the warranty bit counter, and implementing KNOX support in the security chain of trust so it shouldn't be a big deal but just sayin.
Click to expand...
Click to collapse
OK thanks, I'm not real comfortable getting in to code just yet I'm still learning.
I just didn't want to brick my phone, I couldn't care less about the KNOX warranty or whatever. I'm due for a new phone in a few months anyway.
Sent from my SCH-I535 using XDA Premium 4 mobile app
Sent from my SCH-I535 using XDA Premium 4 mobile app
XXDroidZillaXX said:
OK thanks, I'm not real comfortable getting in to code just yet I'm still learning.
I just didn't want to brick my phone, I couldn't care less about the KNOX warranty or whatever. I'm due for a new phone in a few months anyway.
Sent from my SCH-I535 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
I've installed CM11.. I had minor issues going back to stock after, but installing CM11 on top of the OTA 4.3 boot loaders is no problem.
indymx said:
I've installed CM11.. I had minor issues going back to stock after, but installing CM11 on top of the OTA 4.3 boot loaders is no problem.
Click to expand...
Click to collapse
Awesome! Thanks, I really wanted to know if anyone out there had done successfully. Will it make a big difference since I'm on Verizon?
Sent from my SCH-I535 using XDA Premium 4 mobile app
XXDroidZillaXX said:
Awesome! Thanks, I really wanted to know if anyone out there had done successfully. Will it make a big difference since I'm on Verizon?
Sent from my SCH-I535 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Shouldn't.. CM11 doesn't change the boot loader.
I've heard good things about the CM11 version for your phone. I'm not happy with it on mine, but my buddy who's got a Verizon S3 says it runs great on his.
indymx said:
Shouldn't.. CM11 doesn't change the boot loader.
I've heard good things about the CM11 version for your phone. I'm not happy with it on mine, but my buddy who's got a Verizon S3 says it runs great on his.
Click to expand...
Click to collapse
Its great. I was on cm11 before I lost all good sense and updated to stock 4.3.
Sent from my SCH-I535 using XDA Premium 4 mobile app
XXDroidZillaXX said:
Its great. I was on cm11 before I lost all good sense and updated to stock 4.3.
Sent from my SCH-I535 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
There are some things in TW I like.. Like the calendar app.. I love that thing.. But, there are features of CM11 that rock too..
The camera in CM11 on ATT S3 sucks balls. TW's is a lot better. I use Nova Launchers, So the interface is mostly the same. And I'm currently running without any of the bloat. Also, TW has emoji working right.. I don't think CM11 does.
Minor issues true, but still..
The major issue I had with CM11 is the battery. CM11 took forever to charge, and would only charge with the screen off. They may have fixed that by now, but I'm thinking I'll wait a bit before I try again. It's too much hassle to get back to 4.3 Stock TW for me to want to try it too quickly.
indymx said:
There are some things in TW I like.. Like the calendar app.. I love that thing.. But, there are features of CM11 that rock too..
The camera in CM11 on ATT S3 sucks balls. TW's is a lot better. I use Nova Launchers, So the interface is mostly the same. And I'm currently running without any of the bloat. Also, TW has emoji working right.. I don't think CM11 does.
Minor issues true, but still..
The major issue I had with CM11 is the battery. CM11 took forever to charge, and would only charge with the screen off. They may have fixed that by now, but I'm thinking I'll wait a bit before I try again. It's too much hassle to get back to 4.3 Stock TW for me to want to try it too quickly.
Click to expand...
Click to collapse
I agree about the camera on CM.. It sucks. That is my only real issue.
How difficult was it to return to stock?
Sent from my SCH-I535 using XDA Premium 4 mobile app
Well, its not horrible. Just have to have a nandroid backup plus a backup of all of your app data.
When I booted up after restoring my nandroid, I got a million FC's. Only good way out of it was a reset.
Sent from my SAMSUNG-SGH-I747 using XDA Premium HD app
So far the latest nightly of CM11 is pretty good.. Camera is working as good as stock, battery seems to charge normally, and no other oddities.. I'll keep my eye on it for a day or so and see how it goes. No fancy calendar, but I can live with that.
Related
Whenever I try to install a custom d2tmo ROM from XDA on my T999v GS3, I get this error:
assert failed: getprop("ro.build.product") == "d2tmo"
E:Error in /emmc/_Download/pa_d2tmo-2.52-27OCT2012-163709.zip
(status 7)
What do I need to do to fix this? I've tried using both TWRP and CWM with the same result. Also I've formated the phone and still no positive results.
moving to right section. I suggest to use search function. Regards,
You need to change your build.prop to reflect a t999, you either flashed a rom from a different section or a Google wallet fix that changed your build.prop probably
Sent from my SGH-T999 using Tapatalk 2
bfranklin1986 said:
You need to change your build.prop to reflect a t999, you either flashed a rom from a different section or a Google wallet fix that changed your build.prop probably
Sent from my SGH-T999 using Tapatalk 2
Click to expand...
Click to collapse
How do i do this! sorry, im to new to rooting
Search. Reading is the foundation of knowledge.
They call me "Jelly" cuz jam don't shake like this!
Download ROM manager. Install clockwork.
I'm pretty good at this stuff, but I wouldn't be running the latest cm10 nightly on an island if I hadn't given koush his 5 dollars.
Better than editing build prop
Sent from my SGH-T999 using xda premium
Android_Monsters said:
Download ROM manager. Install clockwork.
I'm pretty good at this stuff, but I wouldn't be running the latest cm10 nightly on an island if I hadn't given koush his 5 dollars.
Better than editing build prop
Sent from my SGH-T999 using xda premium
Click to expand...
Click to collapse
ive already tried this and it didnt work
ONLY FLASH THIS IF YOU HAVE THE US VARIANT OF TMOBILE'S NOTE 2 (SGH-T889)
This is a 4.1.2 Stock Rom made from Factory Image, N7105XXDMB3 (CSC N7105OLBDMA1), released on 02/13/13.
Both Deodexed and Odexed versions are available. Both of them are rooted with unsecured boot (T889) with init.d support and includes busybox.
Wipe cache/dalvik. Flash via CWM or TWRP. Your data will be preserved.
Deodexed: Link 1 -::- Link 2
Odexed: Link 1 -::- Link 2
Please don't forget to hit Thanks and give proper credit when/if you decide to use this as a base.
Cheers!
-:: reserved ::-
Re: [ROM][STOCK][4.1.2][T889] XXDMB3 || Deodexed & Odexed, Rooted, Busybox [02/13/13]
Right on top of things as always
Sent from my SGH-T889 using xda app-developers app
Re: [ROM][STOCK][4.1.2][T889] XXDMB3 || Deodexed & Odexed, Rooted, Busybox [02/13/13]
Can you make this a non US VARIANT version
Im not US VARIANT or Canada tmobile
Please
Sent from my SGH-T889 using xda premium
PhxDroid86 said:
Right on top of things as always
Sent from my SGH-T889 using xda app-developers app
Click to expand...
Click to collapse
lol I try
jpeps3 said:
Can you make this a non US VARIANT version
Im not US VARIANT or Canada tmobile
Please
Sent from my SGH-T889 using xda premium
Click to expand...
Click to collapse
You mean for N7105 ?
Re: [ROM][STOCK][4.1.2][T889] XXDMB3 || Deodexed & Odexed, Rooted, Busybox [02/13/13]
Will titanium back up work on here ?
Sent from my SGH-T889 using xda premium
jpeps3 said:
T889 non
US VARIANT
Im the us
Not canada
Sent from my SGH-T889 using xda premium
Click to expand...
Click to collapse
Seems like we are having a language issue here. You are saying "T889 non US VARIANT" which to me means either Canada (T889V) or International version(N7105). But then again you are saying "Not canada" so that leaves me with N7105.
Do you mean to say a non Tmobile variant ? Like for AT&T (Still US) ?
What's the model ? Which mobile carrier do you use (Tmobile, AT&T)?
jpeps3 said:
Will titanium back up work on here ?
Sent from my SGH-T889 using xda premium
Click to expand...
Click to collapse
Yes it will.
Re: [ROM][STOCK][4.1.2][T889] XXDMB3 || Deodexed & Odexed, Rooted, Busybox [02/13/13]
Tmobile here
T889
Sent from my SGH-T889 using xda premium
jpeps3 said:
Tmobile here
T889
Sent from my SGH-T889 using xda premium
Click to expand...
Click to collapse
Then all you have to do is download and flash
awesome.. thanks teshxx... what are the changelogs for these updates..
mysticfrog said:
awesome.. thanks teshxx... what are the changelogs for these updates..
Click to expand...
Click to collapse
Nothing. Just a newer build with bug fixes. Everything else looks the same.
Re: [ROM][STOCK][4.1.2][T889] XXDMB3 || Deodexed & Odexed, Rooted, Busybox [02/13/13]
Thanks again teshxx for staying on top of the leaks. I loves me some leakage leakage leakage lol
Re: [ROM][STOCK][4.1.2][T889] XXDMB3 || Deodexed & Odexed, Rooted, Busybox [02/13/13]
Can you do the 4.2.2 version. Or 4.2.1. Please
Sent from my SGH-T889 using xda premium
glensta said:
Thanks again teshxx for staying on top of the leaks. I loves me some leakage leakage leakage lol
Click to expand...
Click to collapse
haha np.
jpeps3 said:
Can you do the 4.2.2 version. Or 4.2.1. Please
Sent from my SGH-T889 using xda premium
Click to expand...
Click to collapse
They are not released yet. Only available via AOSP (CM or AOKP)
Damn all these updates are cool... But why in the hell doesnt tmobile are any other american carrier for that fact update as much as these do?? Im just a little confused..
mysticfrog said:
Damn all these updates are cool... But why in the hell doesnt tmobile are any other american carrier for that fact update as much as these do?? Im just a little confused..
Click to expand...
Click to collapse
Regulations and/or just not enough competition. We got lucky with Note 2 since it uses the same hardware as the international version. I honestly don't care if Tmobile releases an update or not (note entirely true since I would like updated modem from time to time lol).
teshxx said:
Regulations and/or just not enough competition. We got lucky with Note 2 since it uses the same hardware as the international version. I honestly don't care if Tmobile releases an update or not (note entirely true since I would like updated modem from time to time lol).
Click to expand...
Click to collapse
Thanks for the description... Yeah a updated modem would be great.. wouldnt care to much if we got that..:good:
Will you do a version for T889v?
ratatouille said:
Will you do a version for T889v?
Click to expand...
Click to collapse
Sure. Give me some time.
Re: [ROM][STOCK][4.1.2][T889] XXDMB3 || Deodexed & Odexed, Rooted, Busybox [02/13/13]
Any recommended kernel?
Sent from my GT-N7105 using xda app-developers app
ONLY FLASH THIS IF YOU HAVE THE US VARIANT OF TMOBILE'S NOTE 2 (SGH-T889)
This is a 4.1.2 Stock Rom made from a LEAKED Factory Image, N7105ZHDMA5. Changelist is 795352 which makes it newer than XXDMB3.
Both Deodexed and Odexed versions are available. Both of them are rooted with unsecured boot (T889) with init.d support and includes busybox.
Wipe cache/dalvik. Flash via CWM or TWRP. Your data will be preserved.
Deodexed: Link 1
Odexed: Link 1
Please don't forget to hit Thanks and give proper credit when/if you decide to use this as a base.
Cheers!
RESERVED
Re: [ROM][STOCK][4.1.2][T889] ZHDMA5 || LEAK || Deodexed & Odexed, Rooted [02/15/13]
Can I go from MA8 to this?
Sent from my GT-N7105 using xda app-developers app
ottoman1384 said:
Can I go from MA8 to this?
Sent from my GT-N7105 using xda app-developers app
Click to expand...
Click to collapse
Sure can.
Re: [ROM][STOCK][4.1.2][T889] ZHDMA5 || LEAK || Deodexed & Odexed, Rooted [02/15/13]
Whats the changelog on this?
Sent from my SGH-T889 using xda premium
Re: [ROM][STOCK][4.1.2][T889] ZHDMA5 || LEAK || Deodexed & Odexed, Rooted [02/15/13]
So, this rom has wifi calling?
edit...
Retard question... My bad... Sorry. Of course not, is international ROM...
Sent from my GT-N8000 using XDA Premium HD app
So N7105ZHDMA5 is newer than the one I flashed a few days ago, N7105XXDMA6, correct?
Re: [ROM][STOCK][4.1.2][T889] ZHDMA5 || LEAK || Deodexed & Odexed, Rooted [02/15/13]
B1aze said:
So N7105ZHDMA5 is newer than the one I flashed a few days ago, N7105XXDMA6, correct?
Click to expand...
Click to collapse
2 newer to be exact
Sent from my SAMSUNG-SGH-T889 using xda app-developers app
What is the difference between this and the DMB3 that was uploaded on 13th?
thank you.
Installed without a hitch. The only hiccup I found was that I had to go back into my Xposed Installer and re-install the framework. Rebooted the phone, all's well. Thanks again Teshxx!
Re: [ROM][STOCK][4.1.2][T889] ZHDMA5 || LEAK || Deodexed & Odexed, Rooted [02/15/13]
Does anyone know if Google wallet works
Without using the workarounds.
Sent from my SPH-L900 using xda premium
humdrum2009 said:
Does anyone know if Google wallet works
Without using the workarounds.
Sent from my SPH-L900 using xda premium
Click to expand...
Click to collapse
No, not without workarounds. I followed this guide here and have Wallet working flawlessly.
Re: [ROM][STOCK][4.1.2][T889] ZHDMA5 || LEAK || Deodexed & Odexed, Rooted [02/15/13]
After installing this I cannot grt my contacts name to show up for anything. Messaging, phone calls, or in contact list.
Sent from my GT-N7105 using xda premium
tr82691 said:
After installing this I cannot grt my contacts name to show up for anything. Messaging, phone calls, or in contact list.
Sent from my GT-N7105 using xda premium
Click to expand...
Click to collapse
Did you do a fresh install? Any mods installed?
teshxx said:
Did you do a fresh install? Any mods installed?
Click to expand...
Click to collapse
yes fresh install after it happened to double check and no mods atm. also noticed that my signal is a lot worse ever since after the MA6 build, i now get 3G where I used to get full HSPA+. running same baseband as before as well.
Everything working fine here but my all share dongle on my one non samsung tv. working with my stock note 2 but not on this rom. It sees the hub starts to connect and allshare turns off on the device but it works fine with the samsung 7500 series smart tv.
EDIT: Allsharecast dongles will not work with a flash counter that is tripped and su active. You need the paid version of triangle away to get the hub to work if you are having issues.
Hey guys!
Flashed this rom and now my S Planner (calendar) is having issues. I can go into it and view things but I cannot create new events as it hangs when I push Save with a message "Unfortunately, S Planner has stopped". Tried restoring to previous backup of the app, reflashing rom, clearing apps cache and data, even flashing S Planner.zip someone suggested on other thread.
Anyone else having this issue, any solutions?
Thanks!
----------------
tr82691 said:
After installing this I cannot grt my contacts name to show up for anything. Messaging, phone calls, or in contact list.
Sent from my GT-N7105 using xda premium
Click to expand...
Click to collapse
I had the issue of contacts not linking with numbers in Messaging (sms), however I did have all people visible in Contacts unlike you.
The problem was that this rom somehow added dashes (-) between digits in phone number or maybe I already had them there and the new rom doesn't recognize the numbers with dashes.
Anyways, I used Contacts Clean-Up app to remove dashes from all my numbers, after that everything linked up.
Seems like your problem is a bit different but maybe this will half way help you or maybe help someone else
Re: [ROM][STOCK][4.1.2][T889] ZHDMA5 || LEAK || Deodexed & Odexed, Rooted [02/15/13]
metalman1884 said:
Hey guys!
Flashed this rom and now my S Planner (calendar) is having issues. I can go into it and view things but I cannot create new events as it hangs when I push Save with a message "Unfortunately, S Planner has stopped". Tried restoring to previous backup of the app, reflashing rom, clearing apps cache and data, even flashing S Planner.zip someone suggested on other thread.
Anyone else having this issue, any solutions?
Thanks!
----------------
I had the issue of contacts not linking with numbers in Messaging (sms), however I did have all people visible in Contacts unlike you.
The problem was that this rom somehow added dashes (-) between digits in phone number or maybe I already had them there and the new rom doesn't recognize the numbers with dashes.
Anyways, I used Contacts Clean-Up app to remove dashes from all my numbers, after that everything linked up.
Seems like your problem is a bit different but maybe this will half way help you or maybe help someone else
Click to expand...
Click to collapse
Worked perfectly. Thank you.
Sent from my GT-N7105 using xda premium
Battery life any good on this, I know 2 hours of screen time taking 20% battery isn't bad, but I've heard of people getting 8 hours of screentime total!
That awkward moment when you kill the thread...
This is a Stock Rooted Deodexed Version Of The AT&T MA4 OTA.
Deodexed By Myself Personally
Features
I317UCAMA4 4.1.2 Base with Fri Jan 18 11:30:14 KST 2013 Build date!
Deodexed
Debloated Of All AT&T Bloat And Other Apps Deleted
Live Wallpapers Deleted To Speed Up System
Zip Aligned
ADB As Root / Unsecure Boot.Img
Init.d Support
No Radios / Modems included
International Bootup & Shutdown Animations & Sounds
T-mobile CSC Files
T-mobile T889 Fingerprint
MavenPro.Apk Added
Default-Gain.Config File Edited To Be Louder All Around
5X6 Touchwiz Launcher
Contacts.Apk Edited So There Is No AT&T Subscriber Popup
More To Come Later ......
Deodexed Rom
http://www.4shared.com/zip/pLZ1Zdtk/T889UCAMA4_att-port_.html
Mirror
http://www.mediafire.com/download.php?n6d5z6rpku0ok19
Special Thanks/Credits
Sagytb- for correcting my error on my part with download lnk
Re: {ROM}{STOCK}{4.1.2}{T889 PORT} UCAMA4 || Deodexed || Debloated || Rooted, Busybox
Saved for me
Sent from my SGH-T889 using xda premium
Re: {ROM}{STOCK}{4.1.2}{T889 PORT} UCAMA4 || Deodexed || Debloated || Rooted, Busybox
And again
Sent from my SGH-T889 using xda premium
Why does this say T889 port, that's the phone for this section. It should read "I317" port.
Re: {ROM}{STOCK}{4.1.2}{I317 PORT} UCAMA4 || Deodexed || Debloated || Rooted, Busybox
KillaHurtz said:
Why does this say T889 port, that's the phone for this section. It should read "I317" port.
Click to expand...
Click to collapse
Sorry mistyped it
Sent from my SGH-T889 using xda premium
Thanks for this running nice if need tester let me know i im a rom flashing h0e cant stay with one, want them all including girls-women lol.
Gonna give this a try. I'm particularly excited about the louder volume as my hearing is for the ****.
Hi just try the download link and is down
here is the link
http://www.4shared.com/get/pLZ1Zdtk/T889UCAMA4_att-port_.html
sagytb said:
here is the link
http://www.4shared.com/get/pLZ1Zdtk/T889UCAMA4_att-port_.html
Click to expand...
Click to collapse
Ok thanks
sagytb said:
here is the link
http://www.4shared.com/get/pLZ1Zdtk/T889UCAMA4_att-port_.html
Click to expand...
Click to collapse
Could u check the MD5 think zip is bad i download 3 times and it installs too fast then i reboot and stays at samsung galaxy note 2 screen and stays there.
Re: {ROM}{STOCK}{4.1.2}{I317 PORT} UCAMA4 || Deodexed || Debloated || Rooted, Busybox
sagytb said:
here is the link
http://www.4shared.com/get/pLZ1Zdtk/T889UCAMA4_att-port_.html
Click to expand...
Click to collapse
Thank you for the link greatly appreciated ill post in op if ok with u
Sent from my SGH-T889 using xda premium
Thanks for the port but is there anyway you could do the same exact thing but with this Rom?
Same exact base just would like the AT&T things to be gone.
Thanks in advance
Re: {ROM}{STOCK}{4.1.2}{I317 PORT} UCAMA4 || Deodexed || Debloated || Rooted, Busybox
G1Master said:
Thanks for the port but is there anyway you could do the same exact thing but with this Rom?
Same exact base just would like the AT&T things to be gone.
Thanks in advance
Click to expand...
Click to collapse
I will se if its ok with the op in that thread and go from there
Sent from my SGH-T889 using xda premium
Re: {ROM}{STOCK}{4.1.2}{I317 PORT} UCAMA4 || Deodexed || Debloated || Rooted, Busybox
G1Master said:
Thanks for the port but is there anyway you could do the same exact thing but with this Rom?
Same exact base just would like the AT&T things to be gone.
Thanks in advance
Click to expand...
Click to collapse
And as to there being att bloat there should be none in this rom i debloated it myself and checked it after i flashed it
Sent from my SGH-T889 using xda premium
Hi, i have some trouble.
I had install CyanogenMod 10.1.3 on my Galaxy Nexus (maguro), and all work fine.
Now i will try AICP 3.0 (http://forum.xda-developers.com/showthread.php?t=2493380&page=5).
As usual i download the .zip, and i put it on virtual sd.
I start phone at recovery mode, i wipe chache, davlik, clean system.
Then i try to install zipp from sd, but he crash
"
Finding update package..
Opening update package..
Installing update...
assert failed: getprop("ro.product.device") =="gruoper" || getprop("ro.product.device") =="tilapia" || getprop("ro.product.device") =="gruopertilapia"
Installation aborted."
Somone have some idea?
It's strange that he try to update, maybe i forgot do something..
That's because that ROM is not for a gnex its for another device "grouper" which I think its a nexus 7 tablet.
Sent from my Galaxy Nexus using XDA Premium 4 mobile app
Esteway.619 said:
That's because that ROM is not for a gnex its for another device "grouper" which I think its a nexus 7 tablet.
Sent from my Galaxy Nexus using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Well.. thanks.. I found it here http://forum.xda-developers.com/showthread.php?t=1792896 but in general doc, not on gNext specific...
And, if i may ask, what rom you use?
Lord_Gorthan said:
Well.. thanks.. I found it here http://forum.xda-developers.com/showthread.php?t=1792896 but in general doc, not on gNext specific...
And, if i may ask, what rom you use?
Click to expand...
Click to collapse
I use my port of miui but right now I'm on cm10.2 with some kitkat addons.
Sent from my Galaxy Nexus using XDA Premium 4 mobile app