├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── adbGUI.application ├── adbGUI.sln ├── adbGUI ├── Forms │ ├── BackupRestore.Designer.cs │ ├── BackupRestore.cs │ ├── BackupRestore.resx │ ├── Credits.Designer.cs │ ├── Credits.cs │ ├── Credits.resx │ ├── Density.Designer.cs │ ├── Density.cs │ ├── Density.resx │ ├── Erase.Designer.cs │ ├── Erase.cs │ ├── Erase.resx │ ├── ExtForm.cs │ ├── FileOps.Designer.cs │ ├── FileOps.cs │ ├── FileOps.resx │ ├── Flash.Designer.cs │ ├── Flash.cs │ ├── Flash.resx │ ├── InstallUninstall.Designer.cs │ ├── InstallUninstall.cs │ ├── InstallUninstall.resx │ ├── LogcatAdvanced.Designer.cs │ ├── LogcatAdvanced.cs │ ├── LogcatAdvanced.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── ResolutionChange.Designer.cs │ ├── ResolutionChange.cs │ ├── ResolutionChange.resx │ ├── ScreenRecord.Designer.cs │ ├── ScreenRecord.cs │ ├── ScreenRecord.resx │ ├── SetProp.Designer.cs │ ├── SetProp.cs │ ├── SetProp.resx │ ├── Sideload.Designer.cs │ ├── Sideload.cs │ ├── Sideload.resx │ ├── SpoofMac.Designer.cs │ ├── SpoofMac.cs │ └── SpoofMac.resx ├── Methods │ ├── CLI.cs │ ├── Dependencies.cs │ ├── DevicesWatcher.cs │ └── HelperClass.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── app.manifest ├── Resources │ ├── beer.png │ ├── command window.png │ ├── eraser.png │ ├── hash.png │ ├── hash1.png │ ├── power-button-off.png │ ├── programIcon.ico │ ├── programIcon.png │ ├── programIcon.svg │ ├── refresh.png │ ├── stop-button.png │ └── wifi.png ├── adbGUI.csproj ├── adbGUI.csproj.DotSettings └── app.config └── screenshot ├── installuninstall.PNG ├── logcatadvanced.PNG ├── main.PNG ├── screenrecorder.PNG └── screenshot_2_1.png /.editorconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/README.md -------------------------------------------------------------------------------- /adbGUI.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI.application -------------------------------------------------------------------------------- /adbGUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI.sln -------------------------------------------------------------------------------- /adbGUI/Forms/BackupRestore.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/BackupRestore.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Forms/BackupRestore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/BackupRestore.cs -------------------------------------------------------------------------------- /adbGUI/Forms/BackupRestore.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/BackupRestore.resx -------------------------------------------------------------------------------- /adbGUI/Forms/Credits.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Credits.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Forms/Credits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Credits.cs -------------------------------------------------------------------------------- /adbGUI/Forms/Credits.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Credits.resx -------------------------------------------------------------------------------- /adbGUI/Forms/Density.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Density.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Forms/Density.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Density.cs -------------------------------------------------------------------------------- /adbGUI/Forms/Density.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Density.resx -------------------------------------------------------------------------------- /adbGUI/Forms/Erase.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Erase.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Forms/Erase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Erase.cs -------------------------------------------------------------------------------- /adbGUI/Forms/Erase.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Erase.resx -------------------------------------------------------------------------------- /adbGUI/Forms/ExtForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/ExtForm.cs -------------------------------------------------------------------------------- /adbGUI/Forms/FileOps.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/FileOps.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Forms/FileOps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/FileOps.cs -------------------------------------------------------------------------------- /adbGUI/Forms/FileOps.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/FileOps.resx -------------------------------------------------------------------------------- /adbGUI/Forms/Flash.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Flash.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Forms/Flash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Flash.cs -------------------------------------------------------------------------------- /adbGUI/Forms/Flash.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Flash.resx -------------------------------------------------------------------------------- /adbGUI/Forms/InstallUninstall.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/InstallUninstall.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Forms/InstallUninstall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/InstallUninstall.cs -------------------------------------------------------------------------------- /adbGUI/Forms/InstallUninstall.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/InstallUninstall.resx -------------------------------------------------------------------------------- /adbGUI/Forms/LogcatAdvanced.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/LogcatAdvanced.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Forms/LogcatAdvanced.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/LogcatAdvanced.cs -------------------------------------------------------------------------------- /adbGUI/Forms/LogcatAdvanced.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/LogcatAdvanced.resx -------------------------------------------------------------------------------- /adbGUI/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/MainForm.cs -------------------------------------------------------------------------------- /adbGUI/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/MainForm.resx -------------------------------------------------------------------------------- /adbGUI/Forms/ResolutionChange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/ResolutionChange.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Forms/ResolutionChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/ResolutionChange.cs -------------------------------------------------------------------------------- /adbGUI/Forms/ResolutionChange.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/ResolutionChange.resx -------------------------------------------------------------------------------- /adbGUI/Forms/ScreenRecord.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/ScreenRecord.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Forms/ScreenRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/ScreenRecord.cs -------------------------------------------------------------------------------- /adbGUI/Forms/ScreenRecord.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/ScreenRecord.resx -------------------------------------------------------------------------------- /adbGUI/Forms/SetProp.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/SetProp.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Forms/SetProp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/SetProp.cs -------------------------------------------------------------------------------- /adbGUI/Forms/SetProp.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/SetProp.resx -------------------------------------------------------------------------------- /adbGUI/Forms/Sideload.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Sideload.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Forms/Sideload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Sideload.cs -------------------------------------------------------------------------------- /adbGUI/Forms/Sideload.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/Sideload.resx -------------------------------------------------------------------------------- /adbGUI/Forms/SpoofMac.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/SpoofMac.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Forms/SpoofMac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/SpoofMac.cs -------------------------------------------------------------------------------- /adbGUI/Forms/SpoofMac.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Forms/SpoofMac.resx -------------------------------------------------------------------------------- /adbGUI/Methods/CLI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Methods/CLI.cs -------------------------------------------------------------------------------- /adbGUI/Methods/Dependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Methods/Dependencies.cs -------------------------------------------------------------------------------- /adbGUI/Methods/DevicesWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Methods/DevicesWatcher.cs -------------------------------------------------------------------------------- /adbGUI/Methods/HelperClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Methods/HelperClass.cs -------------------------------------------------------------------------------- /adbGUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Program.cs -------------------------------------------------------------------------------- /adbGUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /adbGUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /adbGUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Properties/Resources.resx -------------------------------------------------------------------------------- /adbGUI/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Properties/app.manifest -------------------------------------------------------------------------------- /adbGUI/Resources/beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Resources/beer.png -------------------------------------------------------------------------------- /adbGUI/Resources/command window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Resources/command window.png -------------------------------------------------------------------------------- /adbGUI/Resources/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Resources/eraser.png -------------------------------------------------------------------------------- /adbGUI/Resources/hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Resources/hash.png -------------------------------------------------------------------------------- /adbGUI/Resources/hash1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Resources/hash1.png -------------------------------------------------------------------------------- /adbGUI/Resources/power-button-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Resources/power-button-off.png -------------------------------------------------------------------------------- /adbGUI/Resources/programIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Resources/programIcon.ico -------------------------------------------------------------------------------- /adbGUI/Resources/programIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Resources/programIcon.png -------------------------------------------------------------------------------- /adbGUI/Resources/programIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Resources/programIcon.svg -------------------------------------------------------------------------------- /adbGUI/Resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Resources/refresh.png -------------------------------------------------------------------------------- /adbGUI/Resources/stop-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Resources/stop-button.png -------------------------------------------------------------------------------- /adbGUI/Resources/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/Resources/wifi.png -------------------------------------------------------------------------------- /adbGUI/adbGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/adbGUI.csproj -------------------------------------------------------------------------------- /adbGUI/adbGUI.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/adbGUI.csproj.DotSettings -------------------------------------------------------------------------------- /adbGUI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/adbGUI/app.config -------------------------------------------------------------------------------- /screenshot/installuninstall.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/screenshot/installuninstall.PNG -------------------------------------------------------------------------------- /screenshot/logcatadvanced.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/screenshot/logcatadvanced.PNG -------------------------------------------------------------------------------- /screenshot/main.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/screenshot/main.PNG -------------------------------------------------------------------------------- /screenshot/screenrecorder.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/screenshot/screenrecorder.PNG -------------------------------------------------------------------------------- /screenshot/screenshot_2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexadezi/adbGUI/HEAD/screenshot/screenshot_2_1.png --------------------------------------------------------------------------------