Skip to content
This repository has been archived by the owner on Jan 23, 2021. It is now read-only.

Commit

Permalink
Update to 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
LeddaZ committed Jun 3, 2019
1 parent b95da8e commit fedd16e
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 10 deletions.
6 changes: 6 additions & 0 deletions cmds/copy.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@echo off
echo Enter file path:
set /p path=
adb\adb.exe push %path% /sdcard
pause
exit
33 changes: 23 additions & 10 deletions src/ADBManager/Form1.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions src/ADBManager/Form1.vb
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,8 @@
Private Sub BtnDisconnect_Click(sender As Object, e As EventArgs) Handles BtnDisconnect.Click
Process.Start("C:\Windows\system32\cmd.exe", "/C cmds\disconnect.bat")
End Sub

Private Sub BtnCopy_Click(sender As Object, e As EventArgs) Handles BtnCopy.Click
Process.Start("C:\Windows\system32\cmd.exe", "/C cmds\copy.bat")
End Sub
End Class

0 comments on commit fedd16e

Please sign in to comment.