Here`s the instructions for enabling the Mobile Data and Hotspot quick setting tiles on Samsung Galaxy devices using ADB commands. This process involves modifying the quick settings tile configuration through ADB shell. This method allows you to add these toggles to your quick settings without requiring root access. Just to summarize, here’s a step-by-step breakdown:

Setting up ADB:

  1. Download the ADB binary from Google and extract it to a directory on your computer.
  2. Install the proper driver for your Samsung Galaxy device.
  3. Enable “USB Debugging” on your phone. If you don’t see Developer Options, enable it by going to Settings > About Phone and tapping the Build number seven times.
  4. Open a command prompt in the directory where the ADB binary is located.
  5. Check if your device is recognized by running: adb devices

Enabling Mobile Data and Hotspot Tiles:

  1. Enter ADB shell by running: adb shell
  2. Check your current Quick Settings tiles with: settings get secure sysui_qs_tiles
  3. Save the output (your existing tile list) somewhere safe.
  4. Run the following command to add the Mobile Data and Hotspot tiles:
    arduino
    settings put secure sysui_qs_tiles "YOUROLDLIST,MobileData,Hotspot"

    Replace YOUROLDLIST with the list you saved earlier.

  5.  it Shoud be like this : “Wifi,SoundMode,Bluetooth,RotationLock,AirplaneMode,Flashlight,Hotspot,custom(com.samsung.android.lool/com.samsung.android.sm.battery.ui.mode.BatteryModeTile),Location,custom(com.samsung.android.mdx/.windowslink.tileservice.SeYourPhoneTileService),custom(com.samsung.android.app.smartcapture/com.samsung.android.app.screenrecorder.view.RecordScreenTile),custom(com.samsung.android.app.sharelive/.presentation.quickpanel.DeviceVisibilityTileService),custom(com.sec.android.desktopmode.uiservice/.DesktopModeTile),custom(com.samsung.android.smartmirroring/.tile.SmartMirroringTile),custom(com.google.android.gms/.nearby.sharing.SharingTileService),BlueLightFilter,UiModeNight,Dnd,custom(com.sec.android.app.camera/.service.QrTileService),custom(com.samsung.android.app.routines/.LifestyleModeTile),MobileData,”
  6. You should see the Mobile Data and Hotspot toggles appear in your Quick Settings tiles.
  7. Rearrange the tiles as desired.
  8. The toggles will persist through reboots but won’t survive a factory reset.

It’s important to note that while these instructions can be very helpful, using ADB commands does involve tinkering with system settings, and if not done carefully, it could potentially cause issues with your device. Always proceed with caution and ensure you’re following the steps accurately. Additionally, software updates or changes in Samsung’s firmware could potentially affect the success of these steps.

Leave a Reply

Your email address will not be published. Required fields are marked *