<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: mannabri</title>
    <description>The latest articles on DEV Community by mannabri (@mannabri).</description>
    <link>https://dev.to/mannabri</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F795748%2Fda5192a5-05dc-4f6b-8790-01b0389cd68c.png</url>
      <title>DEV Community: mannabri</title>
      <link>https://dev.to/mannabri</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mannabri"/>
    <language>en</language>
    <item>
      <title>Monetize Your Ionic React App Using Google AdMob</title>
      <dc:creator>mannabri</dc:creator>
      <pubDate>Thu, 20 Jan 2022 19:48:04 +0000</pubDate>
      <link>https://dev.to/mannabri/monetize-your-ionic-react-app-using-google-admob-1cm8</link>
      <guid>https://dev.to/mannabri/monetize-your-ionic-react-app-using-google-admob-1cm8</guid>
      <description>&lt;p&gt;In this article you will learn how to show different Google AdMob ads in your Ionic React application. &lt;/p&gt;

&lt;p&gt;For this you will use the AdMob plugin that is maintained by the official &lt;a href="https://github.com/capacitor-community" rel="noopener noreferrer"&gt;Capacitor Community&lt;/a&gt; GitHub org.&lt;/p&gt;

&lt;p&gt;This plugin enables you to use three different ad formats:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Banner&lt;/strong&gt;: A basic ad format that appears at the top &amp;amp; bottom of the device screen.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Interstitial&lt;/strong&gt;: Full-page ads appear at natural breaks &amp;amp; transitions, such as level completion. Supports video content.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rewarded&lt;/strong&gt;: Ads reward users for watching short videos and interacting with playable ads and surveys. Good for monetizing free-to-play users. Supports video content.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Follow along to see all of them in action.&lt;/p&gt;

&lt;h2&gt;
  
  
  Create A New Ionic Project
&lt;/h2&gt;

&lt;p&gt;Use the Ionic CLI to start a new project and check if it works in the browser.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ionic start ionic-react-admob-example tabs --type=react
ionic serve
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Install And Configure The AdMob Plugin
&lt;/h2&gt;

&lt;p&gt;Install the &lt;a href="https://github.com/capacitor-community/admob" rel="noopener noreferrer"&gt;Admob Community Plugin&lt;/a&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;npm install --save @capacitor-community/admob
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Add the native iOS project.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ionic capacitor add ios
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Add the following in the &lt;code&gt;ios/App/App/info.plist&lt;/code&gt; file inside of the outermost &lt;code&gt;&amp;lt;dict&amp;gt;&lt;/code&gt; and replace [APP_ID] by your AdMob application Id.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight xml"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;key&amp;gt;&lt;/span&gt;GADIsAdManagerApp&lt;span class="nt"&gt;&amp;lt;/key&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;true/&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;key&amp;gt;&lt;/span&gt;GADApplicationIdentifier&lt;span class="nt"&gt;&amp;lt;/key&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;string&amp;gt;&lt;/span&gt;[APP_ID]&lt;span class="nt"&gt;&amp;lt;/string&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;key&amp;gt;&lt;/span&gt;SKAdNetworkItems&lt;span class="nt"&gt;&amp;lt;/key&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;array&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;dict&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;key&amp;gt;&lt;/span&gt;SKAdNetworkIdentifier&lt;span class="nt"&gt;&amp;lt;/key&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;string&amp;gt;&lt;/span&gt;cstr6suwn9.skadnetwork&lt;span class="nt"&gt;&amp;lt;/string&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;/dict&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/array&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;key&amp;gt;&lt;/span&gt;NSUserTrackingUsageDescription&lt;span class="nt"&gt;&amp;lt;/key&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;string&amp;gt;&lt;/span&gt;[Why you use NSUserTracking. ex: This identifier will be used to deliver personalized ads to you.]&lt;span class="nt"&gt;&amp;lt;/string&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Add the following code snippet in the &lt;code&gt;App.tsx&lt;/code&gt; file inside of the &lt;code&gt;App&lt;/code&gt; function body:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="nf"&gt;useEffect&lt;/span&gt;&lt;span class="p"&gt;(()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nx"&gt;AdMob&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;initialize&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;
    &lt;span class="na"&gt;requestTrackingAuthorization&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="p"&gt;});&lt;/span&gt;
&lt;span class="p"&gt;},&lt;/span&gt; &lt;span class="p"&gt;[]);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This will initialize AdMob for the entire app.&lt;/p&gt;

&lt;h2&gt;
  
  
  Create A Banner Ad
&lt;/h2&gt;

&lt;p&gt;Let's start configuring a banner at the bottom of the app.&lt;/p&gt;

