Gradle Plugin Release 3.0.0
Merge "Prepare Android Studio 3.0 in AOSP" into studio-master-dev
tree: 7e79b33d32e2da2373eaccd462e5b3f8f00d69b6
  1. .idea/
  2. bin/
  3. build/
  4. colorSchemes/
  5. community-main-tests/
  6. community-resources/
  7. community-tests/
  8. images/
  9. java/
  10. jps/
  11. json/
  12. lib/
  13. license/
  14. native/
  15. platform/
  16. plugins/
  17. python/
  18. RegExpSupport/
  19. resources/
  20. resources-en/
  21. spellchecker/
  22. tools/
  23. uast/
  24. update-server-mock/
  25. updater/
  26. xml/
  27. .gitattributes
  28. .gitignore
  29. BUILD.bazel
  30. build.txt
  31. build.xml
  32. build_studio.sh
  33. community-main.iml
  34. CONTRIBUTING.md
  35. getPlugins.bat
  36. getPlugins.sh
  37. LICENSE.txt
  38. NOTICE.txt
  39. PREUPLOAD.cfg
  40. README.md
  41. RELEASE.md
  42. test-log.xml
  43. test_studio.py
README.md

IntelliJ IDEA Community Edition

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 15.0. 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.
  • 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 -Xbootclasspath/p:../out/classes/production/boot -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.