How to Remove Galaxy TalkBack and Replace It with Google TalkBack Using One Samsung Phone
How to Remove Galaxy TalkBack and Replace It with Google TalkBack Using One Samsung Phone
Samsung devices often come with Galaxy TalkBack pre-installed as part of their accessibility features. While it serves its purpose, some users prefer Google TalkBack for its advanced functionality and consistency across Android devices. This guide explains how to disable Galaxy TalkBack and replace it with Google TalkBack using only one Samsung phone, leveraging Wi-Fi pairing, an ADB-enabled terminal emulator, and split-screen mode to facilitate commands.
---
Prerequisites
Before starting, ensure the following:
1. Enable Developer Options:
Go to Settings > About phone > Software information.
Tap Build number 7 times until “Developer mode has been turned on” appears.
2. Enable Wireless Debugging:
Go to Settings > Developer options.
Toggle Wireless debugging to enable it.
3. Install a Terminal Emulator App:
Download and install an ADB-enabled terminal emulator app like Termux or LADB (Local ADB Shell) from the Google Play Store.
4. Install Google TalkBack:
Ensure Google TalkBack (part of the Android Accessibility Suite) is installed via the Google Play Store.
---
Step 1: Set Up Wireless Debugging
1. Open Wireless Debugging Settings:
Navigate to Settings > Developer options > Wireless debugging.
2. Activate Split-Screen Mode:
Open Wireless Debugging and tap the Recents button (the three-line icon at the bottom of the screen).
Long press the Wireless Debugging settings page and select Split screen.
Open your terminal emulator app (e.g., Termux or LADB) in the other half of the screen.
3. Pair Device with Pairing Code:
In the Wireless Debugging section, tap Pair device with pairing code.
Note down the IP address, port, and pairing code displayed.
4. Pair the Device:
In the terminal emulator, run:
adb pair [IP_ADDRESS]:[PORT]
Replace [IP_ADDRESS] and [PORT] with the values shown on the screen. For example:
adb pair 192.168.1.101:37661
Enter the pairing code when prompted to complete the pairing process.
---
Step 2: Connect to the Device
After pairing, connect the terminal emulator to your device by running:
adb connect [IP_ADDRESS]:5555
Replace [IP_ADDRESS] with your device’s IP address. For example:
adb connect 192.168.1.101:5555
Verify the connection by running:
adb devices
Your device should appear as connected.
---
Step 3: Disable Galaxy TalkBack
1. Find the Galaxy TalkBack Package:
In the terminal emulator, run:
adb shell pm list packages | grep talkback
The package name for Galaxy TalkBack is typically:
com.samsung.android.accessibility.talkback
2. Disable Galaxy TalkBack:
Run the following command:
adb shell pm disable-user --user 0 com.samsung.android.accessibility.talkback
---
Step 4: Enable Google TalkBack
1. Verify Google TalkBack Installation:
Confirm that Google TalkBack (Android Accessibility Suite) is installed. Its package name is:
com.google.android.marvin.talkback
2. Activate Google TalkBack:
Run these commands to enable Google TalkBack:
adb shell settings put secure enabled_accessibility_services com.google.android.marvin.talkback/com.android.talkback.TalkBackService
adb shell settings put secure accessibility_enabled 1
---
Step 5: Prevent Galaxy TalkBack from Re-Enabling
1. Uninstall Updates (Optional):
To remove Galaxy TalkBack updates, run:
adb shell pm uninstall -k --user 0 com.samsung.android.accessibility.talkback
2. Disable Automatic Updates:
Open the Galaxy Store or Google Play Store.
Locate Galaxy TalkBack and turn off auto-updates to prevent it from re-enabling itself.
---
Step 6: Verify Google TalkBack
1. Open Settings > Accessibility.
2. Confirm that Google TalkBack is active under Screen Reader.
---
Step 7: Disconnect Wireless Debugging
After completing the process, disconnect the wireless debugging session by running:
adb disconnect
---
Conclusion
Using a terminal emulator app like Termux or LADB in split-screen mode, you can disable Galaxy TalkBack and enable Google TalkBack on the same Samsung phone. Split-screen mode allows you to reference Wireless Debugging details while executing commands, making the process seamless. This method eliminates the need for a second device or PC, offering a convenient way to manage accessibility services directly on your Samsung phone.
Comments
Post a Comment