Skip to content
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
4 changes: 2 additions & 2 deletions LoopFollow.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1140,7 +1140,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = "com.$(unique_id).LoopFollow";
PRODUCT_BUNDLE_IDENTIFIER = "com.$(unique_id).LoopFollow$(app_suffix)";
PRODUCT_NAME = "Loop Follow";
SUPPORTS_MACCATALYST = YES;
SWIFT_VERSION = 5.0;
Expand All @@ -1162,7 +1162,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = "com.$(unique_id).LoopFollow";
PRODUCT_BUNDLE_IDENTIFIER = "com.$(unique_id).LoopFollow$(app_suffix)";
PRODUCT_NAME = "Loop Follow";
SUPPORTS_MACCATALYST = YES;
SWIFT_VERSION = 5.0;
Expand Down
8 changes: 5 additions & 3 deletions LoopFollow/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,20 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDisplayName</key>
<string>$(display_name)</string>
<key>AppGroupIdentifier</key>
<string>group.com.$(unique_id).LoopFollow</string>
<string>group.com.$(unique_id).LoopFollow$(app_suffix)</string>
<key>BGTaskSchedulerPermittedIdentifiers</key>
<array>
<string>com.$(unique_id).LoopFollow</string>
<string>com.$(unique_id).LoopFollow$(app_suffix)</string>
</array>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.$(unique_id).LoopFollow</string>
<string>com.$(unique_id).LoopFollow$(app_suffix)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
Expand Down