英文:
How do I work out what version of IntelliJ a particular version of Android Studio is based on?
问题
如何确定特定版本的Android Studio基于哪个版本的IntelliJ?我查看了“关于Android Studio”窗口,但我只看到以下信息:
英文:
How do I work out what version of IntelliJ a particular version of Android Studio is based on? I had a look in the "About Android Studio" window and all I see is the following information:
答案1
得分: 4
Android Studio构建的前三组数字是基于IntelliJ Platform构建的版本:213.7172.25。前两位数字表示年份:2021。第三位数字表示发布版本号:3。因此,它基于IntelliJ Platform的2021.3版本。
另请参阅:https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html#build-number-format
英文:
The first three groups of numbers of the Android Studio build are the version of the IntelliJ Platform build that the Android Studio build is based on: 213.7172.25. The first two digits indicate the year: 2021. The third digit indicates the release number: 3. So it is based on the 2021.3 version of the IntelliJ Platform.
See also: https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html#build-number-format
答案2
得分: 2
Android Studio的版本名称(例如“2021.3.1”)编码了它基于的IntelliJ版本,如下所示:
<IntelliJ版本年份>.<IntelliJ主要版本号>.<Studio主要版本号>
如Android开发者博客文章中的“新版本方案 - Android Studio”部分所述:
- 前两个数字组表示特定Android Studio版本基于的最终IntelliJ平台版本(较早的Canary版本可能仍基于较早的版本)。对于此版本,这是2020.3。
- 第三个数字组表示Studio的主要版本号,从1开始,每次主要发布增加1。
因此,例如,“2021.3.1”编码了这个版本的Android Studio基于“2021.3”版本的IntelliJ平台。
英文:
The Android Studio version name (e.g. "2021.3.1") encodes what version of IntelliJ it was based on, as follows:
<Year of IntelliJ Version>.<IntelliJ major version>.<Studio major version>
As described in the "New versioning scheme - Android Studio" section of the Announcing Android Studio Arctic Fox (2020.3.1) & Android Gradle plugin 7.0 Android Developers Blog post:
> * The first two number groups represent the version of the final IntellIj platform that a particular Android Studio release is based on (earlier canaries may still be on the earlier version). For this release, this is 2020.3.
> * The third number group represents the Studio major version, starting at 1 and incrementing by one for every major release.
So "2021.3.1", for example, encodes that this version of Android Studio is based on the "2021.3" version of the IntelliJ platform.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论