You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
adjust ats settings in plist in pod install (#38086)
Summary:
Pull Request resolved: #38086
Changelog: [Internal]
in this diff, we update the developer's Info.plists to have the correct ATS settings
introducing usage of files: https://www.rubydoc.info/github/CocoaPods/Xcodeproj/Xcodeproj/Project#files-instance_method, in order to retrieve the plists
Reviewed By: cipolleschi
Differential Revision: D47041590
fbshipit-source-id: 14a1c182e0e7f0dbc105fc960a115bda0b3b8fd2
Copy file name to clipboardExpand all lines: packages/rn-tester/RNTester/Info.plist
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -38,10 +38,14 @@
38
38
<key>NSAppTransportSecurity</key>
39
39
<dict>
40
40
<key>NSAllowsArbitraryLoads</key>
41
+
<false/>
42
+
<key>NSAllowsLocalNetworking</key>
41
43
<true/>
42
44
</dict>
43
45
<key>NSLocationWhenInUseUsageDescription</key>
44
46
<string>You need to add NSLocationWhenInUseUsageDescription key in Info.plist to enable geolocation, otherwise it is going to *fail silently*!</string>
47
+
<key>NSPhotoLibraryUsageDescription</key>
48
+
<string>You need to add NSPhotoLibraryUsageDescription key in Info.plist to enable photo library usage, otherwise it is going to *fail silently*!</string>
<string>You need to add NSPhotoLibraryUsageDescription key in Info.plist to enable photo library usage, otherwise it is going to *fail silently*!</string>
0 commit comments