diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-04-13 16:43:20 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-04-13 17:07:43 -0700 |
commit | 27b921fb1d0c9d5350a9834837465178aa8e819d (patch) | |
tree | ed7d305f56daeb5a464837ae662b56d688471127 /packaging | |
parent | 114904a48f7ec6f10e355da24be2bfa1e5821a0e (diff) | |
download | subsurface-27b921fb1d0c9d5350a9834837465178aa8e819d.tar.gz |
iOS: make logfile accessible to user
By creating it in the Documents path and setting the two magic keys,
iOS will make the log file available to the user.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/ios/Info.plist.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packaging/ios/Info.plist.in b/packaging/ios/Info.plist.in index c64d04560..dab667ccd 100644 --- a/packaging/ios/Info.plist.in +++ b/packaging/ios/Info.plist.in @@ -54,5 +54,9 @@ <string>Subsurface-mobile can track your location to match imported dives</string> <key>NSLocationAlwaysAndWhenInUseUsageDescription</key> <string>Subsurface-mobile can track your location to match imported dives</string> + <key>UIFileSharingEnabled</key> + <string>YES</string> + <key>LSSupportsOpeningDocumentsInPlace</key> + <string>YES</string> </dict> </plist> |