-
Notifications
You must be signed in to change notification settings - Fork 0
[Feature] Tuist 적용 #134
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
Merged
Merged
[Feature] Tuist 적용 #134
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
2acedde
[#133] Tuist 적용
Monfi98 142b56e
[#133] Dependencies Package.swift로 이동
Monfi98 968ecd3
[#133] 필요없는 참조 제거
Monfi98 a959806
[#133] infoPlist 분리
Monfi98 9262334
[#133] gitignore 추가
Monfi98 e7f1667
[#133] 파일 제거
Monfi98 641259f
[#133] .package.resolved 제거
Monfi98 6f17cd4
[#133] git ignore 수정
Monfi98 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| import ProjectDescription | ||
|
|
||
| let project = Project( | ||
| name: "RunLog", | ||
| organizationName: "ESTSOFTiOSTEAM1", | ||
| targets: [ | ||
| .target( | ||
| name: "RunLog", | ||
| destinations: [.iPhone], | ||
| product: .app, | ||
| bundleId: "com.ESTSOFTiOSTEAM1.IEEE.RunLog", | ||
| deploymentTargets: .iOS("17.0"), | ||
| infoPlist: .file(path: "RunLog/InfoPlists/RunLog-info.plist"), | ||
| sources: ["RunLog/Sources/**"], | ||
| resources: ["RunLog/Resources/**"], | ||
| dependencies: [ | ||
| .external(name: "SnapKit"), | ||
| .external(name: "Then"), | ||
| .external(name: "Moya"), | ||
| .external(name: "CombineMoya"), | ||
| .external(name: "NVActivityIndicatorView"), | ||
| .external(name: "NVActivityIndicatorViewExtended"), | ||
| ], | ||
| coreDataModels: [ | ||
| .coreDataModel("RunLog/Sources/Data/DTO/DTOs.xcdatamodeld") | ||
| ] | ||
| ), | ||
| .target( | ||
| name: "RpTest", | ||
| destinations: [.iPhone], | ||
| product: .unitTests, | ||
| bundleId: "com.ESTSOFTiOSTEAM1.IEEE.RpTest", | ||
| deploymentTargets: .iOS("17.0"), | ||
| infoPlist: .file(path: "RpTest/InfoPlists/RpTest-info.plist"), | ||
| sources: ["RpTest/Sources/**"], | ||
| dependencies: [ | ||
| .target(name: "RunLog") | ||
| ] | ||
| ) | ||
| ] | ||
| ) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
| <plist version="1.0"> | ||
| <dict> | ||
| <key>CFBundleDevelopmentRegion</key> | ||
| <string>$(DEVELOPMENT_LANGUAGE)</string> | ||
| <key>CFBundleExecutable</key> | ||
| <string>$(EXECUTABLE_NAME)</string> | ||
| <key>CFBundleIdentifier</key> | ||
| <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> | ||
| <key>CFBundleInfoDictionaryVersion</key> | ||
| <string>6.0</string> | ||
| <key>CFBundleName</key> | ||
| <string>$(PRODUCT_NAME)</string> | ||
| <key>CFBundlePackageType</key> | ||
| <string>BNDL</string> | ||
| <key>CFBundleShortVersionString</key> | ||
| <string>1.0</string> | ||
| <key>CFBundleVersion</key> | ||
| <string>1</string> | ||
| </dict> | ||
| </plist> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
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.
Info.plist 경로 불일치로 빌드 실패 위험
infoPlist: .file(path: "RunLog/InfoPlists/RunLog-info.plist")경로가 실제로 커밋된RunLog/RunLog/InfoPlists/RunLog-Info.plist와(과) 폴더/대소문자 모두 달라 Xcode & Tuist가 파일을 찾지 못합니다.동일 이슈가 테스트 타깃에도 있습니다(아래 diff 참고).
🤖 Prompt for AI Agents
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.
루트는 여기가 맞아.
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.
🧩 Analysis chain
@Monfi98 파일 구조를 확인해보겠습니다.
🏁 Script executed:
Length of output: 1463
@Monfi98 맞습니다! 루트 경로 구조는 정확합니다.
파일 구조 확인 결과:
Project.swift는RunLog/디렉토리에 위치"RunLog/InfoPlists/RunLog-info.plist"는 올바르게RunLog/RunLog/InfoPlists/를 참조다만 대소문자 차이만 있습니다:
RunLog-info.plist(소문자i)RunLog-Info.plist(대문자I)동일한 이슈가 테스트 타깃에도 있습니다:
RpTest-info.plistRpTest-Info.plist경로 구조에 대한 지적은 잘못되었습니다. 대소문자만 수정하면 됩니다.
✏️ Learnings added