English 中文(简体)
甲型非Eclipse指挥线项目是可行的?
原标题:Android non-Eclipse command line projects viable?

我要说的是,我正在办公室做一个安乐施项目,它不仅仅是一个霍比项目,它实际上打算释放和散发。 是否有任何东西妨碍使用安的指挥线工具来管理该项目,而只是忽视了埃奇略。 他们在此描述了如何管理指挥线上的项目:

rel=“nofollow”http://developer.android.com/guide/developing/projects-cmdline.html

然而,如果这些工具是生产质量还是没有质量,我就感到不快。 基本上,我恐怕,如果我使用指挥线工具,那么在一线倒塌的地方,不得不做“X”的任务,只是发现“X”的任务基本上是不可能的,或者在没有Eclipse的情况下必然难以完成。 是否有这样的任务X? 或者,对于商业项目来说,安底线项目工具是否实际可行?

我已经知道,你打赢了一台GUI设计器,但我不说,在Eclipse对GUI设计器的怀疑。 我不断发现,我迫切要求“Run项目”在实际装置上 de倒我方的“全球倡议”(拖延审查会受到破坏)。

As for debugging, for the limited amount of debugging I do command line jdb is adequate, even if not always completely pleasant. And I bet I could set up a GUI debugger if I really had to.

The question is, are there any problems that would be considered effectively insurmountable without Eclipse? Or are there just minor annoyances that can be easily worked around (like the two I just mentioned above).

我认识到,四舍五入就意味着要讨论问题,这个问题似乎似乎只是这样,但我认为,这并不必要。 如果说不使用Eclipse是真的可怕的,有人会提到,我给他们绿灯。 如果有点,那么也许有人可以向我指出使用指挥线工具而不是Eclipse的现有大型项目的例子,而我却说绿色检查标志。

最佳回答

Many people use Ant to build Android projects from the command line. Actually, in my opinion this is the preferred way, since it allows you to check everything that you need into a source control system and get predictable and repeatable builds every time.

So, the answer is "Yes"! Take a look at Using Ant to Automate Building Android article for more in-depth explanation how you manage this. Of course, using Eclipse is very convenient, but you don t really need it to build Android applications.

问题回答

I use Maven for all of mine. See android-maven-plugin.





相关问题
In Eclipse, why doesn t "Show In" appear for non-Java files?

If I have a *java file open, I can right click on the source, scroll down to "Show In (Alt-Shift-W)", and select Navigator. If I have an *xml, *jsp, or pretty much anything besides a Java source ...

Eclipse: Hover broken in debug perspective

Since upgrading Eclipse (Galileo build 20090920-1017), hover in debug no longer displays a variable s value. Instead, hover behaves as if I were in normal Java perspective: alt text http://...

Eclipse smart quotes - like in Textmate

Happy Friday — Does anyone know if eclipse has the notion of smart quotes like Textmate. The way it works is to select some words and quote them by simply hitting the " key? I m a newbie here so be ...

Indentation guide for the eclipse editor

Is there a setting or plugin for eclipse that can show indentation guides in the editor? Something like the Codekana plugin for visual studio (not so fancy is also OK). Important that it works with ...

Adding jar from Eclipse plugin runtime tab

I want to add .jar files for plugin from the Runtime tab of manifest file. When I use the Add... button, I can see only sub-directories of the plugin project. So if I want to add same .jar file to ...

How to copy multiple projects into single folder in eclipse

I have two projects, Project1 and Project2. Now i want to copy this projects into eclipse workspace but i want these projects to be in a single folder like below. Eclipse Workspace -> Project -> ...

Java: Finding out what is using all the memory

I have a java application that runs out of memory, but I have no idea which code is allocating the memory. Is there an application with which I can check this? I use Eclipse.

热门标签