@@ -87,9 +87,9 @@ def check_device_connection(self) -> bool:
8787 self .logger .error ("Failed to query devices: %s" , exc )
8888 print ("\n ADB could not communicate with the device." )
8989 print ("Please make sure Developer options and USB debugging are enabled, then reconnect the cable." )
90- print ("  Enable Developer options: Settings  About phone  tap 'Build number' seven times." )
91- print ("  Enable USB debugging: Settings  System  Developer options  toggle USB debugging on." )
92- print (" ÔÇó Reconnect the device and accept the USB debugging prompt if shown." )
90+ print (" Enable Developer options: Settings About phone tap 'Build number' seven times." )
91+ print (" Enable USB debugging: Settings System Developer options toggle USB debugging on." )
92+ print (" Reconnect the device and accept the USB debugging prompt if shown." )
9393 if self ._prompt_wifi_connection ("Attempt to connect over Wi-Fi ADB instead?" ):
9494 continue
9595 action = self ._prompt_connection_retry ()
@@ -712,15 +712,15 @@ def _show_device_state_instructions(self, device: DeviceState) -> None:
712712 state = device .state .lower ().strip ()
713713
714714 if state == 'unauthorized' :
715- print (" ÔÇó Unlock the device and ensure USB debugging is enabled in Developer options." )
716- print (" ÔÇó When prompted, tap 'Allow' to trust this computer for USB debugging." )
715+ print (" Unlock the device and ensure USB debugging is enabled in Developer options." )
716+ print (" When prompted, tap 'Allow' to trust this computer for USB debugging." )
717717 elif state == 'offline' :
718- print (" ÔÇó Reconnect the USB cable and toggle USB debugging off and on again." )
719- print (" ÔÇó Ensure the device screen stays awake and unlocked." )
718+ print (" Reconnect the USB cable and toggle USB debugging off and on again." )
719+ print (" Ensure the device screen stays awake and unlocked." )
720720 elif state == 'recovery' :
721- print (" ÔÇó The device is in recovery mode. Boot into Android before running the remover." )
721+ print (" The device is in recovery mode. Boot into Android before running the remover." )
722722 else :
723- print (" ÔÇó Check the USB connection and confirm the device is unlocked with USB debugging enabled." )
723+ print (" Check the USB connection and confirm the device is unlocked with USB debugging enabled." )
724724
725725 def _select_device (self , authorized_devices : List [DeviceState ]) -> Optional [DeviceState ]:
726726 """Select a device from the authorised list, prompting when needed."""
@@ -927,3 +927,4 @@ def manual_package_removal(self) -> None:
927927 return
928928 else :
929929 print ("Removal cancelled for the selected apps." )
930+
0 commit comments