Skip to content

Commit

Permalink
Harcoded bundle identifier to eliminate bundle collision on GNUstep
Browse files Browse the repository at this point in the history
On GNUstep, $(PRODUCT_BUNDLE_IDENTIFIER) is never resolved. As a result, we end up with multiple bundles using the same CFBundleIdentifier and -[NSBundle initWithPath:] will always return the first bundle that was registered under this identifier.
  • Loading branch information
qmathe committed Nov 14, 2016
1 parent 6aca949 commit 82ef168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CoreObjectInfo.plist
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<string>org.etoile-project.CoreObject</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
Expand Down

0 comments on commit 82ef168

Please sign in to comment.