blob: 6828aaae29e504fd9209e92391ee2ddcd3b83759 [file] [log] [blame]
/*
* Copyright 2019 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.build.studio
/**
* Studio version information used for setting up the correct version of Android Studio.
*
* Note: Android Gradle Plugin version is needed as part of configuring the build, so it is
* defined separately in build_dependencies.gradle.
*
* Once you have a chosen version of AGP to upgrade to, go to
* https://developer.android.com/studio/archive and find the matching version of Studio.
* For example, if you are upgrading to AGP 3.6 alpha 05, look for the Studio 3.6 canary 5 build.
* (alpha maps to canary, beta to beta, rc to rc, and no suffix for stable in both cases)
*
* The download url should contain: ...ide-zips/3.6.0.5/android-studio-ide-191.5721125-linux...
* From this, the first number (3.6.0.5) is [studioVersion], the first number in the filename (192)
* is the [ideaMajorVersion] and the last number (5721125) is the [studioBuildNumber].
*/
object StudioVersions {
val studioVersion = "4.2.0.15"
val ideaMajorVersion = "202"
val studioBuildNumber = "6922807"
}