Skip to content

Commit af21dfa

Browse files
authored
πŸ”— :: (#196) μ²«λΉŒλ“œ ν¬λŸ¬μ‹œ(좩돌) 버그 μˆ˜μ •
2 parents efc965f + f705b61 commit af21dfa

File tree

10 files changed

+57
-14
lines changed

10 files changed

+57
-14
lines changed

β€Ž.gitignoreβ€Ž

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,3 @@ Derived/
7070
Tuist/Dependencies
7171

7272
XCConfig/
73-
74-
Projects/App/Resources/GoogleService-Info.plist

β€ŽPlugins/EnvironmentPlugin/ProjectDescriptionHelpers/ProjectEnvironment.swiftβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ public let env = ProjectEnvironment(
1717
organizationName: "com.team.return",
1818
deploymentTarget: .iOS(targetVersion: "15.0", devices: [.iphone, .ipad]),
1919
platform: .iOS,
20-
baseSetting: ["OTHER_LDFLAGS": .string("$(inherited)")]
20+
baseSetting: ["OTHER_LDFLAGS": ["$(inherited) -Objc"]]
2121
)

β€ŽProjects/App/Project.swiftβ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ let targets: [Target] = [
3434
entitlements: "Support/\(env.appName).entitlements",
3535
scripts: scripts,
3636
dependencies: [
37-
.Projects.flow
37+
.Projects.flow,
38+
.SPM.FCM
3839
],
3940
settings: .settings(base: env.baseSetting)
4041
),
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>API_KEY</key>
6+
<string>AIzaSyDab8zMjGWDAepzHNhMFL945_qjZHk2O2U</string>
7+
<key>GCM_SENDER_ID</key>
8+
<string>205952649319</string>
9+
<key>PLIST_VERSION</key>
10+
<string>1</string>
11+
<key>BUNDLE_ID</key>
12+
<string>com.team.return.JOBIS-DSM-iOS.dev</string>
13+
<key>PROJECT_ID</key>
14+
<string>jobis-dev-cff3d</string>
15+
<key>STORAGE_BUCKET</key>
16+
<string>jobis-dev-cff3d.appspot.com</string>
17+
<key>IS_ADS_ENABLED</key>
18+
<false></false>
19+
<key>IS_ANALYTICS_ENABLED</key>
20+
<false></false>
21+
<key>IS_APPINVITE_ENABLED</key>
22+
<true></true>
23+
<key>IS_GCM_ENABLED</key>
24+
<true></true>
25+
<key>IS_SIGNIN_ENABLED</key>
26+
<true></true>
27+
<key>GOOGLE_APP_ID</key>
28+
<string>1:205952649319:ios:8e461e3e3142a903776cc2</string>
29+
</dict>
30+
</plist>

β€ŽProjects/App/Sources/AppDelegate.swiftβ€Ž

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,10 @@ final class AppDelegate: UIResponder, UIApplicationDelegate {
6666

6767
extension AppDelegate: UNUserNotificationCenterDelegate {
6868
// λ°±κ·ΈλΌμš΄λ“œμ—μ„œ ν‘Έμ‹œ μ•Œλ¦Όμ„ νƒ­ν–ˆμ„ λ•Œ μ‹€ν–‰
69-
func application(_ application: UIApplication,
70-
didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
69+
func application(
70+
_ application: UIApplication,
71+
didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data
72+
) {
7173
print("APNS token: \(deviceToken)")
7274
Messaging.messaging().apnsToken = deviceToken
7375
}
@@ -83,7 +85,10 @@ extension AppDelegate: UNUserNotificationCenterDelegate {
8385
}
8486

8587
extension AppDelegate: MessagingDelegate {
86-
func messaging(_ messaging: Messaging, didReceiveRegistrationToken fcmToken: String?) {
88+
func messaging(
89+
_ messaging: Messaging,
90+
didReceiveRegistrationToken fcmToken: String?
91+
) {
8792
let token = String(describing: fcmToken)
8893
print("Firebase registration token: \(token)")
8994

β€ŽProjects/Flow/Sources/RejectReason/RejectReasonFlow.swiftβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public final class RejectReasonFlow: Flow {
2525
switch step {
2626
case .rejectReasonIsRequired:
2727
return navigateToRejectReason()
28-
case let .reApplyIsRequired(recruitmentID, applicationID,companyName, companyImageUrl):
28+
case let .reApplyIsRequired(recruitmentID, applicationID, companyName, companyImageUrl):
2929
return navigateToReApply(recruitmentID, applicationID, companyName, companyImageUrl)
3030
}
3131
}

β€ŽProjects/Modules/ThirdPartyLib/Project.swiftβ€Ž

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ import DependencyPlugin
44

55
let project = Project.makeModule(
66
name: "ThirdPartyLib",
7-
product: .framework,
7+
product: .staticFramework,
88
targets: [],
9+
packages: [.FCM],
910
dependencies: [
1011
.SPM.RxCocoa,
1112
.SPM.RxFlow,
@@ -19,6 +20,7 @@ let project = Project.makeModule(
1920
.SPM.kingfisher,
2021
.SPM.KeychainSwift,
2122
.SPM.ReactorKit,
22-
.SPM.RxGesture
23-
], sources: []
23+
.SPM.RxGesture,
24+
.SPM.FCM
25+
]
2426
)
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
//
2+
// Void.swift
3+
// ThirdPartyLib
4+
//
5+
// Created by ν™μŠΉμž¬ on 3/28/24.
6+
// Copyright Β© 2024 com.team.return. All rights reserved.
7+
//
8+
9+
import Foundation

β€ŽProjects/Presentation/Project.swiftβ€Ž

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,8 @@ let project = Project.makeModule(
66
name: "Presentation",
77
product: .staticLibrary,
88
targets: [.unitTest],
9-
packages: [.FCM],
109
dependencies: [
1110
.Projects.domain,
12-
.Modules.designSystem,
13-
.SPM.FCM
11+
.Modules.designSystem
1412
]
1513
)

β€Žgraph.pngβ€Ž

6.19 KB
Loading

0 commit comments

Comments
Β (0)