-
Notifications
You must be signed in to change notification settings - Fork 2
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
Feature/138 fcm #170
base: develop
Are you sure you want to change the base?
Feature/138 fcm #170
Conversation
Projects/App/Project.swift
Outdated
@@ -39,7 +39,9 @@ let project = Project( | |||
.project(target: "Feature", path: .relativeToRoot("Projects/Feature")), | |||
.project(target: "Repository", path: .relativeToRoot("Projects/Data")), | |||
.project(target: "DIContainer", path: .relativeToRoot("Projects/DIContainer")), | |||
.target(name: "DodamDodamWidget") | |||
.target(name: "DodamDodamWidget"), | |||
.external(name: "FirebaseAnalytics"), |
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.
FirebaseAnalytics도 필요한가요?
Tuist/Package.swift
Outdated
@@ -30,6 +30,7 @@ let package = Package( | |||
.package(url: "https://github.com/Mercen-Lee/FlowKit", branch: "main"), | |||
.package(url: "https://github.com/Mercen-Lee/SignKit", exact: "0.0.2"), | |||
.package(url: "https://github.com/lorenzofiamingo/swiftui-cached-async-image", exact: "2.1.1"), | |||
.package(url: "https://github.com/bestswlkh0310/SwiftBok", exact: "1.2.0") | |||
.package(url: "https://github.com/bestswlkh0310/SwiftBok", exact: "1.2.0"), |
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.
SwiftBok 이제 안 쓰니 삭제 해주세요
삭제하기 전에 브런치 만들어서 아직 남아있나 보네요
94dec33
to
1f2e27c
Compare
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.
안녕하세요. 4기 이영은입니다.
지나가다가 반가운 마음에 리뷰 남깁니다.
} else { | ||
let settings: UIUserNotificationSettings = | ||
UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil) | ||
application.registerUserNotificationSettings(settings) | ||
} |
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.
앱의 mininum tarrget이 iOS 15 이상이라, iOS 10.0 기준으로 분기를 태우는건 의미가 없어보입니다.
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.
리뷰 감사합니다.
피드백대로 수정하겠습니다 !
|
||
// fcm 토큰이 등록 되었을 때 | ||
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) { | ||
print("✅ AppDelegate.application.didRegisterForRemoteNotificationsWithDeviceToken - apnsToken \(deviceToken)") |
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.
곳곳에 디버깅 용도로 찍어놓은 print문이 있는것같은데, 프로덕션에서는 아무 의미가 없기 때문에 제거해주세요.
No description provided.