Adx3
EN
EN
  • Introduction to Broearn Ads Operation
    • Introduction to Broearn Ads Operation(SSP)
      • Login Operation
      • Website
      • Apps-For Android
      • Withdraw
      • Advertising Statistics
      • User Center
    • Introduction to Broearn Ads Operation (DSP)
      • Login Operation
      • Top-up
      • Ad Campaign Management
      • Ad Management
      • Advertising Statistics and Data Analysis
      • User Center
    • Adx3-Agent system manual(AGENT)
      • Log In
      • Add Account
      • Capital Account
      • Data Review
  • interface documentation
    • Monitor incident escalation(DSP)
    • Monitor incident escalation(SSP)
    • CPA, CPS Event Report
    • ANDRIOD
      • Start
        • Getting Started Guide
        • Test
      • Ad formats
        • Banner
        • Interstitial
        • Rewarded
        • APP Open
        • Native
        • Multiple
    • IOS
      • Get started
        • Getting Started Guide
        • Test
      • Ad formats
        • App Open
        • Interstital
        • Banner
        • Rewarded
        • Native
        • Multiple
  • FAQ
    • FAQ
Powered by GitBook
On this page
  • Preface
  • Preparation
  • Requirement Version Condition
  • Download the latest version of the SDK
  • Apply for SDK application and advertising ID in the SSP management background
  • Configure your app
  • Initialize advertising SDK
  • Select ad format
  1. interface documentation
  2. ANDRIOD
  3. Start

Getting Started Guide

PreviousStartNextTest

Last updated 1 year ago

Preface

To integrate and display Adx3 ads, integrating the SDK into the application and completing the relevant initialization configuration are needed. After integration, you can select multiple ad formats for integrated display. Please follow the document's rules and steps to implement them.

Preparation

Complete the preliminary preparation according to the following steps:

Requirement Version Condition

  • Ensure Android Studio 3.2 or higher

  • MinSdkVersion is 21 or higher compileSdkVersion is 28 or higher

Download the latest version of the SDK

Apply for SDK application and advertising ID in the SSP management background

Configure your app

  1. Build at your project level and dependency configuration in gradle file

    repositories {
        flatDir {
            dirs 'libs'    
         }
    }
    
  2. Add aar package references to different dependencies of the project api fileTree(dir: 'libs', include: ['*.aar'])

  3. Add aar package dependency at the application level build.gradle implementation(name: 'adx3sdk',ext:'aar')

  4. Add network permissions to the application-level AndroidManifest registration file <uses-permission android:name="android.permission.INTERNET" />

Initialize advertising SDK

Please call Adx3Ads.Initialize() before loading advertisements, is best carried out in, so that the SDK can be initialized quickly without affecting the quick start of advertisements such as screen opening. This method only needs to be initialized once and does not need to be executed later. The following code example demonstrates how to use it in Applicaiton

import android.app.Application;

import io.Adx3.library.Adx3Ads;

public class AdApplication extends Application {

    @Override
    public void onCreate() {
        super.onCreate();
        //SSP system provides sdk management code
        Adx3Ads.initialize(this, CODE);
    }
}

As mentioned above, you have completed the initialization of the advertising SDK. Later, you can display different types of advertisements according to different advertising formats

Select ad format

Integrate the AAR application package to the project level libs folder

Banner advertising
Open screen advertisement
Motivational advertising
Plug in advertising
https://pub-block.s3.ap-east-1.amazonaws.com/base/202306/4a579c5d41750549.aar
Adx3 SSP
Logo