Skip to content

Commit

Permalink
Merge pull request #289 from MaeumGaGym/fix/IOS-49-entitlementsCopyFix
Browse files Browse the repository at this point in the history
FIX :: [#IOS-49] entitlements demo로 분리
  • Loading branch information
HyunSu1768 authored Mar 21, 2024
2 parents 8bcb192 + accd6f9 commit 1bab229
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
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

0 comments on commit 1bab229

Please sign in to comment.