Skip to content

deckameron/Ti.Android.Admob

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

Ti.Android.Admob

Allows for the display of AdMob in Titanium Android applications.

Please note that if your androidManifest has screen support set to: android:anyDensity="false", any banner ads will display too small on high density devices. It is not clear at this point if this is a bug with AdMob or Titanium. In any event, you will either need to NOT set your screen support -- or set android:anyDensity="true" and adjust your app layout accordingly

Getting Started

View the Using Titanium Modules document for instructions on getting started with using this module in your application.

Requirements

For Ti.Android.Admob 9.3.14

  • Titanium SDK 10.0.0+

Doubleclick for Publishers Developer Docs

https://developers.google.com/mobile-ads-sdk/

All AdViews, except Rewarded and RewardedInterstitial, have the parameters keyword and contentUrl and can be used with DFP mapping

Download

You can get it here

How to use it

First you need add this meta-data to your tiapp.xml

<android>
    <manifest>
        <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:roundIcon="@mipmap/ic_launcher_round"
            android:supportsRtl="true"
            android:theme="@style/AppTheme">

            <!-- ========================== -->
            <!-- THIS IS THE IMPORTANT PART -->
            <meta-data
                android:name="com.google.android.gms.ads.APPLICATION_ID"
                android:value="YOUR-APP-ID"/>
            <!-- THIS IS THE IMPORTANT PART -->
            <!-- ========================== -->

            <activity android:name=".MainActivity">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
        </application>
    </manifest>
</android>

You need to require the module

var Admob = require("ti.android.admob");

SETTING A TEST DEVICE (VERY IMPORTANT)

// Get your device id from the logs after you compile the project with the module for the fisrt time.
Admob.setTestDeviceId("AC65D99D31C5DA727B986DC35D45C091");

BANNER

Supported AdView Sizes

Types Description
BANNER Mobile Marketing Association (MMA) banner ad size (320x50 density-independent pixels).
LARGE_BANNER Large banner ad size (320x100 density-independent pixels).
SMART_BANNER DEPRECATED - A dynamically sized banner that is full-width and auto-height.
MEDIUM_RECTANGLE Interactive Advertising Bureau (IAB) medium rectangle ad size (300x250 density-independent pixels).
FULLBANNER Interactive Advertising Bureau (IAB) full banner ad size (468x60 density-independent pixels).
LEADERBOARD Interactive Advertising Bureau (IAB) leaderboard ad size (728x90 density-independent pixels).
let adView = Admob.createBanner({
    bottom : 0,

    // You can usethe supported adView sizes:
    adSize: Admob.BANNER,
    // OR a custom size, like this:
    // customAdSize: {
    //     height: 50,
    //     width: 300
    // },

    adUnitId: 'ca-app-pub-3940256099942544/6300978111', //USE YOUR AD_UNIT ID HERE

    // DFP mapping
    //keyword : "titanium",
    //contentUrl : "www.myur.com",
});
window.add(adView);

adView.addEventListener(Admob.AD_LOADED, function(e) {
    Titanium.API.info("Ad loaded");
});

adView.addEventListener(Admob.AD_FAILED_TO_LOAD, function(e) {
    Titanium.API.info("Ad failed to load");
});

ADAPTIVE BANNER

let adView = Admob.createAdaptiveBanner({  
    adUnitId: 'ca-app-pub-3940256099942544/6300978111', //USE YOUR AD_UNIT
    
    // DFP mapping
    //keyword : "titanium",
    //contentUrl : "www.myur.com",
    
    // Collapsible
    collapsible: Admob.COLLAPSIBLE_BOTTOM, // or Admob.COLLAPSIBLE_TOP

    // Adaptive Type
    adaptiveType: Admob.ADAPTIVE_INLINE, // or Admob.ADAPTIVE_ANCHORED
    maxHeight: 250 // ONLY IF adaptiveType is Admob.ADAPTIVE_INLINE, maxHeight must be set. Default value is 50
});  
window.add(adView);

adView.addEventListener(Admob.AD_LOADED, function(e) {
    Titanium.API.info("Ad loaded");
});

adView.addEventListener(Admob.AD_FAILED_TO_LOAD, function(e) {
    Titanium.API.info("Ad failed to load");
});

