Showing posts with label Android. Show all posts
Showing posts with label Android. Show all posts

Friday, May 27, 2016

Device is not showing in Android Studio

If the Device is not showing in Android studio, do the following steps
  • Go to Device Manager and check for the device, it should be a yellow warning icon against your device driver
  • Now go to Android studio -> Tools -> SDK Manager -> Android SDK -> Select SDK Tools tab -> Install the Google USB Driver
  • Once the driver is installed, in explorer under C drive search for android_winusb.inf. It should be in a folder like C:\Android\sdk\extras\google\usb_driver. Depends on your installation directory.
  • But copy the directory from here
  • Go to your device manager, and go to the driver against your device, right click and select update driver software, then select Browse My computer for drivers (2nd option), then put the directory you have copied, click next.
  • It will update ypur driver and meanwhile, you will get ope pop up in your device to allow debug access from your computer.
  • Select yes and Ok
Your are done now.
Cheers!

Friday, February 8, 2013

Android Secret Codes


Few helpful Android secret codes

*#*#4636#*#* - Phone / Battery / Usage information
*#*#7780#*#* - factory data reset
*2767*3855# - factory format
*#*#34971539#*#* - information about phone camera
*#*#7594#*#* - End Call / Power
*#*#273283*255*663282*#*#* - File copy / backup
*#*#197328640#*#* - Service mode.


WLAN, GPS and Bluetooth Test Codes:

*#*#232339#*#* OR *#*#526#*#* OR *#*#528#*#* - WLAN test (Use "Menu" button to start various tests)
*#*#232338#*#* - Shows WiFi MAC address
*#*#1472365#*#* - GPS test
*#*#1575#*#* - Another GPS test
*#*#232331#*#* - Bluetooth test
*#*#232337#*# - Shows Bluetooth device address
*#*#8255#*#* - This code can be used to launch GTalk Service Monitor.



GET FIRMWARE VERSION INFORMATION:

*#*#4986*2650468#*#* - PDA, Phone, H/W, RFCallDate
*#*#1234#*#* - PDA and Phone
*#*#1111#*#* - FTA SW Version
*#*#2222#*#* - FTA HW Version
*#*#44336#*#* - PDA, Phone, CSC, Build Time, Changelist number



CODES TO LAUNCH VARIOUS FACTORY TESTS:

*#*#0283#*#* - Packet Loopback
*#*#0*#*#* - LCD test
*#*#0673#*#* OR *#*#0289#*#* - Melody test
*#*#0842#*#* - Device test (Vibration test and BackLight test)
*#*#2663#*#* - Touch screen version
*#*#2664#*#* - Touch screen test
*#*#0588#*#* - Proximity sensor test
*#*#3264#*#* - RAM version

Have fun with these secrets codes .....:)

Saturday, May 19, 2012

How to force install apps to SD card in Android without ROOT!



Getting Ready:
  1. First you have to enable USB debugging on your Android device from Settings > Applications > Development > USB debugging.
  2. You need to download and install the latest Android SDK on your computer fromhttp://developer.android.com/sdk/.
  3. Install the latest Java SDK.
Tutorial:
  1. Extract the package to the folder of your choice [Let's say- C:/android-sdk-windows/], run SDK Manager.exe
  2. Close the command / windows command prompt window that opens.
  3. In the new window, click on Available Packages to the left. Untick all options you are prompted to download except the USB driver option. Usb driver option will need an additional packages called Android SDK tools revision x(13 as of this time) & android sdk platform-tools revision x(7 as of this time) at the top of the list.
    (Note-If you get an error message at this point, enable “Force https://…” in the Settings.)
    Click on the Install Selected button in the bottom right corner and follow the prompts. )
  4. Do not open Samsung Kies. Connect your phone to your computer with a USB-cable. Your OS will prompt you to install new drivers. Choose to install them from the android-sdk-windows/extras/google/usb_driver folder. Do not mount your device; you only need to plug-in the cable.
    (If you don’t see this prompt like me, that means you have USB drivers already installed!! If you are running into problems with USB drivers, install these manually- SAMSUNG USB drivers )
  5. Run command prompt in administrator.
    Type in the following after the “>” at each step (without quotations,and including spaces and capital letters)
    cd C:\android-sdk-windows\platform-tools
    adb devices
    A list of devices attached should come
    adb shell
    A $ sign should pop up
    pm setInstallLocation 2
    Another $ should pop up
And you’re done!! Close everything, disconnect phone, reboot & enjoy!!