How can i add a 'license aggreement' to my own plugin?
In my project, developing a plugin for Developers..
When user about to download & install my plugin, I want to show 'license agreement' page like :
https://drive.google.com/file/d/0B1QbUPSdzq9dZVJwdWJqcU5WVHplVUxpSzdZT2xKLTE0SHNF/view?usp=sharing
How can i add this page to my plugin?
请先登录再写评论。
There is no direct support for doing this. You can use com.intellij.openapi.startup.StartupActivity to show a notification after IDE startup and store license agreement status e.g. in com.intellij.ide.util.PropertiesComponent to hide it on future startups.
Dear @Yann Cebron,
Thankyou for your reply!