Vishnudev K
Vishnudev K

Reputation: 2934

Google play services resource not found

I am trying to put AdsMob on my application
as per https://developers.google.com/mobile-ads-sdk/docs/admob/fundamentals#play

But I am getting the Google play services resource not found in log cat I've configured the play services lib project.

I've used the following code to check play services available in device which is successful
int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(getApplicationContext()); if (resultCode == ConnectionResult.SUCCESS){ Log.d("Success","device has play service"); }

Please check the screenshotsScreenshot for the lib project setup

screenshot for errorlog

Upvotes: 0

Views: 78

Answers (1)

Steven
Steven

Reputation: 271

This is not a problem you should be worried about.

Google answers this in their FAQ and states, "You can safely ignore this message. Your app will still fetch and serve banner ads"

Upvotes: 1

Related Questions