Posts

Showing posts with the label CODE

Dalvik Virtual machine VS Java Virtual Machine:

Dalvik Virtual machine :          (DVM) is Register Architecture, designed to run on low memory, uses its own byte code and runs .Dex file (Dalvik Executable File) Java Virtual Machine :         (JVM) is Stack Architecture, uses java byte code and runs .class file having JIT. Java  source code is compiled by the Java compiler into .class files. Then the dx (dexer) tool, part of the Android SDK processes the .class files into a proprietary file format called DEX that contains Dalvik bytecode. Difference between .class and .dex file format           ● In DEX all the classes of the application are packed into one file.           ● All th e classes in the same DEX file share field, method, etc if they are same.           ● Classes from the same DEX file are l...

A Brief History of Android Versions

Image
          Android has gone through quite a number of updates since its first release. Below are the release date of each version with codename             One of the most widely used mobile OS these days is ANDROID. Android is a software bunch comprising not only operating system but also middleware and key applications. Android Inc was founded in Palo Alto of California, U.S. by Andy Rubin, Rich miner, Nick sears and Chris White in 2003. Later Android Inc. was acquired by Google in 2005.        After original release there have been number of updates in the original version of Android.   Code Name Release Date Android Version 9 February 2009 1.1 Cupcake 30 April 2009 1.5 Donut 15 September 2009 1.6 Eclair 26 October 2009 2.1 Froyo 20 May 2010 2.2 Gingerbread 6 December 2010 2.3 Honeycomb 22 Fe...