I'm using Android Studio 0.5.9 on OS X. I'm attempting to get the Google APIs to work using the instructions here: http://developer.android.com/google/play-services/setup.html#Install
However, when I get to the part about adding this:
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
to AndroidManifest.xml, it says that it "Cannot resolve @integer/google_play_services_version", and it won't let me import anything starting with "com.google".
Here's my build.gradle:
apply plugin: 'android'
dependencies {
compile "com.android.support:appcompat-v7:18.0.+"
compile 'com.google.android.gms:play-services:4.4.52'
}
I'm completely stumped! Thanks!