B4A Library AmazonDeviceMessaging (ADM) - DonManfred (first post)    Mar 28, 2020   (2 reactions) Q: What is ADM?
Amazon Device Messaging (ADM) is a push-messaging solution that lets you send messages to Amazon devices running your app. Your server software originates a message and sends it to ADM, and ADM delivers it to a specified instance of your app.
Q: Is ADM free for developers?
ADM B4A Question AdBuddiz Manifest entry and the CameraEx Class - Clara AdBuddiz (first post)    Feb 01, 2016 Hi Cableguy,
AdBuddiz ad is an Android Activity, which means whenever you display an ad, the current activity is paused and when the ad is hidden it is resumed. I'm not an Basic4android expert, nor do I know CameraEx, but I think one issue could be that CameraEx is successfully paused but not resu B4i Question Not getting any Ad's (Admob)? - ilan (first post)    Dec 21, 2020   (2 reactions) good news. ad's started working today. this is the first time it took about 9 days to start showing ads. normally ads are shown within a few hours after creating the ad unit.
anyway, if someone encounters such an issue take in account it may sometimes take a week or even more.
thanks :) B4i Question iAdMob Banner ? - Erel (first post)    Dec 11, 2019 Simple banner:
'ad is a global AdView variable
ad.Initialize("ad", "ca-app-pub-12675708333333/47443333", Page1, ad.SIZE_BANNER)
Page1.RootPanel.AddView(ad, 0, 0, 320dip, 50dip)
Sub Ad_AdScreenDismissed
End Sub
Sub Ad_FailedToReceiveAd (ErrorCode As String)
Log("Failed: " & ErrorCode)
End S B4i Question how do i show ad's? - ilan    Jun 11, 2019   (1 reaction) i tried the iadmob lib and in the log i can see that the device recived the ad but i dont see it on my device what am i doing wrong?? this is my code: Private Sub Application_Start (Nav As NavigationController) .... adview1.Initialize("Ad","ca-app-pub-8081096xxxxxxxxxxxxxxxxxxx",Page1,advie B4A Question Google ads - Spright    Sep 14, 2023 Initialize2("ad", "ca-app-pub-3940256099942544/6300978111", size.Native)
' panel.Color = Colors.Transparent
' panel.AddView(adView, 0, 0, size.Width, adHeight)
' adView.LoadAd
End Sub
Sub Activity_Resume
Ads.ShowOpenAdIfAvailable(1)
If lGdx.IsInitialized Then lGdx.Resume
End Sub
B4i Question Admob with b4xpages problem - Erel (first post)    Aug 25, 2020   (1 reaction) The third parameter should be a B4i page, not B4XPage.
ad.Initialize("ad", "ca-app-pub-3940256099942544/6300978111 ", B4XPages.GetNativeParent(Me), ad.SIZE_BANNER) B4A Question FirebaseAdMob2 My Test App not displaying test ad, Ad is blank - Andrew King    May 26, 2022 Array with test device ids. See unfiltered logs to find id.
Dim AdaptiveSize As Map = GetAdaptiveAdSize
'Add Private BannerAd As AdView in Globals sub
bannerad.Initialize2("BannerAd", MY_AD_UNIT_ID,AdaptiveSize.Get("native"))
bannerad.Color = Colors.red
Root.AddView(bannerad, 0 B4A Question how to run adb shell in app? - Erel (first post)    Nov 13, 2022 You can't. ADB is a desktop tool. B4A Question android 8.0 not showing banner ads - Erel (first post)    May 29, 2018   (1 reaction) It looks correct. As a test try it with the default size: adview1.Initialize2("ad", "ca-app-pub-1xxx/xxx", adview1.SIZE_BANNER) Activity.AddView(adview1, 0, 0, 320dip, 50dip) Check the unfiltered logs for messages. Page: 1   2   3   4   5   6   7   Powered by ColBERT |