Android Studio 3.2.1
Merge "Make project build in open source" into studio-master-dev
tree: 5e9fe1fc3ce214484f9e5b2fc99952ac94afab2a
  1. .idea/
  2. aether-dependency-resolver/
  3. bin/
  4. build/
  5. colorSchemes/
  6. community-guitests/
  7. community-main-tests/
  8. community-resources/
  9. edu/
  10. images/
  11. java/
  12. jetCheck/
  13. jps/
  14. json/
  15. lib/
  16. license/
  17. native/
  18. platform/
  19. plugins/
  20. python/
  21. RegExpSupport/
  22. resources/
  23. resources-en/
  24. spellchecker/
  25. studio/
  26. tools/
  27. uast/
  28. update-server-mock/
  29. updater/
  30. xml/
  31. .gitattributes
  32. .gitignore
  33. BUILD.bazel
  34. build.txt
  35. build.xml
  36. build_studio.sh
  37. CONTRIBUTING.md
  38. getPlugins.bat
  39. getPlugins.sh
  40. intellij.idea.community.main.iml
  41. LICENSE.txt
  42. NOTICE.txt
  43. OWNERS
  44. PREUPLOAD.cfg
  45. README.md
  46. RELEASE.md
  47. test-log.xml
  48. test_studio.py
README.md

IntelliJ IDEA Community Edition official JetBrains project

Building and Running from the IDE

To develop IntelliJ IDEA, you can use either IntelliJ IDEA Community Edition or IntelliJ IDEA Ultimate not older than 2017.2.5. To build and run the code:

  • Run getPlugins.sh / getPlugins.bat from the project root directory to check out additional modules.
  • If this git repository is not on ‘master’ branch you need to checkout the same branches/tags in android and android/tools-base git repositories.
  • Open the project.
  • If an error notification about a missing required plugin (e.g. Kotlin) is shown enable or install that plugin.
  • Configure a JSDK named “IDEA jdk” (case sensitive), pointing to an installation of JDK 1.6.
  • Unless you're running on a Mac with an Apple JDK, add <JDK_HOME>/lib/tools.jar to the set of “IDEA jdk” jars.
  • Configure a JSDK named “1.8”, pointing to an installation of JDK 1.8.
  • Add <JDK_18_HOME>/lib/tools.jar to the set of “1.8” jars.
  • If ‘Maven Integration’ plugin is disabled add path variable ‘MAVEN_REPOSITORY’ pointing to ‘<USER_HOME>/.m2/repository’ directory (File | Settings | Appearance & Behavior | Path Variables).
  • Use Build | Build Project to build the code.

To run the IDE from the built code

  • use the provided shared run configuration “IDEA”.

To run tests apply these setting to the default JUnit run configuration type:

  • Working dir: <IDEA_HOME>\bin
  • VM parameters: -ea -Xmx128M -Djava.system.class.loader=com.intellij.util.lang.UrlClassLoader -Didea.config.path=../test-config -Didea.system.path=../test-system

You can find other useful information at http://www.jetbrains.org. Contribute section of that site describes how you can contribute to IntelliJ IDEA.