Richard Köhl 1 yıl önce
ebeveyn
işleme
83be77c1b5
1 değiştirilmiş dosya ile 35 ekleme ve 0 silme
  1. 35 0
      Readme.md

+ 35 - 0
Readme.md

@@ -0,0 +1,35 @@
+# Hero Wars Dungeon runner
+
+## requirements
+
+### python
+
+python needs to be installed
+
+following python packages are needed
+
+```
+pip install -r requirements.txt
+```
+
+### environment
+
+- copy the `.env.example`-file to `.env`
+- adjust the ip address of your android device
+
+### adb
+
+adb commandline tool needs to be installed with Android Studio. (with sdk
+manager install
+`Android SDK > SDK Tools: Android SDK Build-Tools, Android SDK Command-line Tools, Android SDK Platform-Tools and Google USB Driver`)
+
+if you want to work wireless:
+
+- set adb port to 5555 while connected via usb:
+  ```
+  adb tcpip 5555
+  ```
+- connect wireless to device (with your android's ip address)
+  ```
+  adb connect 192.168.178.32:5555
+  ```