Skip to content Skip to sidebar Skip to footer

Android Studio Usb Debugging Google Play Services Out Of Date

I'm using Android Studio 1.2 and I'm trying to run an app (that requires Google Maps) using USB Debugging. My phone is running Android 4.1.2 (API 16 - Sony Xperia T). On Android

Solution 1:

  1. Your device should have the latest Google Play Services

  2. Your project should have the latest Google Play Services

Gradle configuration:

dependencies {
    compile'com.google.android.gms:play-services:7.3.0'
}
  1. Use GoogleApiAvailability class to check for this on the device

Post a Comment for "Android Studio Usb Debugging Google Play Services Out Of Date"