├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── codeql.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── apkFileVersion.sh ├── appVersion.sh ├── autoDesktopHeadUnit.sh ├── backupToGitHubFolder.sh ├── backupToPythonGitHubFolder.sh ├── backup_Bugreports.sh ├── btStatus.sh ├── bugreport.sh ├── bugreportScreenshot.sh ├── checkin.sh ├── clearAppData.sh ├── clearLogcat.sh ├── commands.sh ├── connectIP.sh ├── createHomeLinks.sh ├── device-screenrecord.sh ├── device-screenshot.sh ├── deviceEvents.sh ├── displayReset.sh ├── dpadEvents.sh ├── findMyIp.sh ├── getProp.sh ├── grepLogcat.sh ├── info.sh ├── inputEvents.sh ├── installApk.sh ├── installApkFromPath.sh ├── installApps.sh ├── installGpmApps.sh ├── inventory.sh ├── kernelLogcat.sh ├── killApk.sh ├── library ├── apkOperations.sh ├── configureMachine.sh ├── deviceFileOperations.sh ├── deviceOperations.sh ├── deviceProperties.sh ├── keycodeEvents.sh ├── logFunctions.sh ├── machineFileOperations.sh ├── machineOs.sh ├── mainFunctions.sh ├── mySetup.txt ├── networkOperations.sh ├── test_functions.sh └── textFormatting.sh ├── logcat.sh ├── monkey.sh ├── musicVoiceSearch.sh ├── myDevices.sh ├── myOS.sh ├── pullApks.sh ├── pullCameraImagesVideos.sh ├── pullFiles.sh ├── pullRecordedVideo.sh ├── pullScreenshots.sh ├── rebootBootloader.sh ├── rebootDevice.sh ├── rebootRecovery.sh ├── reinstallApps.sh ├── restartApk.sh ├── restartDevice.sh ├── screenCapture.sh ├── screenRecord.sh ├── screenRecordNpull.sh ├── searchAPK.sh ├── startApk.sh ├── stopApk.sh ├── textInput.sh ├── uninstallApks.sh ├── uninstallAppUpdates.sh ├── weather.sh └── wipeDevice.sh /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/SECURITY.md -------------------------------------------------------------------------------- /apkFileVersion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/apkFileVersion.sh -------------------------------------------------------------------------------- /appVersion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/appVersion.sh -------------------------------------------------------------------------------- /autoDesktopHeadUnit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/autoDesktopHeadUnit.sh -------------------------------------------------------------------------------- /backupToGitHubFolder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/backupToGitHubFolder.sh -------------------------------------------------------------------------------- /backupToPythonGitHubFolder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/backupToPythonGitHubFolder.sh -------------------------------------------------------------------------------- /backup_Bugreports.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/backup_Bugreports.sh -------------------------------------------------------------------------------- /btStatus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/btStatus.sh -------------------------------------------------------------------------------- /bugreport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/bugreport.sh -------------------------------------------------------------------------------- /bugreportScreenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/bugreportScreenshot.sh -------------------------------------------------------------------------------- /checkin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/checkin.sh -------------------------------------------------------------------------------- /clearAppData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/clearAppData.sh -------------------------------------------------------------------------------- /clearLogcat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/clearLogcat.sh -------------------------------------------------------------------------------- /commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/commands.sh -------------------------------------------------------------------------------- /connectIP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/connectIP.sh -------------------------------------------------------------------------------- /createHomeLinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/createHomeLinks.sh -------------------------------------------------------------------------------- /device-screenrecord.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/device-screenrecord.sh -------------------------------------------------------------------------------- /device-screenshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/device-screenshot.sh -------------------------------------------------------------------------------- /deviceEvents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/deviceEvents.sh -------------------------------------------------------------------------------- /displayReset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/displayReset.sh -------------------------------------------------------------------------------- /dpadEvents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/dpadEvents.sh -------------------------------------------------------------------------------- /findMyIp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/findMyIp.sh -------------------------------------------------------------------------------- /getProp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/getProp.sh -------------------------------------------------------------------------------- /grepLogcat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/grepLogcat.sh -------------------------------------------------------------------------------- /info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/info.sh -------------------------------------------------------------------------------- /inputEvents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/inputEvents.sh -------------------------------------------------------------------------------- /installApk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/installApk.sh -------------------------------------------------------------------------------- /installApkFromPath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/installApkFromPath.sh -------------------------------------------------------------------------------- /installApps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/installApps.sh -------------------------------------------------------------------------------- /installGpmApps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/installGpmApps.sh -------------------------------------------------------------------------------- /inventory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/inventory.sh -------------------------------------------------------------------------------- /kernelLogcat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/kernelLogcat.sh -------------------------------------------------------------------------------- /killApk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/killApk.sh -------------------------------------------------------------------------------- /library/apkOperations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/library/apkOperations.sh -------------------------------------------------------------------------------- /library/configureMachine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/library/configureMachine.sh -------------------------------------------------------------------------------- /library/deviceFileOperations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/library/deviceFileOperations.sh -------------------------------------------------------------------------------- /library/deviceOperations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/library/deviceOperations.sh -------------------------------------------------------------------------------- /library/deviceProperties.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/library/deviceProperties.sh -------------------------------------------------------------------------------- /library/keycodeEvents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/library/keycodeEvents.sh -------------------------------------------------------------------------------- /library/logFunctions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/library/logFunctions.sh -------------------------------------------------------------------------------- /library/machineFileOperations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/library/machineFileOperations.sh -------------------------------------------------------------------------------- /library/machineOs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/library/machineOs.sh -------------------------------------------------------------------------------- /library/mainFunctions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/library/mainFunctions.sh -------------------------------------------------------------------------------- /library/mySetup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/library/mySetup.txt -------------------------------------------------------------------------------- /library/networkOperations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/library/networkOperations.sh -------------------------------------------------------------------------------- /library/test_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/library/test_functions.sh -------------------------------------------------------------------------------- /library/textFormatting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/library/textFormatting.sh -------------------------------------------------------------------------------- /logcat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/logcat.sh -------------------------------------------------------------------------------- /monkey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/monkey.sh -------------------------------------------------------------------------------- /musicVoiceSearch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/musicVoiceSearch.sh -------------------------------------------------------------------------------- /myDevices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/myDevices.sh -------------------------------------------------------------------------------- /myOS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/myOS.sh -------------------------------------------------------------------------------- /pullApks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/pullApks.sh -------------------------------------------------------------------------------- /pullCameraImagesVideos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/pullCameraImagesVideos.sh -------------------------------------------------------------------------------- /pullFiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/pullFiles.sh -------------------------------------------------------------------------------- /pullRecordedVideo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/pullRecordedVideo.sh -------------------------------------------------------------------------------- /pullScreenshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/pullScreenshots.sh -------------------------------------------------------------------------------- /rebootBootloader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/rebootBootloader.sh -------------------------------------------------------------------------------- /rebootDevice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/rebootDevice.sh -------------------------------------------------------------------------------- /rebootRecovery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/rebootRecovery.sh -------------------------------------------------------------------------------- /reinstallApps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/reinstallApps.sh -------------------------------------------------------------------------------- /restartApk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/restartApk.sh -------------------------------------------------------------------------------- /restartDevice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/restartDevice.sh -------------------------------------------------------------------------------- /screenCapture.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/screenCapture.sh -------------------------------------------------------------------------------- /screenRecord.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/screenRecord.sh -------------------------------------------------------------------------------- /screenRecordNpull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/screenRecordNpull.sh -------------------------------------------------------------------------------- /searchAPK.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/searchAPK.sh -------------------------------------------------------------------------------- /startApk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/startApk.sh -------------------------------------------------------------------------------- /stopApk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/stopApk.sh -------------------------------------------------------------------------------- /textInput.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/textInput.sh -------------------------------------------------------------------------------- /uninstallApks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/uninstallApks.sh -------------------------------------------------------------------------------- /uninstallAppUpdates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/uninstallAppUpdates.sh -------------------------------------------------------------------------------- /weather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/weather.sh -------------------------------------------------------------------------------- /wipeDevice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaydavalgi/android-shell-scripts/HEAD/wipeDevice.sh --------------------------------------------------------------------------------