How to implement Admob into Ionic?(如何在 Ionic 中实现 Admob?)
问题描述
我按照这篇文章的说明进行操作:AdMob 不在 ionic/angular 应用中加载广告
I followed the instructions of this post: AdMob not loading ads in ionic/angular app
当我通过ionic build ios && ionic emulate ios"运行应用程序时,我没有看到任何广告,也没有黑条.
When I run the app via "ionic build ios && ionic emulate ios" I get no ads, no black bar nothing.
我错过了什么?
谢谢
推荐答案
您可以按照 https://github.com/appfeel/admob-google-cordova/wiki/Angular.js,-Ionic-apps:
照常安装插件(见此处):
Install the plugin as usual (see here):
ionic plugin add cordova-admob
在你的index.html
中包含以下脚本(就可以了,不需要复制任何文件:插件在准备应用程序时负责复制脚本):
Include the following script in your index.html
(just it, no need to copy any file: the plugin is in charge to copy the script when the app is prepared):
<script src="lib/angular-admob/angular-admob.js"></script>
从您的 Ionic 应用调用 AdMob.
Call AdMob from your Ionic app.
这是一个简单的例子:
var app = angular.module('myApp', ['admobModule']);
app.config(['admobSvcProvider', function (admobSvcProvider) {
// Optionally you can configure the options here:
admobSvcProvider.setOptions({
publisherId: "ca-app-pub-XXXXXXXXXXXXXXXX/BBBBBBBBBB", // Required
interstitialAdId: "ca-app-pub-XXXXXXXXXXXXXXXX/IIIIIIIIII", // Optional
});
}]);
app.run(['admobSvc', function (admobSvc) {
// Also you could configure the options here (or in any controller):
// admobSvcProvider.setOptions({ ... });
admobSvc.createBannerView();
// You could also call admobSvc.createBannerView(options);
// Handle events:
$rootScope.$on(admobSvc.events.onAdOpened, function onAdOpened(evt, e) {
console.log('adOpened: type of ad:' + e.adType);
});
}]);
这篇关于如何在 Ionic 中实现 Admob?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Ionic 中实现 Admob?
基础教程推荐
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 动态更新多个选择框 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 我什么时候应该在导入时使用方括号 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01