Releases: mina2357/DroidHelper
Releases · mina2357/DroidHelper
DroidHelper v1.0.0 - Initial Release
DroidHelper v1.0.0 - Initial Release
This is the first official release of DroidHelper, a simple Python command-line tool to interact with Android devices via ADB.
Features included in this release:
-
Show Android OS version:
- Executes 'adb shell getprop ro.build.version.release' to display device Android version.
-
Extract app package path:
- Takes a package name as input and runs 'adb shell pm path ' to get the APK path.
-
Launch an app by package name:
- Uses 'adb shell monkey -p -c android.intent.category.LAUNCHER 1' to start the app.
-
View recent logcat entries:
- Runs 'adb logcat -d | tail -n 20' to display the last 20 log lines.
-
Exit option to close the tool.
Usage Instructions:
- Ensure you have Python 3 installed on your computer.
- Ensure ADB is installed and your Android device is connected with USB debugging enabled.
- Run the tool by executing:
python main.py
This tool is intended for users familiar with ADB and basic Python execution.