[06-24] AOSP 4.2.2 [rom] - Nook Color Android Development

How about something new?
I am pleased to present, three years after the device's release...
AOSP 4.2.2 r1.2 for Nook Color
For this first release, I wanted to keep this as close to straight AOSP as I could. The device and kernel tree are identical to the the one in the CM10.1 release. There is a three year history of maintainance and improvement from the NookieDevs. Without that group of gentlemen, we would all be using ManualNooter, so be thankful. This project, and AOSPA as well, are not possible without them.
This is a straight a port to AOSP as a device with our boot parameters could hope for. Let me know what you think. The deviations from stock AOSP are minimal and almost wholly hardware related...a list is on a following post.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Note: these are random Google image results, not screenshots. I have not enabled native screenshots yet, and have no intention of buying an app to do it now. It's AOSP, you guys are familiar.
The only thing I added to this build that wasn't necessary or direct from AOSP was that I embedded Superuser, because ROOT! (and things just work more smoothly if it ships with the SU stuff handled.)
I think the performance is actually really nice, let me know.
Bug List
Nothing jumps out at me. Let me know. (Please check if you are reporting a bug with this build, or one from AOSP upstream. Google helps.)
Downloads
Rom is here.
Gapps are here.
I may decide to enable update notifications from Goo Manager...I haven't decided. I don't expect to update this as often as PA, not until 4.3 drops anyhow. But an update or two is for sure coming.
The Future
We can add some common-sense extras to this rom...but I do not want to spend a bunch of time and effort skirting the line between this and CyanogenMod. We already have CyanogenMod...it's awesome. Having said that, I am willing to add some basic extras. Post your thoughts about this issue in the thread...the more we add, the further from AOSP we go. Options include:
Performance Settings
MTP/PTP
Screenshots
Power menu (reboot etc.)
Requests may be considered (no promises...my plate is already pretty full. But contributions from the community are treasured...see the next post for source code info)
Thanks
NookieDevs (fat_tire, nemith, eyeballer and steven676 especially)
TeamWin for the vast amount of free hosting they provide me (and so many others)
inportb, koush
Leapinlar and RedneckReg for the replacement device.

