$10 eCPM GUARANTEED. Meet RevMob!

Hey Bladko, I ended up writing a php script to hit the revmob site, grab the authenticity token, log in to the console, fetch the reports for each app, and then parse the DOM to grab the revenue data. I’ve had that cron’d up for a while to pull their data in like I do from other vendors that have APIs. If that’s useful to you let me know.

Jeff [import]uid: 25108 topic_id: 25797 reply_id: 140648[/import]

@marshman

I would be interested in such a script. [import]uid: 58777 topic_id: 25797 reply_id: 140686[/import]

Thanks Paulo!

One more question, what is the correct way to use placement IDs with the openAdLink method? [import]uid: 94248 topic_id: 25797 reply_id: 140753[/import]

4.1.1 release: http://sdk.revmob.com/corona#changelog

@ivke2006: you must not remove the placement id after you release the app. you must enable/disable it.

@Bladko: this feature is still in our pipeline

@JandyCo: Check the 4.1.1 release, but read the change log to use the placement id directly in the objects. Any doubts, you can check the sample app, I included an example of usage for each ad unit.

Regards
Paulo
http://twitter.com/paulocheque
http://github.com/paulocheque [import]uid: 157102 topic_id: 25797 reply_id: 140802[/import]

ahh…just (de)activate the run state…very obvious… but somehow I didn’t thought in that direction. :slight_smile:

Thx! [import]uid: 106768 topic_id: 25797 reply_id: 140809[/import]

now you are saying not to remove placement id if it was live before ? i wonder why my impression are so low… thanks !!

Tom [import]uid: 111283 topic_id: 25797 reply_id: 140814[/import]

I’m having trouble getting the following to work:

RevMobFullscreen.new({listener = revmobListener, placementID = placement, autoshow = false})

where placement equals:

placement = { ["Android"] = "5058bc97e658200c00000010", ["iPhone OS"] = "5058bc5f5d9fb60800000001" }

I do not have the exact error with me, but it is due to the placementID inclusion. The error was related to the table.

I am able to use a similar ID table to create and track banners appropriately, where the banner creation does not pass a table of properties but rather two required variables (listener and placementID). However, in the creation of the fullscreen ad, I receive a runtime error which stems from the revmob file.

Can someone verify that this is working correctly, or if necessary correct my usage of it?

Thanks!
[import]uid: 94248 topic_id: 25797 reply_id: 140219[/import]

Hi guys,

GREAT news! I started to getting Revmob revenue! The app went live last night so no much to show for but here today’s numbers:

Day: 2013-01-29
Impressions 421
Clicks: 65
Installs: 2
IR: 3.08%
CRT: 15.44%
eCPM: $12.11
Revenue: $5.10

Now the questions!

1- Are these number decent giving your experience or they sucks!

2- I “think” (I need to check on that but I am pretty sure) That I took advantage of the initial kind offer by Revmob to guaranty an eCPM of $10**. It seems that i am doing better with $12.11 but i am trying to figure out if my revenue should not be $20 since I had 2 clicks? Am I wrong with my assumption (probably!) Also is that guaranty has a time limit (assuming again I am in)?

Thanks again for your guys helping get to this point with Revmob and of course big THANKS to the Revmob team. I think right now it looks like it is going a good source of revenue!

By the way if you would like to check out my free version of Space Command, here the link.

https://itunes.apple.com/app/id590540185?mt=8

Mo.

** Gui, Paulo: could you check my status about the $10 eCPM guaranty? THANKS!
[import]uid: 100814 topic_id: 25797 reply_id: 140823[/import]

hey Mo,

first of all, there is no guaranteed eCPM.

second, i think your eCPM is very nice. i have a eCPM around 3-5$, sometimes 8$, sometimes less.

I hope that helps! [import]uid: 90610 topic_id: 25797 reply_id: 140871[/import]

@dingo
Actually there *was* an offer last year in May where they guaranteed a $10 eCPM if you signed up with them, and LairdGames was one of the lucky 50 devs that got it. I missed it by one day :frowning:
I’m not sure if the offer was time-limited or not though…

