Info.plist 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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>com.apple.security.app-sandbox</key>
  6. <true/>
  7. <key>com.apple.security.network.client</key>
  8. <true/> <!-- 允许应用作为客户端发起网络请求 -->
  9. <key>com.apple.security.network.server</key>
  10. <true/> <!-- 允许应用作为服务器接收网络连接 -->
  11. <key>CADisableMinimumFrameDurationOnPhone</key>
  12. <true/>
  13. <key>CFBundleDevelopmentRegion</key>
  14. <string>$(DEVELOPMENT_LANGUAGE)</string>
  15. <key>CFBundleDisplayName</key>
  16. <string>手机实时定位</string>
  17. <key>CFBundleExecutable</key>
  18. <string>$(EXECUTABLE_NAME)</string>
  19. <key>CFBundleIdentifier</key>
  20. <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  21. <key>CFBundleInfoDictionaryVersion</key>
  22. <string>6.0</string>
  23. <key>CFBundleName</key>
  24. <string>location</string>
  25. <key>CFBundlePackageType</key>
  26. <string>APPL</string>
  27. <key>CFBundleShortVersionString</key>
  28. <string>$(FLUTTER_BUILD_NAME)</string>
  29. <key>CFBundleSignature</key>
  30. <string>????</string>
  31. <key>CFBundleURLTypes</key>
  32. <array>
  33. <dict>
  34. <key>CFBundleTypeRole</key>
  35. <string>Editor</string>
  36. <key>CFBundleURLSchemes</key>
  37. <array>
  38. <string>wxd423dc54a6fd1640</string>
  39. </array>
  40. </dict>
  41. </array>
  42. <key>CFBundleVersion</key>
  43. <string>$(FLUTTER_BUILD_NUMBER)</string>
  44. <key>LSApplicationQueriesSchemes</key>
  45. <array>
  46. <string>weixin</string>
  47. <string>weixinULAPI</string>
  48. <string>weixinURLParamsAPI</string>
  49. </array>
  50. <key>LSRequiresIPhoneOS</key>
  51. <true/>
  52. <key>NSContactsUsageDescription</key>
  53. <string>申请“通讯录权限”是为了让您更便利地输入联系人信息,从而无需手动输入</string>
  54. <key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
  55. <string>通过位置访问,您可以与您信任的好友共享准确的位置数据</string>
  56. <key>NSLocationWhenInUseUsageDescription</key>
  57. <string>通过位置访问,您可以与您信任的好友共享准确的位置数据</string>
  58. <key>NSUserTrackingUsageDescription</key>
  59. <string>为给您更精准的提供个性化内容,请您允许我们获取广告信息</string>
  60. <key>NSUserNotificationUsageDescription</key>
  61. <string>通知可能包括提醒,声音和图标标记。可在“设置”中配置相关功能</string>
  62. <key>UIApplicationSupportsIndirectInputEvents</key>
  63. <true/>
  64. <key>UIBackgroundModes</key>
  65. <array>
  66. <string>location</string>
  67. <string>fetch</string>
  68. <string>processing</string>
  69. </array>
  70. <key>BGTaskSchedulerPermittedIdentifiers</key>
  71. <array>
  72. <string>com.shishi.dingwei.refresh</string>
  73. </array>
  74. <key>UILaunchStoryboardName</key>
  75. <string>LaunchScreen</string>
  76. <key>UIMainStoryboardFile</key>
  77. <string>Main</string>
  78. <key>UISupportedInterfaceOrientations</key>
  79. <array>
  80. <string>UIInterfaceOrientationPortrait</string>
  81. </array>
  82. <key>UISupportedInterfaceOrientations~ipad</key>
  83. <array>
  84. <string>UIInterfaceOrientationLandscapeLeft</string>
  85. <string>UIInterfaceOrientationLandscapeRight</string>
  86. <string>UIInterfaceOrientationPortrait</string>
  87. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  88. </array>
  89. <key>NSAppTransportSecurity</key>
  90. <dict>
  91. <!-- 方案一:允许所有HTTP连接(开发测试用) -->
  92. <key>NSAllowsArbitraryLoads</key>
  93. <true/>
  94. </dict>
  95. </dict>
  96. </plist>