avd-manager-cli 1.0.0 → 1.0.1

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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +105 -0
  3. package/package.json +3 -1
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Rabi Iya
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,105 @@
1
+ ````markdown
2
+ # AVD Manager CLI
3
+
4
+ [![npm version](https://badge.fury.io/js/avd-manager-cli.svg)](https://badge.fury.io/js/avd-manager-cli)
5
+ [![downloads](https://img.shields.io/npm/dm/avd-manager-cli.svg)](https://www.npmjs.com/package/avd-manager-cli)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
+
8
+ Welcome to **AVD Manager CLI** — a simple and efficient command-line tool for managing Android Virtual Devices (AVDs) directly from your terminal.
9
+
10
+ This quick-start guide will help you install, configure, and use the CLI in just a few steps.
11
+
12
+ ---
13
+
14
+ ## 🧩 Prerequisites
15
+
16
+ Before you begin, make sure you have:
17
+
18
+ - **Android SDK** installed
19
+ - **Java JDK 11+**
20
+ - **Android SDK tools** (`avdmanager`, `sdkmanager`) available in your PATH
21
+ - **Node.js** (if installing via npm)
22
+
23
+ ---
24
+
25
+ ## Installation
26
+
27
+ You can install AVD Manager CLI globally using npm:
28
+
29
+ ```bash
30
+ npm install -g avd_manager
31
+ ```
32
+ ````
33
+
34
+ Or clone the repository manually:
35
+
36
+ ```bash
37
+ git clone https://github.com/Tdbo21/avd_manager.git
38
+ cd avd_manager
39
+ npm install
40
+ ```
41
+
42
+ ## First Run
43
+
44
+ After installation, verify the CLI is working:
45
+
46
+ ```bash
47
+ avdm --help
48
+ ```
49
+
50
+ You should see a list of available commands and their usage.
51
+
52
+ ## 🧭 Common Commands
53
+
54
+ | Command | Description |
55
+ | -------------------------------------------------------- | ------------------------ |
56
+ | `avdm `list | Lists all available AVDs |
57
+ | `avdm `create `Pixel_API_35 `--device `pixel `--api `35` | Creates a new AVD |
58
+ | `avdm `delete `Pixel_API_35` | Deletes an existing AVD |
59
+ | `avdm `launch `Pixel_API_35` | Launches an existing AVD |
60
+
61
+ ## 🧪 Example Usage Workflow
62
+
63
+ List existing AVDs
64
+
65
+ ```bash
66
+ avdm list
67
+ ```
68
+
69
+ Create a new AVD
70
+
71
+ ```bash
72
+ avdm create Pixel_API_35 --device pixel --api 35
73
+ ```
74
+
75
+ Delete an AVD
76
+
77
+ ```bash
78
+ avdm delete Pixel_API_35
79
+ ```
80
+
81
+ Launch an AVD
82
+
83
+ ```bash
84
+ avdm launch Pixel_API_35
85
+ ```
86
+
87
+ ## 🧰 Troubleshooting
88
+
89
+ If you encounter issues:
90
+
91
+ - Ensure your Android SDK path is correctly set
92
+ - Check permissions for the .android directory
93
+
94
+ ## 🧩 Next Steps
95
+
96
+ - Visit the GitHub Repository - [![GitHub](https://img.shields.io/badge/GitHub-avd_manager-blue)](https://github.com/Tdebo21/avd_manager)
97
+ - Contribute or open issues to improve the tool
98
+
99
+ ## License
100
+
101
+ MIT
102
+
103
+ ```
104
+
105
+ ```
package/package.json CHANGED
@@ -1,6 +1,8 @@
1
1
  {
2
2
  "name": "avd-manager-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
+ "license": "MIT",
5
+ "description": "A command-line tool to manage Android Virtual Devices (AVDs) with ease.",
4
6
  "bin": {
5
7
  "avdm": "index.js"
6
8
  },