💡미디에이션 설정 가이드

안정적인 Fill-rate 를 위해 AppLovin, Unityads 등의 추가 연동을 권장 합니다. (For a stable fill-rate, it's recommended to incorporate additional networks such as App)

📌미디에이션 시작하기

Maven Settings

Cauly 를 이용하실 경우, 프로젝트 수준 build.gradle에 다음과 같이 maven을 추가합니다. (If using Adfit or Cauly, add Maven to your project-level build.gradle as follows:)

repositories {
    google()
    mavenCentral()
 
    // Cauly
    maven {
        url "s3://repo.cauly.net/releases"
        credentials(AwsCredentials) {
            accessKey "AKIAWRZUK5MFKYVSUOLB"
            secretKey "SGOr65MOJeKBUFxeVNZ4ogITUKvcltWqEApC41JL"
        }
    }
}

Dependency Settings

앱 수준 build.gradle에 다음과 같이 사용하고자 하는 미디에이션 업체의 sdk dependency를 추가합니다. (In your app-level build.gradle, add the SDK dependency for the mediation company you wish to use as follows:)

AppLovin

Last updated