Langsung ke konten utama

[Review] Cyanogen ICS on wait 2 months

Cyanogen is the worlds most well known Android developer of custom Android ROMs. Now that the Ice Cream Sandwich source code is available, Steve “Cyanogen” says in his Twitter feed, he will make a 4.0 ROM. To see his tweet, just click the source button at the bottom.

The new ROM will be called CyanogenMod 9. However, many of you may be confused on what happen to 8. While we all know 7 is the Gingerbread model, the name



“CyanogenMod 8″ is reserved for a Honeycomb version.
The good news for those of you that wanted to try

Honeycomb, the ICS code has the Honeycomb code within it. Nevertheless, the demand for a 4.0 ROM is higher, so it could be a while before you see a full-blown CyanogenMod 8. The team will still work on the latest Gingerbread build, CyanogenMod 7.2, will continue concurrently while

CyanogenMod 9 is being developed.
As far as the Android 4.0 ROM goes, Steve said the ROM should be out in two months. While his team seems to meet deadlines perfectly, you never know if a project will take much more time then suspected. But, if that seems like a long time, remember that most manufacturer updates will take at least that long – if you’re lucky. In the meantime, quicker (and less stable) ICS builds should begin popping up for current phones any day now.
[Read More]

Komentar

Postingan populer dari blog ini

WhatsAppSniffer Hack WhatsApp

Who uses WhatsApp Messenger? From The look of the  Play Store listing , a  damn lot  of people. Considering it's so popular, it's probably a pretty secure app, right? Think again. WhatsApp actually sends all chats in  plaintext , so anyone on the same Wi-Fi network can easily pull your entire conversation - including pictures and videos - straight out of the air. And now, that process is even easier than ever thanks to a new app called  WhatsAppSniffer . It's basically just a packet sniffer, but it makes the process of pulling WhatsApp chats out of the sky stupid-easy, and that's never a good thing. You might as well just shout your private conversations across the room.

[Concept] Model View Present (MVP) Pattern for Architecture Android~ DroidUMM

 Model-View-Presenter (MVP) is an architecture pattern for the presentation layer of software applications. The pattern was originally developed at Taligent in 1990s and first was implemented in C++ and Java. In MVP, the View and the Model are neatly separated and the View exposes a contract through which the Presenter access the portion of View that is dependent on the rest of the system.  [Next Article Implement MVP on Android] The Model is the component which preserves data, state and business logic; it just exposes a group of service interfaces to Presenter and hides the internal details. The View is the user interface, it receives user’s action and contract to Presenter to achieve user’s need, and then the View responds user by result information. The Presenter sits in between the View and the Model; it receives input from the View and passes commands down to the Model. It then gets result and updates the View trough the contracted View interface.