Skip to content

Commit 43b020e

Browse files
authored
Merge pull request #136 from ESTSOFT-iOS-01/feature/#135
[Feature] Tuist 각 레이어 모듈화
2 parents 7dc551e + 95dc4bb commit 43b020e

215 files changed

Lines changed: 1015 additions & 628 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

RunLog/Project.swift

Lines changed: 0 additions & 41 deletions
This file was deleted.

RunLog/RunLog/InfoPlists/RunLog-Info.plist renamed to RunLog/Projects/App/InfoPlists/Info.plist

Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<string>$(API_KEY)</string>
77
<key>CFBundleDevelopmentRegion</key>
88
<string>$(DEVELOPMENT_LANGUAGE)</string>
9+
<key>CFBundleDisplayName</key>
10+
<string>RunLog</string>
911
<key>CFBundleExecutable</key>
1012
<string>$(EXECUTABLE_NAME)</string>
1113
<key>CFBundleIdentifier</key>
@@ -41,20 +43,6 @@
4143
<string>Dark</string>
4244
<key>UIApplicationSupportsIndirectInputEvents</key>
4345
<true/>
44-
<key>UIAppFonts</key>
45-
<array>
46-
<string>NanumMyeongjo-Regular.ttf</string>
47-
<string>RacingSansOne-Regular.ttf</string>
48-
<string>Pretendard-Black.otf</string>
49-
<string>Pretendard-Bold.otf</string>
50-
<string>Pretendard-ExtraBold.otf</string>
51-
<string>Pretendard-ExtraLight.otf</string>
52-
<string>Pretendard-Light.otf</string>
53-
<string>Pretendard-Medium.otf</string>
54-
<string>Pretendard-Regular.otf</string>
55-
<string>Pretendard-SemiBold.otf</string>
56-
<string>Pretendard-Thin.otf</string>
57-
</array>
5846
<key>UIApplicationSceneManifest</key>
5947
<dict>
6048
<key>UIApplicationSupportsMultipleScenes</key>
@@ -92,12 +80,7 @@
9280
<string>UIInterfaceOrientationLandscapeLeft</string>
9381
<string>UIInterfaceOrientationLandscapeRight</string>
9482
</array>
95-
<key>UILaunchScreen</key>
96-
<dict>
97-
<key>UIColorName</key>
98-
<string></string>
99-
<key>UIImageName</key>
100-
<string></string>
101-
</dict>
83+
<key>UILaunchStoryboardName</key>
84+
<string>LaunchScreen</string>
10285
</dict>
10386
</plist>

RunLog/Projects/App/Project.swift

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import ProjectDescription
2+
import ProjectDescriptionHelpers
3+
4+
let project = Project.app(
5+
name: Module.app.name,
6+
organizationName: Module.organizationName,
7+
infoPlist: .file(path: "InfoPlists/info.plist"),
8+
dependencies: [
9+
Module.inject,
10+
Module.domain,
11+
Module.data,
12+
Module.presentation,
13+
Module.util,
14+
].map(\.project),
15+
resources: .default
16+
)

RunLog/RunLog/Resources/Assets.xcassets/AccentColor.colorset/Contents.json renamed to RunLog/Projects/App/Resources/Assets.xcassets/AccentColor.colorset/Contents.json

File renamed without changes.

RunLog/RunLog/Resources/Assets.xcassets/AppIcon.appiconset/1024.png renamed to RunLog/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/1024.png

File renamed without changes.

RunLog/RunLog/Resources/Assets.xcassets/AppIcon.appiconset/114.png renamed to RunLog/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/114.png

File renamed without changes.

RunLog/RunLog/Resources/Assets.xcassets/AppIcon.appiconset/120.png renamed to RunLog/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/120.png

File renamed without changes.

RunLog/RunLog/Resources/Assets.xcassets/AppIcon.appiconset/180.png renamed to RunLog/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/180.png

File renamed without changes.

RunLog/RunLog/Resources/Assets.xcassets/AppIcon.appiconset/29.png renamed to RunLog/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/29.png

File renamed without changes.

RunLog/RunLog/Resources/Assets.xcassets/AppIcon.appiconset/40.png renamed to RunLog/Projects/App/Resources/Assets.xcassets/AppIcon.appiconset/40.png

File renamed without changes.

0 commit comments

Comments
 (0)