-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathInjector.java
More file actions
123 lines (110 loc) · 3.58 KB
/
Injector.java
File metadata and controls
123 lines (110 loc) · 3.58 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
package at.ba1.punz.eyenavigator.inputinjector;
import java.io.DataOutputStream;
import java.io.IOException;
import java.util.Locale;
/**
* @author Juergen Punz
* Injects InputEvents to Android-Device
* Needs root-access to Device and App needs superuser-rights (you will be asked for that at execution-time).
*/
public class Injector {
/**
* Injects Swipe-Event from right to left
* @return If execution of shell-command was successful or not
* @throws IOException
* @throws InterruptedException
*/
public static boolean swipeRightLeft() throws IOException, InterruptedException
{
return executeCommand("input swipe 300 500 50 500 100");
}
/**
* Injects Swipe-Event from left to right
* @return If execution of shell-command was successful or not
* @throws IOException
* @throws InterruptedException
*/
public static boolean swipeLeftRight() throws IOException, InterruptedException
{
return executeCommand("input swipe 50 500 300 500 100");
}
/**
* Injects Touch-Event at x- and y-coordinates of screen
* @param x x-coordinate of screen
* @param y y-coordinate of screen
* @return If execution of shell-command was successful or not
* @throws IOException
* @throws InterruptedException
*/
public static boolean touch(int x, int y) throws IOException, InterruptedException
{
return executeCommand(String.format(Locale.getDefault(), "input tap %d %d", x, y));
}
/**
* Injects Unlock-Event for unlocking the device's screen
* @return If execution of shell-command was successful or not
* @throws IOException
* @throws InterruptedException
*/
public static boolean unlockDevice() throws IOException, InterruptedException
{
return executeCommand("input keyevent 82");
}
/**
* Injects Powerbutton-Event for locking or activate the device's screen
* @return If execution of shell-command was successful or not
* @throws IOException
* @throws InterruptedException
*/
public static boolean pressPowerButton() throws IOException, InterruptedException
{
return executeCommand("input keyevent 26");
}
/**
* Injects Homebutton-Event
* @return If execution of shell-command was successful or not
* @throws IOException
* @throws InterruptedException
*/
public static boolean pressHomeButton() throws IOException, InterruptedException
{
return executeCommand("input keyevent 3");
}
/**
* Injects Backbutton-Event
* @return If execution of shell-command was successful or not
* @throws IOException
* @throws InterruptedException
*/
public static boolean pressBackButton() throws IOException, InterruptedException
{
return executeCommand("input keyevent 4");
}
/**
* Injects Swipe-Event (up to down) for opening the Notificationcenter
* @return If execution of shell-command was successful or not
* @throws IOException
* @throws InterruptedException
*/
public static boolean showNotificationCenter() throws IOException, InterruptedException
{
return executeCommand("input swipe 10 10 10 1000");
}
/**
* Runs given command in shell as superuser
* @param command Command to execute
* @return If execution of shell-command was successful or not
* @throws IOException
* @throws InterruptedException
*/
private static boolean executeCommand(String command) throws IOException, InterruptedException
{
Process suShell = Runtime.getRuntime().exec("su");
DataOutputStream commandLine = new DataOutputStream(suShell.getOutputStream());
commandLine.writeBytes(command + '\n');
commandLine.flush();
commandLine.writeBytes("exit\n");
commandLine.flush();
return suShell.waitFor() == 0;
}
}