commit a762a6f91ee5af178e9bd70858755af8e244f4ea
parent 676c929499b8fb6653ca84ff7984e3470a6b26a4
Author: Michael Camilleri <[email protected]>
Date: Sat, 28 Feb 2026 03:22:08 +0900
Add category correctly
Diffstat:
5 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/Listless.xcodeproj/project.pbxproj b/Listless.xcodeproj/project.pbxproj
@@ -568,7 +568,6 @@
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
INFOPLIST_FILE = ListlessMac/Info.plist;
- INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.productivity";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
@@ -587,7 +586,6 @@
CODE_SIGN_STYLE = Automatic;
COMBINE_HIDPI_IMAGES = YES;
INFOPLIST_FILE = ListlessMac/Info.plist;
- INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.productivity";
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
diff --git a/ListlessMac/Info.plist b/ListlessMac/Info.plist
@@ -22,6 +22,8 @@
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
+ <key>LSApplicationCategoryType</key>
+ <string>public.app-category.productivity</string>
<key>LSMinimumSystemVersion</key>
<string>14.0</string>
</dict>
diff --git a/ListlessMac/Listless.entitlements b/ListlessMac/Listless.entitlements
@@ -2,6 +2,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.security.app-sandbox</key>
+ <true/>
<key>aps-environment</key>
<string>development</string>
<key>com.apple.developer.icloud-container-identifiers</key>
diff --git a/ListlessiOS/Listless.entitlements b/ListlessiOS/Listless.entitlements
@@ -16,5 +16,7 @@
<array>
<string>iCloud.net.inqk.listless</string>
</array>
+ <key>com.apple.security.app-sandbox</key>
+ <true/>
</dict>
</plist>
diff --git a/project.yml b/project.yml
@@ -29,6 +29,7 @@ targets:
entitlements:
path: ListlessiOS/Listless.entitlements
properties:
+ com.apple.security.app-sandbox: true
com.apple.developer.icloud-container-identifiers:
- iCloud.net.inqk.listless
com.apple.developer.icloud-services:
@@ -89,6 +90,7 @@ targets:
CFBundleShortVersionString: "1.0"
CFBundleVersion: $(CURRENT_PROJECT_VERSION)
ITSAppUsesNonExemptEncryption: false
+ LSApplicationCategoryType: public.app-category.productivity
LSMinimumSystemVersion: "14.0"
settings:
PRODUCT_BUNDLE_IDENTIFIER: net.inqk.listless
@@ -96,7 +98,6 @@ targets:
INFOPLIST_FILE: ListlessMac/Info.plist
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
CODE_SIGN_STYLE: Automatic
- INFOPLIST_KEY_LSApplicationCategoryType: public.app-category.productivity
Listless iOS Unit Tests:
type: bundle.unit-test