Skip to main content

Android KitKat OS

       
         It may have had enough false starts to get disqualified, and it’s certainly been leaking all over the place, but Google’s Android update, version 4.4, or KitKat, has finally found its way out of the biscuit tin. We’re going to take a good look at KitKat right here and let you know what it brings to the table.

https://play.google.com/store/apps/details?id=com.sujaytech






Features:


  •   The status bar is now translucent and, along with the navigation buttons, it will melt away to give your content maximum screen space. Swipe the edge of the screen to bring it all back. 
  •   The new phone app bumps your favorite contacts to the top, and features new search capabilities so you can find a person or business and call directly from the app. You’ll also find smarter caller ID that can potentially identify callers, even if they aren’t a listed contact. 
  •   Lastly, KitKat has a deeper integration of Google services depending on how you use a phone. Google Now will be accessible via one swipe from the home screen. After saying "OK, Google," you can use voice search, send a text, get directions, or play a song. Also coming are new card types that give you more information specific to your interests.
  •  Hangouts is now your one-stop message shop, like a combination of FaceTime and iMessage, and Emoji characters are available in the Google Keyboard. You have the option of setting a different default texting app if you don’t like Hangouts.
  •  Optimized memory means faster multitasking and a more responsive touchscreen. This should make general skipping around on your phone faster than ever. 
  • Chromecast support allows you to project movies and music to your big screen and when your device is locked it will now display full screen related album and movie art. 

Productivity boost:


KitKat brings a few extras for working stiffs, so, before you take a break, consider these shiny new abilities:
  •  You can print files directly from your Android device to supported printers.
  • The new Quickoffice app lets you create and edit documents, including spreadsheets and presentations.
  • You can open and save files from Quickoffice on Google Drive, other cloud services, or locally on the device. There’s also a recently used files menu that makes it super easy to share whatever you were working on by email, or just find it again in a hurry.

Manufacturers exciting new APIs

  •      HDR+ photography support.
  •   Infrared blasting for remote control functionality (for device with IR blasters).
  •  Android Device Manager can find and wipe your device.
  •  Close captioning and subtitles now supported.
  •  Bluetooth MAP support for Bluetooth-enabled cars.
  •  Open architecture for NFC to encourage more mobile payments.
  •  A built-in pedometer feature.

Enhanced performance

A theme that runs through a lot of KitKat’s refinements is the idea of making existing things run better. This is one way to tackle the thorny old issue of fragmentation. KitKat and Google’s delectable menu of apps have been optimized to run on older and entry-level smartphones and tablets, so 512MB of RAM is not necessarily going to be a barrier anymore.
There’s also been a lot of thought about another major bugbear – the inevitability of battery drain. Google has worked out a number of ways of extending your battery life. The location tracking supports a battery-saving mode, so you can trade accuracy for extra stamina. There’s new low-power audio playback (only on the Nexus 5 for now) which allows up to 60 hours of music. This should come to other devices with dedicated audio processors. Other general improvements in efficiency should help you squeeze a little more out of that battery.

Supporting Devices:


KitKat will debut on October 31, on the Nexus 5, which is on sale at the Google Play store for $349
Nexus 4, 7, 10 tablets get update soon.
Samsung Galaxy s4 will get update in the coming weeks.
HTC has confirmed that all versions of the HTC ONE will get the update within 90 days.

Comments

Popular posts from this blog

Google re-branded the support Android libraries to AndroidX

It is important to note, you cannot mix AppCompat and Jetpack in the same project. You must convert everything to use Jetpack if you want to upgrade. The support library artifacts are being deprecated and all future development is going into AndroidX , so there's no avoiding this migration. Alan Viverette sums this up nicely: “There won’t be a 29.0.0, so Android Q APIs will only be in AndroidX” The stable release of 28.0.0 will be the final feature release packaged as android.support . All subsequent feature releases will only be made available as androidx-packaged artifacts. Below tips will give you a clearer transition path. The current version of AppCompat (v28.x) is exactly the same as AndroidX (v1.x). In fact, the AppCompat libraries are machine generated by changing maven coordinates and package names of the AndroidX codebase. For example, android.support.v7.app.AppCompatActivity is now androidx.appcompat.app.AppCompatActivity For a complete listi...

Android Beginners Guide

                                                                                                               Android Operation System: Android is an operating system based on Linux with a Java programming interface. It provides tools, e.g. a compiler, debugger and a device emulator as well as its own Java Virtual machine (Dalvik Virtual Machine - DVM). Android is created by the Open Handset Alliance which is lead by Google. Android uses a special virtual machine, e.g. the Dalvik Virtual Machine. Dalvik uses special bytecode. Therefore you cannot run standard Java bytecode on Android. Android provides a tool "dx" which allows to convert Java Class files into "dex" (Dalvik Executable) files. Android ...

Kotlin and Android

Kotlin is now an official language on Android. It's expressive, concise, and powerful. Best of all, it's interoperable with our existing Android languages and runtime. To use Kotlin in Android Studio prior to version 3.0 you have to manually install the Kotlin plugin. To do so, start Android Studio and open Plugins from the Configure menu . In the opened dialog, search for Kotlin , select the corresponding plugin and press Install . Kotlin for Android Development: Kotlin is a great fit for developing Android applications, bringing all of the advantages of a modern language to the Android platform without introducing any new restrictions. Compatibility: Kotlin is fully compatible with JDK 6, ensuring that Kotlin applications can run on older Android devices with no issues. The Kotlin tooling is fully supported in Android Studio and compatible with the Android build system. Performance: A Kotlin application runs as fast as an equivalent Java one, thanks to ver...