APP OPEN AD BANNER

/** Key Points **/  
  
// App open ads will time out after four hours. Ads rendered more than four hours after request time will no  
// longer be valid and may not earn revenue.  
  
/** Best Practices **/  
  
// Show your first app open ad after your users have used your app a few times.  
  
// Show app open ads during times when your users would otherwise be waiting for your app to load.  
  
// If you have a loading screen under the app open ad, and your loading screen completes loading before the ad  
// is dismissed, you may want to dismiss your loading screen in the onAdDismissedFullScreenContent() method.  
  
/** Warning **/  
  
// Attempting to load a new ad from the Admob.AD_FAILED_TO_LOAD event is strongly discouraged.  
// If you must load an ad from Admob.AD_FAILED_TO_LOAD, limit ad load retries to avoid continuous failed  
// ad requests in situations such as limited network connectivity.  
  
const reload_max_tries_case_error = 4;  
let reload_max_tries = 0;  
  
let appOpenAd = Admob.createAppOpenAd({  
    adUnitId: "ca-app-pub-3940256099942544/3419835294", //USE YOUR AD_UNIT
});  
  
appOpenAd.addEventListener(Admob.AD_FAILED_TO_SHOW, function (e) {
    Titanium.API.error("======================== AppOpenAd - Failed to show ads ========================");  
    Titanium.API.warn({
        "message": e.message,
        "cause": e.cause,
        "code": e.code
    });
});  
  
appOpenAd.addEventListener(Admob.AD_SHOWED_FULLSCREEN_CONTENT, function () {
    Titanium.API.info("======================== AppOpenAd - showed ads successfully ========================");
});  
  
appOpenAd.addEventListener(Admob.AD_FAILED_TO_LOAD, function (e) {
    Titanium.API.error("======================== AppOpenAd - failed to load ads ========================");
    Titanium.API.warn({
        "message": e.message,
        "reason": e.reason,
        "cause": e.cause,
        "code": e.code
    });

    if (reload_max_tries < reload_max_tries_case_error){
        appOpenAd.load();
    }

    reload_max_tries += 1;  
});  
  
appOpenAd.addEventListener(Admob.AD_LOADED, function (e) {
    Titanium.API.warn("======================== AppOpenAd - Ads Loaded and ready ========================");
    reload_max_tries = 0;
    Titanium.App.Properties.setDouble('appOpenAdLoadTime', (new Date().getTime()));
});  
  
appOpenAd.addEventListener(Admob.AD_CLOSED, function (e) {
    Titanium.API.warn("======================== AppOpenAd ad - CLOSED ========================");
    Titanium.App.Properties.setDouble('lastTimeAppOpenAdWasShown', (new Date().getTime()));
    appOpenAd.load();  
});  
  
appOpenAd.addEventListener(Admob.AD_NOT_READY, function (e) {
    Titanium.API.warn("======================== AppOpenAd ad - AD_NOT_READY ========================");
    Titanium.API.warn(e.message);  
});  
  
Titanium.App.addEventListener('resume', function () {
    let currentTime = (new Date().getTime());
    let loadTime = Titanium.App.Properties.getDouble('appOpenAdLoadTime', currentTime);
    let lastTimeAppOpenAdWasShown = Titanium.App.Properties.getDouble('lastTimeAppOpenAdWasShown', 1);
    
    if ((currentTime - loadTime) < 14400000) { // then less than 4 hours elapsed.
        if ((currentTime - lastTimeAppOpenAdWasShown) > 600000){ // then more than 10 minutes elapsed after the last Ad showed.
            appOpenAd.show();
        } else {
            Titanium.API.warn("You have showned an AppOpenAd less than 10 minutes ago. You should wait!");
        }
    } else {
        Titanium.API.warn("The AppOpenAd was requested more than 4 hours ago and has expired! You should load another one.");
    }
});

INTERSTITIAL

let interstitialAd = Admob.createInterstitial({
    adUnitId : 'ca-app-pub-3940256099942544/1033173712', //USE YOUR AD_UNIT ID HERE
});

interstitialAd.addEventListener(Admob.AD_LOADED, function(e) {
    Titanium.API.warn("Interstital Ad Received");
    interstitialAd.show();
});

