Google Play Services v13 error meta-data in AndroidManifest

The Google Maps getting started guide says:

Add the Google Play services version to your app's manifest

Edit your application's AndroidManifest.xml file, and add the following declaration within the element. This embeds the version of Google Play services that the app was compiled with.

<meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

if you use google play service revision 13 then must put this meta tag:

<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />

but it not work lower level api like android 2.*. to resolve this problem first install google play service for frayo revision 12 and use it. it works on all api level