Runt的android项目开发插件
Runt
2021-06-08 5a56af922a4e0f5743073f4636ab64c6dc0bd4b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<idea-plugin>
  <id>com.your.company.unique.plugin.id</id>
  <name>Runt的android项目开发插件</name>
  <version>1.0</version>
  <vendor email="qingingrunt2010@qq.com" url="www.hefan.space">邢台禾凡网络科技有限责任公司</vendor>
 
  <description>Runt的android项目开发插件 (description description description)</description>
 
  <change-notes><![CDATA[
      Add change notes here.<br>
      <em>most HTML tags may be used</em>
    ]]>
  </change-notes>
 
  <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
  <idea-version since-build="173.0"/>
 
  <!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
       on how to target different products -->
  <!-- uncomment to enable plugin in all products
  <depends>com.intellij.modules.lang</depends>
  -->
 
  <extensions defaultExtensionNs="com.intellij">
    <!-- Add your extensions here -->
  </extensions>
 
  <actions>
    <!-- Add your actions here -->
 
    <!-- Add your actions here -->
    <group id="runtMethod"  text="Runt项目" description="Runt的android项目开发插件" popup="true">
      <add-to-group group-id="NewGroup" anchor="first"/>
 
      <!-- Add your actions here -->
      <group id="BeanMethod"  text="数据bean类" description="数据bean类" popup="true">
        <add-to-group group-id="runtMethod" anchor="first"/>
        <action id="CreateNormalResult" class="com.runt.android.actions.CreateNormalResult" text="创建普通数据类"
            description="创建普通数据类">
          <keyboard-shortcut keymap="$default" first-keystroke="alt shift v"/>
        </action>
      </group>
    </group>
 
  </actions>
 
</idea-plugin>