Home
IDEs Support (IntelliJ Platform) | JetBrains
Contact Support
Community
English (United States)
简体中文
Sign in
evg64
Total activity
23
Last activity
January 22, 2025 08:47
Member since
May 27, 2021 15:23
Following
0 users
Followed by
0 users
Votes
0
Subscriptions
7
Activity overview
Posts (6)
Comments (10)
Sort by recent activity
Recent activity
Votes
Edited
January 19, 2025 10:53
I attached plugin verifier reports to github repository (folder "pluginVerifier" in repository root).There is strange output in dependencies.txt (https://github.com/evg64/HelloWorldPluginFromTempla...
Community
IntelliJ IDEA Open API and Plugin Development
Plugin verifier false positive compatibility error report
0 votes
Edited
February 11, 2023 12:14
childrenOfType() is declared as follows: inline fun <reified T : PsiElement> PsiElement.childrenOfType(): List<T> = PsiTreeUtil.getChildrenOfTypeAsList(this, T::class.java) Taking into account,...
Community
IntelliJ IDEA Open API and Plugin Development
The same intellij API is not found during compilation, but can be invoked at runtime
0 votes
Edited
February 11, 2023 11:49
This method is com.intellij.psi.util.childrenOfType. I see it was added in 053a408acdc91f5a4566839c594756f5c834b044. And only 221+ releases contain this commit. However, ./gradlew runPluginVerifier...
Community
IntelliJ IDEA Open API and Plugin Development
The same intellij API is not found during compilation, but can be invoked at runtime
0 votes
Edited
January 26, 2022 10:55
We develop plugin for internal use. We would like to understand how much it is used. So that we implemented sending analytical events. However, we don`t need those analytical events when developing...
Community
IntelliJ IDEA Open API and Plugin Development
Distinguish between debug and release build in runtime?
0 votes
Created
December 14, 2021 15:18
1) Why do you use custom JBTextField for rendering instead of default Table renderer? There is no particular strong reason to use custom implementation, but this is my first experience with swing t...
Community
IntelliJ IDEA Open API and Plugin Development
Using EditTextField as editor with autocomplete for table cell
0 votes
Created
June 03, 2021 08:49
Adding only layoutlib works as well. The less verbose, the better, thank you. Interesting though, these 2 libs are not truly optional.
Community
IntelliJ IDEA Open API and Plugin Development
Execute test while org.jetbrains.android is added as dependency
0 votes
Created
June 02, 2021 13:36
Yann Cebron I managed to reproduce it here: https://github.com/evg64/LeakSdkExample The project contains only 1 test-class, so no way to launch wrong test. This IDE is used to build the project: In...
Community
IntelliJ IDEA Open API and Plugin Development
how to solve ava.lang.AssertionError: Leaked SDKs error?
0 votes
Created
May 31, 2021 16:55
intellij.localPath and runIde.ideDirectory have the same value, so as far as I understand, yes, I build and run against the same IDE.
Community
IntelliJ IDEA Open API and Plugin Development
Execute test while org.jetbrains.android is added as dependency
0 votes
Edited
May 30, 2021 17:49
I have the same problem. Leaking jdks absent in com.intellij.openapi.projectRoots.ProjectJdkTable.getInstance().allJdks While com.android.tools.idea.sdk.AndroidSdks.getInstance().allAndroidSdks ret...
Community
IntelliJ IDEA Open API and Plugin Development
how to solve ava.lang.AssertionError: Leaked SDKs error?
0 votes
Edited
May 28, 2021 13:32
I had to add all dependencies of org.jetbrains.android to setPlugins. It turned out to be quite verbose: gradle.properties:platformPlugins = java, org.jetbrains.kotlin, org.intellij.groovy, org.je...
Community
IntelliJ IDEA Open API and Plugin Development
Execute test while org.jetbrains.android is added as dependency
0 votes