Android Studio

Integrated development environment for the Android platform From Wikipedia, the free encyclopedia

Android Studio is the official[5] IDE for writing Android software. It bundles together a source code editor based on IntelliJ IDEA, the Gradle build tool, and the Android SDK.[6] It is available for download on Windows, macOS and Linux based operating systems.[7] Each component provided with Android Studio is licensed under its own terms. Aside from the SDK, most of the components are distributed under the Apache License.

Stable release
2025.3.2[1] Edit this on Wikidata / 3 March 2026; 8 days ago (3 March 2026)
Preview release
2025.1.1 Canary 8[2] Edit this on Wikidata / 28 April 2025; 2 May 2025; 8 May 2025; 20 May 2025; 29 May 2025; 6 June 2025; 20 June 2025; 26 June 2025; 2 July 2025; 14 July 2025; 24 July 2025; 1 August 2025; 29 August 2025; 16 October 2025; 8 January 2026; 12 February 2026; Error: first parameter cannot be parsed as a date or time. (28 April 2025; 2 May 2025; 8 May 2025; 20 May 2025; 29 May 2025; 6 June 2025; 20 June 2025; 26 June 2025; 2 July 2025; 14 July 2025; 24 July 2025; 1 August 2025; 29 August 2025; 16 October 2025; 8 January 2026; 12 February 2026)
Written inJava, Kotlin and C++
Quick facts Developer, Stable release ...
Android Studio
DeveloperGoogle
Stable release
2025.3.2[1] Edit this on Wikidata / 3 March 2026; 8 days ago (3 March 2026)
Preview release
2025.1.1 Canary 8[2] Edit this on Wikidata / 28 April 2025; 2 May 2025; 8 May 2025; 20 May 2025; 29 May 2025; 6 June 2025; 20 June 2025; 26 June 2025; 2 July 2025; 14 July 2025; 24 July 2025; 1 August 2025; 29 August 2025; 16 October 2025; 8 January 2026; 12 February 2026; Error: first parameter cannot be parsed as a date or time. (28 April 2025; 2 May 2025; 8 May 2025; 20 May 2025; 29 May 2025; 6 June 2025; 20 June 2025; 26 June 2025; 2 July 2025; 14 July 2025; 24 July 2025; 1 August 2025; 29 August 2025; 16 October 2025; 8 January 2026; 12 February 2026)
Written inJava, Kotlin and C++
Operating systemWindows, macOS, Linux, ChromeOS[3]
Size8.1 to 9.5 GB[3]
TypeIntegrated development environment (IDE)
LicenseAndroid SDK license[4]
Apache License (editor, Gradle)
Websitedeveloper.android.com/studio
Repositoryandroid.googlesource.com/platform/tools/, cs.android.com/android-studio
Close

Android Studio was announced on May 16, 2013, at the Google I/O conference. It was in early access preview stage starting from version 0.1 in May 2013, then entered beta stage starting from version 0.8 which was released in June 2014.[8] The first stable build was released in December 2014, starting from version 1.0.[9] At the end of 2015, Google dropped support for Eclipse ADT, making Android Studio the only officially supported IDE for Android development.[10]

On May 7, 2019, Kotlin replaced Java as Google's preferred language for Android app development.[11] Java is still supported, as is C++.[12]

Features

Plugin Ecosystem and Extensibility

Android Studio's architecture is designed to be highly extensible, allowing developers to tailor the IDE to their specific needs through a robust plugin ecosystem. Plugins can introduce new functionalities, integrate external tools, and enhance existing features, thereby streamlining the development process.

Built-in Plugins: Essential tools integrated into Android Studio, such as Android Support, Kotlin Support, and Git Integration.

Third-Party Plugins: Popular community-driven extensions like Firebase Assistant, ButterKnife Zelezny, and SQLDelight, which expand functionality.

Developing Custom Plugins: The process of building new plugins using the IntelliJ Platform SDK and Gradle plugins for automation and customization.

Managing Plugins: Best practices for installing, updating, and optimizing plugins to maintain performance and compatibility.

Built-in Plugins

Out of the box, Android Studio includes a set of built-in plugins that support essential development tasks:

  • Android Support: Provides tools and integrations specific to Android development, including project templates, wizards, and the Android SDK manager.[13]
  • Kotlin Support: Since Kotlin became Google's preferred language for Android app development in 2019, Android Studio has integrated comprehensive support for Kotlin, facilitating seamless development experiences.[14]
  • Git Integration: Offers version control support, enabling developers to manage code repositories directly within the IDE.[13]

Third-Party Plugins