&lt;p&gt;Add the following code snippet in the &lt;code&gt;Tab1.tsx&lt;/code&gt; file inside of the &lt;code&gt;Tab1&lt;/code&gt; function body:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;showBanner&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;async &lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="na"&gt;options&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;BannerAdOptions&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="na"&gt;adId&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;ca-app-pub-3940256099942544/2934735716&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="c1"&gt;// demo ad unit id,&lt;/span&gt;
    &lt;span class="na"&gt;adSize&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;BannerAdSize&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;BANNER&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="na"&gt;position&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;BannerAdPosition&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;BOTTOM_CENTER&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="na"&gt;isTesting&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="p"&gt;};&lt;/span&gt;
  &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;AdMob&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;showBanner&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;options&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;span class="nf"&gt;useEffect&lt;/span&gt;&lt;span class="p"&gt;(()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nf"&gt;showBanner&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="p"&gt;},&lt;/span&gt; &lt;span class="p"&gt;[]);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This will show the banner as an overlay at the bottom of the page. Be advised to follow &lt;a href="https://support.google.com/admob/answer/2936217?hl=de&amp;amp;ref_topic=2936214&amp;amp;visit_id=637777030182995119-279234529&amp;amp;rd=1" rel="noopener noreferrer"&gt;Google's guidelines on ad placement&lt;/a&gt; in a production app.&lt;/p&gt;

&lt;p&gt;Hints: &lt;/p&gt;

&lt;p&gt;Do not use a real ad unit id during development to prevent policy violations. Instead, you can get a demo id from Google &lt;a href="https://developers.google.com/admob/ios/test-ads" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;If you want to use your production ad unit id, you can do so by activating the test mode with &lt;code&gt;isTesting: true&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;At this point, it's time to build the native iOS project.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ionic capacitor build ios
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Open XCode and run a simulator device to see it in action. It may take a couple of seconds for the ad to appear.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6g080mvia2qd7w74sjdf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6g080mvia2qd7w74sjdf.png" alt="A screenshot of an iPhone showing a Google AdMob banner ad"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Well done, you've created your first ad!&lt;/p&gt;

&lt;p&gt;Obviously, there is more to explore. There are functions to &lt;em&gt;show&lt;/em&gt;, &lt;em&gt;hide&lt;/em&gt;, &lt;em&gt;resume&lt;/em&gt; and &lt;em&gt;remove&lt;/em&gt; the banner and options for the banner &lt;em&gt;size&lt;/em&gt; and &lt;em&gt;position&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Check out the &lt;a href="https://github.com/mannabri/ionic-react-admob-example" rel="noopener noreferrer"&gt;full example code&lt;/a&gt; and try out the different possibilities.&lt;/p&gt;

&lt;h2&gt;
  
  
  Create An Interstitial Ad
&lt;/h2&gt;

&lt;p&gt;Simply add the following code snippet in the &lt;code&gt;Tab2.tsx&lt;/code&gt; file inside of the &lt;code&gt;Tab2&lt;/code&gt; function body:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;showInterstitial&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;async &lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="na"&gt;options&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;AdOptions&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="na"&gt;adId&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;ca-app-pub-3940256099942544/4411468910&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="c1"&gt;// demo ad unit id&lt;/span&gt;
    &lt;span class="na"&gt;isTesting&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="p"&gt;};&lt;/span&gt;
  &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;AdMob&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;prepareInterstitial&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;options&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;AdMob&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;showInterstitial&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;

&lt;span class="nf"&gt;useEffect&lt;/span&gt;&lt;span class="p"&gt;(()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nf"&gt;showInterstitial&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="p"&gt;},&lt;/span&gt; &lt;span class="p"&gt;[]);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This will load a full-page ad which also includes an exit button.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fx5zkqpj0iokofk7bvici.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fx5zkqpj0iokofk7bvici.png" alt="A screenshot of an iPhone showing a Google AdMob interstitial ad"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Create A Reward Video Ad
&lt;/h2&gt;

&lt;p&gt;Simply add the following code snippet in the &lt;code&gt;Tab3.tsx&lt;/code&gt; file inside of the &lt;code&gt;Tab3&lt;/code&gt; function body:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight tsx"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;showRewardVideo&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;async &lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="na"&gt;options&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;RewardAdOptions&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="na"&gt;adId&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;ca-app-pub-3940256099942544/1712485313&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="c1"&gt;// demo ad unit id&lt;/span&gt;
    &lt;span class="na"&gt;isTesting&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="p"&gt;};&lt;/span&gt;
  &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;AdMob&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;prepareRewardVideoAd&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;options&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
  &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;AdMob&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;showRewardVideoAd&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;

&lt;span class="nf"&gt;useEffect&lt;/span&gt;&lt;span class="p"&gt;(()&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nf"&gt;showRewardVideo&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="p"&gt;},&lt;/span&gt; &lt;span class="p"&gt;[]);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcjdw4bo4z3oogtz0jbad.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcjdw4bo4z3oogtz0jbad.png" alt="A screenshot of an iPhone showing a Google AdMob rewards ad"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This will load a full-page ad which also includes an exit button.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;✅ As you can see, it's simple to place different ads with this plugin. I recommend you to put all relevant AdMob code into a separate module in order to keep your code quality high.&lt;/p&gt;

&lt;p&gt;⚠️ AdMob provides one more customizable ad format: &lt;strong&gt;native&lt;/strong&gt;. It matches the look &amp;amp; feel of your app and can appear inline with app content. This ad format has not yet been implemented by this plugin.&lt;/p&gt;

&lt;p&gt;🕵️‍♂️ So far I have not found another plugin, that implements this native format. As I would like to place some inline ads in my next iOS app I am looking for an alternative. &lt;strong&gt;Please leave a comment if you have an idea.&lt;/strong&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Ionic 6 &lt;code&gt;"@ionic/react": "^6.0.0"&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Capacitor 3 &lt;code&gt;"@capacitor/core": "3.3.4",&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Official Capacitor Community Plugin Admob. &lt;code&gt;"@capacitor-community/admob": "^3.2.0",&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Helpful Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/mannabri/ionic-react-admob-example" rel="noopener noreferrer"&gt;Full Example Code on GitHub&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://ionicframework.com/docs/intro/cli" rel="noopener noreferrer"&gt;Ionic Installation&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/capacitor-community/admob" rel="noopener noreferrer"&gt;Official Capacitor Community Plugin for Google AdMob&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://support.google.com/admob" rel="noopener noreferrer"&gt;Google AdMob Help&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://support.google.com/admob/answer/2936217?hl=de&amp;amp;ref_topic=2936214&amp;amp;visit_id=637777030182995119-279234529&amp;amp;rd=1" rel="noopener noreferrer"&gt;Google's Guidelines on Ad Placement&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>ionic</category>
      <category>googleadmob</category>
      <category>react</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
