evg64
- 活动总数 23
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 7
-
创建于 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 ... -
创建于 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... -
创建于 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... -
创建于 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... -
已编辑于 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... -
已编辑于 Execute test while org.jetbrains.android is added as dependency
已回答Plugin 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...