-
Notifications
You must be signed in to change notification settings - Fork 267
Expand file tree
/
Copy pathplugin.xml
More file actions
275 lines (254 loc) · 11.6 KB
/
Copy pathplugin.xml
File metadata and controls
275 lines (254 loc) · 11.6 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<idea-plugin url="https://github.com/pbreault/adb-idea">
<id>com.developerphil.adbidea</id>
<name>ADB Idea</name>
<version>1.6.2</version>
<vendor url="http://www.developerphil.com">Philippe Breault</vendor>
<description><![CDATA[
Adds the following ADB commands to Android Studio and Intellij:<br />
<ul>
<li>ADB Uninstall App</li>
<li>ADB Kill App</li>
<li>ADB Start App</li>
<li>ADB Restart App</li>
<li>ADB Clear App Data</li>
<li>ADB Clear App Data and Restart</li>
<li>ADB Start App With Debugger</li>
<li>ADB Restart App With Debugger</li>
<li>ADB Grant/Revoke Permissions</li>
<li>ADB Enable/Disable Wi-Fi</li>
<li>ADB Enable/Disable Mobile Data</li>
</ul>
<br />
There are two basic ways to invoke a command:
<ul>
<li>Through the Tools->Android->ADB Idea menu</li>
<li>By searching for "ADB" in "Find Actions" (osx: cmd+shift+a, windows/linux: ctrl+shift+a)</li>
</ul>
]]></description>
<change-notes><![CDATA[
<b>1.6.2</b>
<ul>
<li>BUGFIX: Notifications don't show up on Studio 4.0</li>
<li>BUGFIX: Debugger sometime fails to attach on Studio 4.0</li>
</ul>
<b>1.6.1</b>
<ul>
<li>BUGFIX: Can't attach a debugger on Android Studio 3.6</li>
</ul>
<b>1.6.0</b>
<ul>
<li>FEATURE: Enable/Disable Wi-Fi</li>
<li>FEATURE: Enable/Disable Mobile Data</li>
<li>BUGFIX: Compatibility with Android Studio 4.1-alpha07+</li>
</ul>
<b>1.5.4</b>
<ul>
<li>BUGFIX: Compatibility with Android Studio 3.6-alpha12+</li>
</ul>
<b>1.5.3</b>
<ul>
<li>BUGFIX: Show all connected devices on Android Studio 3.4+</li>
</ul>
<b>1.5.2</b>
<ul>
<li>BUGFIX: Show the name of the devices in addition to the serial number when multiple devices are connected</li>
</ul>
<b>1.5.1</b>
<ul>
<li>BUGFIX: Support Android Studio 3.2 Preview1</li>
</ul>
<b>1.5.0</b>
<ul>
<li>FEATURE: Revoke Runtime Permissions</li>
<li>BUGFIX: Support apps using string templating in the applicationId in the gradle build file</li>
<li>BUGFIX: Show an appropriate error message instead of crashing when gradle is syncing
</ul>
<b>1.4.1</b>
<ul>
<li>BUGFIX: No Device </li>
</ul>
<b>1.4.0</b>
<ul>
<li>FEATURE: Restart the app and attach the debugger</li>
</ul>
<b>1.3.0</b>
<ul>
<li>FEATURE: Checkbox to reuse the same devices for the current session</li>
<li>FEATURE: Only show notifications for errors</li>
</ul>
<b>1.2.8</b>
<ul>
<li>BUGFIX: NoSuchMethodException on Android Studio 2.2 Preview</li>
</ul>
<b>1.2.7</b>
<ul>
<li>BUGFIX: Can't start or restart on Android Studio 2.1 Preview</li>
</ul>
<b>1.2.6</b>
<ul>
<li>BUGFIX: NoSuchMethodException on Android Studio 2.0 Preview 8</li>
</ul>
<b>1.2.5</b>
<ul>
<li>BUGFIX: NoSuchMethodException on Android Studio 2.0 Preview 5</li>
</ul>
<b>1.2.4</b>
<ul>
<li>BUGFIX: NoSuchMethodError on Android Studio 2.0 Preview 1</li>
</ul>
<b>1.2.3</b>
<ul>
<li>BUGFIX: NoSuchMethodError on Android Studio 1.5</li>
</ul>
<b>1.2.2</b>
<ul>
<li>BUGFIX: Doesn't work on Android Studio 1.4 with multiple devices attached</li>
</ul>
<b>1.2.1</b>
<ul>
<li>BUGFIX: Can't start or restart app in Android Studio 1.4</li>
</ul>
<b>1.2.0</b>
<ul>
<li>FEATURE: New "ADB Operations Popup...". Windows: Ctrl+Alt+Shift+A - Mac OSX: Ctrl+Shift+A</li>
</ul>
<b>1.1.4</b>
<ul>
<li>BUGFIX: Start & Restart is broken when the activity is merged in the manifest.</li>
</ul>
<b>1.1.3</b>
<ul>
<li>BUGFIX: Fixed crash in Android Studio 0.8.10</li>
</ul>
<b>1.1.2</b>
<ul>
<li>BUGFIX: Fixed device chooser in Android Studio 0.6+</li>
</ul>
<b>1.1.1</b>
<ul>
<li>BUGFIX: Fixed crash in Android Studio 0.4.4</li>
<li>BUGFIX: Don't show test projects in the module selection dialog</li>
</ul>
<b>1.1.0</b>
<ul>
<li>Now support Build-Types and flavors in Gradle projects</li>
<li>Now support projects with more than one application module</li>
</ul>
]]>
</change-notes>
<!-- Android Studio 4.0+ -->
<!-- see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html -->
<idea-version since-build="193"/>
<depends>com.intellij.modules.platform</depends>
<depends>org.jetbrains.android</depends>
<actions>
<group id="AdbIdea" text="_ADB Idea" description="ADB Idea" popup="true">
<action id="com.developerphil.adbidea.action.AdbIdeaQuickList"
class="com.developerphil.adbidea.action.QuickListAction" text="ADB Operations Popup..."
description="List all the adb idea operations in a popup">
<keyboard-shortcut keymap="Mac OS X" first-keystroke="shift ctrl A"/>
<keyboard-shortcut keymap="Mac OS X 10.5+" first-keystroke="shift ctrl A"/>
<keyboard-shortcut keymap="$default" first-keystroke="shift ctrl alt A"/>
</action>
<separator/>
<action id="com.developerphil.adbidea.action.RevokePermissionsAction"
class="com.developerphil.adbidea.action.RevokePermissionsAction"
text="ADB Revoke Permissions"
description="Revoking the runtime permissions of the current application">
</action>
<action id="com.developerphil.adbidea.action.RevokePermissionsAndRestartAction"
class="com.developerphil.adbidea.action.RevokePermissionsAndRestartAction"
text="ADB Revoke Permissions and Restart"
description="Revoking the runtime permissions of the current application and restarts it">
</action>
<action id="com.developerphil.adbidea.action.GrantPermissionsAction"
class="com.developerphil.adbidea.action.GrantPermissionsAction"
text="ADB Grant Permissions"
description="Granting the runtime permissions of the current application">
</action>
<action id="com.developerphil.adbidea.action.UninstallAction"
class="com.developerphil.adbidea.action.UninstallAction"
text="ADB Uninstall App"
description="Uninstalls the current application">
</action>
<action id="com.developerphil.adbidea.action.KillAction"
class="com.developerphil.adbidea.action.KillAction"
text="ADB Kill App"
description="Kills the current application">
</action>
<action id="com.developerphil.adbidea.action.StartAction"
class="com.developerphil.adbidea.action.StartAction"
text="ADB Start App"
description="Starts the current application">
</action>
<action id="com.developerphil.adbidea.action.RestartAction"
class="com.developerphil.adbidea.action.RestartAction"
text="ADB Restart App"
description="Restarts the current application">
</action>
<action id="com.developerphil.adbidea.action.ClearDataAction"
class="com.developerphil.adbidea.action.ClearDataAction"
text="ADB Clear App Data"
description="Clears the private storage of the app">
</action>
<action id="com.developerphil.adbidea.action.ClearDataAndRestartAction"
class="com.developerphil.adbidea.action.ClearDataAndRestartAction"
text="ADB Clear App Data and Restart"
description="Clears the private storage of the app and restarts it">
</action>
<action id="com.developerphil.adbidea.action.StartWithDebuggerAction"
class="com.developerphil.adbidea.action.StartWithDebuggerAction"
text="ADB Start App With Debugger"
description="Starts the current application and attach the debugger">
</action>
<action id="com.developerphil.adbidea.action.RestartWithDebuggerAction"
class="com.developerphil.adbidea.action.RestartWithDebuggerAction"
text="ADB Restart App With Debugger"
description="Restarts the current application and attach the debugger">
</action>
<action id="com.developerphil.adbidea.action.ClearDataAndRestartWithDebuggerAction"
class="com.developerphil.adbidea.action.ClearDataAndRestartWithDebuggerAction"
text="ADB Clear App Data and Restart App With Debugger"
description="Clears the private storage of the app and restarts it, and attach the debugger">
</action>
<add-to-group group-id="AndroidToolsGroup" anchor="first"/>
<separator/>
<action id="com.developerphil.adbidea.action.EnableWifiAction"
class="com.developerphil.adbidea.action.EnableWifiAction"
text="ADB Enable Wi-Fi"
description="Enable Wi-Fi on device or emulator">
</action>
<action id="com.developerphil.adbidea.action.DisableWifiAction"
class="com.developerphil.adbidea.action.DisableWifiAction"
text="ADB Disable Wi-Fi"
description="Disable Wi-Fi on device or emulator">
</action>
<action id="com.developerphil.adbidea.action.EnableMobileAction"
class="com.developerphil.adbidea.action.EnableMobileAction"
text="ADB Enable Mobile Data"
description="Enable mobile data on device or emulator">
</action>
<action id="com.developerphil.adbidea.action.DisableMobileAction"
class="com.developerphil.adbidea.action.DisableMobileAction"
text="ADB Disable Mobile Data"
description="Disable mobile data on device or emulator">
</action>
<separator/>
<action id="com.developerphil.adbidea.action.NavigateToResumedActivityAction"
class="com.developerphil.adbidea.action.NavigateToResumedActivityAction"
text="ADB Navigate To Resumed Activity"
description="Find and navigate to resumed activity">
</action>
</group>
</actions>
<project-components>
<component>
<implementation-class>com.developerphil.adbidea.ObjectGraph</implementation-class>
</component>
</project-components>
<application-components>
<component>
<implementation-class>com.developerphil.adbidea.Application</implementation-class>
</component>
</application-components>
</idea-plugin>