I am trying to run the program from the tutorial but I am getting stuck with the following error from the manifest.
Parsing code. 0.12
Compiling code. 0.13
Compiling layouts code. 0.07
Generating R file. Error
AndroidManifest.xml:37: error: Error: No resource found that matches the given name (at 'value' with value '@integer/google_play_services_version').
The manifest code I am using for Google maps is.
AddApplicationText(<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyBlSaGaL3LYUs5_1xxT6E4EdsBO5ODN9Z0"/
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"
/>)
AddPermission(android.permission.ACCESS_NETWORK_STATE)
[/CODE]
What code should go in at this value: android:value="@integer/google_play_services_version"
Also the tutorial says that a reference should be put in to Google Play
#AdditionalRes: C:\Program Files (x86)\Android\android-sdk\extras\google\google_play_services\libproject\google-play-services_lib\res, com.google.android.gms
If I add this it gives an error in the manifest and also I can not find com.google.android.gms in the res file.
Help.