https://thenicesj.tistory.com/81
소셜로그인 android/ios (naver / kakao / google) in flutter
naver 로그인 구현 android https://thenicesj.tistory.com/18 [sociallogin] naver login구현_android 요즘엔 회원가입 로그인 절차보다 소셜로그인에 많이 의존을 하곤 한다. 실제로 소셜 로그인으로 했을때 접..
thenicesj.tistory.com
- 일단 시작하기 앞서 podfile두번째줄에 ios버전 확인
(주석 지우고 12로 셋팅해줬음)
- 그리고 다시 android 해줬던것 처럼 ios 도 등록하기 위해 카카오 개발 사이트를 들어가자(그리고 패키지 사이트도 참조를 위해 넣어둔다.)
https://developers.kakao.com/console
카카오계정 로그인
여기를 눌러 링크를 확인하세요.
accounts.kakao.com
https://pub.dev/packages/kakao_flutter_sdk
kakao_flutter_sdk | Flutter Package
A flutter plugin for Kakao API, which supports Kakao login, KakaoLink, User API, KakaoTalk API, KakaoStory API, and Push API.
pub.dev
- kakao개발 페이지에서 ios 등록을 하면서 bundle id 는 google login 구현할때 언급했는데
https://thenicesj.tistory.com/24
[sociallogin] google login구현_ios
https://thenicesj.tistory.com/81 소셜로그인 android/ios (naver / kakao / google) in flutter naver 로그인 구현 android https://thenicesj.tistory.com/18 [sociallogin] naver login구현_android 요즘엔 회..
thenicesj.tistory.com
위 포스팅을 참조하도록 한다.
그래서 결국 ios는 android 셋팅할때 다 되서
Podfile에서 ios 버전 바꾸고 플랫폼 ios 추가한것뿐이다.
예제에서는 다음을 하라는데 이거 안해도 실행이 된다.
이건 나중에 다시 확인해보자!
(plist파일에 추가하란다..)
<key>LSApplicationQueriesSchemes</key>
<array>
<!-- common -->
<string>kakao${native_app_key_here}</string>
<!-- KakaoTalk login -->
<string>kakaokompassauth</string>
<string>storykompassauth</string>
<!-- KakaoLink -->
<string>kakaolink</string>
<string>kakaotalk-5.9.7</string>
</array>
'IT > Flutter' 카테고리의 다른 글
소셜로그인 android/ios (naver / kakao / google) in flutter (14) | 2022.01.05 |
---|---|
flutter에서 iphone 에뮬레이터 (error output from cocoapods) (1) | 2021.12.22 |
[sociallogin] kakao login구현_android (2) | 2021.11.25 |
[sociallogin] google login구현_ios (2) | 2021.11.25 |
[sociallogin] google login구현_android (4) | 2021.11.25 |
댓글