38

Running into some problems today with the new Android Studio update.

http://tools.android.com/recent/androidstudio020released

In this blog post, it says

To install 0.2, you'll need to install a new Studio bundle. In other words, we are not offering a patch update from 0.1.9 to 0.2.

If I go (on OSX) Android Studio -> About Android Studio, I see the following. I've look around, and can't seem to determine any other version numbers. Where do I find this?

enter image description here

Bradley Bossard
  • 2,439
  • 2
  • 23
  • 30
  • There's now a patch from 0.1.9 to 0.2.0 so you can just run "check update" and it'll find and apply it. – Xavier Ducrohet Jul 12 '13 at 21:53
  • Thanks, but this isn't exactly what I was looking for. What I'm interested in is when I'm running Android Studio, where do I find the current version number, i.e. 0.1.9 or 0.2.0? The screenshot I posted from the about menu says AI-130.737825, but nothing about a version number. – Bradley Bossard Jul 12 '13 at 22:02
  • 1
    i know, I was mostly commenting on the update thing. The only way I know to get the version number is to close the windows of all the project. Then the welcome panel shows up and the version is shown at the bottom. I'll file a bug. – Xavier Ducrohet Jul 12 '13 at 22:41
  • Cool thanks. Maybe you have insight on my real question though, posted here [link]http://stackoverflow.com/questions/17625345/no-android-facet-found-issues-compiling-with-android-studio-0-2 No being able to determine the version number left me confused whether I really need to download and reinstall, or if I was already updated (which the auto-update would leave me to believe). – Bradley Bossard Jul 12 '13 at 23:14

8 Answers8

43

If in About Android Studio you only see the build number, go to Preferences. From the menu: File > Settings ... (Settings dialog appears) ... Appearance & Behaviour > System Settings > Updates. Here, both the current version and the build number are shown.

In this example, the current version is v1.2:

Settings - Android Studio Version

CJBS
  • 15,147
  • 6
  • 86
  • 135
Xavi Gil
  • 11,460
  • 4
  • 56
  • 71
15

For Windows Users Help > About

For Mac Users Click on Android Studio > About Android Studio


EXTRA INFORMATION! (Optional Read)

Update: Now it shows the version of Android like this:

Android Studio Dolphin | 2021.3.1 Patch which roughly evaluates to

{"Android Studio $version_name | $year.number.number" Patch}

Sagar Balyan
  • 620
  • 6
  • 20
9

If you have mac you can just click on AndroidStudio -> About Android Studio to see the version number

enter image description here

The first line shows the version number

enter image description here

Vihaan Verma
  • 12,815
  • 19
  • 97
  • 126
4

If using Windows, while in Android Studio, go to:

File > Settings > Appearance & Behavior > Updates

And look at "Current Version", where it will tell you which Android Studio version you are using.

Works for Android Studio 2.3

Jeff Padgett
  • 2,380
  • 22
  • 34
4

To Check Your Current Version Of androidstudio.

Go To->build.grade(Module); here dependencies & calss path here it shows your current your build tool and gradle version exactly this is your currently using android version.

here you can see your android studio version.

    classpath "com.android.tools.build:gradle:**4.1.1"**

4.1.1 is currently using android version.

Suresh B B
  • 1,387
  • 11
  • 13
  • Only this answer helped and I found my version in December 2022 as 7.0.1. In Help --> About , it is just mentioned as Android Studio Dolphin, no version number – Kartik Podugu Dec 23 '22 at 07:15
3

While entering into the android studio project,On top of the Window you can see the version number.

For an Example it should be like :

ListViewMaster: [C:\users\ListViewMaster]: - Android Studio 1.0.1

Stephen
  • 9,899
  • 16
  • 90
  • 137
2

The build number indicates what version you have installed.

0.2.0 is 130.737825; 0.1.9 was 130.729444+

http://tools.android.com/recent

http://developer.android.com/sdk/installing/studio.html

alikonda
  • 1,186
  • 9
  • 7
  • I don't understand how one would figure that out. If I go to either of the two links you provided and search the page for "130.737825", I produces 0 hits, so I don't quite see how one would correlate 0.2.0 to 130.737825. – Bradley Bossard Jul 17 '13 at 18:51
  • Take a look at the names of the packages available for download. (Expand 'Download for Other Platforms' for easy viewing.) – alikonda Jul 17 '13 at 21:39
1

On unix systems, this should work in a shell:

android-studio -version

Verified as functional on Ubuntu 20.04

conmak
  • 1,200
  • 10
  • 13