diff --git a/README.md b/README.md index 71e28f2..589e298 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,9 @@ Warning: The screen updates are very slow (~1 frame per second). ## Usage Run with: - java -jar MonkeyRemote-0.3.jar "PATH TO ADB EXECUTABLE" SCALING_FACTOR + java -jar MonkeyRemote-0.4.jar "PATH TO ADB EXECUTABLE" SCALING_FACTOR so for example: - java -jar MonkeyRemote-0.3.jar "C:\android-sdk\platform-tools\adb.exe" 0.5 + java -jar MonkeyRemote-0.4.jar "C:\android-sdk\platform-tools\adb.exe" 0.5 diff --git a/pom.xml b/pom.xml index a7b44a7..2c18f4c 100644 --- a/pom.xml +++ b/pom.xml @@ -3,13 +3,25 @@ 4.0.0 de.nsvb MonkeyRemote - 0.3 + 0.4 jar + + + com.google.maven + Google Maven Repo + https://maven.google.com + + + io.spring.repo + Spring Maven Repo + https://repo.spring.io/plugins-release + + UTF-8 1.7 1.7 - 24.3.1 + 26.5.1 @@ -62,6 +74,16 @@ shade + + + *:* + + META-INF/*.SF + META-INF/*.DSA + META-INF/*.RSA + + + true diff --git a/src/main/java/de/nsvb/monkeyremote/MonkeyRemote.java b/src/main/java/de/nsvb/monkeyremote/MonkeyRemote.java index d15d726..bf4230c 100644 --- a/src/main/java/de/nsvb/monkeyremote/MonkeyRemote.java +++ b/src/main/java/de/nsvb/monkeyremote/MonkeyRemote.java @@ -27,7 +27,7 @@ */ public class MonkeyRemote extends JFrame { - private static final String ADB = "C:\\Users\\ns130291\\Android\\sdk\\platform-tools\\adb.exe"; + private static final String ADB = "C:\\adb\\adb.exe"; private static final long TIMEOUT = 5000; private static float scalingFactor = 0.5f;