페이지 이동경로
  • Docs>
  • iOS>
  • Install using cocoapods

iOS

Install using Cocoapods

This document guides how to install the Kakao SDK for iOS("iOS SDK") using Cocoapods.

Caution

Install using Cocoapods is no longer supported in iOS SDK 2.23.0 or higher version. Refer to Install to install iOS SDK using SPM.

Install using Cocoapods

CocoaPods version 1.8 or higher is requried. Add the entire modules of the Kakao SDK or the desired modules in the Podfile in the project as below.

Swift
RxSwift
# Add all modules
pod 'KakaoSDK'

# or

# Add the desired modules
pod 'KakaoSDKCommon'  # Common module that contains essential elements
pod 'KakaoSDKAuth'  # Authentication
pod 'KakaoSDKUser'  # Kakao Login, User management
pod 'KakaoSDKTalk'  # Kakao Talk Social, Kakao Talk Messaging
pod 'KakaoSDKFriend' # Friend picker, 'Cocoapods settings for picker' is required.
pod 'KakaoSDKShare'  # Kakao Talk Sharing
pod 'KakaoSDKTemplate'  # Message default template
pod 'KakaoSDKNavi'  # Kakao Navi
pod 'KakaoSDKCert'  # Kakao Certificate
# Add all modules
pod 'RxKakaoSDK'

# or

# Add the desired modules
pod 'RxKakaoSDKCommon'  # Common module that contains essential elements
pod 'RxKakaoSDKAuth'  # Authentication
pod 'RxKakaoSDKUser'  # Kakao Login, User
pod 'RxKakaoSDKTalk'  # Kakao Talk Social, Kakao Talk Messaging
pod 'RxKakaoSDKFriend' # Friend picker, 'Cocoapods settings for picker' is required.
pod 'RxKakaoSDKShare'  # Kakao Talk Sharing
pod 'KakaoSDKTemplate'  # Message default template
pod 'KakaoSDKNavi'  # Kakao Navi
pod 'KakaoSDKCert'  # Kakao Certificate
iOS> Install using cocoapods