File tree Expand file tree Collapse file tree 4 files changed +23
-8
lines changed
src/main/resources/META-INF Expand file tree Collapse file tree 4 files changed +23
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Android Testify - IntelliJ Platform Plugin - Change Log
2
2
3
+ ## [ 2.5.0]
4
+
5
+ - Added support for Support Android Studio Meerkat | 2024.3.1 Canary 7 | 243.+
6
+
3
7
## [ 2.4.0]
4
8
5
9
- Added support for Android Studio Ladybug | 2024.2.1 Canary 9 | 242.+
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ dependencies {
20
20
}
21
21
22
22
java {
23
- sourceCompatibility = JavaVersion .VERSION_11
23
+ sourceCompatibility = JavaVersion .VERSION_17
24
24
}
25
25
26
26
// See https://github.com/JetBrains/gradle-intellij-plugin/
@@ -52,14 +52,14 @@ tasks {
52
52
53
53
tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > {
54
54
kotlinOptions {
55
- jvmTarget = " 11 "
55
+ jvmTarget = " 17 "
56
56
}
57
57
}
58
58
59
59
tasks {
60
60
runIde {
61
61
// Absolute path to installed target 3.5 Android Studio to use as
62
62
// 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" ))
64
64
}
65
65
}
Original file line number Diff line number Diff line change 2
2
# -> https://www.jetbrains.org/intellij/sdk/docs/reference_guide/intellij_artifacts.html
3
3
4
4
pluginGroup = dev.testify
5
- version = 2.4 .0
5
+ version = 2.5 .0
6
6
7
7
# 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 .*
10
10
11
11
platformType = IC
12
12
platformDownloadSources = true
13
13
14
14
# Set the explicit compiler version
15
15
InstrumentCodeVersion =223.7571.182
16
16
17
- kotlin.code.style =official
17
+ kotlin.code.style =official
18
+ kotlin.stdlib.default.dependency = false
Original file line number Diff line number Diff line change @@ -28,6 +28,11 @@ Copyright (c) 2023-2024 ndtp
28
28
<change-notes >
29
29
<![CDATA[
30
30
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
+
31
36
<h3>2.4.0</h3>
32
37
<ul>
33
38
<li>Added support for Android Studio Ladybug | 2024.2.1 Canary 9 | 242.+</li>
@@ -81,10 +86,11 @@ Copyright (c) 2023-2024 ndtp
81
86
]]>
82
87
</change-notes >
83
88
84
- <depends >com.intellij.modules.androidstudio</depends >
89
+ <!-- <depends>com.intellij.modules.androidstudio</depends> -- >
85
90
<depends >com.intellij.modules.java</depends >
86
91
<depends >org.jetbrains.kotlin</depends >
87
92
<depends >org.jetbrains.android</depends >
93
+ <!-- <depends>org.jetbrains.plugins</depends>-->
88
94
89
95
<!-- Declare the default resource location for localizing menu strings -->
90
96
<resource-bundle >messages.MyBundle</resource-bundle >
@@ -100,6 +106,10 @@ Copyright (c) 2023-2024 ndtp
100
106
101
107
</extensions >
102
108
109
+ <extensions defaultExtensionNs =" org.jetbrains.kotlin" >
110
+ <supportsKotlinPluginMode supportsK1 =" true" supportsK2 =" false" />
111
+ </extensions >
112
+
103
113
<actions >
104
114
<action
105
115
id =" dev.testify.actions.utility.GoToSourceAction"
You can’t perform that action at this time.
0 commit comments