Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hello world with android but without eclipse

Tags:

android

I am pretty sure that I once stumbled upon a link that showed how to create a hello world application without eclipse, but I can't find that link anymore. It certainly needs not be a hello world application, but it would be nice if someone could point me to somewhere that explains the steps needed to create an application without eclipse.

like image 735
René Nyffenegger Avatar asked Mar 10 '11 20:03

René Nyffenegger


People also ask

Which is better Android Studio or Eclipse?

Android Studio is faster than Eclipse. There is no need to add a plugin to Android Studio but if we use Eclipse then we do need to. Eclipse needs many resources to start but Android Studio does not. Android Studio is based on IntelliJ's Idea Java IDE and Eclipse uses the ADT Plugin to develop Android applications.

Is there Eclipse for Android?

Steps to Install Eclipse IDEDownload JDK (Java Development Kit) and Android Studio as well. In File Explorer, go to Downloads – “Eclipse IDE” will be downloaded. Open Eclipse IDE, choose Eclipse IDE for Java Developers, and Install. Eclipse IDE environment is ready, now it's time to set up Android Development.

Can I use Android Studio as Java IDE?

The short answer to this is : Yes you can. Look over this slackoverflow post: Can Android Studio be used to run standard Java projects? Android Studio IDE is based on IntelliJ, but with some specific plugins added for Android Development.

Can I start Android development without knowing Java?

To develop an android app you have to write code in Java or Kotlin. You have to learn any of these languages to communicate with android studio and make an app. Without Java or Kotlin, it's not possible to make an android app. Both languages are Object-Oriented Programming Language.


2 Answers

Well, the best place to find would be the android docs.

Check this link out: http://developer.android.com/guide/developing/index.html

It has, for instance in the category "Managing Projects" and "Building and Running" links for

  • "From Eclipse with ADT"

but also for

  • "From the Command Line"

There is enough information about how to develop without Eclipse :D

like image 193
Nanne Avatar answered Oct 06 '22 00:10

Nanne


Google's Hello World tutorial has a section on managing projects from the command line.

like image 34
dbyrne Avatar answered Oct 05 '22 22:10

dbyrne