Skip to content

Commit 38c032a

Browse files
authored
Merge pull request #242 from ndtp/241-meerkat
241: Support Android Studio Meerkat | 2024.3.1 Canary 7 | 243.+
2 parents 14eb44c + b0474a3 commit 38c032a

File tree

4 files changed

+23
-8
lines changed

4 files changed

+23
-8
lines changed

Plugins/IntelliJ/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Android Testify - IntelliJ Platform Plugin - Change Log
22

3+
## [2.5.0]
4+
5+
- Added support for Support Android Studio Meerkat | 2024.3.1 Canary 7 | 243.+
6+
37
## [2.4.0]
48

59
- Added support for Android Studio Ladybug | 2024.2.1 Canary 9 | 242.+

Plugins/IntelliJ/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies {
2020
}
2121

2222
java {
23-
sourceCompatibility = JavaVersion.VERSION_11
23+
sourceCompatibility = JavaVersion.VERSION_17
2424
}
2525

2626
// See https://github.com/JetBrains/gradle-intellij-plugin/
@@ -52,14 +52,14 @@ tasks {
5252

5353
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
5454
kotlinOptions {
55-
jvmTarget = "11"
55+
jvmTarget = "17"
5656
}
5757
}
5858

5959
tasks {
6060
runIde {
6161
// Absolute path to installed target 3.5 Android Studio to use as
6262
// IDE Development Instance (the "Contents" directory is macOS specific):
63-
ideDir.set(file("/Applications/Android Studio.app/Contents"))
63+
ideDir.set(file("/Applications/Android Studio Preview.app/Contents"))
6464
}
6565
}

Plugins/IntelliJ/gradle.properties

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@
22
# -> https://www.jetbrains.org/intellij/sdk/docs/reference_guide/intellij_artifacts.html
33

44
pluginGroup = dev.testify
5-
version = 2.4.0
5+
version = 2.5.0
66

77
# https://plugins.jetbrains.com/docs/intellij/android-studio.html#android-studio-releases-listing
8-
pluginSinceBuild = 222
9-
pluginUntilBuild = 242.*
8+
pluginSinceBuild = 223
9+
pluginUntilBuild = 243.*
1010

1111
platformType = IC
1212
platformDownloadSources = true
1313

1414
# Set the explicit compiler version
1515
InstrumentCodeVersion=223.7571.182
1616

17-
kotlin.code.style=official
17+
kotlin.code.style=official
18+
kotlin.stdlib.default.dependency = false

Plugins/IntelliJ/src/main/resources/META-INF/plugin.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ Copyright (c) 2023-2024 ndtp
2828
<change-notes>
2929
<![CDATA[
3030
31+
<h3>2.5.0</h3>
32+
<ul>
33+
<li>Added support for Support Android Studio Meerkat | 2024.3.1 Canary 7 | 243.+</li>
34+
</ul>
35+
3136
<h3>2.4.0</h3>
3237
<ul>
3338
<li>Added support for Android Studio Ladybug | 2024.2.1 Canary 9 | 242.+</li>
@@ -81,10 +86,11 @@ Copyright (c) 2023-2024 ndtp
8186
]]>
8287
</change-notes>
8388

84-
<depends>com.intellij.modules.androidstudio</depends>
89+
<!-- <depends>com.intellij.modules.androidstudio</depends>-->
8590
<depends>com.intellij.modules.java</depends>
8691
<depends>org.jetbrains.kotlin</depends>
8792
<depends>org.jetbrains.android</depends>
93+
<!-- <depends>org.jetbrains.plugins</depends>-->
8894

8995
<!-- Declare the default resource location for localizing menu strings -->
9096
<resource-bundle>messages.MyBundle</resource-bundle>
@@ -100,6 +106,10 @@ Copyright (c) 2023-2024 ndtp
100106

101107
</extensions>
102108

109+
<extensions defaultExtensionNs="org.jetbrains.kotlin">
110+
<supportsKotlinPluginMode supportsK1="true" supportsK2="false" />
111+
</extensions>
112+
103113
<actions>
104114
<action
105115
id="dev.testify.actions.utility.GoToSourceAction"

0 commit comments

Comments
 (0)