📝 설명
현재 소셜 로그인 버튼은 임시로 메인 화면으로 이동만 합니다. 실제 Apple Sign-In과 Google Sign-In 연동이 필요합니다.
✅ 요구사항
Apple Sign-In
Google Sign-In
공통
📍 관련 파일
Projects/App/Sources/Features/Login/LoginFeature.swift - AuthClient
Configs/Debug.xcconfig - API 키 설정
🔗 참고
📌 현재 상태
AuthClient에 TODO로 남겨둔 상태:
```swift
static let liveValue = AuthClient(
signInWithApple: {
// TODO: Implement Apple Sign-In
try await Task.sleep(nanoseconds: 1000000000)
},
signInWithGoogle: {
// TODO: Implement Google Sign-In
try await Task.sleep(nanoseconds: 1000000000)
}
)
```
📝 설명
현재 소셜 로그인 버튼은 임시로 메인 화면으로 이동만 합니다. 실제 Apple Sign-In과 Google Sign-In 연동이 필요합니다.
✅ 요구사항
Apple Sign-In
Google Sign-In
공통
📍 관련 파일
Projects/App/Sources/Features/Login/LoginFeature.swift- AuthClientConfigs/Debug.xcconfig- API 키 설정🔗 참고
📌 현재 상태
AuthClient에 TODO로 남겨둔 상태:```swift
static let liveValue = AuthClient(
signInWithApple: {
// TODO: Implement Apple Sign-In
try await Task.sleep(nanoseconds: 1000000000)
},
signInWithGoogle: {
// TODO: Implement Google Sign-In
try await Task.sleep(nanoseconds: 1000000000)
}
)
```