admob

How to display banners in live wallpaper preview?

半世苍凉 提交于 2019-12-24 06:51:16
问题 I am working on a live wallpaper and I need to display a banner on top of the preview screen. I have tried several solutions, but none seems to work. I found a similar question here but I think the solution that was proposed there was more to display banners in the settings screen. The toolkit I am using (which seems to be a wrapper of AdMob) has been built for standard android applications (not live wallpapers), and it needs an activity to be able to display the banner. So my questions is:

Admob ads now showing from two weeks

可紊 提交于 2019-12-24 06:42:21
问题 My reward ads match rate was about 90% but after 26 November match rate dramatically decrease down to 30%. Is it global problem or specific to my app ? 回答1: Seems to be happening to quite a few people (me including) There is a whole thread on it on the google product forums with no official response so far https://productforums.google.com/forum/#!topic/google-admob-help-forum/8oc3pebOrFw;context-place=forum/google-admob-help-forum 来源: https://stackoverflow.com/questions/53611921/admob-ads-now

Troubles with admob mediators

梦想与她 提交于 2019-12-24 06:38:01
问题 I'm having some troubles with monetization of my Android apps, The question is I can"t understand how to use the mediation service :( I'm trying to make a video rewards thing, right, I saw this video https://www.youtube.com/watch?v=TIiY1VIIQwg of admob garage, and it said that first step is set up mediated networks, then I had to watch this another video that should taught how https://www.youtube.com/watch?v=sFew8Squ4pE, but the example use a fake network, and now I'm really lost. I wanna to

Using AdMob interstitial ads in iOS game applications and Swift

六眼飞鱼酱① 提交于 2019-12-24 06:37:12
问题 Okay, I've spent days now doing this. I've gone through admob's tutorials, youtube, stack exchange, everything and I cannot find a solution to my problem. I'm trying to implement admob's interstitial ads into my iOS game application. The code compiles, builds, runs, the game is played, but ads will not show up. This is my GameViewController.swift import UIKit import SpriteKit import GoogleMobileAds class GameViewController: UIViewController, GADInterstitialDelegate { //AD STUFF---------------

Admob ad Error code : 0. Everithyng is updated and carefully programmed set it's not showing ads

老子叫甜甜 提交于 2019-12-24 05:56:52
问题 Here are my error codes: 07-31 13:37:47.413 31965-31965/corvusbyte.neverboredlite I/dalvikvm: Could not find method android.security.NetworkSecurityPolicy.getInstance, referenced from method com.google.android.gms.ads.internal.state.h.a 07-31 13:37:47.522 31965-31965/corvusbyte.neverboredlite D/DynamitePackage: Instantiating com.google.android.gms.ads.ChimeraMobileAdsSettingManagerCreatorImpl 07-31 13:37:47.530 31965-31965/corvusbyte.neverboredlite I/dalvikvm: Could not find method android

After click AdMob ads, I cannot return to my Android app by back button

不羁的心 提交于 2019-12-24 04:51:50
问题 I add AdMob in my application using the following code. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <com.google.ads.AdView android:id="@+id/adview" android:layout_width="wrap_content" android:layout_height="wrap_content" ads:adSize="SMART_BANNER" ads:adUnitId="ca

admob only sends test ad not real ads

余生颓废 提交于 2019-12-24 03:44:06
问题 I followed instructions on https://developers.google.com/mobile-ads-sdk/docs/admob/android/quick-start I changed the test code in strings.xml to real code. But the app is still showing test ads.(I have not posted the app on play store) It appears in emulator like this https://drive.google.com/file/d/0B6InEecSXedCNmM4eUVrTzVGaFU/view?usp=sharing Here is activity_main.xml code android:layout_alignRight="@+id/adView" android:layout_alignEnd="@+id/adView" /> <com.google.android.gms.ads.AdView

How to show AdMob ads (iOs and Android) through Actionscript in Flash CC

喜夏-厌秋 提交于 2019-12-24 03:32:38
问题 I am creating a flash game in Actionscript 3 and Flash CC. I intend to publish the game for iOs and Android. I am looking for a way to show AdMob ads in Actionscript. So far I have done those steps but no ads appear anywhere on screen: I have downloaded admob_all_in_one6.6.7.ane from here. I added the ane to my build path. I use the code below when the game is starting, before anything else: import so.cuo.platform.admob.Admob; import so.cuo.platform.admob.AdmobPosition; import so.cuo.platform

No resource identifier found for attribute adSize in package

眉间皱痕 提交于 2019-12-24 03:25:56
问题 I am trying to add AdMob ads in my application. In the manifest I have: <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> <activity android:name="com.google.android.gms.ads.AdActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"

Close button for AdMob banner

余生颓废 提交于 2019-12-24 02:48:10
问题 Is there any way to set a close button at a AdMob's banner? I mean those small 'x' to dismiss the banner... I'm currently adding my banner to the layout like this: <com.google.ads.AdView android:id="@+id/adView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" ads:adSize="SMART_BANNER" ads:adUnitId="my_id_here" ads:testDevices="TEST_EMULATOR" ads:loadAdOnCreate="true" /> 回答1: There is