Info.plist 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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>$(DEVELOPMENT_LANGUAGE)</string>
  7. <key>CFBundleDisplayName</key>
  8. <string>PDF Viewer</string>
  9. <key>CFBundleDocumentTypes</key>
  10. <array>
  11. <dict>
  12. <key>CFBundleTypeIconFiles</key>
  13. <array/>
  14. <key>CFBundleTypeName</key>
  15. <string>PDF</string>
  16. <key>CFBundleTypeRole</key>
  17. <string>Editor</string>
  18. <key>LSHandlerRank</key>
  19. <string>Owner</string>
  20. <key>LSItemContentTypes</key>
  21. <array>
  22. <string>com.adobe.pdf</string>
  23. </array>
  24. </dict>
  25. </array>
  26. <key>CFBundleExecutable</key>
  27. <string>$(EXECUTABLE_NAME)</string>
  28. <key>CFBundleIdentifier</key>
  29. <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  30. <key>CFBundleInfoDictionaryVersion</key>
  31. <string>6.0</string>
  32. <key>CFBundleName</key>
  33. <string>$(PRODUCT_NAME)</string>
  34. <key>CFBundlePackageType</key>
  35. <string>APPL</string>
  36. <key>CFBundleShortVersionString</key>
  37. <string>1.0</string>
  38. <key>CFBundleVersion</key>
  39. <string>1</string>
  40. <key>LSRequiresIPhoneOS</key>
  41. <true/>
  42. <key>NSAppTransportSecurity</key>
  43. <dict>
  44. <key>NSAllowsArbitraryLoads</key>
  45. <true/>
  46. </dict>
  47. <key>NSBluetoothPeripheralUsageDescription</key>
  48. <string>Your consent is required before you could access the function.</string>
  49. <key>NSCalendarsUsageDescription</key>
  50. <string>Your consent is required before you could access the function.</string>
  51. <key>NSCameraUsageDescription</key>
  52. <string>Your consent is required before you could access the function.</string>
  53. <key>NSContactsUsageDescription</key>
  54. <string>Your consent is required before you could access the function.</string>
  55. <key>NSLocationAlwaysUsageDescription</key>
  56. <string>Your consent is required before you could access the function.</string>
  57. <key>NSLocationWhenInUseUsageDescription</key>
  58. <string>Your consent is required before you could access the function.</string>
  59. <key>NSMicrophoneUsageDescription</key>
  60. <string>Your consent is required before you could access the function.</string>
  61. <key>NSPhotoLibraryAddUsageDescription</key>
  62. <string>Your consent is required before you could access the function.</string>
  63. <key>NSPhotoLibraryUsageDescription</key>
  64. <string>Your consent is required before you could access the function.</string>
  65. <key>UIFileSharingEnabled</key>
  66. <true/>
  67. <key>UILaunchStoryboardName</key>
  68. <string>LaunchScreen</string>
  69. <key>UIMainStoryboardFile</key>
  70. <string>Main</string>
  71. <key>UIRequiredDeviceCapabilities</key>
  72. <array>
  73. <string>armv7</string>
  74. </array>
  75. <key>UISupportedInterfaceOrientations</key>
  76. <array>
  77. <string>UIInterfaceOrientationLandscapeLeft</string>
  78. <string>UIInterfaceOrientationLandscapeRight</string>
  79. <string>UIInterfaceOrientationPortrait</string>
  80. </array>
  81. <key>UISupportedInterfaceOrientations~ipad</key>
  82. <array>
  83. <string>UIInterfaceOrientationLandscapeLeft</string>
  84. <string>UIInterfaceOrientationLandscapeRight</string>
  85. <string>UIInterfaceOrientationPortrait</string>
  86. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  87. </array>
  88. </dict>
  89. </plist>