aboutsummaryrefslogtreecommitdiffstats
path: root/packaging/ios/Info.plist.in
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2018-04-13 17:29:24 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-04-14 21:05:49 -0700
commitf28266bb197527134f63b9acea3b8ac1224de38c (patch)
tree48a9759200d9ca7c1653c60e541272d1ea452018 /packaging/ios/Info.plist.in
parent8508fa5be810afc313e6f10f3fa5e3bec0108d08 (diff)
downloadsubsurface-f28266bb197527134f63b9acea3b8ac1224de38c.tar.gz
iOS: fix info.plist
Xcode happily accepted the incorrect plist syntax for a boolean and the app did the right thing when installed locally - but once you upload to the iTunes store the error causes that to fail. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ios/Info.plist.in')
-rw-r--r--packaging/ios/Info.plist.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/packaging/ios/Info.plist.in b/packaging/ios/Info.plist.in
index dab667ccd..8f1afc1c8 100644
--- a/packaging/ios/Info.plist.in
+++ b/packaging/ios/Info.plist.in
@@ -55,8 +55,8 @@
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Subsurface-mobile can track your location to match imported dives</string>
<key>UIFileSharingEnabled</key>
- <string>YES</string>
+ <true/>
<key>LSSupportsOpeningDocumentsInPlace</key>
- <string>YES</string>
+ <true/>
</dict>
</plist>