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

Commit fedd16e

Browse files
committed
Update to 1.0.2
1 parent b95da8e commit fedd16e

File tree

3 files changed

+33
-10
lines changed

3 files changed

+33
-10
lines changed

cmds/copy.bat

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@echo off
2+
echo Enter file path:
3+
set /p path=
4+
adb\adb.exe push %path% /sdcard
5+
pause
6+
exit

src/ADBManager/Form1.Designer.vb

Lines changed: 23 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ADBManager/Form1.vb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,8 @@
1818
Private Sub BtnDisconnect_Click(sender As Object, e As EventArgs) Handles BtnDisconnect.Click
1919
Process.Start("C:\Windows\system32\cmd.exe", "/C cmds\disconnect.bat")
2020
End Sub
21+
22+
Private Sub BtnCopy_Click(sender As Object, e As EventArgs) Handles BtnCopy.Click
23+
Process.Start("C:\Windows\system32\cmd.exe", "/C cmds\copy.bat")
24+
End Sub
2125
End Class

0 commit comments

Comments
 (0)