evg64
- Total activity 23
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 7
-
evg64 created a post, AnsweredPlugin 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 created a post, AnsweredPlugin 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 created a post, AnsweredThe 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 created a post, AnsweredDistinguish 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 created a post, AnsweredUsing 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...