Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Info.plist 1.8 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <key>CFBundleIdentifier</key>
  6. <string>com.your-company.WorkingWithWebview.iOS</string>
  7. <key>CFBundleShortVersionString</key>
  8. <string>1.0</string>
  9. <key>CFBundleVersion</key>
  10. <string>1.0</string>
  11. <key>LSRequiresIPhoneOS</key>
  12. <true/>
  13. <key>MinimumOSVersion</key>
  14. <string>7.0</string>
  15. <key>UIDeviceFamily</key>
  16. <array>
  17. <integer>1</integer>
  18. <integer>2</integer>
  19. </array>
  20. <key>UIRequiredDeviceCapabilities</key>
  21. <array>
  22. <string>armv7</string>
  23. </array>
  24. <key>UISupportedInterfaceOrientations</key>
  25. <array>
  26. <string>UIInterfaceOrientationPortrait</string>
  27. <string>UIInterfaceOrientationLandscapeLeft</string>
  28. <string>UIInterfaceOrientationLandscapeRight</string>
  29. </array>
  30. <key>UISupportedInterfaceOrientations~ipad</key>
  31. <array>
  32. <string>UIInterfaceOrientationPortrait</string>
  33. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  34. <string>UIInterfaceOrientationLandscapeLeft</string>
  35. <string>UIInterfaceOrientationLandscapeRight</string>
  36. </array>
  37. <key>CFBundleDisplayName</key>
  38. <string>WebView</string>
  39. <key>CFBundleIconFiles</key>
  40. <array>
  41. <string>Icon-76@2x</string>
  42. <string>Icon-76</string>
  43. <string>Icon-Small-40@2x</string>
  44. <string>Icon-Small-40</string>
  45. <string>Icon-Small</string>
  46. <string>Icon-Small@2x</string>
  47. <string>Icon-60@2x</string>
  48. </array>
  49. <key>NSAppTransportSecurity</key>
  50. <dict>
  51. <key>NSExceptionDomains</key>
  52. <dict>
  53. <key>xamarin.com</key>
  54. <dict>
  55. <key>NSIncludesSubdomains</key>
  56. <true/>
  57. <key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
  58. <true/>
  59. <key>NSTemporaryExceptionMinimumTLSVersion</key>
  60. <string>TLSv1.1</string>
  61. </dict>
  62. </dict>
  63. </dict>
  64. </dict>
  65. </plist>
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...