I would like to add admob or other module to ListView. I am searching this question's answer long days but I have found only one useful answer but i didn't implement that to my project. That is as below;
var AdMob = require('ti.admob'); var bannerTemplate = function() { banner = { // type: 'Ti.UI.View', creationMethod: AdMob.createView, bindId: 'banner', properties: { width: 300, height: 250, publisherId: "whatever" } , events: { didReceiveAd: function(e) { }, didFailToReceiveAd: function(e) { }, }; return banner; }Orginal link link of solution and my admob module link
Please some advance user asnwers this question, is it possible or not?
Thank you in advance.