Beyond the built-in options, developers can access a vast array of third-party plugins to extend Android Studio's capabilities:

  • Firebase Assistant: Simplifies the process of adding Firebase services to an app, such as analytics, authentication, and cloud messaging.[13]
  • ButterKnife Zelezny: Automates the generation of view bindings for Android's ButterKnife library, reducing boilerplate code.
  • SQLDelight: Assists in generating type-safe APIs from SQL statements, streamlining database interactions within Android applications.

These plugins, among many others, are available through the JetBrains Plugin Repository and can be easily installed via Android Studio's plugin manager.[13]

Developing Custom Plugins

For specialized requirements, developers have the option to create custom plugins:

  • IntelliJ Platform SDK: Android Studio is built upon JetBrains' IntelliJ IDEA, and developers can utilize the IntelliJ Platform SDK to develop plugins that extend the IDE's functionality.[15]
  • Gradle Plugins: Custom Gradle plugins can automate build processes, manage dependencies, and perform other build-related tasks, enhancing the efficiency of project workflows.

Comprehensive documentation and community resources are available to guide developers through the process of plugin development, ensuring that even complex extensions can be implemented effectively.[15]

Managing Plugins

Effective management of plugins is crucial to maintain an optimal development environment:

  • Installation and updates: Plugins can be installed and updated directly through Android Studio's plugin manager, accessible via the settings menu.[13]
  • Compatibility considerations: It's important to ensure that plugins are compatible with the specific version of Android Studio in use to prevent potential conflicts or issues.[13]
  • Performance impact: While plugins add valuable features, an excessive number can lead to increased resource consumption. Regularly reviewing and disabling unnecessary plugins can help maintain IDE performance.

By leveraging the plugin ecosystem, developers can customize Android Studio to align with their workflows, integrate preferred tools, and enhance productivity, making it a versatile environment for Android application development.

The following features are provided in the current stable version:[16][17]

  • Gradle-based build support
  • Android-specific refactoring and quick fixes
  • Lint tools to catch performance, usability, version compatibility and other problems
  • ProGuard integration and app-signing capabilities
  • Template-based wizards to create common Android designs and components
  • A rich layout editor that allows users to drag-and-drop UI components, option to preview layouts on multiple screen configurations[18]
  • Support for building Android Wear apps
  • Built-in support for Google Cloud Platform, that enables integration with Firebase Cloud Messaging (Earlier 'Google Cloud Messaging') and Google App Engine[19]
  • Android Virtual Device (Emulator) to run and debug apps in the Android studio.

Android Studio supports all the same programming languages of IntelliJ (and CLion) e.g. Java, C++, and with more extensions, such as Go;[20] and Android Studio 3.0 or later supports Kotlin,[21] and "Android Studio includes support for using a number of Java 11+ APIs without requiring a minimum API level for your app".[22] External projects backport some Java 9 features.[23] While IntelliJ states that Android Studio supports all released Java versions, and Java 12, it's not clear to what level Android Studio supports Java versions up to Java 12 (the documentation mentions partial Java 8 support). At the very least some new language features up to Java 12 are also usable in Android.[24]

Once an app has been compiled with Android Studio, it can be published on the Google Play Store. The application has to be in line with the Google Play Store developer content policy.

Version history

The following is a list of Android Studio's major releases:[25]

More information Version, IntelliJ IDEA version ...
Version IntelliJ IDEA version Release date
1.0December 2014
1.1February 2015
1.2April 2015
1.3July 2015
1.4September 2015
1.5November 2015
2.0April 2016
2.1April 2016
2.2September 2016
2.3March 2017
3.0October 2017
3.1March 2018
3.2September 2018
3.3January 2019
3.4April 2019[26]
3.5August 2019
3.6February 2020
4.0May 2020
4.1Oct 2020[27]
4.2May 2021[28]
Arctic Fox2020.3July 2021[29]
Bumblebee2021.1January 2022[30]
Chipmunk2021.2May 2022[31]
Dolphin2021.3September 2022[32]
Electric Eel2022.1January 2023[33]
Flamingo2022.2April 2023[34]
Giraffe2022.3July 2023[35]
Hedgehog2023.1November 2023[36]
Iguana2023.2February 2024[37]
Jellyfish2023.3April 2024[38]
Koala2024.1June 2024[39]
Ladybug 2024.2 October 2024[40]
Meerkat 2024.3 March 2025[41]
Narwhal 2025.1 June 2025[42]
Otter 2025.2 October 2025[43]
Panda 2025.3 February 2026[44]
Close

System requirements

