diff --git a/topics/products/androidstudio/android_studio.md b/topics/products/androidstudio/android_studio.md index be5ce8934..4f54ee4f5 100644 --- a/topics/products/androidstudio/android_studio.md +++ b/topics/products/androidstudio/android_studio.md @@ -1,7 +1,9 @@ -[//]: # (title: Android Studio Plugin Development) +# Android Studio Plugin Development +Building plugins for Android Studio IDE. + Android Studio plugins extend or add functionality to the [Android Studio IDE](https://developer.android.com/studio). Plugins can be written in [Kotlin](using_kotlin.md) or Java, or a mix of both, and are created using IntelliJ IDEA and the [IntelliJ Platform](intellij_platform.md). It's also helpful to be familiar with [Java Swing](https://docs.oracle.com/javase/8/javase-clienttechnologies.htm). @@ -131,7 +133,7 @@ Otherwise, if only general IntelliJ Platform features (APIs) are used, then a de ### Android Specific Extension Points -See _Android Plugin_ section in [](extension_point_list.md). +See [](extension_point_list.md#android-plugin). ## Additional Articles and Resources @@ -151,7 +153,7 @@ When learning new development configurations, it is helpful to have some represe ### How To Sync Gradle Project -Use `com.android.tools.idea.gradle.project.sync.GradleSyncInvoker.requestProjectSync()` for programmatic synchronization. +Use [`GradleSyncInvoker.requestProjectSync()`](%gh-ij-android%project-system-gradle/src/com/android/tools/idea/gradle/project/sync/GradleSyncInvoker.kt) for programmatic synchronization. ## See Also diff --git a/topics/products/androidstudio/android_studio_releases_list.md b/topics/products/androidstudio/android_studio_releases_list.md index 3263a87e7..0ac7f5da2 100644 --- a/topics/products/androidstudio/android_studio_releases_list.md +++ b/topics/products/androidstudio/android_studio_releases_list.md @@ -1,14 +1,16 @@ -[//]: # (title: Android Studio Releases List) +# Android Studio Releases List +List of all Android Studio IDE releases and their matching IntelliJ IDEA version. + This page contains a complete list of the Android Studio releases with the relevant IntelliJ IDEA release version specified. Android Studio releases are grouped by major versions. -Each entry specifies the exact release channel (like canary, beta, rc, release, patch), release date, and exact IDE version with build number for the actual IDE and the IntelliJ IDEA platform that Android Studio is based on. +Each entry specifies the exact release channel (like Canary, Beta, RC, Release, Patch), release date, and exact IDE version with build number for the actual IDE and the IntelliJ IDEA platform that Android Studio is based on. This data is updated daily and also available in [JSON](https://jb.gg/android-studio-releases-list.json) and [XML](https://jb.gg/android-studio-releases-list.xml) formats. -To get an insight on how to develop a plugin for Android Studio, visit the [Android Studio Plugin Development](android_studio.md) section. +To get an insight on how to develop a plugin for Android Studio, see [](android_studio.md).