@Mo
Here are some stats from one of my apps for comparison.
[text]
Day Imp. Clicks Inst. IR CTR eCPM Revenue
2013-01-30 631 155 6 3.87% 24.56% $16.07 $10.14
2013-01-29 1,965 520 3 0.58% 26.46% $2.63 $5.16
2013-01-28 2,039 470 7 1.49% 23.05% $7.98 $16.28
2013-01-27 3,518 763 17 2.23% 21.69% $10.00 $35.17
[/text] [import]uid: 70847 topic_id: 25797 reply_id: 140874[/import]

@ingemar: i have been one of the lucky 50 but still this offer is not valid. they say that the eCPM would be higher anyway… [import]uid: 90610 topic_id: 25797 reply_id: 140875[/import]

Aha, I see. So the offer expired even for those that managed to sign up in time… [import]uid: 70847 topic_id: 25797 reply_id: 140877[/import]

@ingemar: exactly! [import]uid: 90610 topic_id: 25797 reply_id: 140887[/import]

Even w/out the guaranteed US$10 eCPM, I must admit that I’m pretty happy with RevMob so far. I’ve only been using it since last December and RevMob is by far the best ad provider (in terms of revenue) I have ever used in my 3 years of monetizing via ads on iOS. Hopefully it remains consistent in the coming months. [import]uid: 44127 topic_id: 25797 reply_id: 140890[/import]

I’m wondering if anyone figured out how to use revmob preloaded ads with director?
When I change scenes director will screw with all of the display groups, in the end before I get to call ad:show() the component [group with ad image] is removed.

I think the only way to do it is to mark the component group and in director ignore this group.
Other ideas?

For now what I did was:
mark all display groups created in revmob with:
[lua]directorId = “revmob”[/lua]

and I’ve modified director.lua, so that all of the checks for
[lua]directorId ~= “main”[/lua]
are now:
[lua]directorId ~= “main” and directorId ~= “revmob”[/lua]

Now it works fine. [import]uid: 109453 topic_id: 25797 reply_id: 141022[/import]

Hi all,
Just a quick question… is it possible to set up a listener that is called when a user clicks the ‘x’ to clear a fullscreen ad?
[import]uid: 7841 topic_id: 25797 reply_id: 141056[/import]

Today I updated my iPad 3 to iOS 6, and discovered I have a problem with revMob, which works fine on my iPad 1 and iOS 5.

As soon as I tap the ad, it goes to the Safari browser (api.bcfads.com/etcetc), and it gets stuck there, never reaches the appstore to show the app.

Anyone else had this problem?

Using the second latest revmob version, not sure which one, revmob.lua doesnt show version info.

[import]uid: 50459 topic_id: 25797 reply_id: 140488[/import]

You can set up a listener like this:

local revmobListener = function(event)  
 local eventType = event.type;  
  
 if (eventType == "adReceived") then  
 --do something   
  
 elseif (eventType == "adDisplayed") then  
 --do something else  
  
 elseif (eventType == "adClosed") then  
 --do something completely different   
 end  
end  
  
RevMob.showFullscreen(revmobListener);  

The event types you can listen for are:
“adReceived”
“adNotReceived”
“adDisplayed”
“adClicked”
“adClosed” [import]uid: 70847 topic_id: 25797 reply_id: 141196[/import]

@all: We ask for CoronaLabs to create a RevMob forum, we are actually waiting for them now.

@bcam86: please, send your request to contact at revmob.com

@JandyCo: Since you are using the Fullscreen table directly, you must select only one app id, not a table of app ids. We will change that in future releases. That is the reason we create a facade. Be careful if you update the sdk next time.

@rebelwax and @uan.csdc and @codingcake and @rebelwax: please, update your SDK to the latest version. Send e-mail do sdk at revmob.com for any doubts.

@bpran: Please, check the site: sdk.revmob.com/corona

@rmbsoft: You can execute RevMob.printEnvironmentInformation(). Could you send us some logs to sdk at revmob.com?

Regards
Paulo
http://twitter.com/paulocheque
http://github.com/paulocheque [import]uid: 157102 topic_id: 25797 reply_id: 140624[/import]

@Ingemar : That’s awesome thank you!

Just out of interest, are these event types listed in the docs anywhere? I know it says you can setup a listener but I don’t remember seeing the event types. [import]uid: 7841 topic_id: 25797 reply_id: 141247[/import]