sdk

A community ad network

License

License

Categories

Categories

IDE Development Tools
GroupId

GroupId

com.adcollider
ArtifactId

ArtifactId

sdk
Last Version

Last Version

2.0.1
Release Date

Release Date

Type

Type

aar
Description

Description

sdk
A community ad network
Project URL

Project URL

https://github.com/laurencedawson/AdColliderSdk
Source Code Management

Source Code Management

https://github.com/laurencedawson/AdColliderSdk/tree/master

Download sdk

How to add to project

<!-- https://jarcasting.com/artifacts/com.adcollider/sdk/ -->
<dependency>
    <groupId>com.adcollider</groupId>
    <artifactId>sdk</artifactId>
    <version>2.0.1</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.adcollider/sdk/
implementation 'com.adcollider:sdk:2.0.1'
// https://jarcasting.com/artifacts/com.adcollider/sdk/
implementation ("com.adcollider:sdk:2.0.1")
'com.adcollider:sdk:aar:2.0.1'
<dependency org="com.adcollider" name="sdk" rev="2.0.1">
  <artifact name="sdk" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.adcollider', module='sdk', version='2.0.1')
)
libraryDependencies += "com.adcollider" % "sdk" % "2.0.1"
[com.adcollider/sdk "2.0.1"]

Dependencies

compile (4)

Group / Artifact Type Version
com.github.bumptech.glide : glide jar 4.11.0
com.github.bumptech.glide : okhttp3-integration jar 4.11.0
com.google.android.gms » play-services-base jar 17.1.0
com.google.android.gms » play-services-ads-identifier jar 17.0.0

Project Modules

There are no modules declared in this project.

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 [email protected] 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();

Versions

Version
2.0.1
2