java - Implementing Interstitial Ad; Google Play out of date. Update emulator? -
pretty title says. i'm trying implement ads, , won't show up. logcat says ad loading, won't show on screen. think have downloaded in sdk manager, gradle play services 7.0.0, emulator has x86 google apis running it- might emulator that's off in other way needs updating?...i don't know how fix emulator if that's problem. below error comes across.
w/googleplayservicesutil﹕ google play services out of date. requires 7095000 found 6774470
you have update google play services
on device. use code prompt user needs update app.
int status = googleplayservicesutil.isgoogleplayservicesavailable( getapplicationcontext() ); if(status == connectionresult.success) { //alarm go , install google play services }else if(status == connectionresult.service_version_update_required){ toast.maketext(context,"please udpate google play service",toast.length_short).show }
Comments
Post a Comment