If I sign in using Gmail to Android Set Top Box (STB), my login info is saved on that. I need to remove that Gmail or login credentials.
What is the easiest way to force clear ALL the app data and cache Android STB using ADB commands? How do I remove my Google account using the ADB command? What other technique can we use to clear all STB application data, which means I need to clear all the app data?
I currently have the following code
# Open sync settingsam start -a android.settings.SYNC_SETTINGS# Navigate down to the account inputinput keyevent KEYCODE_DPAD_DOWN# Select the accountinput keyevent KEYCODE_ENTER# Navigate down if neededinput keyevent KEYCODE_DPAD_DOWN# Navigate down if neededinput keyevent KEYCODE_DPAD_DOWN# Navigate down if neededinput keyevent KEYCODE_DPAD_DOWN# Select the accountinput keyevent KEYCODE_ENTER# Navigate to the remove optioninput keyevent KEYCODE_DPAD_DOWN# Navigate to theinput keyevent KEYCODE_DPAD_RIGHT# Select the remove optioninput keyevent KEYCODE_ENTER# Select the remove optioninput keyevent KEYCODE_BACK