You need to check the build.gradle file to see how you configured the development environment. In the gradle environment of Android Studio, you can add Kakao SDK as follows:
App Module build.gradle
repositories {
maven { url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' }
}
...
dependencies {
compile 'com.kakao.sdk:usermgmt:1.1.35'
compile 'com.kakao.sdk:kakaolink:1.1.35'
compile 'com.kakao.sdk:kakaotalk:1.1.35'
compile 'com.kakao.sdk:kakaonavi:1.1.35'
compile 'com.kakao.sdk:kakaostory:1.1.35'
}
I have confirmed that it works well in my environment, so please add the above code.
Refer to Configure Development Environment > Use in Gradle Environment
in the following link for more information.
599 GDB gets version error when attempting to debug with the Presense SDK (IDE)
885 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
572 Understanding How to Configure Google API Key
567 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
© 2024 OneMinuteCode. All rights reserved.