如何为Android应用程序设置IntelliJ IDEA ?


我花了一天的时间试图把所有的碎片放在一起,在数百个网站和教程,但他们都跳过了琐碎的步骤。

下面是完整的指南:

下载及安装Java JDK(选择Java平台) 下载并安装Android SDK(推荐使用Installer) android SD安装完成后,在android SDK工具下打开SDK管理器(有时需要在管理员权限下打开) 选择所有内容并标记“接受全部”并安装。 下载并安装IntelliJ IDEA(社区版免费) 等待所有的下载和安装完成。

新项目:

Run IntelliJ Create a new project (there's a tutorial here) Enter the name, choose Android type. There's a step missing in the tutorial, when you are asked to choose the JDK (before choosing the SDK) you need to choose the Java JDK you've installed earlier. Should be under C:\Program Files\Java\jdk{version} Choose a New platform ( if there's not one selected ) , the SDK platform is the android platform at C:\Program Files\Android\android-sdk-windows. Choose the android version. Now you can write your program.

编译:

在运行按钮附近,您需要选择下拉列表,选择Edit Configurations 在“首选Android虚拟设备”中选择…按钮 点击创建,给它一个名字,按确定。 双击新设备以选择它。 按下OK。 您已经准备好运行程序了。


“新计划”的第五步显然已经发生了轻微的变化。

它说android sdk然后有下拉菜单说没有,不再有一个“新”按钮。

5)。 A.点击…没有的右边。 B.)点击新窗口对话框左上方的+。(添加新 Sdk) c)从下拉菜单中点击android SDK d)选择android SDK的主目录 E.)选择您想使用的Java SDK版本 f)选择android构建目标。 g。)点击确定!


一旦我遵循了所有这些步骤,我开始在所有android类调用中收到错误消息,比如:

我旋转包括android.jar在sdk平台设置:


以防有人迷路。无论是新的应用程序或现有的去文件->项目结构。然后在左边窗格的项目设置中选择Java SDK的项目,并选择Android SDK的模块。


我有一些问题,这没有解决在OSX上设置这个环境。这与我维护的解决方案有关,对一些谷歌api有额外的依赖。仅仅下载并安装第一个响应中列出的项目是不够的。

你必须下载这些。

Run Terminal Navigate to the android/sdk directory Type "android" You will get a gui. Check the "Tools" directory and the latest Android API (at this time, it's 4.3 (API 18)). Click "Install xx packages" and go watch an episode of Breaking Bad or something. It'll take a while. Go back to IntelliJ and open the "Project Structure..." dialog (Cmd+;). In the left panel of the dialog, under "Project Settings," select Project. In the right panel, under "Project SDK," click "New..." > Android SDK and navigate to your android/sdk directory. Choose this and you will be presented with a dialog with which you can add the "Google APIs" build target. This is what I needed. You may need to do this more than once if you have multiple version targets. Now, under the left pane "Modules," with your project selected in the center pane, select the appropriate module under the "Dependencies" tab in the right pane.


你只需要从http://developer.android.com/sdk/installing/studio.html#Updating安装Android开发工具包

下载和安装Java JDK(选择Java平台)

在windows系统设置https://confluence.atlassian.com/display/DOC/Setting+the+JAVA_HOME+Variable+in+Windows中定义环境变量

瞧!你是Donezo !


另一种识别正确SDK的方法是安装Android Studio,创建一个新项目,进入项目结构,SDK位置,找到SDK安装的位置。

我发现在mac上使用默认的安装过程,SDK主文件夹在/Users/'yourUser'/Library/Android/ SDK文件夹中。确保您已启用Mac以查看Library文件夹。