Skip to content

Commit

Permalink
Update Intellij Plugin to target Android Studio Bumblebee and newer
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielJette committed Jan 31, 2023
1 parent 4c00079 commit 839dab0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
9 changes: 7 additions & 2 deletions Plugins/IntelliJ/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,13 @@ intellij {
version.set(properties("InstrumentCodeVersion"))
type.set(properties("platformType"))

plugins.add("Kotlin")
plugins.add("gradle")
plugins.set(
listOf(
"Kotlin",
"gradle",
"android"
)
)
}

tasks {
Expand Down
2 changes: 1 addition & 1 deletion Plugins/IntelliJ/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

pluginGroup = dev.testify
version = 2.0.0-rc01
pluginSinceBuild = 193
pluginSinceBuild = 211
pluginUntilBuild = 223.*

platformType = IC
Expand Down
6 changes: 3 additions & 3 deletions Plugins/IntelliJ/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ Copyright (c) 2023 ndtp
]]>
</change-notes>

<!-- Indicate this plugin can be loaded in all IntelliJ Platform-based products. -->
<depends>com.intellij.modules.platform</depends>
<depends>com.intellij.modules.androidstudio</depends>
<depends>org.jetbrains.kotlin</depends>
<depends>org.jetbrains.android</depends>

<!-- Declare the default resource location for localizing menu strings -->
<resource-bundle>messages.Bundle</resource-bundle>
<resource-bundle>messages.MyBundle</resource-bundle>

<extensions defaultExtensionNs="com.intellij">
<codeInsight.lineMarkerProvider
Expand Down

0 comments on commit 839dab0

Please sign in to comment.