Hi folks,
I've been playing around with the other monetizing options for B4A.
I've been trying Millenial media and mobfox libraries. MobFox one seems to work for me.
I have attached the libraries here for testing, hope can get some feedback from all of you.
If you don't have a mobfox id, please use the following link to register (it will give me some commision at no expense to you, cheers!)
MobFox | Mobile Advertising. Simplified.
I will try to work on the millenial media libs too.
Advantage of mobfox include higher ecpm (dont every ad agency say the same thing? LOL!), having option for backfill ads from admob and inmobi.
You will need your app to be approved by mobfox before you can start displaying ads (which could take up to 24h).
Now the works....
In the manifest file, add the following:
Permissions:
Code:
The two events are not showing up in the intellisense of the ide for now, still working on cleaning up the library. But they work.
You will need to download the library from mobfox site.
Then add the attached libraries to your extra libraries folder.
Hope the above is clear, and hope you all have success with it too.
PS - Patience please, first library wrapper...
Cheers!
I've been playing around with the other monetizing options for B4A.
I've been trying Millenial media and mobfox libraries. MobFox one seems to work for me.
I have attached the libraries here for testing, hope can get some feedback from all of you.
If you don't have a mobfox id, please use the following link to register (it will give me some commision at no expense to you, cheers!)
MobFox | Mobile Advertising. Simplified.
I will try to work on the millenial media libs too.
Advantage of mobfox include higher ecpm (dont every ad agency say the same thing? LOL!), having option for backfill ads from admob and inmobi.
You will need your app to be approved by mobfox before you can start displaying ads (which could take up to 24h).
Now the works....
In the manifest file, add the following:
B4X:
<activity android:name="com.mobfox.sdk.InAppWebView"/>
Permissions:
B4X:
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
Code:
B4X:
Sub Globals
Dim m As MFAdViewX
End Sub
Sub Activity_Create(FirstTime As Boolean)
m.Initialize("mm", appid) 'appid -> your app id from mobfox
Activity.AddView(m, 0, 0, 320dip, 50dip)
End Sub
Sub mm_FailedToReceiveAd (ErrorCode As String)
Msgbox(ErrorCode, "Error")
End Sub
Sub mm_ReceiveAd
Msgbox("got it...", "yay")
End Sub
The two events are not showing up in the intellisense of the ide for now, still working on cleaning up the library. But they work.
You will need to download the library from mobfox site.
Then add the attached libraries to your extra libraries folder.
Hope the above is clear, and hope you all have success with it too.
PS - Patience please, first library wrapper...
Cheers!