Get access to over 100 FireMonkey cross platform samples for Android, IOS, OSX, Windows, and Linux!

AndroidAppmethodCode SnippetDelphiDemoFiremonkey

Admob Interstitials Demo Source Code Using The Android JNI In Delphi XE5 Firemonkey

Delphi XE5 Firemonkey InterstitialDeveloper Sadettin Polat wrote in with a link to a demo he wrote which implements AdMob interstitials in Delphi XE5 Firemonkey. The demo is a good demonstration of using the Delphi Android JNI. In previous demos of using Admob with Delphi I’ve only seen banner ads demonstrated. One caveat is that Google Play may no longer be accepting applications with the original Admob SDK in them as of August 1st 2014. Google has a new Admob SDK which is part of the Google Play Services SDK. However, even if you can no longer use the SDK from this demo on Google Play it does give you a great starting point for converting it forward to the new Google Play Services Admob SDK. Google has a migration guide here that shows the differences between the two SDKs. Similar Android JNI code should work in Delphi XE6 and AppMethod. Here is a sample of the type section from the Admob interstitial demo:
type
TInterstitialAdListener = class(TJavaLocal, JAdListener)
public
FParent:TForm;
//    constructor Create(aParent:TForm);
procedure onReceiveAd(ad: JAd); cdecl;
procedure onFailedToReceiveAd(ad: JAd; error: JAdRequest_ErrorCode); cdecl;
procedure onPresentScreen(ad: JAd); cdecl;
procedure onDismissScreen(ad: JAd); cdecl;
procedure onLeaveApplication(ad: JAd); cdecl;
end;

Head over and check out the full source code for the Admob SDK interstitial demo on Github before downloading it.



Have Delphi Firemonkey questions? Ask and get answers on StackOverflow.

Related posts
DelphiDemoFiremonkeyLinuxOSXWindows

Build Classic Desktop Operating System Themes Apps With Styles For FireMonkey

DelphiFiremonkeyIDEWindows

Easily Let AI Agents Query And Manage Your Databases Via FireDAC MCP

DelphiDemoShowcaseWindows

Build A Tiny, Explainable Language Model Entirely In Delphi

ComponentDelphiDemoFiremonkeyLibraryWindows

Run Google's Gemma 4 Vision Models Natively In Delphi

Sign up for our Newsletter and
stay informed
[mailpoet_form id="1"]

1 Comment

Comments are closed.