I need to get ConnectionResult.SUCCESS when I'm checking Google Play Services availability if installed Google Play Services version is 4.1+:
int code = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
Currently I'm geting code == ConnectionResult.SERVICE_VERSION_UPDATE_REQUIRED, when Google Play Services version is 5.0.84.
I know that all i need is to add some tag to manifest witch should include GooglePlayServices version code. But i do not know witch one and what version number belong to 4.1. Please advice.