admob

Transfer apps from one Admob account to other

给你一囗甜甜゛ 提交于 2020-01-03 11:33:09
问题 Just transferred my android apps to another Google Play Developer account so to get my payouts in Pakistan instead of U.S. I also have Admob account where the payouts only send to U.S. Now I want to receive my payouts in Pakistan therefore I want to transfer my apps to another Admob account with the address of Pakistan. Can I transfer my apps to other account? if not Should I make other ad units in my new account and edit it in my existing apps and then update my apps on Google Play market?

Android AdMob Real Ad Unit ID in Beta & Alpha channels

懵懂的女人 提交于 2020-01-03 11:19:11
问题 My android application has some admob ads. I am testing my admob in Google Play store Alpha & Beta channel. My question is: Can I use REAL admob ad unit ids when I deploy my app into Google play store Alpha & Beta channels? Does it violate google play policy? I read this in Google admob: Do I need to use test ads? Yes. It is against AdMob policy to use live ads during development, and doing so could cause the suspension of your AdMob account. BUT it seems not very clear to me. Thank you! 回答1:

failed to resolve com.google.android.gms:play-services-add:11.6.0 [duplicate]

﹥>﹥吖頭↗ 提交于 2020-01-03 05:46:06
问题 This question already has answers here : Failed to resolve com.google.android.gms play-services-auth:11.4.0 (12 answers) Failed to resolve: com.android.support:appcompat-v7:26.0.0 (12 answers) Failed to resolve: com.android.support:cardview-v7:26.0.0 android (24 answers) Closed 2 years ago . I'm trying to integrate Mobile Ads SDK on my personal app. however, I'm having failed to resolve com.google.android.gms:play-services-add:11.6.0 error when syncing module:app Gradle. Please help me how to

Google Admob Reward Video callback called mutiple times after reloading scene in Unity

筅森魡賤 提交于 2020-01-03 04:54:15
问题 I'm developing an android game apk in Unity. I've integrated Google Admob SDK in my project and succeeded to show the Google admob reward video ads in my android apk by referring https://developers.google.com/admob/unity/rewarded-video. However when scene is reloaded to restart game callback functions called multiple times. callback function example: // Called when an ad request has successfully loaded. rewardBasedVideo.OnAdLoaded += HandleRewardBasedVideoLoaded; // Called when an ad request

Can we able to display multiple ads in same screen using AdMob

跟風遠走 提交于 2020-01-03 03:24:05
问题 I have one app in which I want to display multiple ads in same screen. App has one recycler view & which is scrollable more than 200 items. After in each 6 items, I have planed display the ads from admob. Are we able to do this using admob .? I have tried with single ad unit id, with this all displaying ads are same. How to get different ads in same screen with more secure way & without violating policies ? Please help!! 回答1: You can have more than one ad in the same Activity, but only one

android interstitial ad is not diplaying

偶尔善良 提交于 2020-01-03 03:04:07
问题 android interstitial ad is displaying for test device AdRequest adRequest = new AdRequest.Builder() .addTestDevice("XXXXXXXXXXXXXX") .build(); interstitial.loadAd(adRequest); But after publishing(removed the "addTestDevice" line), I cannot see any ad. It always returns error code " ERROR_CODE_NO_FILL ".(from logcat) I searched a lot, but couldn't get a satisfactory answer. Is it one of the android's million bugs? The below is my admob dashboard screenshot. It has some few requests, but no

Android AdMob Banner add on top of Canvas?

半腔热情 提交于 2020-01-03 01:10:18
问题 I have created a small game using Canvas, and now I want to display AdMob ads on top of the canvas. The Example on the AdMob site suggests I do the following: // Create an ad. adView = new AdView(this); adView.setAdSize(AdSize.BANNER); adView.setAdUnitId(AD_UNIT_ID); // Add the AdView to the view hierarchy. The view will have no size // until the ad is loaded. LinearLayout layout = (LinearLayout) findViewById(R.id.linearLayout); layout.addView(adView); However, I am setting the contentView to

Phonegap screen flickers with AdMob animation

和自甴很熟 提交于 2020-01-02 08:08:30
问题 A user reported that the html view of the app "flickers" when the admob ad has an animation. Here's a small video he recorded: http://www.youtube.com/watch?v=gQ7yxzpqfDA I can't see that on my phone, but his Samsung S3 shows this problem. Any idea what can it be? or how I can disable this kind of ads? Thanks! Javyer 回答1: I was having a similar issue, see my flickering here: https://www.youtube.com/watch?v=AfKbrw2qQmg What triggered it in my case was a configuration change i was doing (a

Making AdMob work on Android 2.3 device?

心已入冬 提交于 2020-01-02 07:36:29
问题 Ok so I've read a lot of articles, questions and answers but still can't find one that works for me... I'm trying to show an AdMob banner in an Android app. I'm using Eclipse and the latest AdMob SDK (4.3.1), which requires Android 3.2 (13) to work. Thing is, my test device is only 2.3.3 (10). -- The best I've got so far is the app compiling against Android 2.3.3, running on the device, and a banner showing up but with this message: You must have AdActivity declared in AndroidManifest.xml

AdMob interstitial Ad is shown but can't click on it

醉酒当歌 提交于 2020-01-02 04:45:58
问题 I've got an app that displays an Interstitial Ad when certain activity is closed. I use a different activity to show the Ad. So far it shows the Ad correctly but nothing happens when I click on the Ad. I've tested it on many devices and beta testers report the same behavior. There are no errors in the logs. It's the same if I use debug build or signed APK that is uploaded to the play store (it's published in alpha state if it matters). I use the latest Play Store Services SDK. What could be