Skip to content

Commit

Permalink
fix: participantDemoApp에 firebaseMessaging 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
chansooo committed Nov 2, 2023
1 parent 3bc90e6 commit 93b4c27
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ import UIKit

import MOITParticipateUserInterface
import MOITParticipateUserInterfaceImpl

import MOITParticipateData
import MOITParticipateDataImpl

import MOITParticipateDomain
import MOITParticipateDomainImpl

import MOITNetwork
import MOITNetworkImpl

Expand Down Expand Up @@ -69,7 +72,7 @@ final class MOITParticipateAppDelegate: UIResponder, UIApplicationDelegate {
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
let window = UIWindow(frame: UIScreen.main.bounds)

setToastStyle()

router = InputParticipateCodeBuilder(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ let project = Project.invertedDualTargetProjectWithDemoApp(
.Feature.MOITParticipate.Domain.Interface,
.Feature.MOITParticipate.Data.Interface,
.MOITNetwork.Interface,
.Feature.MOITDetail.Interface,
.ThirdParty.RIBs,
],
implementDependencies: [
Expand All @@ -34,20 +34,30 @@ let project = Project.invertedDualTargetProjectWithDemoApp(
.DesignSystem,

.Feature.MOITParticipate.Domain.Implement,

.Feature.MOITParticipate.Data.Implement,
.Feature.MOITDetail.Interface,
.Feature.MOITDetail.Domain.Interface,
],
demoAppDependencies: [
.Feature.MOITParticipate.UserInterface.Implement,
.Feature.MOITParticipate.UserInterface.Interface,
.Feature.MOITParticipate.Domain.Implement,
.Feature.MOITParticipate.Data.Implement,
.Feature.MOITDetail.Domain.Interface,
.Feature.MOITDetail.Domain.Implement,
.Feature.MOITDetail.Data.Interface,
.Feature.MOITDetail.Data.Implement,

.MOITNetwork.Implement
.MOITNetwork.Implement,

.ResourceKit,
.TokenManager.Implement,
.ThirdParty.RxSwift,
.ThirdParty.RIBs,
.ThirdParty.Toast,


.ThirdParty.FirebaseMessaging
],
isUserInterface: true
)
Expand Down

0 comments on commit 93b4c27

Please sign in to comment.