soundgym / react-native-kakao-ad

Kakao-Ad SDK for react-native
MIT License
13 stars 1 forks source link

Could not find com.kakao.ad:tracker:0.3.7 #2

Closed leesohyun13 closed 3 years ago

leesohyun13 commented 3 years ago

react-native android에서 빌드 에러가 발생합니다. 따로 설정해줘야 하는 부분이 있을까요?

`Could not determine the dependencies of task ':app:mergeDebugAssets'.

Could not resolve all task dependencies for configuration ':app:debugRuntimeClasspath'. Could not find com.kakao.ad:tracker:0.3.7. `

bang9 commented 3 years ago

@leesohyun13 아래와 같은 설정을 project/android/build.gradle 파일에 추가해보시겠어요?

allprojects {
    repositories {
+       google()
+       jcenter()
    }
}

subprojects {
    repositories {
        mavenCentral()
+       maven {
+           url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/'
+       }
    }
}
leesohyun13 commented 3 years ago

해결되었습니다. 감사합니다 ㅎㅎ