I have a tv box device connected to TV, i need to run the following commands using ADB on my device
1. adb connect xxx.xxx.x.x : connected to device wirelessly success
2. adb reboot recovery : success
3. now i need to click Apply update from ADB : success
Then a message appear on the tv: now send the package you want to apply
From my adb CMD i type: adb sideload filename.zip but the device becames offline after step 3 above. how can i keep the device connected to my ADB even if i click apply update from ADB?
note that the cable Male to Male usb doesnt work and not catching my tv box
Maybe you can try a different approach. If your device has enough cache memory, you can try to copy your ota.zip file inside it. Try loading the filename.zip to /cache/.
Then, use the commandline
The device will reboot into recovery mode and apply the OTA directly.