diff options
author | huangml <huangml@chromium.org> | 2015-08-05 12:05:46 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-08-05 19:06:49 +0000 |
commit | a49e4fb917f1f9e0819e05c197568689105d3ba5 (patch) | |
tree | 73aa1be9a484b795536e576b9fe23af6f321ca2f /testing | |
parent | 896bf7b59132f3678edf6784dee78c37754df444 (diff) | |
download | chromium_src-a49e4fb917f1f9e0819e05c197568689105d3ba5.zip chromium_src-a49e4fb917f1f9e0819e05c197568689105d3ba5.tar.gz chromium_src-a49e4fb917f1f9e0819e05c197568689105d3ba5.tar.bz2 |
Set UIFileSharingEnabled in Info.plist alphabetically.
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}
Diffstat (limited to 'testing')
-rw-r--r-- | testing/gtest_ios/unittest-Info.plist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/gtest_ios/unittest-Info.plist b/testing/gtest_ios/unittest-Info.plist index c413954..d860acd 100644 --- a/testing/gtest_ios/unittest-Info.plist +++ b/testing/gtest_ios/unittest-Info.plist @@ -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> @@ -26,6 +24,8 @@ <true/> <key>NSMainNibFile</key> <string>${MAIN_NIB_FILE}</string> + <key>UIFileSharingEnabled</key> + <true/> <key>UILaunchImages</key> <array> <dict> |