diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-04-13 17:29:24 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-04-14 21:05:49 -0700 |
commit | f28266bb197527134f63b9acea3b8ac1224de38c (patch) | |
tree | 48a9759200d9ca7c1653c60e541272d1ea452018 | |
parent | 8508fa5be810afc313e6f10f3fa5e3bec0108d08 (diff) | |
download | subsurface-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>
-rw-r--r-- | packaging/ios/Info.plist.in | 4 |
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> |