msecilmis / AdColliderSdk

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AdCollider Android SDK

Maven Central API

Overview

AdCollider is a community ad network designed to help drive downloads to your app in exchange for hosting ads in your app. AdCollider has been designed to sit at the bottom of a traditional ad mediation waterfall. For example if your app fails to fill an Admob ad request an AdCollider ad can be shown which in turn will result in your app being promoted elsewhere.

Formats

AdCollider currently supports native banner ads.

Join AdCollider

Message contact@laurencedawson.com to obtain an API key.

Setup

Insert the following dependency to build.gradle file of your project.

dependencies {
    implementation 'com.adcollider:sdk:2.0.1'
}

Usage

Initialise AdCollider with your API key

AdCollider.init(this, "replace-with-your-own-key");

Create an AdView (either from programatically or from XML)

AdView adView = new AdView(context);  
parent.addView(adView);  

Request the ad

adView.requestAd();

Optionally style the AdView for nightmode

adView.setNightMode();

About


Languages

Language:Java 100.0%