Skip to content

Commit

Permalink
doc: update some text
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhouYixun committed Feb 5, 2023
1 parent 61007c2 commit 81827c8
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
Binary file modified plugins/sonic-android-apk.apk
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public static void tap(IDevice iDevice, int x, int y) {
int[] re = transferWithRotation(iDevice, x, y);
writeToOutputStream(iDevice, String.format("down %d %d\n", re[0], re[1]));
try {
Thread.sleep(100);
Thread.sleep(300);
} catch (InterruptedException e) {
e.printStackTrace();
}
Expand Down Expand Up @@ -98,13 +98,13 @@ public static void swipe(IDevice iDevice, int x1, int y1, int x2, int y2) {
int[] re2 = transferWithRotation(iDevice, x2, y2);
writeToOutputStream(iDevice, String.format("down %d %d\n", re1[0], re1[1]));
try {
Thread.sleep(100);
Thread.sleep(300);
} catch (InterruptedException e) {
e.printStackTrace();
}
writeToOutputStream(iDevice, String.format("move %d %d\n", re2[0], re2[1]));
try {
Thread.sleep(100);
Thread.sleep(200);
} catch (InterruptedException e) {
e.printStackTrace();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ public void checkFiles() {
File config = new File("config/application-sonic-agent.yml");
File mini = new File("mini");
File plugins = new File("plugins");
// fixme 本地测试请关闭授权
if (system.contains("linux") || system.contains("mac")) {
try {
Runtime.getRuntime().exec(new String[]{"sh", "-c", String.format("chmod -R 777 %s", new File("").getAbsolutePath())});
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ spring:
version: @project.version@
application:
name: @project.artifactId@
des: "Sonic云真机测试平台 - agent端"
des: "Agent of Sonic cloud real machine platform."
profiles:
active: @project.artifactId@

Expand Down
Binary file modified src/main/resources/static/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/main/resources/templates/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
▀▀▀▀▀ ▀▀▀▀ ▀▀ ▀▀▀ ▀▀▀▀▀▀ ▀▀▀▀
Author: SonicCloudOrg
GPL v3.0
AGPL v3.0
-->
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
Expand Down

0 comments on commit 81827c8

Please sign in to comment.