I get this error when trying to use latest Google Play Services SDK:
C:\\Program Files (x86)\\Android\\android-sdk\\extras\\google\\google_play_services\\lib
Follow these steps
google-play-services_lib
projectClose the project and Open it, this helps too.
I fixed it by changing the minSdkVersion
in google-play-services_lib
manifest to the minimum SDK version used by my app. Example: <uses-sdk android:minSdkVersion="14"/>
I don't use any IDEs. The way I fixed it was to upgrade to gradle
and set compileSdkVersion
to 23
or another option was to stick with ant
and the old version of Google Play Services (rev. 21) which luckily I had checked into my repo. (the SDK manager will always give you latest version which is 29 at time of this writing).