crossplatformkorea / react-native-kakao-login

react-native native module for Kakao sign in.
MIT License
352 stars 134 forks source link

Could not find okhttp-2.7.5.jar 에러가 나면서 build가 되지 않습니다. #141

Closed LeeKyungJoon closed 4 years ago

LeeKyungJoon commented 4 years ago

Version of kakao-login libraries

"^2.5.0"

Version of react-native

"0.61.5"

Platforms you faced the error (IOS or Android or both?)

Android

Expected behavior

해당 주소로 가서 다운을 받아야되는걸로 알고 있는데 찾을 수 없다고 나옵니다.

Actual behavior

Could not find okhttp-2.7.5.jar 에러가 나면서 build가 되지 않습니다.

Tested environment (Emulator? Real Device?)

갤럭시 A51

LeeKyungJoon commented 4 years ago

방금 해결했습니다. 공식 문서에는 allprojects { repositories { ... maven { url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' } } } 이 방법으로 되어있으나 이 방법을 사용하게 될경우 저와 같은 오류가 납니다. 그래서 해결방법으로

subprojects { repositories { mavenCentral() maven { url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' } } } 이렇게 맨 밑에 추가를 해주시면 잘 됩니다.