Max Mediation Custom SAN SDK - san-sdk/sample GitHub Wiki

Step 1.Manage Custom Native Network

The configuration can be referred to Custom SDK Network Integration Guide

Android Adapter Class Name
com.applovin.mediation.adapters.SanMediationAdapter

Step 2.Add the San SDK and Custom SDK

Open your project and update the app module’s build.gradle to have the following repositories and dependencies:

repositories {
    // ... other project repositories
    mavenCentral()
}
//...

dependencies {
    // ... other project dependencies
    implementation "com.myadsget:san-sdk:3.13.+"// SAN sdk
    implementation "com.myadsget:max-san:11.7.1.+"// Max Custom SAN adapter
}

Step 3.Configure AndroidManifest.xml

Add the AppKey in meta-data in the example below

<manifest>
    <application>
         <meta-data android:name="com.san.APP_KEY"
             android:value="YOUR_APP_KEY"/>
    </application>
</manifest> 

YOUR_APP_ID is a necessary parameter.

Change Log

11.10.1.0(6.13-2023)

SAN Version:3.13.9.12
Max Version:11.10.1

11.7.1.0(2.24-2023)

SAN Version:3.13.9.4
Max Version:11.7.1

11.3.3.0(4.26-2022)

SAN Version:3.6.5
Max Version:11.3.3

⚠️ **GitHub.com Fallback** ⚠️