Scroll down for build guide
Technical info for source code enthusiasts.
https://github.com/mateor/android/tree/aosp-4.2
CM projects used:
build
system/extras
vold
The above are all related to either the Nook's unique boot (having a uboot and MLO) or the partitioning scheme in the emmc. I intend to change to using the AOSP versions of those projects with the needed changes cherry-picked. Almost all of the commits we need were written by our own nemith and dalingrin.
hardware/ti/*
frameworks/av
frameworks/native
I have not decided what I will do with frameworks/av(whether I will pull out the OMAP stuff from that project or leave it as is), but the other hardware/ti handling will likely remain as the CM versions. I will peek at a diff, but the odds are high that we will stick with CM version there.
android_device_bn_encore
android_kernel_bn_encore
These two will 100% closely mirror the CM versions. I had to make some no-brainer changes to device before building...that will likely be the end. Thanks and credit to NookieDevs, especially Steven676 for 4.2.2.
Omap aside, my experience showed me that we only needed 15-20 changes to AOSP to port. So we will try and dial it back to just the barest changes necessary as an intellectual exercise.
Contributions from the community are welcome...the branch naming is all over the map right now...look at the manifest linked above for definitive answers about the source code used.
Thanks.
Build Guide (perfect for first-timers. Support can be requested in the thread)
These instructions are for 64 bit Linux environments, try VirtualBox if you don't use Linux normally.
Take 15 minutes and follow the beginning of this guide. if you don't have ADB set-up, it will take longer, but that is just for downloading the SDK.
If you need help installing the JDK on Ubuntu (or another system with apt-get) do this (the absolute easiest way)
Code:
cd ~/
wget https://github.com/flexiondotorg/oab-java6/raw/0.2.7/oab-java.sh -O oab-java.sh
chmod +x oab-java.sh
sudo ./oab-java.sh
sudo apt-get install sun-java6-jdk
When it gets to the step to intialize the repo (repo init -u ETC.) STOP, and come back here, You are done with that guide, forever. Those steps only need to be done once.
Enter:
Code:
[FONT="Courier New"]repo init -u git://github.com/mateor/android.git -b aosp-4.2[/FONT]
[FONT="Courier New"]repo sync[/FONT]
If you experience fetch errors during the repo sync, change the command to repo sync -j4 -f. If they still occur, then repo sync -j1 -f.
This will take a long time, do it before bed, or family time, or go eat.
When the sync is done
Code:
. build/envsetup.sh
lunch full_encore-userdebug
make otapackage
You're done!
When it is done compiling, your ROM will be waiting for you at out/target/product/encore.
Fat-tire says building your on rom makes you an Android ninja, so you know it must be true. That means that if you don't try, you are admitting you don't want to be a ninja. Which reveals you to be the geek you already are but with loser rubbed all over you. Why else are you on XDA if not to learn?

Wow! Amazing work mateorod! I know we personally have discussed this project many many times and I'm glad you were able to dedicate some time to pulling it off, sorry I haven't been around as much lately.. life in the way but will definitely give this a look
Congrats!

badass!!!!!
coulkd you add the option to edit quiccktoggles

Wow! Awesome stuff mateorod! Looks like you've been pretty busy here. Gonna give this a go for sure!
Thank you for keeping our little device still alive, kicking and fresh!

Intriguing.
Not only am I checking this out, but the goo.im link wasn't working so I'm building a rom from source for the first time

Would an AOSP base be good for a AOKP port, or would Cyanogenmod be better?
Sent from my NookColor using xda app-developers app

AgentCherryColla said:
Would an AOSP base be good for a AOKP port, or would Cyanogenmod be better?
Sent from my NookColor using xda app-developers app
Click to expand...
Click to collapse
Use AOSP, for sure. AOKP is AOSP-based now, except for the hardware implementation (I.e. the hard stuff) done by CM and their device maintainers. But definitely use my aosp-4.2 manifest as your base. All the changes are very specific...you must use my forks of those CM projects not simply the CM-10.1 versions. (that probably goes for the device tree as well).
A good example is vold. CM-10.1 vold is not backwards compatible with the AOSP repos...there is some undocumented dependency in another project. I could go on and on...deviate from my choices at your peril.
However, swapping out the AOSP repos (I.e. anything straight from aosp) with AOKP repos should work fine. Krylon stalled out on an AOKP build for the Nook...I think this manifest will allow you to be successful. Ask any questions you like...if I can answer I will.

PA Halo goes Open Source!
Hi mateord,
may be you didn't know about that: Paranoid - Halo goes Open Source now.
Please have a look here:
Code:
HALO goes open source
Non PA users
Make sure to tell your developer to take a look at these two links:
1. [URL="https://github.com/ParanoidAndroid/android_frameworks_base/commit/518c329e8c67fa96b8a8fc22e1962ddb8497c333"]https://github.com/ParanoidAndroid/a...962ddb8497c333[/URL]
2. [URL="https://github.com/ParanoidAndroid/android_packages_apps_Settings/commit/7c739a86e7a02451a63615d71f1b6c846caacdc6"]https://github.com/ParanoidAndroid/a...1b6c846caacdc6[/URL]
Commits are streamlined and squashed, should be merged in a few minutes easily. HALO is still in beta since support for TabletUI and PIE is unfinished, among other minor things, but it's good enough for a release.
As for the feature itself, I can honestly say it's been the most exciting Android project I've been involved in. I can think of absolutely zero reasons why anyone would dislike it in its current state. I sincerely hope you enjoy it, whatever rom you run.
Facebook
Again, we would like to thank Facebooks clever engineers for this idea. We've had a blast bringing it to new levels and making it entirely and creatively our own. This ain't
just a random carbon copy, we've tried hard to make it adapt Android as best as we can, starting by extending the basic functionality to all apps of course and ending with that sort of integration which you would expect from any native feature.
Google
As for threats to Androids eco system, until now apps react nicely to our changes. Apps adapt, they simply assume a smaller screensize. We do have some remaining issues to clear but this should be safe when we are done. Should any doubt come up as to our integrity, we are prepared to do whatever we can to lessen negative impact. We have created white & blackliststs, we have flagged this feature beta and instructed our users of their responsibility to respect app developers should any issue arise.
We earn nothing from our feature and do this solely because we enjoy Android and the Nexus/AOSP platform. Our goal is not to spread and hack, we simply want to demonstrate that the AOSP platform and its compliant devices are already the creative breeding ground that anyone could wish for.
PA users
There seem to be no crashes or spontaneous reboots that we know of and we have observed and measured it long enough to know it poses no danger for your battery and performance. Therefore the code has been merged into our main branch. You'll get all the features and changes that happened outside of HALO's scope.
I will try to sum up what i see on Git:
- HALO has white & blacklists now. Blacklists can prevent apps from pinging through HALO, whitlists do the same but only allow pinging when you explicetly allow it for single apps, everything is silenced
- dismissal of notifications has been improved
- PA Wallpapers has been taken out of the rom and can be downloaded for free on Google Play: [url]https://play.google.com/store/apps/d...oid.wallpapers[/url]
- DCHSPA+ symbols
- Dirk Rettschlag's Quick unlock
- PIE option for emptyangle (the start gap)
- Birthness dialog updates
- Statusbar date/time layout changes
- Option to use volume keys to control media volume anytime
- Launcher does not need to be started when you go in and out of fullscreen (no more black flicker)
Oh, we took out GooManager since we will soon replace it with a custom solution that will make updating as easy as possible, with full context awareness of course (hybrid props, backups, kernel updates, PA-gapps, etc.).
Enjoy!
regards and thanx for your hard work...
bitstra

All this is really missing is battery percentage, and performance settings. I like built in performance settings, I feel it take up less ram (vs setcpu).
::-::-::-::-::-::-::-::-::-::-::-::-::-::

Okay, I have to ask. Any guides on flashing this to emmc? I was running CM7 on emmc (Got stale), went back to stock 1.4.3, tried rooting but could never get full market, Then saw this and it looks awesome and would love to go for a spin on it. I have the zip files ready to go and a CWM sd card, but I need to know how to get it installed on emmc.
I am on pure stock 1.4.3
Thanks
Geeve

geeve420 said:
Okay, I have to ask. Any guides on flashing this to emmc? I was running CM7 on emmc (Got stale), went back to stock 1.4.3, tried rooting but could never get full market, Then saw this and it looks awesome and would love to go for a spin on it. I have the zip files ready to go and a CWM sd card, but I need to know how to get it installed on emmc.
I am on pure stock 1.4.3
Thanks
Geeve
Click to expand...
Click to collapse
If you have everything on a CWM sd card then just flash it
You can follow my (slightly outdated but mostly valid) guide over here: http://forum.xda-developers.com/showthread.php?t=1030227 Just replace the CM stuff with the stuff from this thread.

Thanks! Gonna give it a go when I get home...
Geeve
Sent from my SAMSUNG-SGH-I317 using xda app-developers app

I gave it a try with a clean install. It is actually very impressive. it has smaller foot print, boot up quicker, runs smoother and faster. I think it is perfect for such old device compared to CM10.1, I would have it for daily usage after try it for few days.
I installed it in SD card (EMMC has CM10.1 RC5), and I don't see upgrading android even when I boot from this ROM to CM10.1 (not sure why).
One thing might need some attention is the storage in settings crashes. Again, not sure if it is due to installed in SD card or not. However, it is not a big deal to me.
Another couple of things noticed, it has color band, and youtube won't play HD videos. I really don't care that much compared to the speed of this rom.
Thanks a lot for this great ROM. it is a better choice for my Nook Color.

Not just you. Have it installed on emmc and storage crashes in settings for me as well. I have the color bands too. Haven't tested YouTube yet though....
Great ROM so far! Good job devs! Fast, stable, and runs great!
Thanks
Geeve
Edit: I have the same YouTube problem. Could it be the kernel not using the display correctly? I am by no means a Dev, it just leads me to believe with the color bands and lack of HD that either the driver or kernel isn't doing its thing. Just a thought. Are there any other kernels we can flash to test?
Sent from my NookColor using xda app-developers app

The installation was a breeze, excellent ROM!
I can confirm the crash on Storage settings.
The performance is horrible though. Could it be because of the SD card? I have a 16G SanDIsk, should I go with class 4-10?

Thanks for the heads up on the settings crash...I just grabbed a log cat from it myself. I haven't looked into it, but it shouldn't be too hard. The banding that you mention, that is the background in holo dark, correct? That is actually an upstream AOSP issue. I don't understand how it has lingered so long...it certainly hasn't made it's way to the stock production builds. CM already fixed it back in ICS...http://review.cyanogenmod.org/#/c/14945/. I will add it here as well.
We don't have HD YouTube for PA either. Is that working on CM10.1? I thought not but I have spent very little time on CM10.1 for the Nook (due to my development commitments only...CM is the best.)
I have also been really pleased with the performance of this ROM. I will probably add in CM performance settings, just to make it easy to add our standard 200mhz over clock. There are a couple other small things I will cherry-pick in from other ROMs to make things a little easier. But I don't want to add too much. Like I said in the OP, I want to try and keep this as close to stock AOSP as is reasonable. We already have CM10.1 for this device...no reason to mimic all of it's features. I also think the small footprint is inemof this ROM's best features.
Performance settings, gradient fix for sure. Quick toggles editing has been requested and will be considered. Anything else?

yes, HD Youtube is working on CM10.1. I don't care if it plays HD videos or not, even it plays, it is not perfectly smooth. However, HQ videos have HD video as ads in the front, so most of time, it can't play HQ videos without playing the HD ads ahead.
I totally agree that we shouldn't have all of CM10.1 features, and keep it small footprint. Currently in my opinion, it is better than CM10.1 on Nook color (due to hardware limits). I feel less laggy compared to CM10.1. A full feature ROM like CM10.1 maybe better for new hardwares. for nook color, this rom is almost perfect. It will be perfect after the minor issues fixed.
thanks a lot for your excellent work!

mateorod said:
Thanks for the heads up on the settings crash...I just grabbed a log cat from it myself. I haven't looked into it, but it shouldn't be too hard.
Click to expand...
Click to collapse
Via the AOSP 4.2 port for the Nexus S:
https://github.com/diclusial/platfo...mmit/16edc0f2b53c6713952e297c941ec2aeae1b9adb

steven676 said:
Via the AOSP 4.2 port for the Nexus S:
https://github.com/diclusial/platfo...mmit/16edc0f2b53c6713952e297c941ec2aeae1b9adb
Click to expand...
Click to collapse
Thanks steven! I would guess that you have the actual attribution correct from your find...I am building with an identical commit but with different authorship from the CM project.
https://github.com/CyanogenMod/andr...viceinfo/StorageVolumePreferenceCategory.java
That has pretty much been the method for all bugs here and at AOSPA...how did CM solve it (usually back in cm7, by nemith or dal). Thanks a bunch for the tip.

Related

[ROM][Official] ReVolt DNA JB 4.3 *HALO*AOKP*PA*CM10.2*Hybrid*PIE* CDMA/GSM 8.19.13

As good a place as any to post this.
Pio-masaki.com is being shut down due to a Cease and Desist order sent against the host by Google and homeland security. I have no idea why, however until this is sorted out, and to avoid any possible or further legal issues, the site is down for a period of time that can be a day or forever. This includes any and all ROMs, kernels, gapps packages, for any and all devices, that were hosted on pio-masaki.com.
I apologize in advance for this as I know some ROMs are only available at pio-masaki.com, but it is out of my hands, the host has to consider their own safety, and has my 100% agreement and backing in taking down the site until the matter is resolved.
As this is a very large matter, and one that has us incredibly scared, I'm retreating from android for the time being, until I know what it was that I did that was illegal, and may return once this is cleared up and blows over.
After this is cleared up the hosting for pio-masaki.com may still remain offline as the hoster has some personal issues with me at this point and may or may not continue to host for me, should we resolve our differences it may return.
If by some chance Google or whoever sent the C&D notices this, I urge you to contact me as I was responsible for what was hosted, and would genuinely like to know what the issues are so we can get them resolved immediately.
I will be making similar postings or editings to any other ROM threads that link to pio-masaki.com.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Code:
#include
/*
* Your warranty is now void.
*
* We are not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at us for messing up your device, we will laugh at you.
*/
ReVolt features (taken from THIS POST as I suck at making posts, removed non relavent lines)
Built from ReVolt Sources | Based on Android 4.2.2 JellyBean
ROM Control Features (from AOKP)
Hybrid Engine | Paranoid Preferences (Thanks to PA Team)
Per-App-Color
AOKP Ribbons
CyanogenMod Profiles
Power Widget
Notification Shortcuts
Navigation Bar Color
Status Bar Color
Option to select Saving Location in Camera
Option to control cursor in text fields using volume keys
Multi User Option
Advanced Phone Options from CyanogenMod (Vibrate on Answer, Every 45 Sec., On Call waiting and Hangup)
Different Pattern Sizes
Apex Launcher
Nova Launcher
Trebuchet Launcher (ReVolt Version)
cLock App (Lock Clock) (CyanogenMod)
Expanded Desktop (Hide StatusBar & Navigation Bar)
Pie UI (Paranoid Android)
Font Size Controlling
TouchWizUX Launcher
DPI Changer
CRT On / Off Effect Controller
Lock Screen Targets (CyanogenMod)
Lock Screen Shortcuts (Paranoid Android)
How is this different from PAC-man?
This is based on AOKP source with cherry picks from CM, its also a much cleaner implementation of the 3 ROMs into a single ROM. Features wise they are very similar in the offered tweaks and options and is mostly a personal preferance.
Change log:
5.17.13: Initial release
5.17.13 B2: Correct a mistake on the camera and audio side of the tree, updated with chad's most recent commits concerning RIL, speakerphone and camera libs.
5.19.13: Camera now works (as in, it opens, takes a picture and doesn't melt your phone or cause world war 19).
Updated sources
Updated chad's trees
Audio files are now included, for whatever reason there wasn't a call for them, and there were none, so I moved them over and added them into the build.
Added HALO to be built with the ROM. While HALO the APP works, the PA framework for it is still missing, so don't get excited. It's just groundwork being started.
5.25.13 Resynced to chad's trees
Updated sources
BT audio should now work properly
Probably more, I haven't had much time to test
6.01.13 Resynced to chad's trees
Updated sources
Whatever is fixed up to the touch screen fixes chad did today, this isn't included.
Basically just a nightly build.
6.08.13 Synced up to chad's trees
Updated sources
Built against the chad kernel branch, not fb, crpalmers kernel may work with this build
6.12.13
Halo implemented
6.26.13
Synced up with Chad again, sound/UI/more
Synced up with ReVolt sources
Just an updated build while I catch up on the changes that have occured in my little vacation
7.24.13
Finally caught ReVolt back up with PAC and Carbon
Synced with the same updates PAC and Carbon received last week
From here down only use 4.3 GApps!
8.19.13
Updated to 4.3
Latest work from chad and friends
Compatible with crpalmer's latest masterpiece
BUGS:
Usual CM10.1 bugs exist for the most part here as well, uses chad0989's trees and kernel source for base.
No settings or ability to set Menu to the app switcher key, I'm working on this.​
Instructions:
Please clean flash this, there's so many extra settings that dirty flashing will likely cause problems. If you dirty flash, please don't report any issues until you flash clean and the issue occurs again!
Please use a proper 4.2.2 Gapps package, using inversed or any modded versions can and likely will cause issues, please use the current 4.2.2 from goo.im, if you use inverted or modded Gapps, please don't report issues until you clean flash with a proper package from goo.im!
If you are not S-OFF you will need to extract the boot.img and flash it separately, either flashGUI or fastboot, your choice, needs done.
S-OFF:
Download the ROM for your needs, CDMA or GSM.
Download the current 4.2.2 Gapps from goo.im
Place files someplace useful
Boot into recovery
This part assumes you know how to operate your installed recovery
Wipe system
Factory reset
Wipe dalvik
Flash ROM
Flash Gapps
Reboot
Let settle for a few minutes after booting
Setup phone as usual
If you have issues on first boot, flash the ROM only, then after it boots, reboot and flash Gapps then manually setup your phone in settings.
CDMA version: for use with Verizon, NOT for any other network.
GSM version: for use with GSM carriers, NOT for Verizon.
Downloads:
New hosting donated by diesburg! You can find my files here http://pio-masaki.com
Please visit here for the updated ROMs. Just look for the newest dated ROM as usual. This prevents me having to link each build twice.
I apologize for the inconvenience, the owner has decided to take down the site and hosting, please visit HERE on androidfilehost for the ROM downloads, they are dated.
Verizon Droid DNA ONLY! Not for any other device!​
FAQS
If you didn't read the bugs list in the first post, go back up and read that now, asking the same questions over and over is a trademark of xda and I hate it, please read the change log and bug list before posting questions or reporting issues.
Q. I want to report an issue, can I just post it in your thread without reading or doing any basic troubleshooting, googling, reading or wiping?
A. Well you CAN, you may be ignored or flamed for it. Please read above, and please read the Bugs and Change Log lists before reporting anything. Please flash a clean download, flash a clean wipe, and don't restore stuff from TiBu, thats basic troubleshooting, check if the issue persists, if it does, then feel free to post about it.
Q. Is this daily driver ready?
A. Can't answer that, what a person needs from their phone varies from person to person, what I may consider fine for my use may be 500 kinds of broken for another user. Example, I don't use my camera often, maybe once a month, and my BT has never been turned on for the last 5 devices, for me broken BT audio and camera doesn't make it a non daily driver ROM. Please read and decide for yourself if features included outweigh the broken, or if broken things are required for your comfortable use of your device.
Q. All this crap is fixed and its working great, why is it still a WIP?
A. I consider it a WIP because things aren't 100%. Most things are 90% or less, audio is 90%, BT is 90%, camera is more like 75%, etc. Until most or all of those are 100% I consider this a work in progress. That's just hardware, there's also ROM issues to consider. I'll remove WIP when camera, audio and BT are fully functional, meaning BT audio/data/whatever works, audio streaming works (doesn't have issues via streaming services), has proper audio routing and uses the amplifier, and camera can consistantly take pictures, record videos, and not crap out randomly. Basically all hardware works normally. This isn't a shot at anyone's work, this is how I am about my ROMs, not saying anything about anyone else's work.
Q. How can I build my own versions?
A. The DNA is now an officially supported ReVolt device, the necessary files can be retrieved and directions found in the revolt-rom git. Further build questions can be directed to me if needed.
Q. Phone crashes everytime I answer a call, end a call, or look at my phone!
A. This happens for some GSM users when the ROM doesn't automatically choose GSM/WCDMA Preferred. This can be set at:
Settings>Wireless & Networks/More>Mobile Networks>Network Mode> Tick GSM/WCDMA Preferred. Toggle airplane mode sometimes helps to get the radio to reset and pick up the changes.
Q. Your files all download as index.php!
A. This happens on certain browsers, namely the stock browser and Chrome. You can either use another browser (naked and dolphin don't do this) or simply rename the file to something useful, like "piostotallyepicawesomesaucedrizzledromthatrocksyourass.zip"
Thanks
johnhany97
Paranoid Android
AOKP
CyanogenMod
chad0989
flyhalf205
drewx2
crpalmer
More I'm sure
Kernel source used: https://github.com/CM10DNA/android_kernel_htc_dlx​
Thanks a million.
Sent from my HTC6435LVW using Tapatalk 2
Awesome. Now just waiting for chameleon os before I switch to my first aosp Rom so I can choose what looks best.
Sent from my HTC Droid DNA
jonah1234 said:
Awesome. Now just waiting for chameleon os before I switch to my first aosp Rom so I can choose what looks best.
Sent from my HTC Droid DNA
Click to expand...
Click to collapse
Chameleon is also done, looks like a green CM10.1 to me, though.
pio_masaki said:
Chameleon is also done, looks like a green CM10.1 to me, though.
Click to expand...
Click to collapse
Just gonna wait for Chameleon. Does it have app-wise DPI control? I dint find any such mention on website.
I think I just found my new love.. Damn it.. I'm torn between so many roms.. can we multi-boot these things?? LoL
rohitece06 said:
Just gonna wait for Chameleon. Does it have app-wise DPI control? I dint find any such mention on website.
Click to expand...
Click to collapse
No, its not a PA inclusive ROM like PAC and ReVolt, read the features for ChaOS in the thread I just put up.
WOW! - You only mentioned this a couple of hours ago!! - You need to rest up mate and spend some time with that 4 yr old
uppon2 said:
WOW! - You only mentioned this a couple of hours ago!! - You need to rest up mate and spend some time with that 4 yr old
Click to expand...
Click to collapse
Well yea rest up and then back to building! Jk
Sent from my HTC Droid DNA
I was building it last night and testing this morning Lil, same with chameleon though I have no real interest in it personally, I know some users like it.
Sent from my Galaxy Nexus using Tapatalk 2
In the install instructions it says to flash PAC. Half way down
uppon2 said:
In the install instructions it says to flash PAC. Half way down
Click to expand...
Click to collapse
Lol yeah I didn't have much time so I just copied the PAC posts, I'll fix that when I get time again. Thanks for the catch.
Sent from my Galaxy Nexus using Tapatalk 2
pio_masaki said:
Lol yeah I didn't have much time so I just copied the PAC posts, I'll fix that when I get time again. Thanks for the catch.
Sent from my Galaxy Nexus using Tapatalk 2
Click to expand...
Click to collapse
No problems. Some of us read before installing, even if we already know what we're doing sometimes you can miss something minor in the OP!
This seems to be the big, smoother brother to PAC. There's so much to flash...you have made me love my DNA again. Keep it up, my friend. Thank you.
jbarcus81 said:
can we multi-boot these things?? LoL
Click to expand...
Click to collapse
+1 this is the first device I've had without multi boot. I have multirom on my nexus 7 and safe strap on my bionic. I don't think we have enough room to multi boot anyway though. Maybe like 2 ROMs at a time. Fwiw I tried getting bootmanager to work and I couldn't figure it out.
Sent from my PAC DNA using Tapatalk 2
camera/gallery is force closing. guess, will have to flash a different one.
Totally clean install with latest gapss from goo
Can I dirty flash if I am running your latest pac rom?
123421342 said:
Can I dirty flash if I am running your latest pac rom?
Click to expand...
Click to collapse
Probably yeah.
Sent from my Galaxy Nexus using Tapatalk 2

[ROM][discontinued] ChameleonOS for DNA Unofficial 9.17.13

As good a place as any to post this.
Pio-masaki.com is being shut down due to a Cease and Desist order sent against the host by Google and homeland security. I have no idea why, however until this is sorted out, and to avoid any possible or further legal issues, the site is down for a period of time that can be a day or forever. This includes any and all ROMs, kernels, gapps packages, for any and all devices, that were hosted on pio-masaki.com.
I apologize in advance for this as I know some ROMs are only available at pio-masaki.com, but it is out of my hands, the host has to consider their own safety, and has my 100% agreement and backing in taking down the site until the matter is resolved.
As this is a very large matter, and one that has us incredibly scared, I'm retreating from android for the time being, until I know what it was that I did that was illegal, and may return once this is cleared up and blows over.
After this is cleared up the hosting for pio-masaki.com may still remain offline as the hoster has some personal issues with me at this point and may or may not continue to host for me, should we resolve our differences it may return.
If by some chance Google or whoever sent the C&D notices this, I urge you to contact me as I was responsible for what was hosted, and would genuinely like to know what the issues are so we can get them resolved immediately.
I will be making similar postings or editings to any other ROM threads that link to pio-masaki.com.
NOTE this is discontinued, please see the official builds.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Code:
#include
/*
* Your warranty is now void.
*
* We are not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at us for messing up your device, we will laugh at you.
*/
Features: (taken from THIS POST because, as usual, I suck at posting)
Launcher Features
· Folder icon styles: stacked, grid, or carousel
· Folder sorting: alphabetically, reverse alphabetically, or by usage
· Icon scaling in app drawer and on homescreen
· Home screen previews, rearrangable homescreens
· Set default screen from previews layout
· Add or remove homescreens from previews layout
· Slide homescreens with a second finger while holding widgets and icons
· Gestures: Pinch to show previews, spread to show launcher settings
Theme Manager
· Based on MIUI's theme engine
· Mix and match different themes on the fly
· Theme options: Icons, Status Bar, Boot animation, Font (requires reboot), Messaging, Framework, and Ringtones
· Applies native ctz files, but also will apply MIUI mtz files, not all elements will theme properly with mtz packages
· Animated boot animation preview
· Boot animation resolution scaling
Status Bar
· Customizable toggles, compact or page view (or off)
· Extended volume panel in page view toggles
· Access status or navigation bars while in fullscreen apps by touching the edge of the screen
Messaging
· Reads custom notification tones from Contacts
· Revised layout: Added messaging bubbles, removed avatar icons from conversation and put one in the action bar, quick shortcut for emojis
Security
· Manage installed apps' permissions
...and more!
Bugs
Nothing specific to the ROM
Change Log:
5.17.13: Initial public release
5.18.13: Correct a mistake on the camera and audio side of the tree, updated with chad's most recent commits concerning RIL, speakerphone and camera libs.
6.03.12: Update sources
Update with chad's tree
I think I fixed camera, haven't tested yet.
6.30.13: updated sources
Updated chad trees
Again maybe camera working.
9.13.13
Updated to 4.3 Jellybean
Updated to the current device/vendor tree
Built against the M7 kernel
9.17.13
Fixed and implemented QCOM keystore, it wasn't implemented into the source yet.
From this point on this ROM will REQUIRE 4.3 Gapps AND 4.3 kernels for the M7 kernel, crpalmer's 4.x.x kernels for example.​
Instructions:
Please clean flash this, there's so many extra settings that dirty flashing will likely cause problems. If you dirty flash, please don't report any issues until you flash clean and the issue occurs again!
Please use a proper 4.2.2 Gapps package, using inversed or any modded versions can and likely will cause issues, please use the current 4.2.2 from goo.im, if you use inverted or modded Gapps, please don't report issues until you clean flash with a proper package from goo.im!
If you are not S-OFF you will need to extract the boot.img and flash it separately, either flashGUI or fastboot, your choice, needs done.
S-OFF:
Download the ROM for your needs, CDMA or GSM.
Download the current 4.2.2 Gapps from goo.im
Place files someplace useful
Boot into recovery
This part assumes you know how to operate your installed recovery
Wipe system
Factory reset
Wipe dalvik
Flash ROM
Flash Gapps
Reboot
Let settle for a few minutes after booting
Setup phone as usual
If you have issues on first boot, flash the ROM only, then after it boots, reboot and flash Gapps then manually setup your phone in settings.
CDMA version: for use with Verizon, NOT for any other network.
GSM version: for use with GSM carriers, NOT for Verizon.
Downloads:
ChaOS for DNA 5.17.13 - CDMA
426a94c8152a18f5f08a66c6311b72ed
ChaOS for DNA 5.17.13 - GSM
4260dde91ccc2ac7a94d9ac1cdfdf034
ChaOS for DNA 5.18.13 - CDMA
ChaOS for DNA 5.18.13 - GSM
eba95560cfae91381672ae5ca71056b8
Please visit my website for all future builds
6.03.13 CDMA - 9956013b3f33a0699eb642a214746cc4
6.03.13 GSM - 758954c32f5510d661ea0bbfbe292c21
Verizon Droid DNA ONLY! Not for any other device!​
FAQS
If you didn't read the bugs list in the first post, go back up and read that now, asking the same questions over and over is a trademark of xda and I hate it, please read the change log and bug list before posting questions or reporting issues.
Q. I want to report an issue, can I just post it in your thread without reading or doing any basic troubleshooting, googling, reading or wiping?
A. Well you CAN, you may be ignored or flamed for it. Please read above, and please read the Bugs and Change Log lists before reporting anything. Please flash a clean download, flash a clean wipe, and don't restore stuff from TiBu, thats basic troubleshooting, check if the issue persists, if it does, then feel free to post about it.
Q. Is this daily driver ready?
A. Can't answer that, what a person needs from their phone varies from person to person, what I may consider fine for my use may be 500 kinds of broken for another user. Example, I don't use my camera often, maybe once a month, and my BT has never been turned on for the last 5 devices, for me broken BT audio and camera doesn't make it a non daily driver ROM. Please read and decide for yourself if features included outweigh the broken, or if broken things are required for your comfortable use of your device.
Q. All this crap is fixed and its working great, why is it still a WIP?
A. I consider it a WIP because things aren't 100%. Most things are 90% or less, audio is 90%, BT is 90%, camera is more like 75%, etc. Until most or all of those are 100% I consider this a work in progress. That's just hardware, there's also ROM issues to consider. I'll remove WIP when camera, audio and BT are fully functional, meaning BT audio/data/whatever works, audio streaming works (doesn't have issues via streaming services), has proper audio routing and uses the amplifier, and camera can consistantly take pictures, record videos, and not crap out randomly. Basically all hardware works normally. This isn't a shot at anyone's work, this is how I am about my ROMs, not saying anything about anyone else's work.
Q. Phone crashes everytime I answer a call, end a call, or look at my phone!
A. This happens for some GSM users when the ROM doesn't automatically choose GSM/WCDMA Preferred. This can be set at:
Settings>Wireless & Networks/More>Mobile Networks>Network Mode> Tick GSM/WCDMA Preferred. Toggle airplane mode sometimes helps to get the radio to reset and pick up the changes.
Q. Your files all download as index.php!
A. This happens on certain browsers, namely the stock browser and Chrome. You can either use another browser (naked and dolphin don't do this) or simply rename the file to something useful, like "piostotallyepicawesomesaucedrizzledromthatrocksyo urass.zip"
If you're having issues getting going on CDMA, try this out
http://forum.xda-developers.com/showthread.php?p=45654080
Thanks
Wizard0f0s
The Team over at ChameleonOS
CyanogenMod
chad0989
flyhalf205
drewx2
crpalmer
More I'm sure
Kernel source used: https://github.com/CM10DNA/android_kernel_htc_dlx​
Awesome man. Thanks for all the work you've been doing for us. Love it. I will donate when I get more money on my card next month. Looks like you covered all the main roms that nobody else did . Well other than rootbox...
Sent from my HTC Droid DNA
I remember this ROM. I used it on either my SGS 1 or SGS 2 and it ran very smooth. It was a very early build when I was using it and by the time it was running perfectly I had already upgraded phones. I might check it out for fun
Themes here: http://forums.chameleonos.org/forums/theme-releases.10/
... and of course these, will be partially functional: http://en.miui.com/forum.php?gid=3
This runs great. Thank you for all the hard work you have been doing.
Is there a way to get the stock HTC browser in aosp?
Thanks
PS. The camera doesn't work
I've been playing with this a little bit... I can't believe I haven't heard of it. It's like a perfect blend between MIUI and CM. In-call audio does not work though (on either end) and the camera isn't detected. I think I'm going to try this on my N7.
jamiethemorris said:
I've been playing with this a little bit... I can't believe I haven't heard of it. It's like a perfect blend between MIUI and CM. In-call audio does not work though (on either end) and the camera isn't detected. I think I'm going to try this on my N7.
Click to expand...
Click to collapse
Odd about the in call audio, but since audio and camera were messed up (my own mistake) I'm not to surprised by it. Camera I knew wouldn't work.
This build, for whatever reason, is touchy about the audio that we have, meaning it doesn't like building it. I'll have to figure out something else for that portion.
Edit:
Updating all the ROMs with the updated stuff from chad's awesome work, so PAC, ReVolt and ChaOS are all being updated tonight. < why I don't want to add more ROMs to my build list lol
You've done a lot for us in the past week, give yourself a pat on the back and take a break. Thank you for your contributions.
Can anyone explain the key differences between all three of his roms. Revolt vs pac vs chaos ? Im currently on the cm10 build but i need to update for hopefully better sound camera and speakerphones fixes hopefully
Any screenshots?
Sent from my HTC6435LVW using xda app-developers app
Tsoflyyup said:
Can anyone explain the key differences between all three of his roms. Revolt vs pac vs chaos ? Im currently on the cm10 build but i need to update for hopefully better sound camera and speakerphones fixes hopefully
Any screenshots?
Sent from my HTC6435LVW using xda app-developers app
Click to expand...
Click to collapse
The first post of every ROM will give you screenshots or a link to better description of the features and images. However, I will give you a brief run down and you can let Google do the rest
Chameleon uses more of MIUI as it's base. Which also means any .mtz (themes and misc files for MIUI) can be flashed.
The whole interface is completely different and it is something you simply need to try for yourself to know if you like it.
PAC and Revolt are very similar. Both have features from AOKP ROM Control, CM System control and Paranoid Android Hybrid settings to manipulate app colours and sizes including system features. PAC uses CM as a base while Revolt uses AOKP, both are similar besides some technical and aesthetic differences
Personally I prefer the features of PAC out of all 3, however I think Revolt has been built a little bit more carefully (most likely a lot of debugging) hence why I'm assuming some of the core features have been ripped out.
If you find PAC runs smooth for you I would stick with it. If you don't care about hardware button mapping and a few other small missing features than use Revolt or wait for it to receive some updates.
Tsoflyyup said:
Can anyone explain the key differences between all three of his roms. Revolt vs pac vs chaos ? Im currently on the cm10 build but i need to update for hopefully better sound camera and speakerphones fixes hopefully
Any screenshots?
Sent from my HTC6435LVW using xda app-developers app
Click to expand...
Click to collapse
Go to ChameleonOS.org for pictures.
PAC is Paranoid Android+AOKP+CyanogenMod. ReVolt is also Paranoid Android+AOKP+CyanogenMod, just a different implementation of that concept. I personally like ReVolt better.
Chameleon seems to be CM10 with a MIUI twist (it's highly theme-able/customizable and uses MIUI's theme engine).
EDIT: Uppon2 beat me to it.
Keep in mind that the purest AOSP and least buggy should be CM10.1 so if you want something that still has a majority of the features I would use it. The only thing I wish it had over anything else would be Per app DPI. I remember being able to push the Paranoid Android settings in to CM on the SGS 2 and I would use it just for that feature and I never found a problem. I guess I could screw around with Xposed framework settings to get it to work but meh. I love having 2 Droid DNA's it gives me the freedom to run 2 of my favourite ROMs
Is Camera app is missing on this build ?
or is it me only. I always clean flash.
amit_sen said:
Is Camera app is missing on this build ?
or is it me only. I always clean flash.
Click to expand...
Click to collapse
Didn't work for me either, I tried a third party camera too and it didn't work. Considering it uses the same kernel as CM, it might be something we can fix ourselves by just switching/renaming some modules or modifying the build.prop. I haven't really played with it though.
How do I get the menus in the app store or any app
Sent from my cos_dlx using xda app-developers app
---------- Post added at 09:12 PM ---------- Previous post was at 09:03 PM ----------
Sorry for posting I looked for 2 days and just found it in the settings sorry this would be perfect if it had a camera great rom
Sent from my cos_dlx using xda app-developers app
This ROM is sharp, even stock without a theme. Thanks for this. Gonna try revolt next whenever error 404 is fixed, when I can download it
Roll Tide!!!!! 15 NC's. Nuff Said
Is there gonna be anymore updates to this ROM, cause I love this rom, cause it sharp... Thanx
Roll Tide!!!!! 15 NC's. Nuff Said
Tidefan13 said:
Is there gonna be anymore updates to this ROM, cause I love this rom, cause it sharp... Thanx
Roll Tide!!!!! 15 NC's. Nuff Said
Click to expand...
Click to collapse
Been busy on PAC revolt xenon and carbon, kinda put this on the back burner since its only partially functional and didn't get many downloads, so I didn't think there was much interest in it.
Tapatalked from my HTC DNA - Carbon

[ROM][AOSP][FIREBALL][KK][cfX-Toolchain LLVM Clang 3.5] HTC Inc 4G LTE codefireX

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
CodefireX 4.4.3.2.1.000.000 Open Master​
CodefireX.com[/url]​
This well established Android distribution treats development differently than any other to further our Android platform as a whole. This is the fastest source built ROM you will find on this forum, and also the only one to utilize our unique build system and a custom LLVM 3.5 suite based toolchain globally.
Here is our very well supported Issue Tracker.
We utilize a plethora of unique optimizations in a build system unlike any other:
Utilizing the LLVM CLANG CI globally, working heavily with upstreams with a goal of furthering our entire Android platform.
Consistently updated upstream toolchain module source with our custom backports, fixes, and optimizations applied in a patch at build time.
Fully built utilizing Link Time Optimization and Polly optimizations (another custom ROM first). Feel free to google these a bit.
Much of our source have code fixes, cleanups, and many minor optimizations to set us even further ahead of the community. These are too generous to even speak of here.
Optimizations are toggled on and off based on device for the best experience we can achieve for your device without sacrificing stability
Many Qcom optimizations and AOSP master (upstream) optimizations and fixes using device specifications to determine usage.
Fully built utilizing strict aliasing and isognu++11 mode.
Utilizing all O4 optimizations (Optimization Level 4) including LTO (with binutils plugins), and additionally LLVM Polly.
Of course we also have several neat UI features, including but not limited to:
T-Mobile Theme Engine.
DPI Wizard (no junk like build.prop tweaks).
Quick Settings panel customizations.
Live network stats in your statusbar.
Button backlight customizations.
Hardware button customizations.
Volume button customizations.
Many more being added during the nightly builds.
link removed[/url]
Our thanks go out to all the open source developers who made our work possible.
Below is an ever-incomplete list of some of the 'indirect' contributors to our ROMs:
The Android Open Source Project
LLVM CI
Linux Foundation
Code Aurora Forum
CyanogenMod Inc.
Chainfire
The entire 8960 CM team for making this device relevant still!!
Many more!
Thanks for the new work
Thanks! I'm testing this out. It's quite nice!
The only issue I've run into in a few hours of operation is that I changed the App Switcher hw key to be Open/Close Menu. Then, pressing that on the home screen shows a UI with a couple of options. But, when I press on Settings, it doesn't do anything.
Definitely not a big issue since I always use Nova anyway (and it works fine in Nova), but just wanted to pass that along.
chupajr said:
Thanks! I'm testing this out. It's quite nice!
The only issue I've run into in a few hours of operation is that I changed the App Switcher hw key to be Open/Close Menu. Then, pressing that on the home screen shows a UI with a couple of options. But, when I press on Settings, it doesn't do anything.
Definitely not a big issue since I always use Nova anyway (and it works fine in Nova), but just wanted to pass that along.
Click to expand...
Click to collapse
Testing fixes for that today...
Other notes on today's builds...
Today's builds should have fixes for most of the app related issues that have been reported thus far. Only exception is the FC that was reported with email app. That should be fixed in tomorrows builds.
Sent from my One Xl using Tapatalk
Checked the OP, I was just curious if there was anything not working on the ROM. Of course the work is much appreciated, I was just looking to flash something new for tomorrow. I just won't be around my computer tomorrow if I need any kind of fixes.
Only issue we still have that I know of is swype FC's. However all our servers are down for maintenance this morning. And haven't come back up yet
Sent from my One Xl using Tapatalk
Has anyone who tried this ROM had the issue with the radio? I.E., the radio gets borked and the phone number comes up as all zeroes in the about phone section. That was the one reason I was never able to use a CM10 rom. Every one I tried borked my radio so I've been stuck with the stock ROM. I would love to get on a more traditional Android based ROM, but I can't have the radio problem.
Also, does this require any special version of CWM recovery?
Thanks....
flyinjoe13 said:
Has anyone who tried this ROM had the issue with the radio? I.E., the radio gets borked and the phone number comes up as all zeroes in the about phone section. That was the one reason I was never able to use a CM10 rom. Every one I tried borked my radio so I've been stuck with the stock ROM. I would love to get on a more traditional Android based ROM, but I can't have the radio problem.
Also, does this require any special version of CWM recovery?
Thanks....
Click to expand...
Click to collapse
If you have this issue on cm11 you will have it here as well.
You need a newer cwm or twrp capable of flashing. I would assume there one floating around here somewhere for CM11.
Sent from my One Xl using Tapatalk
Everything seems to be working fine. No problems with the borked radio so far. I do have a couple of questions about some options that used to be available in Android 4.2 and 4.3 based ROMs. I don't know if these were things that the ROM developers added or if they were there by default and Google took them away in android 4.4.
1.) There used to be more options for the status bar. Things like adding am/pm to the clock, changing the battery icon, etc. Were these options that Google took away or custom options that the ROM developers added? If they are custom, are there any plans to add them back?
2.) There used to be the option that if you pulled down the right side of the notification window, it would bring up the Quick Settings tiles by default. Again, was this an option that Google took away or custom options that the ROM developers added? If they are custom, are there any plans to add them back?
3.) Any plans to add an option to wake the screen using the volume buttons to help reduce overusage of the power button? Not a big deal, just curious.
4.) Not a big deal here, but how do you turn off the CRT animation when putting the phone to sleep? I know it's in there somewhere, but I can't remember which setting it is under.
Probably think of more eventually
flyinjoe13 said:
Everything seems to be working fine. No problems with the borked radio so far. I do have a couple of questions about some options that used to be available in Android 4.2 and 4.3 based ROMs. I don't know if these were things that the ROM developers added or if they were there by default and Google took them away in android 4.4.
1.) There used to be more options for the status bar. Things like adding am/pm to the clock, changing the battery icon, etc. Were these options that Google took away or custom options that the ROM developers added? If they are custom, are there any plans to add them back?
2.) There used to be the option that if you pulled down the right side of the notification window, it would bring up the Quick Settings tiles by default. Again, was this an option that Google took away or custom options that the ROM developers added? If they are custom, are there any plans to add them back?
3.) Any plans to add an option to wake the screen using the volume buttons to help reduce overusage of the power button? Not a big deal, just curious.
4.) Not a big deal here, but how do you turn off the CRT animation when putting the phone to sleep? I know it's in there somewhere, but I can't remember which setting it is under.
Probably think of more eventually
Click to expand...
Click to collapse
Thanks for the feedback, glad to hear its running well. I never get much feedback here as there's a pretty limited userbase. Keep in mind CFX was designed to be minimal, as close to aosp as is functional and minimal set of important features.
1. That's all custom add-ons. We may add some eventually..
2. Custom addons as well but this is something I'd like to add as well.
3. Also custom, also something I'd like to get added.
4. There's no option here to kill just that animation. Under developer options in settings(tap build # in about phone 7 times to expose this menu) you can disable all animations.
Sent from my One Xl using Tapatalk
Thanks for the answers. It is a nice smooth ROM and the things I asked about are not really a big deal. It won't keep me from using it because I finally found an AOSP rom that doesn't bork my radio.
Now I just need to figure out how to flash a few modified stock .apks. My updater script doesn't seem to work with Kit Kat or my current version of recovery. I may have to try and remember how to do it manually. It's been so long that i've forgotten the steps.
Just wanted to pop in and say while I would love to give you feedback on the ROM, I have no feedback to give. It has run without a hitch for everything I have used it for. I have no idea what you guys are adding in the latest nightlies, but the version I am using from February 8 is about as stable a ROM as I have ever used. I can't see how any of the newer nightlies could work better. I have no plans to update to a newer version until I see some significant additions, like the ones I mentioned a few posts up.
A couple of side questions. If you were me would you enable ART or stick with Dalvik? Is ART still in the infant stages at this point?
Also, what does the CFXTools.apk do? I always cleanup the ROMs I install by deleting apps, sounds, etc. that I have no use for. I was hesitant to remove the CFXTools.apk because I wasn't sure what it did. In looking inside the .apk, I think it is a weather app because I noticed all the .png files reference weather conditions.
Thanks for the great ROM. Others should really try this one if they want Kit Kat on their Inc4G.
flyinjoe13 said:
Just wanted to pop in and say while I would love to give you feedback on the ROM, I have no feedback to give. It has run without a hitch for everything I have used it for. I have no idea what you guys are adding in the latest nightlies, but the version I am using from February 8 is about as stable a ROM as I have ever used. I can't see how any of the newer nightlies could work better. I have no plans to update to a newer version until I see some significant additions, like the ones I mentioned a few posts up.
A couple of side questions. If you were me would you enable ART or stick with Dalvik? Is ART still in the infant stages at this point?
Also, what does the CFXTools.apk do? I always cleanup the ROMs I install by deleting apps, sounds, etc. that I have no use for. I was hesitant to remove the CFXTools.apk because I wasn't sure what it did. In looking inside the .apk, I think it is a weather app because I noticed all the .png files reference weather conditions.
Thanks for the great ROM. Others should really try this one if they want Kit Kat on their Inc4G.
Click to expand...
Click to collapse
At that point CFXtools was an unimplemented weather app and all of our internal shorcuts and java goodies...its a holding place for all things cfx. So don't delete it
ART here is stable as ive ever seen on 4.4. AOSP has moved to art exclusivley upstream now. I will warn you though, there are some apps that just wont work on ART. Also when you switch first bot will take 10-15 minutes, and then you should reboot 2 more times to let it finish optimizing apps. After that you should be solid. This procedure will need to be done again if you flash a newer nightly.
Oh and FYI...ART is fast!
Sent from my SCH-i705 using Tapatalk
Thanks again for the info. I went ahead and switched to ART. Every app I use seems to work fine. The one thing I noticed was that ART uses more space than Dalvik. I lost about 115mb of space switching to ART. For now I don't think that is a big deal. Apps do seem to launch a bit faster. The one I really noticed it on was PowerAmp. I'll be curious to see what it does for battery life.
How do you get codefire to mount your removable sdcard when you connect the phone to the computer? It only mounts my internal storage. Thx...
flyinjoe13 said:
How do you get codefire to mount your removable sdcard when you connect the phone to the computer? It only mounts my internal storage. Thx...
Click to expand...
Click to collapse
I'll look into that, not many devices have the SD card now. We may be missing something for that.
Sent from my One Xl using Tapatalk
OK, thanks.
Do you have anyone involved with Codefire that has any theming knowledge? I'm trying to change the blue dialer numbers to white and can't seem to figure out how to do that. I changed all the dial_num_*_wht .png files in the dialer.apk and teleservice.apk, but that only changed the numbers for the incall dialpad. It did not change the numbers for the main dialer. I've looked through a bunch of the .apks trying to find reference to the dial_num files but so far have only found them in the dialer and teleservice .apks and that didn't work. Thought maybe you had someone on staff who might know what I am overlooking. Thanks....
GPS and Ext sd card
Anyone having any issues with GPS locking on? Any suggestions?
Also get sd card unavailable, have tried to set path in root browser to /storage but no joy. Any suggestions?
Installed yesterday and is running very smooth.
Thanks
Sad day in the CFX world. CFX as we know it now is dead. Our 2 main leaders have parted ways with a difference of opinion in the future direction of the project. Thanks to all who have participated in this.
Mods its time to close up shop here.
Sent from my SCH-i705 using Tapatalk

