Tuesday, September 24, 2013

Android in Vision-2020

Just have a look on future android in 2020.. Version name may start with " R"
Your messaging services, video calling and hangouts etc....
http://www.techradar.com/news/software/operating-systems/android-in-2020-the-future-of-google-s-mobile-os-explored-1168141

Tuesday, April 9, 2013

G. V. Raman(a)Droid: Can't find Android SDK Manager and AVD Manager..

G. V. Raman(a)Droid: Can't find Android SDK Manager and AVD Manager..: If you are unable to find Android SDK Manager and AVD Manager follow the below steps:   In eclipse go to Windows --> Custom Perspec...

Can't find Android SDK Manager and AVD Manager..

If you are unable to find Android SDK Manager and AVD Manager follow the below steps:
 
  • In eclipse go to Windows --> Custom Perspective 









  • After selecting Custom Perspective from windows tab it will open a new window. In that window go to Command Groups Availability tab and check Android SDK and AVD Manager option.


 

  • Click on OK button. Now you can see Andriod SDK Manager and AVD manager in your eclipse.

Sunday, March 31, 2013

Installing external APK files on Android Emulator

To install an external APK on Android Virtual Deice (AVD) or on Emulator go through the following step-by-step procedure.
step 1-
         Launch the emulator
step 2-   
         Paste your APK file whichever you want to install on emulator in android-sdk-windows\platform-tools directory.
step 3-
         open cmd prompt and move to platform-tools folder of Android SDK directory.
step 4-
         Run the  following command:
  • adb install "xxx.apk" 
    • Example: abd install "Indianlaws.apk"
If Exists:
 If the emulator is already has that application it will give a failure notification to the user - [ INSTALL_FAILED_ALREADY_EXISTS ].

After successful installation it will give a " SUCCESS" message to the user.
Please, find the procedure in the following screenshot.