Skip to content

Commit b5276d4

Browse files
authored
Bump IntelliJ platform version to 2025.1.1 (#46)
* Bump IntelliJ platform version to 2025.1.1 * Fix missing test dependencies
1 parent 68ac394 commit b5276d4

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ This plugin for Android Studio and IntelliJ helps you work with the
3030

3131
The plugin is supported on:
3232

33-
- IntelliJ 2024.3.5 and above
34-
- Android Studio 2024.3.2 Patch 1 (Meerkat) and above
33+
- IntelliJ 2025.1.1 and above
34+
- Android Studio Narwhal 2025.1.1 and above
3535

3636
## Installation instructions
3737

gradle/libs.versions.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@ google-testparameterinjector = "1.11"
1111
cdimascio-dotenv = "6.4.1"
1212
atlassian-commonmark = "0.17.0"
1313

14-
# Corresponds to AS Meerkat Feature Drop 2024.3.2 Patch 1 -> https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html
14+
# XXX Do update the supported versions in the README.md, and in docs/source/testing/android-studio-plugin.mdx file when updating these values!
15+
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html for insight into build numbers and IntelliJ Platform versions.
16+
sinceBuild = "251"
17+
18+
# Corresponds to AS Narwhal 2025.1.1 -> https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html
1519
# and https://developer.android.com/studio/archive (more up to date)
1620
# See also https://plugins.jetbrains.com/docs/intellij/android-studio.html
17-
intellij-platform-version = "2024.3.5"
21+
intellij-platform-version = "2025.1.1"
1822

1923
[plugins]
2024
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin-plugin" }

plugin/build.gradle.kts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ dependencies {
168168
// e.g. for the Android plugin: https://plugins.jetbrains.com/plugin/22989-android/versions/stable
169169
plugins(
170170
listOf(
171-
"org.jetbrains.android:243.26053.27",
171+
"org.jetbrains.android:251.25410.131",
172172
)
173173
)
174174

@@ -177,6 +177,7 @@ dependencies {
177177
// Uncomment the version if needing a specific one, e.g. if a regression is introduced in the latest version - see https://github.com/JetBrains/intellij-plugin-verifier/releases
178178
pluginVerifier(/*version = "1.385"*/)
179179

180+
testFramework(TestFrameworkType.Platform)
180181
testFramework(TestFrameworkType.Plugin.Java)
181182

182183
zipSigner()
@@ -215,9 +216,7 @@ intellijPlatform {
215216
name.set("Apollo GraphQL")
216217
version.set(project.version.toString())
217218
ideaVersion {
218-
// XXX Do update the supported versions in the README.md, and in docs/source/testing/android-studio-plugin.mdx file when updating these values!
219-
// See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html for insight into build numbers and IntelliJ Platform versions.
220-
sinceBuild = "243"
219+
sinceBuild = libs.versions.sinceBuild.get()
221220

222221
// No untilBuild specified, the plugin wants to be compatible with all future versions
223222
untilBuild = provider { null }

0 commit comments

Comments
 (0)