Skip to content

Commit

Permalink
qt: fix bitcoin-qt app categorization on apple silicon
Browse files Browse the repository at this point in the history
On master, the deployed bitcoin-qt application is categorized as an IOS application.
This is obviously incorrect, and the built executable is not an IOS executable.
To fix this, we set the CFBundleSupportedPlatforms key in our info.plist
  • Loading branch information
jarolrod committed Sep 13, 2021
1 parent f4e12fd commit 3765c48
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions share/qt/Info.plist.in
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>

<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>

<key>NSHumanReadableCopyright</key>
<string>@CLIENT_VERSION_MAJOR@.@CLIENT_VERSION_MINOR@.@CLIENT_VERSION_BUILD@, Copyright © 2009-@COPYRIGHT_YEAR@ @COPYRIGHT_HOLDERS_FINAL@</string>

Expand Down

0 comments on commit 3765c48

Please sign in to comment.