Saturday, October 24, 2015

adb server is out of date / adb is not responding

Hi  friends
I was getting this error while Android Studio is getting started. Hopefully I got a solution, I got this issue fixed after UNINSTALLING MOBOGENIE software which I use to connect and backup my data and Install android apps on my mobile.

Just UNINSTALL any other software that connects to the Android Mobile. Hope it
solves your problem. GOODLUCK.

Sunday, October 11, 2015

Get HTTP Post JSON request from server android

HI,
YOU CAN USE XML PARSER FOR JSON.


JSON PARSING IN ANDROID



Multiple game controllers on Android

HI FRIEND,
I THINK THERE MIGHT BE A PROBLEM WITH YOUR HARDWARE DEVICE ON WHICH YOU ARE TESTING IT.
PLEASE TRY DEBUGGING IT ON ANOTHER DEVICE.

REVERSE A NUMBER

REVERSE A NUMBER

 public static void main(String args[])
   {
      int n, reverse = 0;
 
      System.out.println("Enter the number to reverse");
      Scanner in = new Scanner(System.in);
      n = in.nextInt();
 
      while( n != 0 )
      {
          reverse = reverse * 10;
          reverse = reverse + n%10;
          n = n/10;
      }
 
      System.out.println("Reverse of entered number is "+reverse);
   }

“cannot resolve symbol R” in Android Studio

“cannot resolve symbol R” in Android Studio

Hi, this error is caused due to min-sdk version attribute in build.gradle(module) file. 
Please change the min-sdk version to 9 or higher. 
Hope it solve the problem. please comment or share this link.