Hi folks,
I present you the AppLovin ad library. This ad type is very new on the scene, and it adds a social element to your ads. It also promises (and I've tested it to be true) a higher eCPM compared to others like Admob and Mobfox.
More details:
http://www.applovin.com/
Here are the manifest requirements:
Permissions:
**Read contacts permission is optional, but having it in will show you the social ads, otherwise you get non-social ads.
You can create banner ads or interstitial ads. For interstitial, you will need to handle the ad closed event thing. And look at addisplayed event before showing your ads.
I have not truly tested the interstitials much, better thoroughly test it out.
Banners are fine, add as a new view to your panel or activity like you do for Admob.
Attached library includes the dummy xml file for those who work the "classic" way, or for those who have B4A versions prior to 1.8.
Do note that i've noticed the ads are mainly cpa type, meaning, people will need to download the apps advertised before you get your revenue.
Give it a go!
Any questions, ask away.
Cheers!
-Bill
I present you the AppLovin ad library. This ad type is very new on the scene, and it adds a social element to your ads. It also promises (and I've tested it to be true) a higher eCPM compared to others like Admob and Mobfox.
More details:
http://www.applovin.com/
Here are the manifest requirements:
B4X:
<!-- AppLovin API key. Could be obtained from AppLovin management console -->
<meta-data
android:name="applovin.sdk.key"
android:value="<your key from dashboard here>" />
<!-- This flag enables verbose logging of AppLovin SDK -->
<meta-data
android:name="applovin.sdk.verbose_logging"
android:value="true" />
<service android:name="com.applovin.sdk.AppLovinService" >
<intent-filter>
<action android:name="com.applovin.sdk.AppLovinService" />
</intent-filter>
</service>
Permissions:
B4X:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_CONTACTS"/>
**Read contacts permission is optional, but having it in will show you the social ads, otherwise you get non-social ads.
You can create banner ads or interstitial ads. For interstitial, you will need to handle the ad closed event thing. And look at addisplayed event before showing your ads.
I have not truly tested the interstitials much, better thoroughly test it out.
Banners are fine, add as a new view to your panel or activity like you do for Admob.
Attached library includes the dummy xml file for those who work the "classic" way, or for those who have B4A versions prior to 1.8.
Do note that i've noticed the ads are mainly cpa type, meaning, people will need to download the apps advertised before you get your revenue.
Give it a go!
Any questions, ask away.
Cheers!
-Bill