Skip to content

Commit 4e9b173

Browse files
M1zzclaude
andcommitted
App Store 검증 통과: App Sandbox 활성화 및 앱 카테고리 추가
- com.apple.security.app-sandbox = true (Info.plist 검증 오류 해결) - ENABLE_APP_SANDBOX = YES (Debug/Release) - Info.plist에 LSApplicationCategoryType = public.app-category.productivity 추가 주의: 샌드박스에서 전역 단축키(NSEvent 글로벌 모니터)는 동작하지 않을 수 있음 — 메뉴바 메뉴로 대체 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent be2fa6c commit 4e9b173

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

StickyPresenter.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
COMBINE_HIDPI_IMAGES = YES;
151151
DEBUG_INFORMATION_FORMAT = dwarf;
152152
DEVELOPMENT_TEAM = QGAQ3AY3R3;
153-
ENABLE_APP_SANDBOX = NO;
153+
ENABLE_APP_SANDBOX = YES;
154154
ENABLE_HARDENED_RUNTIME = YES;
155155
INFOPLIST_FILE = StickyPresenter/Info.plist;
156156
LD_RUNPATH_SEARCH_PATHS = (
@@ -233,7 +233,7 @@
233233
COPY_PHASE_STRIP = NO;
234234
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
235235
DEVELOPMENT_TEAM = QGAQ3AY3R3;
236-
ENABLE_APP_SANDBOX = NO;
236+
ENABLE_APP_SANDBOX = YES;
237237
ENABLE_HARDENED_RUNTIME = YES;
238238
INFOPLIST_FILE = StickyPresenter/Info.plist;
239239
LD_RUNPATH_SEARCH_PATHS = (

StickyPresenter/Info.plist

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
<string>$(PRODUCT_NAME)</string>
1919
<key>CFBundlePackageType</key>
2020
<string>APPL</string>
21+
<key>LSApplicationCategoryType</key>
22+
<string>public.app-category.productivity</string>
2123
<key>CFBundleShortVersionString</key>
2224
<string>1.0.0</string>
2325
<key>CFBundleVersion</key>

StickyPresenter/StickyPresenter.entitlements

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<plist version="1.0">
44
<dict>
55
<key>com.apple.security.app-sandbox</key>
6-
<false/>
6+
<true/>
77
</dict>
88
</plist>

0 commit comments

Comments
 (0)