Skip to content

Commit e6940a2

Browse files
committed
chore :: watch entitlements 추가
1 parent 78b40f0 commit e6940a2

3 files changed

Lines changed: 13 additions & 4 deletions

File tree

Projects/App/Project.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ let targets: [Target] = [
4747
infoPlist: .file(path: "WatchApp/Support/Info.plist"),
4848
sources: ["WatchApp/Sources/**"],
4949
resources: ["WatchApp/Resources/**"],
50+
entitlements: "WatchApp/Support/\(env.appName)-Watch.entitlements",
5051
dependencies: [
5152
.WatchModule.watchAppNetwork,
5253
.WatchModule.watchDesignSystem

Projects/App/Support/Info.plist

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5-
<key>NSUserTrackingUsageDescription</key>
6-
<string>더 나은 경험 제공 및 앱 안정성 향상을 위해 사용자 활동 및 오류 데이터 수집에 동의해주세요.</string>
75
<key>API_BASE_URL</key>
86
<string>$(API_BASE_URL)</string>
97
<key>CFBundleDevelopmentRegion</key>
@@ -32,6 +30,8 @@
3230
<true/>
3331
<key>NSPhotoLibraryUsageDescription</key>
3432
<string></string>
33+
<key>NSUserTrackingUsageDescription</key>
34+
<string>더 나은 경험 제공 및 앱 안정성 향상을 위해 사용자 활동 및 오류 데이터 수집에 동의해주세요.</string>
3535
<key>SOCKET_BASE_URL</key>
3636
<string>$(SOCKET_BASE_URL)</string>
3737
<key>UIApplicationSceneManifest</key>
@@ -56,8 +56,6 @@
5656
<key>UIBackgroundModes</key>
5757
<array>
5858
<string>remote-notification</string>
59-
<string>fetch</string>
60-
<string>processing</string>
6159
</array>
6260
<key>UILaunchStoryboardName</key>
6361
<string>LaunchScreen</string>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>keychain-access-groups</key>
6+
<array>
7+
<string>$(AppIdentifierPrefix)$(WATCH_APP_BUNDLE_ID)</string>
8+
</array>
9+
</dict>
10+
</plist>

0 commit comments

Comments
 (0)