diff options
author | Murillo Bernardes <mfbernardes@gmail.com> | 2018-05-07 20:46:36 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-05-10 08:19:33 -0700 |
commit | 7d6a48b59fc4271bd7293b867f32fe36e876cb56 (patch) | |
tree | 8c0870984cc7e95cad7ea4ab8c4536d0349a2061 /packaging/ios/Info.plist.in | |
parent | 161e5e94fceb8bf70ecc2861ca1e9e92b1bacf68 (diff) | |
download | subsurface-7d6a48b59fc4271bd7293b867f32fe36e876cb56.tar.gz |
iOS: use recommended variable for bundle ID
We used to hard-code the bundle ID which meant that developers always had to
manually override the bundle ID in order to be able to sign the iOS app for
local testing. With this change, the official builds will continue to work
without manually opening the project in Xcode, yet other developers will use
the Apple-recommended format in order to set their own bundle ID.
This is based on a suggestion by Murillo Bernardes.
See #1246
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ios/Info.plist.in')
-rw-r--r-- | packaging/ios/Info.plist.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/ios/Info.plist.in b/packaging/ios/Info.plist.in index 8f1afc1c8..dabb85dfb 100644 --- a/packaging/ios/Info.plist.in +++ b/packaging/ios/Info.plist.in @@ -11,7 +11,7 @@ <key>CFBundleIconName</key> <string>AppIcon</string> <key>CFBundleIdentifier</key> - <string>org.subsurface-divelog.subsurface-mobile</string> + <string>@PRODUCT_BUNDLE_IDENTIFIER@</string> <key>CFBundleName</key> <string>Subsurface-mobile</string> <key>CFBundlePackageType</key> |