Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

build.gradle 의 dependencies 부분에 아래 코드 추가

  • “com.buzzvil:buzzad-benefit:연동하려는 버전”을 입력해 주세요.

  • POP을 연동하고 있을 경우 exclude group: 'com.buzzvil', module: 'buzzad-benefit-pop' 부분을 제거해 주세요.

  • Notification 을 연동하고 있을 경우 exclude group: 'com.buzzvil', module: 'buzzad-benefit-notification' 부분을 제거해 주세요.

Code Block
languagejava
repositories {
    maven { url "https://dl.buzzvil.com/public/maven" }
}
...

dependencies {
    implementation ("com.buzzvil:buzzad-benefit:2.21.+")
}

...