evg64
- 活动总数 23
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 7
-
evg64 创建了一个帖子, 已回答Plugin tests are launched against AndroidStudio, but PlatformUtils.isAndroidStudio is not found (NoClassDefFoundError)
I run unit tests against Android Studio LadyBug.Under the hood, com.intellij.util.PlatformUtils.isAndroidStudio is invoked. However, NoClassDefFoundError is thrown. I have attached screenshot from ... -
-
evg64 创建了一个帖子, 已回答Plugin verifier false positive compatibility error report
I develop IDE plugin for Android Studio.Here is project, that illustrates my problem:https://github.com/evg64/HelloWorldPluginFromTemplateThis plugin is based on Plugin template. Here I do the foll... -
-
-
evg64 创建了一个帖子, 已回答The same intellij API is not found during compilation, but can be invoked at runtime
There is the following code: package com.exampleimport com.intellij.psi.PsiElementimport com.intellij.psi.util.childrenOfTypeimport org.jetbrains.kotlin.psi.KtDeclarationclass Foo { fun bar(elem... -
-
evg64 创建了一个帖子, 已回答Distinguish between debug and release build in runtime?
I need something like: if (isDebugBuild()) { foo()} else { bar()} My question is: is there API that works like isDebugBuild() in my example? P.S. In case such API does not exist, is there ano... -
-
evg64 创建了一个帖子, 已回答Using EditTextField as editor with autocomplete for table cell
I`m developing a plugin for intellij idea. As part of its functionality I need to implement a table in settings. One of table columns contains a class from project. Specifically, each cell of the c...