forked from johnno1962/injectionforxcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
52 lines (44 loc) · 2.18 KB
/
Copy pathplugin.xml
File metadata and controls
52 lines (44 loc) · 2.18 KB
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
48
49
50
51
52
<idea-plugin version="2">
<id>com.injectionforxcode.injection.plugin.id</id>
<name>Injection for AppCode</name>
<version>3.6</version>
<vendor email="support@injectionforxcode.com" url="http://www.injectionforxcode.com">Injection for Xcode</vendor>
<description><![CDATA[
Dynamic Objective-C Code Injection for App Code.<br>
<small>Requires Injection for Xcode plugin to work.</small>
]]></description>
<change-notes><![CDATA[
Initial Release.<br>
]]>
</change-notes>
<!-- please see http://confluence.jetbrains.net/display/IDEADEV/Build+Number+Ranges for description -->
<idea-version since-build="107.105"/>
<!-- please see http://confluence.jetbrains.net/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
on how to target different products -->
<!-- uncomment to enable plugin in all products -->
<depends>com.intellij.modules.lang</depends>
<application-components>
<!-- Add your application components here -->
</application-components>
<project-components>
<!-- Add your project components here -->
</project-components>
<actions>
<!-- Add your actions here -->
<group id="MyPlugin.SampleMenu" text="_Sample Menu" description="Sample menu">
<add-to-group group-id="RunMenu" anchor="last"/>
<action id="Injection.Inject" class="com.injectionforxcode.InjectionAction" text="Inject Source" description="Inject Source">
<keyboard-shortcut keymap="$default" first-keystroke="meta EQUALS"/>
</action>
<action id="Injection.Patch" class="com.injectionforxcode.InjectionAction$PatchAction" text="Patch Project for Injection" description="Patch Project">
</action>
<action id="Injection.Unpatch" class="com.injectionforxcode.InjectionAction$UnpatchAction" text="Revert Injection's changes" description="Unpatch Project">
</action>
<action id="Injection.Bundle" class="com.injectionforxcode.InjectionAction$BundleAction" text="Open Bundle Project" description="Open Injection's Bundle Project">
</action>
</group>
</actions>
<extensions defaultExtensionNs="com.intellij">
<!-- Add your extensions here -->
</extensions>
</idea-plugin>