I'm developing an app on Ionic Framework/cordova, and when I try "cordova run android" I get this:
"Error: No resource found that matches the given name (at value with value @integer/google_play_services_version)"
I don't really know what is happening, I tried to set the value with a fixed value (I know is not the best solution), and the problem continues.
Thanks in advance!
You need to add the play services library to your project. This doesn't work by jus adding an external jar. You need to import the play_services_lib project into your workspace. And then add this library to you project by going to
Your Project -> Properties -> Android -> Library
Checkout this link for detailed explanation on how to import the play_services_lib into your workspace
http://developer.android.com/google/play-services/setup.html
After this the error will vanish and you need not add any fixed value.