Category Archives: Android

Android related posts

Телевизори TCL изключване на Demo / Store / Retail mode режим

На български инструкции как да изключите режим “В магазин” на телевизор TCL с Андроид.

  • Натиснете бутона Настройки (⚙️) на дистанционното.
  • Отидете до Система.
  • Изберете Среда.
  • Сменете от “В магазин” на режим “У дома”.
  • Потвърдете и излезте от менюто.

Ето така трябва да изглежда, за да е в режим “У дома”:

TCL телевизор в режим "У дома"

How to Switch Your TCL Google TV from Store Mode to Home Mode
Is your TCL Google TV showing demo videos, overly bright picture settings, or automatic pop-ups with product features?
If YES – then it is in Store Mode (also called Retail Mode).

To switch your TV to Home Mode through the TV’s Settings Menu:

  • Press the Settings button (⚙️) on your TCL remote.
  • Scroll down to System then Advanced Settings.
  • Select Usage Mode.
  • Choose Home Mode.
  • Confirm and exit the menu.

List of Android hidden USSD codes

Да не изчезне от източника: http://www.geekboots.com/tips-and-tricks/list-of-android-hidden-ussd-codes-that-you-must-know е това копие на интересни кодове за Андроид.

List of Android hidden USSD codes – Списък с кодове за управление на Андроид устройства

  1. *#06# = Check IMEI of your device.
  2. *#0*# = Enter service menu on the very new Android phones.
  3. *#0228# = Check battery status. (Year 2024 checked – works!)
  4. *#9090# / *#1111# = Make device in Service mode.
  5. *#*#4636#*#* = Get information about battery, usage statistics and device.
  6. *#*#34971539#*#* = Get all information about camera.
  7. *#12580*369# = Get software and hardware info.
  8. *#228# = For ADC Reading.
  9. #7353# = Hide test menu 2/Self Test Mode.
  10. ##7764726 = Hide service menu for Motorola Droid.
  11. *#*#273283*255*663282*#*#* =For backup of our all media files.
  12. *#*#232338#*#* = Display the Wi-Fi mac address.
  13. *#7465625# = View status of lock-phone.
  14. *#*#3264#*#* = Show RAM version.
  15. *#*#44336#*#* = Display build time and change list number.
  16. *#*#232337#*# = Display device’s Bluetooth address.
  17. *#*#197328640#*#* = Enables test mode for service.
  18. *#*#8351#*#* = Enable voice dial mode.
  19. *#*#8350#*#* = Disable the voice dial mode.
  20. *#*#0842#*#* = Test Back-light/vibration.
  21. *#*#2664#*#* = Test the touch-screen.
  22. *#*#0289#*#* =For Audio test.
  23. *#*#0*#*#* =For LCD display test.
  24. *#*#232331#*#* = Test Bluetooth of any Android device.
  25. *#*#0283#*#* = Perform a packet loop-back test.
  26. *#*#1575#*#* =For advanced GPS test.
  27. *#*#1472365#*#* =Perform a quick GPS test.
  28. *#*#0588#*#* = Perform a proximity sensor test.
  29. *#*#7262626#*#* = Perform field test.
  30. *#*#232339#*#* =Testing Wireless LAN.
  31. *#9090# = Diagnose configuration of device.
  32. *#872564# = Control U-S-B logging.
  33. *#9900# =System dump mode.
  34. *#*#7780#*#* =Resetto factory state.
  35. *2767*3855# = Format Android device.
  36. *#*#4986*2650468#*#* = Get PDA, phone, H/W and RF Call Date.
  37. *#*#1234#*#* = Know about PDA and firmware version.
  38. *#*#1111#*#* =FTA Software version.
  39. *#*#2222#*#* =FTA Hardware version.
  40. *#*#7594#*#* = Change power button behavior once code enabled.
  41. *#*#8255#*#* = Launch Google Talk service monitor.

И един полезен универсален (не само за Андроид) код – #31# преди номера, който се набира скрива (CLIR) изпращането на номера на обаждащия се само за този разговор. Надълго и на английски е обяснено тук:

  • If you have not requested CLIR activation through the network, now you have the ability to activate CLIR selectively through your terminal (if available) or by dialing #31# before the number of the receiver.
  • If you have already activated CLIR through the network you have also the ability to de-activate it selectively through your terminal (if available) or by dialing *31# before the number of the receiver.

Android ADB commands

How to transfer apps between devices:

http://android.stackexchange.com/questions/21112/new-phone-how-to-transfer-game-progress

If you are on Android 4.0 or up, you can use the adb backup resp. adb restore command even without rooting your device. The syntax is:

adb backup [-f <file>] [-apk|-noapk] [-shared|-noshared] [-all] [-system|nosystem] [<packages...>]

To do a full backup, this would e.g. mean

adb backup –apk –shared –all –f /backup/mybackup.ab

(resp.

adb restore /backup/mybackup.ab

to restore the backup on the new device).

Continue reading Android ADB commands