-
Notifications
You must be signed in to change notification settings - Fork 149
iOS 설정 Readme 내용 수정 #354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ParkDongJo
wants to merge
1
commit into
crossplatformkorea:main
Choose a base branch
from
ParkDongJo:feature/modify-readme-about-ios-config
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
iOS 설정 Readme 내용 수정 #354
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -57,7 +57,28 @@ iOS의 경우 `yarn add @react-native-seoul/kakao-login` 이후 `npx pod-install | |
|
|
||
| 2. ios 카카오 sdk 설치 후의 설정과 관련해서는 [공식문서 - 카카오 로그인 > 설정하기](https://developers.kakao.com/docs/latest/ko/kakaologin/prerequisite)를 참고해주세요. 해당 가이드를 통해 카카오 개발자 페이지에서 본인의 어플리케이션을 생성해주세요. | ||
|
|
||
| 3. [공식문서 - 개발 프로젝트 설정](https://developers.kakao.com/docs/latest/ko/getting-started/sdk-ios-v1) 을 참고하여 `info.plist`, `URL Types` 및 커스텀 스킴 추가 등 기타 필요한 세팅들을 프로젝트에 추가해줍니다. 아래`카카오 네이티브앱 아이디를 적어주세요` 문구를 잘 확인하시여 본인의 Kakao App Key로 변경해주세요. | ||
| 3. 아래의 `podfile 설정, URL Schemes 설정, 앱 키 등록하기` 등등의 설정을 해주세요. 기타 필요한 셋팅들은 [공식문서 - 개발 프로젝트 설정](https://developers.kakao.com/docs/latest/ko/getting-started/sdk-ios) 을 참고하여 프로젝트에 추가해줍니다. | ||
|
|
||
| - **Podfile 설정 후 재빌드** <br/> | ||
| Podfile에 `KakaoSDKCommon, KakaoSDKAuth, KakaoSDKUser` 등등의 모듈만 추가합니다.(5.2.4 기준) | ||
| ``` | ||
| pod 'KakaoSDKCommon' # 필수 요소를 담은 공통 모듈 | ||
| pod 'KakaoSDKAuth' # 사용자 인증 | ||
| pod 'KakaoSDKUser' # 카카오 로그인, 사용자 관리 | ||
| ``` | ||
| > [#328](https://github.com/react-native-seoul/react-native-kakao-login/pull/328) 부터 KaKaoSDK 전체가 아니라, 필요한 모듈만 설치되게끔 변경되었습니다. | ||
|
|
||
| 커멘드창에서 재빌드 해줍니다. | ||
| ``` | ||
| cd ios && pod install | ||
| ``` | ||
|
Comment on lines
+71
to
+74
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 위 명령어가 저는 편하던데 혹시해서 첨언드립니다. |
||
|
|
||
| - **URL Schemes 설정** <br> | ||
| [Info] > [URL Types] > [URL Schemes] 항목에 네이티브 앱 키(Native App Key)를 kakao${NATIVE_APP_KEY} 형식으로 등록합니다. | ||
| [공식문서 - URL Schemes 설정](https://developers.kakao.com/docs/latest/ko/getting-started/sdk-ios#set-up-url-schemes) | ||
|
|
||
| - **앱 키 등록하기** <br/> | ||
| 아래`카카오 네이티브앱 아이디를 적어주세요` 문구를 잘 확인하시여 본인의 Kakao App Key로 변경해주세요. | ||
|
|
||
| ```diff | ||
| <key>CFBundleURLTypes</key> | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아래의
podfile 설정, URL Schemas 설정이란 표현이 조금 모호한 것 같습니다. 아래와 같이 바꿔보면 어떨까요?좀더 명확한 문장이 있다면 그걸로 대체해도 좋습니다.
"iOS Podfile을 아래와 같이 수정합니다. URL schemes 설정과 앱 키 등록하기를 함께 참고해주세요."