-
-
Notifications
You must be signed in to change notification settings - Fork 491
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from SonicCloudOrg/scrcpy_dev
Scrcpy dev
- Loading branch information
Showing
62 changed files
with
448 additions
and
1,316 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+20.9 KB
mini/minicap-shared/aosp/Xiaomi/android-30/arm64-v8a/onemore/minicap.so
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
198 changes: 85 additions & 113 deletions
198
src/main/java/com/sonic/agent/automation/AndroidStepHandler.java
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
114 changes: 57 additions & 57 deletions
114
...n/java/com/sonic/agent/cv/FindResult.java → ...om/sonic/agent/automation/FindResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,57 @@ | ||
package com.sonic.agent.cv; | ||
|
||
public class FindResult { | ||
private int x; | ||
private int y; | ||
private String url; | ||
private int time; | ||
|
||
public FindResult() { | ||
x = 0; | ||
y = 0; | ||
url = ""; | ||
time = 0; | ||
} | ||
|
||
public int getX() { | ||
return x; | ||
} | ||
|
||
public void setX(int x) { | ||
this.x = x; | ||
} | ||
|
||
public int getY() { | ||
return y; | ||
} | ||
|
||
public void setY(int y) { | ||
this.y = y; | ||
} | ||
|
||
public String getUrl() { | ||
return url; | ||
} | ||
|
||
public void setUrl(String url) { | ||
this.url = url; | ||
} | ||
|
||
public int getTime() { | ||
return time; | ||
} | ||
|
||
public void setTime(int time) { | ||
this.time = time; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "FindResult{" + | ||
"x=" + x + | ||
", y=" + y + | ||
", url='" + url + '\'' + | ||
", time=" + time + | ||
'}'; | ||
} | ||
} | ||
package com.sonic.agent.automation; | ||
|
||
public class FindResult { | ||
private int x; | ||
private int y; | ||
private String url; | ||
private int time; | ||
|
||
public FindResult() { | ||
x = 0; | ||
y = 0; | ||
url = ""; | ||
time = 0; | ||
} | ||
|
||
public int getX() { | ||
return x; | ||
} | ||
|
||
public void setX(int x) { | ||
this.x = x; | ||
} | ||
|
||
public int getY() { | ||
return y; | ||
} | ||
|
||
public void setY(int y) { | ||
this.y = y; | ||
} | ||
|
||
public String getUrl() { | ||
return url; | ||
} | ||
|
||
public void setUrl(String url) { | ||
this.url = url; | ||
} | ||
|
||
public int getTime() { | ||
return time; | ||
} | ||
|
||
public void setTime(int time) { | ||
this.time = time; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "FindResult{" + | ||
"x=" + x + | ||
", y=" + y + | ||
", url='" + url + '\'' + | ||
", time=" + time + | ||
'}'; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.