Implementation of AdColony

Describe the AdColony implementation procedure for mediation setting of RewardVide advertisement. For implementation of the startup guide and RewardVide advertisement, refer to the following implementation procedure.

Startup
Implementation of RewardVide advertisement

Implementation procedure:

  1. Introducing libraries in Maven
  2. Manually install the library
  3. Writing the manifest file

Introducing libraries in Maven(Recommend)

  1. Add the following to allprojects>repositories in Project>build.gradle.
   allprojects {
   	repositories {
   	    // GenieeSDK
   	    maven { 
   	        url 'https://raw.github.com/geniee-ssp/Geniee-Android-SDK/master/repository'
   	    }

   	    //Adcolony SDK
   	    maven {
   	        url  "https://adcolony.bintray.com/AdColony"
   	    }
   	}
   }
1
2
3
4
5
6
7
8
9
10
11
12
13
  1. Add the following to dependencies of Module>build.gradle.
      dependencies {	
   	// Geniee
       implementation 'jp.co.geniee.gnsrewardadapter:GNSRewardAdapter-AdColony:6.4.1'
   }
1
2
3
4
5
  1. Implementation example
  • Project>build.gradle
   allprojects {
   	repositories {
   		google()
   		jcenter()
   			
   		// GenieeSDK
   		maven { 
   			url 'https://raw.github.com/geniee-ssp/Geniee-Android-SDK/master/repository'
   		}
   		
   		//Adcolony SDK
   		maven {
   		    url  "https://adcolony.bintray.com/AdColony"
   		}
   	}
   }
   
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  • Module>build.gradle
dependencies {	
    // Google SDK
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.1'
    implementation 'com.google.android.gms:play-services-ads-identifier:17.0.0'
    // Geniee
    implementation 'jp.co.geniee.gnadsdk:GNAdSDK:8.5.1' // GenieeSDK
    implementation 'jp.co.geniee.gnsrewardadapter:GNSRewardAdapter-AdColony:6.4.1'
}

Manually install libraries

If you followed the Introducing libraries in Maven procedure, you do not need to do this step.

Manual introduction procedure here

Download Geniee Adapter SDK

Download Geniee Android SDK from the following URL.

Please check with your sales representative for Reward Video - Adnws - Android - SDK required formanually installing libraries.

Placing the Local Library

  1. Unzip Geniee Android SDK.

  2. Add GNSRewardAdapter to the project.

  • If the libs folder does not exist, create it as necessary.

  • Copy the following files under the GNSRewardAdapter folder to the libs folder.
    - GNSRewardAdapter-AdColony-6.4.1.jar

  • Copy the following files under the RewardVideo-Adnws-Android-SDK folder to the libs folder.
    - adcolony-4.7.1.jar

  • Copy the following folder under the RewardVideo-Adnws-Android-SDK>AdColony folder to the libs folder.
    - arm64-v8a
    - armeabi
    - armeabi-v7a
    - x86
    - x86_64

  • Add it to android and dependencies of Module/build.gradle.

      android {
          sourceSets {
              main {
                  jniLibs.srcDirs = ['libs']
              }
          }
      }
      	
      dependencies {
      	implementation fileTree(include: ['*.jar'], dir: 'libs')
      }
    
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11

Description of manifest file

Write the necessary information in the manifest file AndroidManifest.xml.

  1. If you followed the procedure Installing libraries with Maven, you do not need to perform this step.

    Manual introduction procedure here
    • Describe the activity information used by the SDK in <application> in the manifest file.

      <!-- AdColony -->
      <activity android:name="com.adcolony.sdk.AdColonyInterstitialActivity"
          android:configChanges="keyboardHidden|orientation|screenSize"
          android:hardwareAccelerated="true"/>
      <activity android:name="com.adcolony.sdk.AdColonyAdViewActivity"
          android:configChanges="keyboardHidden|orientation|screenSize"
          android:hardwareAccelerated="true"/>
      
      1
      2
      3
      4
      5
      6
      7
Last Updated: 9/7/2020, 1:30:18 PM