Hi guys,
Does anyone knows how to implement inMobi’s new SDK in terms of code?
I have trouble understanding the tutorials, I never know what fits my app.
Thanks [import]uid: 95495 topic_id: 25017 reply_id: 325017[/import]
Hi guys,
Does anyone knows how to implement inMobi’s new SDK in terms of code?
I have trouble understanding the tutorials, I never know what fits my app.
Thanks [import]uid: 95495 topic_id: 25017 reply_id: 325017[/import]
First example on this page actually shows init and display of inMobi ads; http://developer.anscamobile.com/reference/index/ads/adsinit
Peach
[import]uid: 52491 topic_id: 25017 reply_id: 101774[/import]
@gustavoschv - could you clarify a little bit what you mean? Do you mean how do you implement the new InMobi SDK that is UDID-independent?
Or simply how to get InMobi ads to display in your app? [import]uid: 109186 topic_id: 25017 reply_id: 101987[/import]
The new one!
If it is worth it, of course…can you tell me the difference?
Thanks [import]uid: 95495 topic_id: 25017 reply_id: 102171[/import]
Ah I see - the inMobi site explains a little about it, so read for deatails there. (Video is mentioned along with changes related to UDID stuff.)
It isn’t my department so I’m unsure of the current status but I believe Corona would need to integrate the new SDK so you could then fire it up. (Although I suppose this depends on where changes were made, etc. - as I said not my area I’m afraid.)
Peach
[import]uid: 52491 topic_id: 25017 reply_id: 102216[/import]
Hi @gustavoschv,
The new InMobi SDK (350) is already integrated with the Corona SDK for iOS. The major benefits relate to not relying on UDID. There are secondary benefits, much like Peach said, such as video and orientation locking.
This ensures two things:
1 - your app will not be rejected by Apple for UDID related issues
2 - by upgrading the version of the InMobi SDK you are using, you can receive better monetization.
-Jeremia [import]uid: 109186 topic_id: 25017 reply_id: 104522[/import]
So help me out, i’m not sure if I have the latest version! Here’s my code:[code]
local adNetwork = “inmobi”
local appID = “myappid”
ads = require “ads”
if appID then
ads.init( adNetwork, appID )
end
local function showAds()
local adX = display.contentWidth / 2 - 160
ads.show( “banner320x48”, { x=adX, y=_H - 48, interval=15, testMode=false } )
end
showAds()[/code]
That is all that I have. I’m not sure what file I require, since I do not have any file called “ads”
Can you help me?
Tks [import]uid: 95495 topic_id: 25017 reply_id: 104524[/import]