Skip to content

Releases: mina2357/DroidHelper

DroidHelper v1.0.0 - Initial Release

08 Jun 10:17
80f2c27

Choose a tag to compare

Pre-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:

  1. Show Android OS version:

    • Executes 'adb shell getprop ro.build.version.release' to display device Android version.
  2. Extract app package path:

    • Takes a package name as input and runs 'adb shell pm path ' to get the APK path.
  3. Launch an app by package name:

    • Uses 'adb shell monkey -p -c android.intent.category.LAUNCHER 1' to start the app.
  4. View recent logcat entries:

    • Runs 'adb logcat -d | tail -n 20' to display the last 20 log lines.
  5. 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.