我一直在試圖爲新的離子2個應用程序添加的橫幅廣告,但這些廣告都沒有顯示出來 我這樣做如下所示添加橫幅廣告與離子2個應用
http://pointdeveloper.com/ionic-2-banner-ads-with-admob-pro-plugin/
這裏我app.js文件中的代碼
import {App, Platform, Config} from 'ionic/ionic';
import {TabsPage} from './pages/tabs/tabs';
@App({
templateUrl: 'build/app.html',
// Check out the config API docs for more info
// http://ionicframework.com/docs/v2/api/config/Config/
config: {
tabbarPlacement: 'bottom'
}
})
export class MyApp {
constructor(platform: Platform) {
this.root = TabsPage;
platform.ready().then(() => {
// Do any necessary cordova or native calls here now that the platform is ready
var admobid = {};
// select the right Ad Id according to platform
if(/(android)/i.test(navigator.userAgent)) {
admobid = { // for Android
banner: 'ca-app-pub-6869992474017983/9375997553',
interstitial: 'ca-app-pub-6869992474017983/1657046752'
};
} else if(/(ipod|iphone|ipad)/i.test(navigator.userAgent)) {
admobid = { // for iOS
banner: 'ca-app-pub-6869992474017983/4806197152',
interstitial: 'ca-app-pub-6869992474017983/7563979554'
};
} else {
admobid = { // for Windows Phone
banner: 'ca-app-pub-6869992474017983/8878394753',
interstitial: 'ca-app-pub-6869992474017983/1355127956'
};
}
if(window.AdMob) AdMob.createBanner({
adId:admobid.banner,
isTesting:true,
position:AdMob.AD_POSITION.BOTTOM_CENTER
});
});
}
}
遵循本教程http://pointdeveloper.com/ionic-2-banner-ads-with-admob-pro-plugin/並且它的工作無需添加任何參數 – krv
但是對於我來說,插頁式應用程序崩潰的應用程序.. 。 – zozourban