evg64
- Total activity 23
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 7
-
Created Plugin tests are launched against AndroidStudio, but PlatformUtils.isAndroidStudio is not found (NoClassDefFoundError)
AnsweredI 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 ... -
Created Plugin verifier false positive compatibility error report
AnsweredI 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... -
Created The same intellij API is not found during compilation, but can be invoked at runtime
AnsweredThere 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... -
Created Distinguish between debug and release build in runtime?
AnsweredI 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... -
Edited Using EditTextField as editor with autocomplete for table cell
AnsweredI`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... -
Edited Execute test while org.jetbrains.android is added as dependency
AnsweredPlugin org.jetbrains.android is declared as dependency in build.gradle.kts: intellij { localPath = <path to android studio 4.2> setPlugins("java", "org.jetbrains.kotlin", "org.intellij.groov...