Tutorials Navigation

Tutorials :: New :: Popular :: Top Rated

Tutorials: 18,326 Categories: 12

Total Tutorial Views: 41,382,371

How to develop Android Application

Tutorial Name: How to develop Android Application  

Category: Mobile Devices

Submitted By: Coves

Date Added:

Comments: 1

Views: 1,701

Related Forum: Mobile Devices

Share:

Android Applications are primarily written in Java programming language. The Java source files are converted to java class files by the java compiler.

The Android SDK Contains a tool called dx which converts Java files to .dex (Dalvik Executable) file. All files are compressed in one .dex redundant information in class file are optimized in .dex file.

dex file are smaller in size than class files. The dex file resources of an Android project are packed in .apk (Android Package) file. aapt (Android Asset Packaging Tool) performs this packaging.

Via the adb tool the necessary data in .apk file is run and deployed to an Android device.

The ADT (Android Development Tools) performs these steps transparently to the user. If you use the ADT tooling you press a button and a whole Android Application is created and deployed.

Ratings

Current rating: 2.63 by 8 users
Please take one second and rate this tutorial...

Not a Chance
1
2
3
4
5
6
7
8
9
10
Absolutely

Comments

"How to develop Android Application" :: Login/Create an Account :: 1 comment

If you would like to post a comment please signin to your account or register for an account.

MickersPosted:

Thanks for this, a video tut would also be good.