interstitialAd.addEventListener(Admob.AD_FAILED_TO_LOAD, function(e) {
    Titanium.API.error("Interstital Ad failed");
    console.log(JSON.stringify(e));
});

interstitialAd.addEventListener(Admob.AD_CLOSED, function(e) {
    Titanium.API.warn("Interstital ad close successfully. RIP!");
    interstitialAd.load();
});

REWARDED INTERSTITIAL

let rewardedInterstitial = Admob.createRewardedInterstitial({
    adUnitId: 'ca-app-pub-3940256099942544/5224354917', //USE YOUR AD_UNIT ID HERE
});

rewardedInterstitial.addEventListener(Admob.AD_LOADED, function(e) {
    Titanium.API.info("Rewarded Ad AD_LOADED");
    rewardedInterstitial.show();
});

rewardedInterstitial.addEventListener(Admob.AD_REWARDED, function(e) {
    Titanium.API.info("Rewarded Ad AD_REWARDED");
    Titanium.API.info("Yay! You can give the user his reward now!");
    Titanium.API.info({
        "amount": e.amount,
        "type": e.type
    });
    rewardedInterstitial.load();
});

rewardedInterstitial.addEventListener(Admob.AD_OPENED, function(e) {
    Titanium.API.info("Rewarded Ad AD_OPENED");
});

rewardedInterstitial.addEventListener(Admob.AD_FAILED_TO_SHOW, function(e) {
    Titanium.API.info("Rewarded Ad AD_FAILED_TO_SHOW");
});

rewardedInterstitial.addEventListener(Admob.AD_CLOSED, function(e) {
    Titanium.API.info("Rewarded Ad AD_CLOSED");
});

REWARDED

let rewarded = Admob.createRewarded({
    adUnitId: 'ca-app-pub-3940256099942544/5224354917', //USE YOUR AD_UNIT ID HERE
});

rewarded.addEventListener(Admob.AD_LOADED, function(e) {
    Titanium.API.info("Rewarded Ad AD_LOADED");
    rewarded.show();
});

rewarded.addEventListener(Admob.AD_REWARDED, function(e) {
    Titanium.API.info("Rewarded Ad AD_REWARDED");
    Titanium.API.info("Yay! You can give the user his reward now!");
    Titanium.API.info({
        "amount": e.amount,
        "type": e.type
    });
    rewarded.load();
});

rewarded.addEventListener(Admob.AD_OPENED, function(e) {
    Titanium.API.info("Rewarded Ad AD_OPENED");
});

rewarded.addEventListener(Admob.AD_FAILED_TO_SHOW, function(e) {
    Titanium.API.info("Rewarded Ad AD_FAILED_TO_SHOW");
});

rewarded.addEventListener(Admob.AD_CLOSED, function(e) {
    Titanium.API.info("Rewarded Ad AD_CLOSED");
});

NATIVE ADS

let masterView = Titanium.UI.createView({
    width : Titanium.UI.FILL,
    height : Titanium.UI.SIZE,
    layout : "vertical"
});

let topView = Titanium.UI.createView({
    top : 0,
    left : 0,
    right : 0,
    height : Titanium.UI.SIZE,
    layout : "horizontal"
});
masterView.add(topView);

let contentad_logo = Titanium.UI.createImageView({
    elevation : 12,
    height : 50
});
topView.add(contentad_logo);

let contentad_advertiser = Titanium.UI.createLabel({
    color : "#575757",
    left : 16,
    textAlign : Titanium.UI.TEXT_ALIGNMENT_LEFT,
    verticalAlign : Titanium.UI.TEXT_VERTICAL_ALIGNMENT_CENTER,
    height : 35,
    font : {
        fontSize : 18,
        fontWeight : "bold"
    }
});
topView.add(contentad_advertiser);

let mediaView = Admob.createNativeAd({
    viewType : Admob.TYPE_MEDIA,
    top : 0,
    left : 0,
    right : 0,
    height : 250
});
masterView.add(mediaView);

