--
---
You received this message because you are subscribed to the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
Hello Eric ,If app is in foreground the cpu usage is fine, but in background its not fair. It will cause the battery drainage. Is there any way i can stopping web view thread in android. ?RegardsDeepak K K
On Thu, Feb 6, 2014 at 7:56 AM, Eric Leichtenschlag <eleich...@google.com> wrote:
Hi Deepak,
I'm not aware of anything the SDK could be doing that is so CPU intensive. I think that's just the nature of the ad and the WebView on Android.
Thanks,
Eric
On Wednesday, February 5, 2014 6:34:42 AM UTC-8, deepak k.k wrote:
Hello Eric,Since I integrated the AdMob view on my app, the CPU usage of the app grose to 12% all the time. If i disable ads, then cpu usage become 0. I integrated admob through google play service . In four places(Activity) i am showing ad.RegardsDeepak. K K
On Wed, Feb 5, 2014 at 1:54 AM, Eric Leichtenschlag <eleich...@google.com> wrote:
What is your error?
On Tuesday, February 4, 2014 1:18:34 AM UTC-8, hengpec...@gmail.com wrote:Who can help me i have problem withe my admob error ? please help me
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsubscrib...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
--
mAdView.setVisibility(View.VISIBLE); // show banner
mAdView.setVisibility(View.GONE); // hide banner
To set my ad banner visible, but I realise sometimes the whole screen will turn into white color and the ad banner will appear at the top instead of bottom.
The major issue is the whole screen turn into white colour and totally covered my default screen.
Any idea how can I fix it?
LinearLayout.LayoutParams adParams = new LinearLayout.LayoutParams(width, height+height-mAdView.getAdSize().getHeightInPixels(getContext()));
// Adding full screen container
addContentView(mAdView, adParams);
--
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsubscrib...@googlegroups.com.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsubscrib...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
@Override public void onResume() { super.onResume(); if (adView != null) { resumeWebView(adView); } }
@Override public void onPause() { if (adView != null) { pauseWebView(adView); } super.onPause(); } void pauseWebView(ViewGroup v) { for (int i = 0; i < v.getChildCount(); i++) { View child = v.getChildAt(i); if (child instanceof WebView) { ((WebView)child).onPause(); } else if (child instanceof ViewGroup) { pauseWebView((ViewGroup) child); } } } void resumeWebView(ViewGroup v) { for (int i = 0; i < v.getChildCount(); i++) { View child = v.getChildAt(i); if (child instanceof WebView) { ((WebView)child).onResume(); } else if (child instanceof ViewGroup) { resumeWebView((ViewGroup)child); } } }I’m not following this particular discussion, but regarding the code below, let me add my 2 cents, hope it helps somehow:
- WebView is inherited from ViewGroup, so theoretically you should onPause() and also call pauseWebView() on it since it could have children (ie, drop the “else”)
- the adView “root” member is not getting a onPause() call, but that may be on purpose.
Best
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
@Override public void onResume() { super.onResume(); if (adView != null) { adView.resume(); resumeWebView(adView); } }
@Override public void onPause() { if (adView != null) { adView.pause(); pauseWebView(adView); } super.onPause(); } void pauseWebView(ViewGroup v) { for (int i = 0; i < v.getChildCount(); i++) { View child = v.getChildAt(i); if (child instanceof WebView) { ((WebView) child).onPause(); } pauseWebView((ViewGroup) child); } } void resumeWebView(ViewGroup v) { for (int i = 0; i < v.getChildCount(); i++) { View child = v.getChildAt(i); if (child instanceof WebView) { ((WebView) child).onResume(); } resumeWebView((ViewGroup) child); } }To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
Oh, great. I thought the popup would show regardless of what methods/modules you use.
I can’t test yet with the Ads as I haven’t ported the code from the old standalone SDK to the GPservices version, but I will in a few days and will post back the results.
But anyway, I know this isn’t fault of mobile ads, but I don’t like this bundling of many services into a single library. I was much happier when I had more control on what I want to put on my app, which version, etc.
Best
From: google-adm...@googlegroups.com [mailto:google-adm...@googlegroups.com] On Behalf Of Eric Leichtenschlag
Sent: Thursday, March 20, 2014 12:46 PM
To: google-adm...@googlegroups.com
Subject: Re: Google Mobile Ads APIs in Google Play Services
Hi Pedro,
> For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
> For more options, visit https://groups.google.com/groups/opt_out.
--
---
You received this message because you are subscribed to a topic in the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-admob-ads-sdk/obflEHgq_og/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.
This problem have been exists for over one week and I am so strange that until now google still haven't fix the issue, we are losing money day by day because of the fault from google!and for deepak the reason why you get the timeout is because the user's google play service got update while the google play service library you used to built is still the old one, I would suggest you to build a new version of your apps with the new google play library asap, this cannot help your user with the old version to get the ad, but at least you can minimize your lose on this issue.Here is a summary.Old library + old google play in client device= ad oknew library + new google play in client device=ad okold library + new google play in client device= ad not shownold library + no google play in client device(which is common in china)= ad okThanks,Eddie2014/1/24 deepak k.k <dkk...@gmail.com>
Hi,i integrated google ads with play services, presently i am using banner ad.My problem is in some devise ad is loading in some device its not loading . I am getting error like this"01-23 16:42:09.009: I/Ads(8029): Trying mediation network: 5450213213286189855
01-23 16:42:09.009: I/Ads(8029): Instantiating mediation adapter: com.google.ads.mediation.admob.AdMobAdapter
01-23 16:42:14.009: I/Ads(8029): Timed out waiting for adapter.
01-23 16:42:14.009: I/Ads(8029): No fill from any mediation ad networks.
01-23 16:42:14.009: I/Ads(8029): Scheduling ad refresh 60000 milliseconds from now.
01-23 16:42:14.019: W/Ads(8029): Failed to load ad: 3
01-23 16:43:00.349: I/Ads(8029): Ad is not visible. Not refreshing ad.
01-23 16:43:00.349: I/Ads(8029): Scheduling ad refresh 60000 milliseconds from now.
01-23 16:43:14.019: I/Ads(8029): Starting ad request. "What is the reason?
On Friday, November 1, 2013 1:09:05 AM UTC+5:30, Eric Leichtenschlag wrote:Hey guys,We just launched Google Mobile Ads on Google Play services! Integrating with Google Play services allows your app to stay on the latest version of the Google Mobile Ads library without having to update your app, as updates will automatically get pushed to the device. Check out this post for the announcement of the new library, and our docs for how to get started. We also have a migration guide which showcases some implementation differences between the old Google Mobile Ads Android SDK and the new Google Mobile Ads library included as part of Google Play Services.Thanks,Eric
--
---
You received this message because you are subscribed to the Google Groups "Google AdMob Ads Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-admob-ads-sdk+unsub...@googlegroups.com.