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:
Your device should have the latest Google Play Services
Your project should have the latest Google Play Services
Gradle configuration:
dependencies {
compile'com.google.android.gms:play-services:7.3.0'
}
- Use GoogleApiAvailability class to check for this on the device
Post a Comment for "Android Studio Usb Debugging Google Play Services Out Of Date"