let contentad_headline = Titanium.UI.createLabel({
    top : 16,
    maxLines : 2,
    color : "#000000",
    left : 16,
    right : 16,
    textAlign : Titanium.UI.TEXT_ALIGNMENT_LEFT,
    font : {
        fontSize : 20,
        fontWeight : "bold"
    }
});
masterView.add(contentad_headline);

let contentad_body = Titanium.UI.createLabel({
    color : "#575757",
    left : 16,
    right : 16,
    textAlign : Titanium.UI.TEXT_ALIGNMENT_LEFT,
    font : {
        fontSize : 16
    }
});
masterView.add(contentad_body);

let contentad_call_to_action = Titanium.UI.createButton({
    top : 16,
    elevation : 8,
    right : 16,
    width : Titanium.UI.SIZE,
    height : 35,
    backgroundColor : "#ff5722",
    font : {
        fontSize : 14,
        fontWeight : "bold"
    }
});
masterView.add(contentad_call_to_action);

let ratingView = Admob.createNativeAd({
    viewType : Admob.TYPE_STARS,
    left : 0,
    right : 0
});
masterView.add(ratingView);

let contentad_store_view = Titanium.UI.createLabel({
    color : "#D50000",
    top : 8,
    font : {
        fontSize : 16
    }
});
masterView.add(contentad_store_view);

let contentad_price_view = Titanium.UI.createLabel({
    color : "#575757",
    height : Titanium.UI.SIZE,
    width : Titanium.UI.SIZE,
    font : {
        fontSize : 12
    }
});
masterView.add(contentad_advertiser);

let nativeAd = Admob.createNativeAd({
    //Standard Widgets
    masterView : masterView,
    headlineLabel : contentad_headline,
    bodyLabel : contentad_body,
    callToActionButton : contentad_call_to_action,
    logoOrIconImageView : contentad_logo,
    advertiserLabel : contentad_advertiser,
    mediaView : mediaView,

    //Store Widgets
    storeLabel : contentad_store_view,
    starsView : ratingView,
    priceLabel : contentad_price_view,

    top : 16,
    left : 16,
    right : 16,
    height : Titanium.UI.SIZE,
    backgroundColor : "#FFFFFF",

    viewType : Admob.TYPE_ADS,
    adSizeType: Admob.NATIVE_ADS,
    adUnitId : "ca-app-pub-3940256099942544/2247696110",
});
window.add(nativeAd);

Events

Events Description
AD_RECEIVED (DEPRECATED) Replaced by AD_LOADED
AD_LOADED Ad is successfully loaded and ready to be displayed
AD_NOT_RECEIVED (DEPRECATED) Replaced by AD_FAILED_TO_LOAD
AD_FAILED_TO_LOAD A error occurred and the ads failed
AD_DESTROYED Ad had been successfully destroyed and wiped out of memory
AD_OPENED (BANNER) Called when an ad opens an overlay that covers the screen. (click)
AD_CLICKED (BANNER or INTERSTITIAL) Called when an ad click is validated.
AD_CLOSED (REWARDED or INTERSTITIAL) Ad had been successfully closed
AD_REWARDED (REWARDED) When the video ended successfully and you can reward you user with his prize
AD_FAILED_TO_SHOW (REWARDED or INTERSTITIAL) When the ad fails to be displayed
AD_SHOWED_FULLSCREEN_CONTENT Called when the ad showed the full screen content

Obtaining Consent with the User Messaging Platform

Prerequisites

You must have a Funding Choices account linked to your AdMob account.

To create a Funding Choices account, go to Privacy & messaging in the AdMob UI and select Go to Funding Choices. The Funding Choices account is then created automatically in the background.

For more information, see How IAB requirements affect EU consent messages.

Introduction

Under the Google EU User Consent Policy, you must make certain disclosures to your users in the European Economic Area (EEA) along with the UK and obtain their consent to use cookies or other local storage, where legally required, and to use personal data (such as AdID) to serve ads. This policy reflects the requirements of the EU ePrivacy Directive and the General Data Protection Regulation (GDPR).

To support publishers in meeting their duties under this policy, Google offers the User Messaging Platform (UMP) SDK, which replaces the previous open source Consent SDK. The UMP SDK has been updated to support the latest IAB standards. We've also simplified the process of setting up consent forms and listing ad providers. All of these configurations can now conveniently be handled in the Funding Choices UI.

