Skip to content
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

FIX :: [#IOS-49] entitlements demo로 분리 #289

Merged
merged 1 commit into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Supporting/마음가짐Demo.entitlements
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?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>com.apple.developer.applesignin</key>
<array>
<string>Default</string>
</array>
<key>com.apple.developer.healthkit</key>
<true/>
<key>com.apple.developer.healthkit.access</key>
<array/>
<key>application-identifier</key>
<string>$(AppIdentifierPrefix)com.maeumGaGym-health-iOS.release</string>
</dict>
</plist>
4 changes: 2 additions & 2 deletions Tuist/ProjectDescriptionHelpers/Project+Templates.swift
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public extension Project {
infoPlist: .default,
sources: ["Sources/**/*.swift"],
resources: hasResources ? [.glob(pattern: "Resources/**", excluding: [])] : [],
entitlements: .relativeToRoot("Supporting/마음가짐.entitlements"),
entitlements: .relativeToRoot("Supporting/마음가짐Demo.entitlements"),
dependencies: deps + internalDependencies + externalDependencies,
settings: .settings(base: settings, configurations: XCConfig.framework)
)
Expand All @@ -113,7 +113,7 @@ public extension Project {
infoPlist: .extendingDefault(with: demoInfoPlist),
sources: ["Demo/Sources/**/*.swift"],
resources: [.glob(pattern: "Demo/Resources/**", excluding: ["Demo/Resources/dummy.txt"])],
entitlements: .relativeToRoot("Supporting/마음가짐.entitlements"),
entitlements: .relativeToRoot("Supporting/마음가짐Demo.entitlements"),
scripts: [.swiftLintScript],
dependencies: [
deps
Expand Down
Loading