AdRunner
Lightweight Ad mediator for Android App. Currently, this library supports AdMob, Amazon-Ad, LeadBolt and Mobfox. This library is only intended to showing a banner type of ads.
It supports remote configuration via a 'distro-url'. See sample project for usage
Download
    // main component
    compile 'com.bingzer.android.ads:adrunner:1.0.1'
    
    // GoogleAds (was AdMob)
    compile 'com.bingzer.android.ads:adnets-google:1.0.1'
    
    // Amazon
    compile 'com.bingzer.android.ads:adnets-amazon:1.0.1'
    
    // LeadBolt
    compile 'com.bingzer.android.ads:adnets-leadbolt:1.0.1'
    
    // Mobfox
    compile 'com.bingzer.android.ads:adnets-mobfox:1.0.1'
     
AppCompat
Some library uses appcompat or support-v4. If conflict is detected, use:
    // exclude whatever the leadbolt library has in there
    // and tell it to use the latest appcompat-v7
    compile ('com.bingzer.android.ads:adnets-leadbolt:0.0.5'){
        exclude module: 'support-v4'
        compile 'com.android.support:appcompat-v7:19+'
    }