본문 바로가기
RPG Maker MV/Android

Simple AdMob - RPG Maker MV

by biud436 2019. 11. 6.


Introduction

This plugin provides the way easily to display an advertisement in your cordova application for Android or iOS.


Korean Translation - https://blog.naver.com/biud436/220779787549


How to setup


1. Create a cordova application

In case of using a cordova-cli, Before you start build your mobile application, you need to attempt as below.


if your cordova version is to 7 or more, you can easily add the plugin by calling as below command:

 

cordova plugin add cordova-plugin-admob-free --save --variable ADMOB_APP_ID="<YOUR_ANDROID_ADMOB_APP_ID_AS_FOUND_IN_ADMOB>"

 

2. Join and Setup the AdMob


If you would like adding Google AdMob, you must join 'https://apps.admob.com/' page with a google and then create a new application and then specify the advertisement id of two type(BannerAd, InterstitialAd).


Its id format is 'ca-app-pub-xxxxxxxxxxxxxxxx-xxxxxxxxxx'Note that the 'x' is replaced is to different random number between 0 and 9. Note that it couldn't indicate the advertisement if the x value is not replaced as real value in the plugin parameters (Beware of using an invalid id. if it is invalid, the AdMob will not be working)


3. Checking the internet

If the internet is not connected, the advertisement view is not created. So there is need to include the function that can end up the application forcibly if the internet didn't connect. AJAX go along can be a good way to check the network status. But there is no need to put an AJAX logic directly. 


You can try this plugin command:


CheckInternet url


To do this, you must replace default url as other thing. For Example:


CheckInternet https://www.google.com


4. Calling the advertisement


You can be loaded or be removed the banner advertisement once using these plugin commands:


Banner show

Banner remove


If you would like to show up the advertisement on the full screen, you can indicate it using this plugin command: 


Interstitial show


You can set reward code blocks using plugin parameters.


ShowRewardVideo


If your current balance does not meet the payment threshold ($100 USD), You can't be getting a paid(please see this link)


Downloads

https://github.com/biud436/MV/raw/master/Android/RS_Admob.js

Change Log

 * 2016.08.06 (v1.0.0) - First Release

 * 2016.10.05 (v1.0.1) - Added the function that could be checking the internet.

 * 2019.11.06 (v1.0.2) :

 * - Fixed the bug that is not working.

 * - Changed as the cordova plugin(extension) that works fine.

 * - Added reward video.

 * - Changed SceneManager.exit() to navigator.app.exitApp();