Info.plist 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>CFBundleDevelopmentRegion</key>
  6. <string>en</string>
  7. <key>CFBundleDisplayName</key>
  8. <string>AFNetworking</string>
  9. <key>CFBundleExecutable</key>
  10. <string>${EXECUTABLE_NAME}</string>
  11. <key>CFBundleIconFile</key>
  12. <string></string>
  13. <key>CFBundleIconFiles</key>
  14. <array>
  15. <string>Icon.png</string>
  16. <string>Icon@2x.png</string>
  17. </array>
  18. <key>CFBundleIcons</key>
  19. <dict/>
  20. <key>CFBundleIcons~ipad</key>
  21. <dict/>
  22. <key>CFBundleIdentifier</key>
  23. <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  24. <key>CFBundleInfoDictionaryVersion</key>
  25. <string>6.0</string>
  26. <key>CFBundleName</key>
  27. <string>${PRODUCT_NAME}</string>
  28. <key>CFBundlePackageType</key>
  29. <string>APPL</string>
  30. <key>CFBundleShortVersionString</key>
  31. <string>1.0</string>
  32. <key>CFBundleSignature</key>
  33. <string>????</string>
  34. <key>CFBundleVersion</key>
  35. <string>$(CURRENT_PROJECT_VERSION)</string>
  36. <key>LSRequiresIPhoneOS</key>
  37. <true/>
  38. <key>NSAppTransportSecurity</key>
  39. <dict>
  40. <key>NSExceptionDomains</key>
  41. <dict>
  42. <key>cloudfront.net</key>
  43. <dict>
  44. <key>NSIncludesSubdomains</key>
  45. <true/>
  46. <key>NSThirdPartyExceptionMinimumTLSVersion</key>
  47. <string>TLSv1.0</string>
  48. <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
  49. <false/>
  50. </dict>
  51. </dict>
  52. </dict>
  53. <key>UIBackgroundModes</key>
  54. <array>
  55. <string>fetch</string>
  56. </array>
  57. <key>UILaunchStoryboardName</key>
  58. <string>Launchscreen</string>
  59. <key>UIPrerenderedIcon</key>
  60. <true/>
  61. <key>UIStatusBarHidden</key>
  62. <false/>
  63. <key>UISupportedInterfaceOrientations</key>
  64. <array>
  65. <string>UIInterfaceOrientationPortrait</string>
  66. </array>
  67. </dict>
  68. </plist>