Hi,
I'm new in ads theme. I just downloaded admob module but I have some questions.
iOS: I can't see the folder version inside from ti.admob folder. Is this still works on iOS? or what should I do for this module work? Please help!
Android: Here I have the folder version ti.admob/2.1.2/... I ran the simple module example but I have these responses from the console when I click for requested an ad:
- [INFO] : Ads: Starting ad request.
- [INFO] : Ads: Use AdRequest.Builder.addTestDevice("A931182107D73AE11C27E9BB6A4814CE") to get test ads on this device.
- [INFO] : Ads: Please set theme of AdActivity to @android:style/Theme.Translucent to enable transparent background interstitial ad.
- [WARN] : Ads: There was a problem getting an ad response. ErrorCode: 1
- [WARN] : Ads: Failed to load ad: 1
- [INFO] : ad not received
- [INFO] : GATE: <GATE-M>DEV_ACTION_COMPLETED</GATE-M>
Code below
/** * Copyright (c) 2011 by Studio Classics. All Rights Reserved. * Author: Brian Kurzius * Licensed under the terms of the Apache Public License * Please see the LICENSE included with this distribution for details. */ var win = Titanium.UI.createWindow({ backgroundColor: "#FFFFFF" }); // require AdMob var Admob = require('ti.admob'); // then create an adMob view var adMobView = Admob.createView({ publisherId:"<<YOUR PUBLISHER ID HERE>>", testing:false, // default is false //top: 10, //optional //left: 0, // optional //right: 0, // optional bottom: 0, // optional adBackgroundColor:"FF8855", // optional backgroundColorTop: "738000", //optional - Gradient background color at top borderColor: "#000000", // optional - Border color textColor: "#000000", // optional - Text color urlColor: "#00FF00", // optional - URL color linkColor: "#0000FF" //optional - Link text color //primaryTextColor: "blue", // deprecated -- now maps to textColor //secondaryTextColor: "green" // deprecated -- now maps to linkColor }); //listener for adReceived adMobView.addEventListener(Admob.AD_RECEIVED,function(){ // alert("ad received"); Ti.API.info("ad received"); }); //listener for adNotReceived adMobView.addEventListener(Admob.AD_NOT_RECEIVED,function(){ //alert("ad not received"); Ti.API.info("ad not received"); }); var adRequestBtn = Ti.UI.createButton({ title:"Request an ad", top:"10%", height: "10%", width: "80%" }); adRequestBtn.addEventListener("click",function(){ adMobView.requestAd(); }); var adRequestBtn2 = Ti.UI.createButton({ title: "Request a test ad", top: "25%", height: "10%", width: "80%" }); adRequestBtn2.addEventListener("click",function(){ adMobView.requestTestAd(); }); win.add(adMobView); win.add(adRequestBtn); win.add(adRequestBtn2); win.open();Same question, is this still work? or need to be updating?
Please help
Regards!