App Zenn

- Total activity 34
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 11
-
Created Android Studio doesn't have JavaFX?
Does Android Studio's default JDK include JavaFX? In other post(the below URL), AS3.0 should include the new runtime with JavaFX, but my plugin has error on AS 3.2 now. https://intellij-support.j... -
Created How to check AndroidStudio?
I want to check the plugin with AndroidStudio. But the README doesn't have type of AndroidStudio. https://github.com/JetBrains/gradle-intellij-plugin#setup-dsl Is there any way to test plugin w... -
Created How to adapt to old version of API and new version of API? Method already removed from API.
AnsweredI'm using LanguageAnnotators.INSTANCE.addExplicitExtension But it seems that this method is added from 2018.02.07. And removed registerExplicitExtension. How can I avoid this problem without m... -
Created How to define compatible versions?
AnsweredI check this post. https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html?search=compatibility But I cannot know how to widen the compatible version for plug... -
Created Verify plugin has strange warning message.
Answered"verifyPlugin" has strange message on my plugin. But I don't understand why it happened? My plugin.xml is like this. <idea-plugin> <id>com.intellij.my-plugin</id> <name>MyPlugin</name> <... -
Created Subscribing topic take too long. Then my code cannot run correctly.
I'm using subscribing topic. But it will not catch the event because of too slow to subscribe. I have two code to subscribing VCS_CONFIGURATION_MANAGER. One is a ProjectComponent which subscribe... -
Created Cannot save PersistentStateComponent when class has project even if project is private
AnsweredPersistentStateComponent cause Error on save when the class has private project. The error message is like this. Unable to serialize TestState statecom.intellij.util.xmlb.XmlSerializationExcept... -
Created How to listens to project opened?
AnsweredDoes IntelliJ Plugin has any function to catch Project Opened Extension like preloadingActivity? preloadingActivity is Application level Listener of opening intellij application. Does IntelliJ ha... -
Edited PersistentStateComponent with Application level cause Error.
PersistentStateComponent with Application level cause Unable to save settings Error. Before that, I succeeded to use Project level PersistentStateComponent already. I just changed `plugin.xml` f... -
Created How can I receive git repository from plugin?
AnsweredI want to get repository url from my plugin. How can I get it??