I was following this tutorial on how to get AdMob on your app: Tutorial here
on the part where it tells you what to put in your AndroidManifest file, where it says
<!--This meta-data tag is required to use Google Play Services.-->
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
In my project in android studio whenever I try to write this in my android manifest the value "@integer/google_play_services_version"
comes as cant resolve symbol. How do i fix this.
I have installed Google play services, Google repository and Android support Repository and library in the sdk. Im using android studio not eclipse too.