개발계 SDK 추가

NestAds SDK 추가

  1. 프로젝트 단 settings.gradle 파일에 아래의 Maven central repositorywisebirds repository를 추가합니다.

Kotlin 1.7.x 와 Kotlin 1.9.x 로 빌드된 SDK 중 선택하여 추가할 수 있습니다.

dependencyResolutionManagement {
   repositories {
       mavenCentral()
       
       // Kotlin 1.7.x 로 빌드된 SDK
       maven { url 'https://nexus.wisebirds.ai/repository/snapshots-k1_7/' }
     
       // Kotlin 1.9.x 로 빌드된 SDK
       maven { url 'https://nexus.wisebirds.ai/repository/snapshots/' }
   }
}
  1. 어플리케이션 단 build.gradle 파일에 아래의 dependency를 추가합니다.

dependencies {
   implementation 'com.nestads:nestads-sdk-android:$version-SNAPSHOT'
}

Last updated