개발계 SDK 추가
NestAds SDK 추가
프로젝트 단
settings.gradle
파일에 아래의Maven central repository
와wisebirds 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/' }
}
}
어플리케이션 단
build.gradle
파일에 아래의dependency
를 추가합니다.
dependencies {
implementation 'com.nestads:nestads-sdk-android:$version-SNAPSHOT'
}
Last updated