android-device-manager 25.11.11-1737 → 25.12.5-101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +36 -14
- package/jdeploy-bundle/AndroidDeviceManager.jar +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
# Android Device Manager
|
|
2
2
|
|
|
3
3
|
## Description ##
|
|
4
|
+
|
|
4
5
|
Android Device Manager is a desktop app which can manage one or more Android devices
|
|
5
6
|
|
|
6
7
|
## Features ##
|
|
8
|
+
|
|
7
9
|
- View all connected (and wireless) devices
|
|
8
10
|
- Populates device **phone number, free space, IMEI, carrier** (if available)
|
|
9
11
|
- **Remote control** selected devices (requires [scrcpy](https://github.com/Genymobile/scrcpy))
|
|
@@ -11,18 +13,23 @@ Android Device Manager is a desktop app which can manage one or more Android dev
|
|
|
11
13
|
- **Drag and drop an apk** to **install** on selected devices
|
|
12
14
|
- **Drag and drop a file** to **copy** to selected devices
|
|
13
15
|
- **File Explorer** / Browse filesystem of device
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
16
|
+
- download and view folders/files
|
|
17
|
+
- delete folders/files
|
|
18
|
+
- root mode supported
|
|
17
19
|
- View **Device Logs**
|
|
18
|
-
|
|
20
|
+
- NOTE: this is a work in progress!
|
|
19
21
|
- **Restart** selected devices
|
|
20
22
|
- Run **user-defined adb commands**
|
|
21
23
|
- Set and display custom properties on each device
|
|
22
24
|
- Start an **adb shell** session with selected devices
|
|
23
25
|
- **View version** of user-defined list of apps
|
|
24
26
|
|
|
27
|
+
## Manage devices connected to other computers ##
|
|
28
|
+
|
|
29
|
+
see [SERVER.md](SERVER.md)
|
|
30
|
+
|
|
25
31
|
## Screenshots ##
|
|
32
|
+
|
|
26
33
|
<img src="resources/screenshot-main.jpg" width="600" alt="devices">
|
|
27
34
|
|
|
28
35
|
<details>
|
|
@@ -76,7 +83,9 @@ brew install scrcpy
|
|
|
76
83
|
<summary>Windows Setup</summary>
|
|
77
84
|
|
|
78
85
|
### Install adb
|
|
86
|
+
|
|
79
87
|
download from [here](https://developer.android.com/tools/releases/platform-tools) and extract archive
|
|
88
|
+
|
|
80
89
|
- move extracted platform-tools/ folder to your <HOME DIR>/Program Files/Android/
|
|
81
90
|
- add the location to your PATH
|
|
82
91
|
- test this by running “adb” in a command window
|
|
@@ -84,13 +93,16 @@ download from [here](https://developer.android.com/tools/releases/platform-tools
|
|
|
84
93
|
### Install scrcpy
|
|
85
94
|
|
|
86
95
|
download and install from [here](https://github.com/Genymobile/scrcpy/blob/master/doc/windows.md)
|
|
96
|
+
|
|
87
97
|
- make sure “scrcpy” in in PATH
|
|
98
|
+
|
|
88
99
|
</details>
|
|
89
100
|
|
|
90
101
|
<details>
|
|
91
102
|
<summary>Linux Setup</summary>
|
|
92
103
|
|
|
93
104
|
### Install curl, git, adb
|
|
105
|
+
|
|
94
106
|
```
|
|
95
107
|
sudo apt-get install curl git adb
|
|
96
108
|
```
|
|
@@ -102,6 +114,7 @@ sudo apt-get install curl git adb
|
|
|
102
114
|
```
|
|
103
115
|
|
|
104
116
|
### Add homebrew to PATH
|
|
117
|
+
|
|
105
118
|
```
|
|
106
119
|
echo >> ~/.bashrc
|
|
107
120
|
echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> ~/.bashrc
|
|
@@ -121,6 +134,7 @@ brew install scrcpy
|
|
|
121
134
|
I'm using jdeploy to package this as a native app for Mac/Windows/Linux. This also allows for automatic updates
|
|
122
135
|
|
|
123
136
|
To install open a terminal and run this command:
|
|
137
|
+
|
|
124
138
|
```
|
|
125
139
|
/bin/bash -c "$(curl -fsSL https://www.jdeploy.com/~android-device-manager/install.sh)"
|
|
126
140
|
```
|
|
@@ -133,28 +147,36 @@ See [this page](https://www.jdeploy.com/~android-device-manager) to download the
|
|
|
133
147
|
<summary>Build Android Device Manager</summary>
|
|
134
148
|
|
|
135
149
|
## Prerequisites
|
|
150
|
+
|
|
136
151
|
- Java SDK
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
152
|
+
- min version 17; I'm using openjdk 22.0.1 2024-04-16
|
|
153
|
+
- MacOSX -> Homebrew -> `brew install openjdk`
|
|
154
|
+
- Linux - [link](https://www.digitalocean.com/community/tutorials/how-to-install-java-with-apt-on-ubuntu-22-04)
|
|
140
155
|
- Maven
|
|
141
|
-
|
|
142
|
-
|
|
156
|
+
- MacOSX -> Homebrew -> `brew install maven`
|
|
157
|
+
- Linux - [link](https://www.digitalocean.com/community/tutorials/install-maven-linux-ubuntu)
|
|
143
158
|
|
|
144
159
|
## Build
|
|
160
|
+
|
|
145
161
|
- sync this repo
|
|
146
|
-
|
|
162
|
+
- `git clone https://github.com/jpage4500/AndroidDeviceManager.git`
|
|
147
163
|
- build
|
|
148
|
-
|
|
164
|
+
- `mvn compile`
|
|
149
165
|
- run:
|
|
150
|
-
|
|
166
|
+
- `mvn exec:java`
|
|
167
|
+
|
|
151
168
|
</details>
|
|
152
169
|
|
|
153
170
|
## Use Cases ##
|
|
154
171
|
|
|
155
|
-
We want to manage a lot of Android devices and had previously used MDM (mobile device management) software such as
|
|
172
|
+
We want to manage a lot of Android devices and had previously used MDM (mobile device management) software such as *
|
|
173
|
+
*AirDroid** and **ScaleFusion**. These tools aren't free ($$) but more importantly trying to remote control/view an
|
|
174
|
+
Android device was often a very slow and choppy experience.
|
|
156
175
|
|
|
157
|
-
So, instead we took a different approach. Instead of running MDM software on every individual Android device, we
|
|
176
|
+
So, instead we took a different approach. Instead of running MDM software on every individual Android device, we
|
|
177
|
+
connected all of the devices to a single macbook laptop using multiple 16-port USB hubs. The Macbook is
|
|
178
|
+
running [Splashtop](https://www.splashtop.com/) remote control software. I can now remote login and using Android Device
|
|
179
|
+
Manager control all of the devices with very little to no lag.
|
|
158
180
|
|
|
159
181
|
---
|
|
160
182
|
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"bin":{"adm":"jdeploy-bundle/jdeploy.js"},"author":"Joe Page","description":"Java desktop app to manage multiple Android devices via adb","main":"index.js","preferGlobal":true,"repository":"","version":"25.
|
|
1
|
+
{"bin":{"adm":"jdeploy-bundle/jdeploy.js"},"author":"Joe Page","description":"Java desktop app to manage multiple Android devices via adb","main":"index.js","preferGlobal":true,"repository":"","version":"25.12.5-101","jdeploy":{"jdk":false,"checksums":{"icon.png":"4b08e47a91c363c29f10aa1ca9a9ce55","installsplash.png":"b8596a651c248c986b5f572760b64dbf"},"mainClass":"com.jpage4500.devicemanager.MainApplication","javaVersion":"17","documentTypes":[{"editor":false,"extension":"apk","mimetype":"application/vnd.android.package-archive"},{"editor":false,"extension":"xapk","mimetype":"application/vnd.android.package-archive"}],"urlSchemes":["adm"],"jar":"target/AndroidDeviceManager.jar","javafx":false,"title":"Android Device Manager"},"dependencies":{"command-exists-promise":"^2.0.2","node-fetch":"2.6.7","tar":"^4.4.8","yauzl":"^2.10.0","run":"^1.5.0","jdeploy":"^5.5.3","shelljs":"^0.8.4"},"license":"ISC","name":"android-device-manager","files":["jdeploy-bundle"],"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"homepage":""}
|