What programming languages ​​can I use to create applications for Android Mobile OS?

What programming languages ​​can I use to create applications for Android Mobile OS? I know its Objective-C for iphone, but not sure what about Android I think its java?

+4
source share
5 answers

Yes, it is Java, but it runs on a Dalvik virtual machine .

And you can use C with Android NDK to create your own applications if you want.

+4
source

You need Windows, Mac or Linux.

You can start here: http://developer.android.com/sdk/index.html

Install the SDK and IDE (I use eclipse), and then run the following tutorial. After about 2 hours, you may have your first Android application (of course, if you know java):

http://developer.android.com/resources/tutorials/hello-world.html

+4
source

You need to program Java. Then the Java code will be compiled into a special format that runs on the Dalvik VM, which is installed on all Android devices. This means that at the moment you can only use Java and other languages ​​that run on the Java virtual machine.

If you are not familiar with Java, there is always the opportunity to create a web application and display only that website in a small Java application for users. There are some options for accessing some phone features from your web application via JavaScript.

+1
source

Google has released the “SIMPLE” Android programming language more at http://code.google.com/p/simple/

+1
source

Android fully supports Java. Almost 99% of their applications (including games) are written in Java. If you want to create applications for Android, run here (this will teach you the basics of Java, if you have no experience. Giving you a link, you can follow the tutorials).

0
source

Source: https://habr.com/ru/post/1302984/


All Articles