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
|
/*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.debug;
/**
* Interface to communicate remotely with the {@code AdbService} in the system server.
*
* @hide
*/
interface IAdbManager {
/**
* Allow ADB debugging from the attached host. If {@code alwaysAllow} is
* {@code true}, add {@code publicKey} to list of host keys that the
* user has approved.
*
* @param alwaysAllow if true, add permanently to list of allowed keys
* @param publicKey RSA key in mincrypt format and Base64-encoded
*/
void allowDebugging(boolean alwaysAllow, String publicKey);
/**
* Deny ADB debugging from the attached host.
*/
void denyDebugging();
/**
* Clear all public keys installed for secure ADB debugging.
*/
void clearDebuggingKeys();
/**
* Allow ADB wireless debugging on the connected network. If {@code alwaysAllow}
* is {@code true}, add {@code bssid} to list of networks that the user has
* approved.
*
* @param alwaysAllow if true, add permanently to list of allowed networks
* @param bssid BSSID of the network
*/
void allowWirelessDebugging(boolean alwaysAllow, String bssid);
/**
* Deny ADB wireless debugging on the connected network.
*/
void denyWirelessDebugging();
/**
* Returns a Map<String, PairDevice> with the key fingerprint mapped to the device information.
*/
Map getPairedDevices();
/**
* Unpair the device identified by the key fingerprint it uses.
*
* @param fingerprint fingerprint of the key the device is using.
*/
void unpairDevice(String fingerprint);
/**
* Enables pairing by pairing code. The result of the enable will be sent via intent action
* {@link android.debug.AdbManager#WIRELESS_DEBUG_ENABLE_DISCOVER_ACTION}. Furthermore, the
* pairing code will also be sent in the intent as an extra
* @{link android.debug.AdbManager#WIRELESS_PAIRING_CODE_EXTRA}. Note that only one
* pairing method can be enabled at a time, either by pairing code, or by QR code.
*/
void enablePairingByPairingCode();
/**
* Enables pairing by QR code. The result of the enable will be sent via intent action
* {@link android.debug.AdbManager#WIRELESS_DEBUG_ENABLE_DISCOVER_ACTION}. Note that only one
* pairing method can be enabled at a time, either by pairing code, or by QR code.
*
* @param serviceName The MDNS service name parsed from the QR code.
* @param password The password parsed from the QR code.
*/
void enablePairingByQrCode(String serviceName, String password);
/**
* Returns the network port that adb wireless server is running on.
*/
int getAdbWirelessPort();
/**
* Disables pairing.
*/
void disablePairing();
/**
* Returns true if device supports secure Adb over Wi-Fi.
*/
boolean isAdbWifiSupported();
/**
* Returns true if device supports secure Adb over Wi-Fi and device pairing by
* QR code.
*/
boolean isAdbWifiQrSupported();
}
|