<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ok thanks for the response, i in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Admob-Problems-Ads-not-showing/m-p/1122002#M76445</link>
    <description>&lt;P&gt;ok thanks for the response, i will do that.&lt;/P&gt;</description>
    <pubDate>Mon, 11 Jul 2016 15:53:06 GMT</pubDate>
    <dc:creator>John_E_2</dc:creator>
    <dc:date>2016-07-11T15:53:06Z</dc:date>
    <item>
      <title>Admob Problems. Ads not showing</title>
      <link>https://community.intel.com/t5/Software-Archive/Admob-Problems-Ads-not-showing/m-p/1122000#M76443</link>
      <description>&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;I hava a app that i want to show the ads not on index.html but say on index1.html&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;Everything works great on index.html with the admob script below, banner and interstitial shows up, but i dont whant them on index.html, i want them on index1.html. i delete the code from index.html and put it in index1.html no ads is showing up?&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Why is that?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;Whay i want them to index1 is that its not very user friendly to hav a interstitial to pop up 1sec after appstart.&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;i was also thinking to call the interstitial on the first button click but i cant get that working either.&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;&lt;SPAN style="line-height: 1.5;"&gt;iam using the&amp;nbsp;AdMob Plugin Pro&amp;nbsp;(cordova-plugin-admobpro) &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;this is the admobpro script that i use in the html file:&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;&amp;nbsp; &amp;lt;script type="text/javascript" src="cordova.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;lt;script&amp;gt;var admobid = {};&lt;BR /&gt;
	if( /(android)/i.test(navigator.userAgent) ) {&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; admobid = { // for Android&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; banner: 'ca-app-pub&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&lt;/SPAN&gt;',&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; interstitial: 'ca-app-pub&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&lt;/SPAN&gt;'&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;
	} else if(/(ipod|iphone|ipad)/i.test(navigator.userAgent)) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; admobid = { // for iOS&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; banner: 'ca-app-pub-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; interstitial: 'ca-app-pub-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;
	} else {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; admobid = { // for Windows Phone&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; banner: 'ca-app-pub&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&lt;/SPAN&gt;',&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; interstitial: 'ca-app-pub&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&lt;/SPAN&gt;'&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;
	}&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;if(( /(ipad|iphone|ipod|android|windows phone)/i.test(navigator.userAgent) )) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; document.addEventListener('deviceready', initApp, false);&lt;BR /&gt;
	} else {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; initApp();&lt;BR /&gt;
	}&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;function initApp() {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; if (! AdMob ) { alert( 'admob plugin not ready' ); return; }&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;&amp;nbsp; &amp;nbsp; AdMob.createBanner( {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; adId: admobid.banner,&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; isTesting: false,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; overlap: false,&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; offsetTopBar: false,&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position: AdMob.AD_POSITION.BOTTOM_CENTER,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bgColor: 'black'&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; } );&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; AdMob.prepareInterstitial({&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; adId: admobid.interstitial,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; autoShow: true&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	}&amp;lt;/script&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2016 07:39:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Admob-Problems-Ads-not-showing/m-p/1122000#M76443</guid>
      <dc:creator>John_E_2</dc:creator>
      <dc:date>2016-07-11T07:39:30Z</dc:date>
    </item>
    <item>
      <title>I recommend posting your</title>
      <link>https://community.intel.com/t5/Software-Archive/Admob-Problems-Ads-not-showing/m-p/1122001#M76444</link>
      <description>&lt;P&gt;I recommend posting your questions to the developer of this plugin as they would be the best resource for addressing issues with the plugin.&lt;/P&gt;

&lt;P&gt;You can post your questions at&amp;nbsp;&lt;A href="https://github.com/floatinghotpot/cordova-admob-pro/issues"&gt;https://github.com/floatinghotpot/cordova-admob-pro/issues&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2016 15:49:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Admob-Problems-Ads-not-showing/m-p/1122001#M76444</guid>
      <dc:creator>Elroy_A_Intel</dc:creator>
      <dc:date>2016-07-11T15:49:02Z</dc:date>
    </item>
    <item>
      <title>ok thanks for the response, i</title>
      <link>https://community.intel.com/t5/Software-Archive/Admob-Problems-Ads-not-showing/m-p/1122002#M76445</link>
      <description>&lt;P&gt;ok thanks for the response, i will do that.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2016 15:53:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Admob-Problems-Ads-not-showing/m-p/1122002#M76445</guid>
      <dc:creator>John_E_2</dc:creator>
      <dc:date>2016-07-11T15:53:06Z</dc:date>
    </item>
  </channel>
</rss>

