Info.plist 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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>CADisableMinimumFrameDurationOnPhone</key>
  6. <true/>
  7. <key>CFBundleDevelopmentRegion</key>
  8. <string>$(DEVELOPMENT_LANGUAGE)</string>
  9. <key>CFBundleDisplayName</key>
  10. <string>手机实时定位</string>
  11. <key>CFBundleExecutable</key>
  12. <string>$(EXECUTABLE_NAME)</string>
  13. <key>CFBundleIdentifier</key>
  14. <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  15. <key>CFBundleInfoDictionaryVersion</key>
  16. <string>6.0</string>
  17. <key>CFBundleName</key>
  18. <string>location</string>
  19. <key>CFBundlePackageType</key>
  20. <string>APPL</string>
  21. <key>CFBundleShortVersionString</key>
  22. <string>$(FLUTTER_BUILD_NAME)</string>
  23. <key>CFBundleSignature</key>
  24. <string>????</string>
  25. <key>CFBundleVersion</key>
  26. <string>$(FLUTTER_BUILD_NUMBER)</string>
  27. <key>LSRequiresIPhoneOS</key>
  28. <true/>
  29. <key>NSLocationAlwaysUsageDescription</key>
  30. <string>为给您更好的定位体验,请您允许我们使用精确位置</string>
  31. <key>NSLocationWhenInUseUsageDescription</key>
  32. <string>为给您更好的定位体验,请您允许我们使用精确位置</string>
  33. <key>NSUserTrackingUsageDescription</key>
  34. <string>为给您更精准的提供个性化内容,请您允许我们获取广告信息</string>
  35. <key>UIApplicationSupportsIndirectInputEvents</key>
  36. <true/>
  37. <key>UIBackgroundModes</key>
  38. <array>
  39. <string>location</string>
  40. <string>fetch</string>
  41. <string>processing</string>
  42. </array>
  43. <key>UILaunchStoryboardName</key>
  44. <string>LaunchScreen</string>
  45. <key>UIMainStoryboardFile</key>
  46. <string>Main</string>
  47. <key>UISupportedInterfaceOrientations</key>
  48. <array>
  49. <string>UIInterfaceOrientationPortrait</string>
  50. <string>UIInterfaceOrientationLandscapeLeft</string>
  51. <string>UIInterfaceOrientationLandscapeRight</string>
  52. </array>
  53. <key>UISupportedInterfaceOrientations~ipad</key>
  54. <array>
  55. <string>UIInterfaceOrientationPortrait</string>
  56. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  57. <string>UIInterfaceOrientationLandscapeLeft</string>
  58. <string>UIInterfaceOrientationLandscapeRight</string>
  59. </array>
  60. </dict>
  61. </plist>