More information Microsoft Windows, macOS ...
Minimum system requirements for Android Studio[45]
Microsoft Windows macOS Linux
Operating System Version Microsoft Windows 10 (64-bit) macOS 12 Any 64-bit Linux distribution that supports GNOME, KDE Plasma, or Unity; GNU C Library (glibc) 2.31 or later
RAM 8 GB (Studio only)
16 GB (Studio and Emulator)
Free disk space 8 GB (Studio only)
16 GB (Studio and Emulator)
Screen resolution 1280 x 800
CPU Virtualization support Required (Intel VT-x or AMD-V, enabled in BIOS).
CPU microarchitecture after 2017.
Intel 8th Gen Core i5 / AMD Zen Ryzen (e.g., Intel i5-8xxx, Ryzen 1xxx).
Apple M1 chip, or 6th generation Intel Core or newer.
e.g. 2016 MacBook Pro with i7-4770HQ processor or higher.
Mac with Intel chips support will be phasing out
Virtualization support Required (Intel VT-x or AMD-V, enabled in BIOS).
CPU microarchitecture after 2017.
Intel 8th Gen Core i5 / AMD Zen Ryzen (e.g., Intel i5-8xxx, Ryzen 1xxx).
GPU None (Studio only)
GPU with 4GB VRAM such as Nvidia Geforce 10 series or newer, or AMD Radeon RX 5000 or newer with the latest drivers (Studio and Emulator)
Integrated Graphics None (Studio only)
GPU with 4GB VRAM such as Nvidia Geforce 10 series or newer, or AMD Radeon RX 5000 or newer with the latest drivers (Studio and Emulator)
Close
More information Microsoft Windows, macOS ...
Recommended system requirements for Android Studio[45]
Microsoft Windows macOS Linux
Operating System Version Latest 64-bit version of Windows Latest 64-bit version of macOS Latest 64-bit version of Linux
RAM 32 GB RAM or more
Free disk space SSD with 32 GB or more
Screen resolution 1920 x 1080
CPU Virtualization support Required (Intel VT-x or AMD-V, enabled in BIOS).
Latest CPU microarchitecture. Look for CPUs from the Intel Core i5, i7, or i9 series and or the suffixes H/HK/HX for laptop or suffixes S/F/K for desktop, or the AMD Ryzen 5, 6, 7, or 9 series.
Intel® Core™ N-Series and U-Series processors are not recommended due to insufficient performance.
Latest Apple Silicon Virtualization support Required (Intel VT-x or AMD-V, enabled in BIOS).
Latest CPU microarchitecture. Look for CPUs from the Intel Core i5, i7, or i9 series and or the suffixes H/HK/HX for laptop or suffixes S/F/K for desktop, or the AMD Ryzen 5, 6, 7, or 9 series.
Intel® Core™ N-Series and U-Series processors are not recommended due to insufficient performance.
GPU GPU with 8GB VRAM such as Nvidia Geforce 20 series or newer, or AMD Radeon RX6600 or newer with the latest drivers. Integrated Graphics GPU with 8GB VRAM such as Nvidia Geforce 20 series or newer, or AMD Radeon RX6600 or newer with the latest drivers.
Close

These features includes requirements for IDE + Android SDK + Android Emulator.[45]

  • Windows: x86_64 CPU architecture; 2nd generation Intel Core or newer, or AMD CPU with support for a Windows Hypervisor;
  • Mac OS: ARM-based chips, or 2nd generation Intel Core or newer with support for Hypervisor.Framework;
  • Linux: x86_64 CPU architecture; 2nd generation Intel Core or newer, or AMD processor with support for AMD Virtualization (AMD-V) and SSSE3;
  • Windows: CPU with UG (unrestricted guest) support;
  • Intel Hardware Accelerated Execution Manager (HAXM) 6.2.1 or later (HAXM 7.2.0 or later recommended).

The use of hardware acceleration has additional requirements on Windows and Linux:

  • Intel processor on Windows or Linux: Intel processor with support for Intel VT-x, Intel EM64T (Intel 64), and Execute Disable (XD) Bit functionality;
  • AMD processor on Linux: AMD processor with support for AMD Virtualization (AMD-V) and Supplemental Streaming SIMD Extensions 3 (SSSE3);
  • AMD processor on Windows: Android Studio 3.2 or higher and Windows 10 April 2018 release or higher for Windows Hypervisor Platform (WHPX) functionality.

For an attached webcam to work with Android 8.1 (API level 27) and higher system images, it must have the capability to capture 720p frames.[46]

See also

References

Related Articles

Wikiwand AI