Skip to content

Commit

Permalink
Set UIFileSharingEnabled in Info.plist alphabetically.
Browse files Browse the repository at this point in the history
In iOS 8.3+, we need to set UIFileSharingEnabled in the app's
Info.plist before we can access its Documents directory. Not
having it set is currently preventing us from retrieving test data.

BUG=513836

Review URL: https://codereview.chromium.org/1264413003

Cr-Commit-Position: refs/heads/master@{#341933}
  • Loading branch information
huangml authored and Commit bot committed Aug 5, 2015
1 parent 896bf7b commit a49e4fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions testing/gtest_ios/unittest-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>UIFileSharingEnabled</key>
<true/>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
Expand All @@ -26,6 +24,8 @@
<true/>
<key>NSMainNibFile</key>
<string>${MAIN_NIB_FILE}</string>
<key>UIFileSharingEnabled</key>
<true/>
<key>UILaunchImages</key>
<array>
<dict>
Expand Down

0 comments on commit a49e4fb

Please sign in to comment.