1 Star 0 Fork 0

ggymm/adb-shell

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 658 Bytes
一键复制 编辑 原始数据 按行查看 历史
ggymm 提交于 2021-06-21 12:27 . 完善优化
package main
import (
"fmt"
_ "github.com/ying32/govcl/pkgs/winappres"
"github.com/ying32/govcl/vcl"
"os"
"strings"
)
var (
basePath = "C:\\Product\\adb-shell\\"
adbPath = basePath + "exec\\adb.exe"
aaptPath = basePath + "exec\\aapt.exe"
logcatCmd = basePath + "logcat.cmd"
logcatFormat = "%s-%s.log"
logPath = basePath + "debug.log"
)
func init() {
ex, err := os.Executable()
if err != nil {
panic(err)
}
basePath = ex[0 : strings.LastIndex(ex, "\\")+1]
}
func main() {
defer func() {
if err := recover(); err != nil {
vcl.ShowMessage(fmt.Sprintf("%v", err))
return
}
}()
// 初始化UI
initView()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/1967988842/adb-shell.git
git@gitee.com:1967988842/adb-shell.git
1967988842
adb-shell
adb-shell
master

搜索帮助