Reputation: 2934
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 screenshots
Upvotes: 0
Views: 78