Mintegral 활성화

지원되는 광고 형식

통합

  1. Yandex Advertising Network 인터페이스 및 다른 네트워크 인터페이스에서 미디에이션을 설정합니다.

  2. Add the dependencies to the androidMain.dependencies block in the build.gradle file at the app level:

    implementation("com.yandex.android:mobileads:8.0.0")
    implementation("com.yandex.ads.mediation:mobileads-mintegral:17.0.41.0")
    
  3. If you have problems loading the library, add the following code to the settings.gradle.kts file as described in the Mintegral documentation:

    dependencyResolutionManagement {
       repositories {
          //...
          
          //Non-listed GP market applications, Android X Version
          maven("https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_china")
    
          //Launch GP market application, Android X Version
          maven("https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_oversea")
    
          //Non-listed GP market applications, not the Android X version
          maven("https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_support/")
       }
    }
    

Примечание

모바일 미디에이션에서 앱 설치를 추적하려면, 어댑터에 대해 Info.plist를 구성해야 합니다. 광고 네트워크 문서에 따라 수행하세요.

Mintegral과 협업하려면 MintegralYandexMobileAdsAdapters 라이브러리를 연결해야 합니다.

MintegralYandexMobileAdsAdapters 라이브러리는 CocoaPods 종속성 관리 시스템과 함께 작동하도록 조정되었으며, 정적 통합 방식을 지원합니다.

  1. Yandex Advertising Network 인터페이스 및 기타 네트워크 인터페이스에서 미디에이션을 설정합니다.

  2. 라이브러리를 연결하려면 프로젝트의 Podfile 파일에 종속성을 추가하세요.

    pod 'MintegralYandexMobileAdsAdapters', '8.0.7.0'
    
Previous
Next