[ROM][Nexus 6][5.1.1] TeamEOS - The Revival || Weeklies

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Welcome to EOS! The EOS project originated with the AOSP release of ICS, and was originally founded by Solarnz and co founded by Bigrushdog. Since then, EOS has evolved into a multinational collaborative effort backed by top Android developers. Our objective is to provide a world class AOSP build with unique features and enhancements. EOS is an ongoing development project in which builds are released on a regular basis. Feature request are not guaranteed, but always welcome. Every release should be considered stable and highly functional.
Fling Gesture Interface
Resizable Navigation Bar
LCD Density Picker
Ambient Display
EOS Wallpaper Showcase
Custom Quick Toggles/Tiles
Softkey Long-Press and Double-Tap Actions
Screen Recording
Network Indicator (WiP)
Dynamic Volume Steps
Reported working with MultiROM
CM12 Theme Engine
Volume keys switch depending on rotation. So the volume up key is always either on the top or to the right of volume down. (Toggle-able)
Default Volume Control Stream (Ring or Media)
Advanced power menu with reboot options.
Pre-Optimised OATs for better ART performance
MUCH MORE...
Special thanks to AOSP of course for providing open Android source,
CyanogenMod, and anyone who has contributed to our cause.
Team EOS Nexus 6 Nightly builds
(Builds are not generated if there are no changes to source, saving you from useless updates)
Because this is an AOSP based ROM, Google Apps are not included. Flash the gapps of your choosing after you flash the ROM. If you need help finding a gapps package, ask any of us and we'll be happy to help
These builds are designed to be installed from your favorite recovery. MAKE SURE YOU HAVE THE LATEST 5.1.X COMPATIBLE RECOVERY.
Detailed instructions:
Going to EOS 5.1.X from another ROM:
Boot to recovery
BACKUP YOUR CURRENT SETUP!!!
Make a full wipe (Dalvik, Dalvik Cache, System, Data)
Flash the ROM
Flash optional kernel if you choose to not use provided kernel **We DO NOT support outside kernels**
Flash gapps
Reboot
Updating from an older EOS build to new EOS build:
You can usually skip the full wipe step and just wipe both caches. If ever you encounter an issue make sure you make a full wipe first before reporting it. This is what most call "Dirty Flashing". Normally this doesn't cause problems, but keep in mind a clean flash is always the best way to go.
Contribute
Gerrit Review
GitHub
Kernel source
Google+ Community
XDA:DevDB Information
TeamEOS, ROM for the Nexus 6
Contributors
bigrushdog
Source Code: http://github.com/TeamEOS
ROM OS Version: 5.1.x Lollipop
ROM Kernel: Linux 3.10.x
Version Information
Status: Stable
Created 2015-08-04
Last Updated 2015-08-04
Some device specifics:
bigrushdog's original liblights implementation
call recording (no geographical restrictions, I'm not your nanny ;D )
Xposed-ready
additional qcom optimizations ;D
TODO:
bring up for AOSP Master branch GCC 4.9
Viper Audio
Thanks @remicks for getting us a All-In-One completely noob-proof zip.
Download V4A
Sprint Users! ATTENTION!
I have included Sprint diagnostic apps to allow for prl/profile updates, as well as various other CDMA related configuration. However, these apps do not play 100% nicely with AOSP. Follow these simple steps from @plasmastrike to keep winning.
plasmastrike said:
Right before you run sprintdm "settings-mobile networks-carrier settings" clear the data for the app in either settings-apps-all or titanium backup. It will work after that for a bit. just always clear the data before you update. You will keep your prl update when you do that so sprintdm puts that somewhere else and update device config is not as useful. I think prl is proffered roaming list which is why it is nice.
Sprintdm works with a dirty update and clean install as long as you wipe data in the app prior to running. Thanks for putting it in
Click to expand...
Click to collapse
AOSP Telephony stack flavor
This build fixes the "unknown caller" bug by providing a pure aosp telephony stack. If you don't care about this bug stick with regular builds. If you are currently running the aosp telephony build, I HIGHLY RECOMMEND STICKING WITH IT OR YOU WILL LIKELY NEED TO WIPE. IF YOU COME FROM REGULAR BUILDS TO THE AOSP TELEPHONY BUILD, YOU WILL ALSO NEED TO WIPE!
10/2
Download AOSP Tele build 10/2
Contextual time status bar headers (@omnirom)
Quick charge UI support (look for the "+" in battery icon)
COS Theme chooser (not merged in mainline but in this build because that's life ;p)
Download AOSP Tele build 9/14 r18
9/14
Don't worry about the date. It's up to date
Allow Viper with selinux enforcing
Platform and manifest bump to r18
Major platform eos vendor and build cleanup, many hidden goblins to exorcise
This should fix the rare device lockup
Some users experienced a lockup when updating apps from Play Store. The cause eluded me for some time but I found it. Only have installed a MAXIMUM of 3 themes installed at once
Probably more...
Download AOSP Tele build 9/7
9/7
Fixed duplicate APN Settings on some CDMA variants (nice find from caf @Mazda)
Audio: Update mixer paths from aosp (credit @DirtyUnicorns for a clean aosp tree)
Update sepolicy for pending WiFi calling (credit @DirtyUnicorns for a clean aosp tree)
ActionHandler: tweak key event handling because @remicks reports fail i can't duplicate but this needed to be done anyways because it's stronger code
CM commit to fix a media wakelock
BRD Labs: put ro.nav.debug=true in build.prop to play, comment it out to stop playing
Download AOSP Tele build 8/31
8/31
Fixed APN Settings.
BRD Labs Pre-release: Colorized logo. Go to Fling settings --> Logo color to change color or reset to see the full glory.
Removed V4A sepolicy commit: This was a accident as it hasn't been merged into mainline. V4A is still a wip anyways it looks like. But good news on the visualizer ;D
Download AOSP Tele build 8/30
The 8/30 build is basically the same as the initial AOSP Tele release. I've added modified selinux policy that is supposed to help V4A in some fashion.
Wow I remember you guys!!!!!
Yeah I used your ROMs back in the old days glad to see a return.
Sent from my Nexus 6 using Tapatalk
Hola!
BRD! Its been a while.. Cool to see you here!
It's about time this thread got started. I've been using EOS N6 builds for the last month or so and they are rock solid and everything you would expect from Team EOS & BRD. I've been a big fan of Team EOS since Galaxy Nexus days, and maybe even Epic days hll. Anyway glad to see the support thank you very much.
Sent from my Nexus 6 using Tapatalk
Its always good to see a new ROM on the N6. Downloading now!
Sent from my Nexus 6 using Tapatalk
Awesome a new rom to try.
Sent from my Nexus 6 using XDA Free mobile app
Looks interesting, welcome to Shamu part of Xda.
Hey guys ya it was about time I got a thread going lol. The build is my dd and some of you guys already know it's rock solid. Play with Fling. Turn on pulse. Set a theme. Change some colors. If you guys want something let me know. As long as it's half way sane you'll usually get it. Help me keep the noobz in check. I'll drop test builds from time to time with stuff from BRD Labs ;D I've been around a long time, so I know the game. No drama here, just dope builds. Any creative ideas let me know. I can usually write it. Since TeamEOS is actual real development as in like, we are programmers, we can make things happen. Have fun!
Sent from my Nexus 6 using Tapatalk
Well Ill Be [email protected]$med!! Look Who came to the party ppppoooooopppppin'!! lmao
How ya been bro? Good to see ya. I knew I made it back just in time for you to drop something and on my birthday too. Nice bro! :good: :good:
---------- Post added at 04:33 PM ---------- Previous post was at 04:31 PM ----------
bigrushdog said:
Hey guys ya it was about time I got a thread going lol. The build is my dd and some of you guys already know it's rock solid. Play with Fling. Turn on pulse. Set a theme. Change some colors. If you guys want something let me know. As long as it's half way sane you'll usually get it. Help me keep the noobz in check. I'll drop test builds from time to time with stuff from BRD Labs ;D I've been around a long time, so I know the game. No drama here, just dope builds. Any creative ideas let me know. I can usually write it. Since TeamEOS is actual real development as in like, we are programmers, we can make things happen. Have fun!
Sent from my Nexus 6 using Tapatalk
Click to expand...
Click to collapse
He speaks the truth....... Liquid acer ports and Miui on Evo 4g! classics!!
Sup @riassan! Haha ya man we go back to the REAL old school. Seems I've got a little spunk in me still ;D Damn. If I wasn't hitting the hay I'd cook you a birthday build! Instead, get hooked up, turn on Fling, then turn on Pulse and Lava Lamp and let me know what you think. I gotta turn up the frequency amplitude on these high dpi devices a bit but that should get the birthday party jumping ;D
Sent from my Nexus 6 using Tapatalk
Okay now this I have to try @bigrushdog what's up man long time no see.
bigrushdog said:
Sup @riassan! Haha ya man we go back to the REAL old school. Seems I've got a little spunk in me still ;D Damn. If I wasn't hitting the hay I'd cook you a birthday build! Instead, get hooked up, turn on Fling, then turn on Pulse and Lava Lamp and let me know what you think. I gotta turn up the frequency amplitude on these high dpi devices a bit but that should get the birthday party jumping ;D
Sent from my Nexus 6 using Tapatalk
Click to expand...
Click to collapse
Hahaha!!! yeah bro i remember cooking test builds with you & bcnice420 and Manup456 on a few roms. Use to light it up on these forums. what gapps are you utilizing? I see you still working 3rd to bro? nice
Speaking of our partner in crime^^^^^^^^^
Looks like a build with some cool features. I'll give it a try, welcome to Shamu.
manup456 said:
Okay now this I have to try @bigrushdog what's up man long time no see.
Click to expand...
Click to collapse
Oh snaps sup dude! I've kinda been in hiding just writing code on the downlow. Over the last few months our project has gotten A LOT of traction so I figured time to get these threads open and hit the scene a bit. If you guys like where eos is going email me and you guys can get in our eos-dev Slack chat.
Sent from my One using Tapatalk
riassan said:
Hahaha!!! yeah bro i remember cooking test builds with you & bcnice420 and Manup456 on a few roms. Use to light it up on these forums. what gapps are you utilizing? I see you still working 3rd to bro? nice
Speaking of our partner in crime^^^^^^^^^
Click to expand...
Click to collapse
@BCNice420 was the man! He'd do the weekly miui port on his phone! I'm using the latest minimal banks gapps and it's proper. Not quite sure what you asked but no. I'm the lead guy for Eos. Mostly due to a lack of other hard core java guys. There are guys smarter than me. I just don't let them know it ;p
Sent from my One using Tapatalk
http://forum.xda-developers.com/showthread.php?p=62175427
I posted a little demo video of Fling with Pulse and Lava Lamp enabled. I'm just getting warm ;D
Sent from my One using Tapatalk
. Does this have battery and clock mods.
Also I'm on aicp but am not feeling there new anti-piracy code. I'm not starting a debate but what are your thoughts on this in as far as implementing it?. I've read all the posts and you seen like a great team with plenty of experience.
Sent from my Nexus 6 using Tapatalk

[ROM][T530NU]OZOP★ INITIAL RELEASE - [v1- DEC-20]

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Not sure if there are even many user for this device. I currently build my OZOP Inverted rom for the Tmo S6 and It's pretty quite over there so I can only imagine a less popular device.. Never the less, I am basically just sharing the work in put in for my Wife's school tablet.
Depending on interest levels I may push updates out quicky or I may just take my time. Thank you
Just a brief description of my OZOP project. (This is only an initial release and doesn't have all of these features, yet...
FEATURES INCLUDED IN THIS INITIAL VERSION ARE AS FOLLOWS
*Pre-Rooted - No need to flash any other zips
*Disabled signature verification checks
*Removed Knox
*Deodexed
*Zipaligned
*Build prop tweak for battery and speed
*Init.d support
*Signature verification disabled for everything
*OZOP Control with a bunch of stuff already build in for this v1
*Long Press Back to Kill App(accessibility settings activate)
*Extra toggles no flash(no flashlight yet)
*Potato clock different clock positions colors etc...
*status bar colors and headers
*Status bar icon toggle backgrounds
*3 Minit Battery mod
*Battery bar
*Carrier icons switcher
*Disable system sounds: volume sounds etc..
*Viper4andriod material and lastest with preinstalled driver (not working out of the box, will post a fix when I find one)
*MultiWindow for ALL apps
*5 Way boot menu
*S5 Floating Toolbox
really a bunch more, I have to leave right now and don't have time to finish this post.
​
The OZOP Aroma Installer is meant to be the only one zip you need on your phone hence the name "One Zip One Place"
You will have many Choice with even more options to get your phone personalizes and unique to yourself
The Installer has 4 section and they are ALL optional. You can choose 1 or choose all. Then come back and do it differently the next time
******ROM INSTALLATION******
***Backing up your personal settings and info like call logs and text messages
***Wiping just a simple cache wipe or a full front to back
***ROM Install has 2 options (default install Stock) or get the Fully inverted system (choose Inverted OZOP Control in the "mods" section of Aroma) that includes many theme build your own theme options in Aroma, as well as On-the-Fly color and toggle control with my OZOP Control app.
***Debloating script with over 80 apps you can leave or remove any time giving you the ability to run lean and mean!!
***Kernels Choose from several current kernels
******PRIMARY APPS******
***LAUNCHER options like fully customizable Nova to anywhere like LMT Pie
***CAMERA option from advanced with lots of adjustment to quick and simple
******SYSTEM TOOLS APPS and MODS******
***MUST HAVE APPS like file explorers to Ad Blockers
***MODS for changing your model number or using Theme Dialers - OZOP CONTROL - Extra Fonts
***RESTORE SETTING from a previous backup for easy setup after you flash this ROM
******MISSING LINK THEME BUILDER******
***CUSTOMIZED THEMES with a list of choices and options way to big to list here, but you can hand pick almost every part of you phones look to fully match your mood that day
***TWRP RECOVERY THEMES
***BOOT ANIMATION Change the initial Boot up animation
***SHUTDOWN ANIMATION Change the short animation during Shutdown
***BOOT SPLASH SCREEN CHANGER
,
OZOP CONTROL​
,
,
,
MISSING LINK - QUICK PICK THEMES​BLUE MAGNUM​
VENUM​
MELLOW YELLOW​
SIMPLE DARK​
KILLER BLUE​
ORANGE​
GOOGLE​
MIDNIGHT BLUE​
PURPLE KUSH​
ICS BLUE​
KEYBOARDS​
MAKE SURE YOU UNDERSTAND WHAT YOU ARE DOING AND WHAT DEVICE YOU RUNNING!! THIS ROM IS INTENDED ONLY FOR TAB 4 T530NU!!!!
Follow directions similar to installing other TouchWiz based roms (I haven't install any roms for this device, So I'm not sure what issue may come up. Just do your homework first!!!
IF YOU HAVE INSTALLATION ISSUE I CAN'T AND WON'T RESPOND TO YOU IF YOU DON'T HAVE SOME HELPFUL INFO
*WHAT STEPS DID YOU DO TO INSTALL
*WHAT ROM WERE YOU RUNNING BEFORE
*WHAT OPTIONS DID YOU PICK DURING INSTALL
AND SO ON, SOMETHING HELPFUL, DID YOU TRY AND TROUBLESHOOT
*DID YOU TRY AGAIN?
*DID YOU CONFIRM MD5
*OZOP_TAB4_v1_BOE5
NOTE: Upon initial boot the statusbar clock needs to be "Aligned" via OZOP CONTROL
previous downloads
Changelog
coming soon
Credits and Thanks:
coming soon
Thanks to @DUHAsianSKILLZ for the all the leg work he has put into this device!! Definitely has some very useful info on building for this interesting device (that pulldown shooting to the side was a new one for me)
Tdunham for his awesome guide thread that has been my bible for the last 2 years!!
again more thanks later
XDA:DevDB Information
[ROM][5.0.2][BOE5] OZOP, ROM for the Samsung Galaxy Tab 4
Contributors
stangdriver44
ROM OS Version: 5.0.x Lollipop
ROM Kernel: Linux 3.10.x
ROM Firmware Required: 5.0.2
Version Information
Status: Stable
Created 2015-12-21
Last Updated 2015-12-20
Well, is there and user feedback? I don't mind continuing development on this project, but I have no interest if you have no interest.
Not asking for much, just at least would like to know if install went well and you are up and running?
I can make this project be fully customizable and themable like my other OZOP project if interest is here?
Happy Holidays everyone.
stangdriver44 said:
Well, is there and user feedback? I don't mind continuing development on this project, but I have no interest if you have no interest.
Not asking for much, just at least would like to know if install went well and you are up and running?
I can make this project be fully customizable and themable like my other OZOP project if interest is here?
Happy Holidays everyone.
Click to expand...
Click to collapse
Unfortunately I don't own a Tab 4, but I did figure out the full fix for the Tab 4 layout bug. It was a few incorrect layout_gravity positions in status_bar_expanded xml. Never got the chance to update my thread but yeah, there was an custom apktool someone compiled with the new commits that fix the pull down bug. Let me search around to find it so you can use. Anyway, hopefully some people can provide feedback. Happy holidays
EDIT: here's the apktool that should have fixed pull downs
http://forum.xda-developers.com/showthread.php?p=62801825
Sent from my iPad using Tapatalk
stangdriver44 said:
Well, is there and user feedback? I don't mind continuing development on this project, but I have no interest if you have no interest.
Not asking for much, just at least would like to know if install went well and you are up and running?
I can make this project be fully customizable and themable like my other OZOP project if interest is here?
Happy Holidays everyone.
Click to expand...
Click to collapse
Hi . Why this rom only for T530NU but not for T530 ?
I think making a ROM for this device is awesome. Many thanks and I will give it a go today.
Sent from my SM-T530 using Tapatalk
DUHAsianSKILLZ said:
Unfortunately I don't own a Tab 4, but I did figure out the full fix for the Tab 4 layout bug. It was a few incorrect layout_gravity positions in status_bar_expanded xml. Never got the chance to update my thread but yeah, there was an custom apktool someone compiled with the new commits that fix the pull down bug. Let me search around to find it so you can use. Anyway, hopefully some people can provide feedback. Happy holidays
EDIT: here's the apktool that should have fixed pull downs
http://forum.xda-developers.com/showthread.php?p=62801825
Sent from my iPad using Tapatalk
Click to expand...
Click to collapse
I'm surprised to see you don't own a Tab 4 seeing as you clearly put in A LOT of work to ensure proper compilation of modded apk's!!!
Again thank you for the leg work you put in for this device. I may or may not have mentioned that I don't actually own the device either, my wife does!! She like to be able to tweak the clocks and play with themes as well, so she allows me to work my mods in, slowly....
Your previous fixes for the pulldown worked pretty good overall, I don't mind the only thing that was noticeable (when youe begin to pulldown the pulldown header is visable at the bottom for a quick moment) to me in the brief time playing with the Tab. It didn't hinder the device unusable or really count as a major "bug" in my mind.
I will try the linked apktool and see if that changes anything? Thanks again bud!!
repey6 said:
Hi . Why this rom only for T530NU but not for T530 ?
Click to expand...
Click to collapse
To be honest, I only modded this device for my wife and am unsure of the different devices or even why they have so many devices in the same forum?
All I can be sure of is my girls Tab is the Tab 4 10.1 model number T530NU.
She uses it for school only. Wi-Fi as of now, with no data connection of it's own.
If other ROM's for the T530NU work for other variants, then I'm sure this rom will work as well!!
All I can say is
*MAKE A NANDROID BACKUP FOR THE JUST IN CASE
*MAKE SURE YOU KNOW WHAT YOU'RE FLASHING FOR WHAT DEVICE
*BE PATIENT UPON INITIAL INSTALL (FIRST BOOT CAN TAKE ABOUT 10-15 MINUTES
If you do decide to give it a try, PLEASE post back your results and/or comments so I can update the OP
Flukester69 said:
I think making a ROM for this device is awesome. Many thanks and I will give it a go today.
Sent from my SM-T530 using Tapatalk
Click to expand...
Click to collapse
Thanks bud!!
I am not really pushing here for major development on this device, but if I have something build that is different that a "Stock" version rom I usually will share.
Of course "Interest, appreciation and thread participation", play HUGE parts on update frequency and future development!!!
Did you end up loading up v1?
As of right now there has been almost 60 downloads and I have yet to get a single response about this build? I will build more, including a fully Inverted, customizable version if interest is here...
Actually I have the T530, not the NU one but I would imagine it will still work. I'll give the ROM a go tomorrow and see how I fare and let you know.
Sent from my SM-T530 using Tapatalk
To the OP
Been running your rom on my T530 (not NU) for about 3-4 hours. Funny to be back to a Samsung like ROM having run other ROM's like BlissPop. Your ROM runs very nicely and I don't have any problems. I went for a totally clean wipe, data/cache/dalvik and system. During installation/setup I had Google Maps force close a few times (who cares?). Didn't affect installation of the ROM. ROM took about 10mins or so before I saw anything other than the Samsung logo on first boot which is totally normal. I had some 21 apps update via PlayStore after boot. So far all is good, very nice job on the ROM too.
Such a great tablet and/but ROM community/support for it is pretty low. I'll keep running this as my daily driver and let you know of any issues I run into. Thanks for your support! Any chance of a 5.1.1 update or Marshmellow update?
Flukester69 said:
To the OP
Been running your rom on my T530 (not NU) for about 3-4 hours. Funny to be back to a Samsung like ROM having run other ROM's like BlissPop. Your ROM runs very nicely and I don't have any problems. I went for a totally clean wipe, data/cache/dalvik and system. During installation/setup I had Google Maps force close a few times (who cares?). Didn't affect installation of the ROM. ROM took about 10mins or so before I saw anything other than the Samsung logo on first boot which is totally normal. I had some 21 apps update via PlayStore after boot. So far all is good, very nice job on the ROM too.
Such a great tablet and/but ROM community/support for it is pretty low. I'll keep running this as my daily driver and let you know of any issues I run into. Thanks for your support! Any chance of a 5.1.1 update or Marshmellow update?
Click to expand...
Click to collapse
Thank you very much for the feedback! If there were more users like you this place would be packed with eager excited devs building and updating. But like you said, low community participation and feedback. No real motivation for people to share work that may already been done.
I'm glad things went smooth for you and that this "Initial" release is working and functional! There are a few mods in OZOP Control that aren't working yet, but they will eventually! It was a lot of work removing all the mods from my current version to build this Initial version.
I usually don't even release a mostly "stock" Themed version because I can't stand the white Backgrounds!
You just might have given me the motivation to build v2 the "Inverted" version...
As far as 5.1.1 and further, I will definately update as "Official" samsung versions are released. I usually only build from stock samsung bases to reduce bugs and problems.
Lile I said, this is my girls device and I haven't followed the update progress, what is the most current build? Do you have a download link? Zip or tar? I can extract and Deodex pretty quickly these days! Lol
Thanks again bud. Enjoy and remember this is just an initial release and some things may not work yet.
stangdriver44 said:
Thank you very much for the feedback! If there were more users like you this place would be packed with eager excited devs building and updating. But like you said, low community participation and feedback. No real motivation for people to share work that may already been done.
I'm glad things went smooth for you and that this "Initial" release is working and functional! There are a few mods in OZOP Control that aren't working yet, but they will eventually! It was a lot of work removing all the mods from my current version to build this Initial version.
I usually don't even release a mostly "stock" Themed version because I can't stand the white Backgrounds!
You just might have given me the motivation to build v2 the "Inverted" version...
As far as 5.1.1 and further, I will definately update as "Official" samsung versions are released. I usually only build from stock samsung bases to reduce bugs and problems.
Lile I said, this is my girls device and I haven't followed the update progress, what is the most current build? Do you have a download link? Zip or tar? I can extract and Deodex pretty quickly these days! Lol
Thanks again bud. Enjoy and remember this is just an initial release and some things may not work yet.
Click to expand...
Click to collapse
Ya, no it's solid and definitely a daily driver. Games and everything else seems to work without issue. It's kinda nice having a bit of the old Samsung look and controls. I did find those broken controls you mention. No biggie for me. With Google+ happening more these days people have moved on in that direction. You know, no feedback can also be considered a good sign too. People are first to complain, than lay compliments. While it may seem the community has lost interest (here) ROMs like Tipsy, Tesla, Blisspop do also continue in Google+ world. Way I see it, with that route, just allows them to do things by their own rules. I prefer XDA which allows me an opinion without harsh results. Glad you decided to post here. Anyway, you can count on me to test and hope you do release an inverted version. I plan to run this now as my daily driver. Cheers!
Sent from my SM-T530NU using Tapatalk
I T530 . Run successfully . I am start to check rom . But sorry Titanium and Viper not working . Next i am not checked . Screenshots ..
Anyone else having issues with WiFi?
After flashing this ROM I can't toggle WiFi, any help would be highly appreciated.
taxi333 said:
After flashing this ROM I can't toggle WiFi, any help would be highly appreciated.
Click to expand...
Click to collapse
Yes i can't too
repey6 said:
Yes i can't too
Click to expand...
Click to collapse
I find solution for this . Need replace pronto wlan.ko on the way system/lib/modules/pronto/ . I made flashable zip from T530_....OD8 rom .
I just found this a minute ago, im about to flash now I will let you know how it goes. Glad to see you are working on this tablet. Im a big fan of your work on the S5. I used the missing link all the time when I had that phone.
I couldnt get wifi to work. I am using a T530NU.
There is a newer firmware for this device Just letting you know in case you decide to update it. http://forum.xda-developers.com/tab-4/general/links-galaxy-tab-4-official-lollipop-5-t3102844
Putting this on my kids tablet hoping it will extend his battery life and heat problems hope to see more work on this tablet. Sucks big time that samsung just left this great device to die.
Hi, thanx for this work, it looks like it needed a lot of time for such customization. .. it s a bit sad to see how few people are reporting here their feedbacks. ..
Please, if possible, can it be written in the first page what is sure it doesn't work and eventual known bugs?
I found some days ago an sm-t530 like new for 110$ and I m trying to set it in the best way, but choices are much less than what is available for my s4... I think in this weekend I ll give a try
The wifi doesnt work so I never tried anything else I just went back to CM. Hopefully the developer decides to work on this more because he does some great work but for now you should check out another rom.

Categories

Resources