Quantcast
Channel: Questions in topic: "ads"
Viewing all articles
Browse latest Browse all 1416

admob ads not working on android

$
0
0
1. admob ads godd working in unity 2. but when I builded it, not working on android 3. what's the problem?(device or C# code or computer) I really really don't know ~~ plz reply god answer~~ 4. below my C# code using System.Collections; using System.Collections.Generic; using UnityEngine; using GoogleMobileAds.Api; public class BottomBanner : MonoBehaviour { private BannerView bannerView; public void Start() { // Initialize the Google Mobile Ads SDK. MobileAds.Initialize(initStatus => { }); this.RequestBanner(); } private void RequestBanner() { #if UNITY_ANDROID string adUnitId = "ca-app-pub-3940256099942544/6300978111"; #elif UNITY_IPHONE string adUnitId = "ca-app-pub-3940256099942544/2934735716"; #else string adUnitId = "unexpected_platform"; #endif // Clean up banner ad before creating a new one. if (this.bannerView != null) { this.bannerView.Destroy(); } AdSize adaptiveSize = AdSize.GetCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth(AdSize.FullWidth); this.bannerView = new BannerView(adUnitId, adaptiveSize, AdPosition.Bottom); // Create an empty ad request. AdRequest request = new AdRequest.Builder().Build(); // Load the banner with the request. this.bannerView.LoadAd(request); } }

Viewing all articles
Browse latest Browse all 1416

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>