It is a best practice to load a form every time the user launches your app, even if you determine consent is not required, so that the form is ready to display in case the user wishes to change their consent setting.

This guide walks you through how to install the SDK, implement the IAB solutions, and enable testing features.

requestConsentForm()

Request the latest consent information

It is recommended that you request an update of the consent information at every app launch. This will determine whether or not your user needs to provide consent.

We have to reset TC string if last updated date was more than 13 months ago (https://developers.google.com/admob/ios/privacy/gdpr#troubleshooting), but Google UMP has a bug that generates 3.3 typed IAB TCF v2.0 because this string never gets automatic updated. So I have implemented bocops workaround in order to address it. Thanks to Bocops and Astrovics

showConsentForm()

Presents the consent form.

Only call this method if Admod.CONSENT_REQUIRED.

resetConsentForm()

Reset consent state

In testing your app with the UMP SDK, you may find it helpful to reset the state of the SDK so that you can simulate a user's first install experience. The SDK provides the resetConsentForm() method to do this.

How to use it:

Admob.addEventListener(Admob.CONSENT_READY, function (){
    console.log("Admod.CONSENT_READY");
});

Admob.addEventListener(Admob.CONSENT_INFO_UPDATE_FAILURE, function (){
    console.log("Admod.CONSENT_INFO_UPDATE_FAILURE");
});

Admob.addEventListener(Admob.CONSENT_FORM_DISMISSED, function (){
    console.log("Admod.CONSENT_FORM_DISMISSED");
});

Admob.addEventListener(Admob.CONSENT_FORM_LOADED, function (){
    console.log("Admod.CONSENT_FORM_LOADED");
});

Admob.addEventListener(Admob.CONSENT_ERROR, function (e){
    console.log("Admod.CONSENT_ERROR");
    console.log(e.message);
});

Admob.addEventListener(Admob.CONSENT_REQUIRED, function (){  
    console.warn("Admod.CONSENT_REQUIRED");  
    Admob.showConsentForm();  
});
Admob.requestConsentForm();

User Consent and Ad serving

If consent is denied, or if certain values are not checked in the consent management phase, the ads will not be loaded.

Why does this happen? If you pay attention to the ConsentStatus.OBTAINED field, you will notice that it says that the consent is obtained, but the personalization is not defined. As you see here.

It is up to us developers to check if the user has granted the minimum requirements to be able to view the ads, and if he has chosen to see personalized or non-personalized ones.

In order to assist you with this, Mirko Dimartino created a solution that I have implemented in this module.

canShowAds()

If false (and GDPR applies, so if in EEA) you should prompt the user or to accept all, or explain in details (check above) what to check to display at least Non-Personalized Ads, or ask the user to opt for a premium version of the app, otherwise you will earn absolutely nothing.

If true you can check if user granted at least minimum requirements to show Personalized Ads with the following method.

canShowPersonalizedAds()

Finally you know if you can request AdMob Personalized or Non-Personalized Ads, if Non-Personalized you have to forward the request using this snippet.

Mediation Networks

If you want to use different mediation networks (https://developers.google.com/admob/android/choose-networks) you have to add the dependencies to your app build.gradle file. For example:

repositories {
    google()
    mavenCentral()
    maven {
        url 'https://artifact.bytedance.com/repository/pangle/'
    }
}

dependencies {
    implementation 'com.google.ads.mediation:facebook:6.13.7.1'
    implementation 'com.google.ads.mediation:inmobi:10.1.2.1'
    implementation 'com.google.ads.mediation:pangle:5.1.0.6.0'
}

Google Test Ads Ids

Events Description
Adaptative Banner ca-app-pub-3940256099942544/9214589741
Banner ca-app-pub-3940256099942544/6300978111
Interstitial ca-app-pub-3940256099942544/1033173712
Interstitial Video ca-app-pub-3940256099942544/8691691433
Rewarded Video ca-app-pub-3940256099942544/5224354917
Native ca-app-pub-3940256099942544/2247696110
AppOpen ca-app-pub-3940256099942544/3419835294

About

Appcelerator Android module wrapping Admob functionalities

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published