File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1+ ## 1.2.7
2+ - [ 优化] 提升获取其他设备的图标速度
3+ - [ 修复] 图标未全部获取也能使用launcher
4+ - [ 修复] 修复图标错乱的bug
5+ - [ 优化] 支持获取小米10s/小米平板5类的设备名称
6+ - [ 优化] 减少server的体积
17## 1.2.6
28- [ 改动] 切换adb二进制为自编译版本(因为ndk-adb这个库的adb首次启动很慢,并且不能支持` adb pair ip:port code ` )
39- [ 优化] 死循环申请USB权限的问题
Original file line number Diff line number Diff line change @@ -52,11 +52,10 @@ class DexServer {
5252 );
5353 Log .d ('localPort -> $localPort ' );
5454 // 这样才能保证列表正常
55- final AppChannel appChannel = AppManager .globalInstance.appChannel;
56- appChannel.port = localPort;
57- if (appChannel is RemoteAppChannel ) {
58- appChannel.serial = devicesId;
59- }
55+ final RemoteAppChannel channel = RemoteAppChannel ();
56+ channel.port = localPort;
57+ channel.serial = devicesId;
58+ AppManager .globalInstance.appChannel = channel;
6059 AppManager .globalInstance.process = YanProcess ()
6160 ..exec ('adb -s $devicesId shell' );
6261 }
You can’t perform that action at this time.
0 commit comments