neoagent 2.3.1-beta.2 → 2.3.1-beta.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (264) hide show
  1. package/.env.example +39 -0
  2. package/README.md +2 -0
  3. package/docs/capabilities.md +2 -2
  4. package/docs/configuration.md +13 -5
  5. package/docs/integrations.md +4 -1
  6. package/flutter_app/.metadata +42 -0
  7. package/flutter_app/README.md +21 -0
  8. package/flutter_app/analysis_options.yaml +32 -0
  9. package/flutter_app/android/app/build.gradle.kts +109 -0
  10. package/flutter_app/android/app/src/debug/AndroidManifest.xml +7 -0
  11. package/flutter_app/android/app/src/main/AndroidManifest.xml +147 -0
  12. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/MainActivity.kt +747 -0
  13. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthConnectGateway.kt +280 -0
  14. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthSyncNotifications.kt +113 -0
  15. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthSyncPayload.kt +57 -0
  16. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthSyncScheduler.kt +78 -0
  17. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/HealthSyncWorker.kt +253 -0
  18. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/health/PermissionsRationaleActivity.kt +46 -0
  19. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/recording/RecordingBootReceiver.kt +21 -0
  20. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/recording/RecordingForegroundService.kt +586 -0
  21. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/recording/RecordingStateStore.kt +78 -0
  22. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/recording/RecordingUploadClient.kt +104 -0
  23. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/AiHomeWidgetProvider.kt +457 -0
  24. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/AiWidgetStore.kt +194 -0
  25. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/VoiceLaunchWidgetProvider.kt +67 -0
  26. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/WidgetConfigActivity.kt +228 -0
  27. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/WidgetSyncScheduler.kt +72 -0
  28. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/WidgetSyncWorker.kt +186 -0
  29. package/flutter_app/android/app/src/main/kotlin/com/neoagent/flutter_app/widgets/WidgetTaskRunWorker.kt +210 -0
  30. package/flutter_app/android/app/src/main/res/drawable/launch_background.xml +12 -0
  31. package/flutter_app/android/app/src/main/res/drawable/neoagent_ai_widget_bg.xml +11 -0
  32. package/flutter_app/android/app/src/main/res/drawable/neoagent_ai_widget_task_bg.xml +8 -0
  33. package/flutter_app/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
  34. package/flutter_app/android/app/src/main/res/layout/neoagent_ai_widget.xml +138 -0
  35. package/flutter_app/android/app/src/main/res/layout/neoagent_ai_widget_task_row.xml +52 -0
  36. package/flutter_app/android/app/src/main/res/layout/neoagent_voice_widget.xml +49 -0
  37. package/flutter_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  38. package/flutter_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  39. package/flutter_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  40. package/flutter_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  41. package/flutter_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  42. package/flutter_app/android/app/src/main/res/values/strings.xml +12 -0
  43. package/flutter_app/android/app/src/main/res/values/styles.xml +18 -0
  44. package/flutter_app/android/app/src/main/res/values-night/styles.xml +18 -0
  45. package/flutter_app/android/app/src/main/res/xml/file_paths.xml +6 -0
  46. package/flutter_app/android/app/src/main/res/xml/neoagent_ai_widget_info.xml +12 -0
  47. package/flutter_app/android/app/src/main/res/xml/neoagent_voice_widget_info.xml +12 -0
  48. package/flutter_app/android/app/src/profile/AndroidManifest.xml +7 -0
  49. package/flutter_app/android/build.gradle.kts +24 -0
  50. package/flutter_app/android/ci-release.keystore +0 -0
  51. package/flutter_app/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  52. package/flutter_app/android/gradle.properties +3 -0
  53. package/flutter_app/android/key.properties +4 -0
  54. package/flutter_app/android/settings.gradle.kts +26 -0
  55. package/flutter_app/assets/branding/app_icon_1024.png +0 -0
  56. package/flutter_app/assets/branding/app_icon_128.png +0 -0
  57. package/flutter_app/assets/branding/app_icon_192.png +0 -0
  58. package/flutter_app/assets/branding/app_icon_256.png +0 -0
  59. package/flutter_app/assets/branding/app_icon_32.png +0 -0
  60. package/flutter_app/assets/branding/app_icon_512.png +0 -0
  61. package/flutter_app/assets/branding/app_icon_64.png +0 -0
  62. package/flutter_app/assets/branding/tray_icon_template.png +0 -0
  63. package/flutter_app/lib/features/location/location_service.dart +119 -0
  64. package/flutter_app/lib/features/notifications/notification_interceptor.dart +97 -0
  65. package/flutter_app/lib/main.dart +23057 -0
  66. package/flutter_app/lib/main_app_shell.dart +1682 -0
  67. package/flutter_app/lib/main_integrations.dart +931 -0
  68. package/flutter_app/lib/main_launcher.dart +959 -0
  69. package/flutter_app/lib/main_launcher_entry.dart +5 -0
  70. package/flutter_app/lib/main_models.dart +3473 -0
  71. package/flutter_app/lib/main_shared.dart +2861 -0
  72. package/flutter_app/lib/main_theme.dart +204 -0
  73. package/flutter_app/lib/main_voice_assistant.dart +831 -0
  74. package/flutter_app/lib/src/android_apk_drop_zone.dart +32 -0
  75. package/flutter_app/lib/src/android_apk_drop_zone_stub.dart +16 -0
  76. package/flutter_app/lib/src/android_apk_drop_zone_web.dart +348 -0
  77. package/flutter_app/lib/src/android_app_installer.dart +22 -0
  78. package/flutter_app/lib/src/android_app_installer_io.dart +122 -0
  79. package/flutter_app/lib/src/android_app_installer_stub.dart +21 -0
  80. package/flutter_app/lib/src/android_launcher_bridge.dart +239 -0
  81. package/flutter_app/lib/src/app_launch_bridge.dart +29 -0
  82. package/flutter_app/lib/src/app_release_updater.dart +511 -0
  83. package/flutter_app/lib/src/backend_client.dart +1833 -0
  84. package/flutter_app/lib/src/desktop_companion.dart +2 -0
  85. package/flutter_app/lib/src/desktop_companion_actions.dart +586 -0
  86. package/flutter_app/lib/src/desktop_companion_io.dart +538 -0
  87. package/flutter_app/lib/src/desktop_companion_stub.dart +59 -0
  88. package/flutter_app/lib/src/desktop_native_bridge.dart +91 -0
  89. package/flutter_app/lib/src/desktop_screen_capture.dart +21 -0
  90. package/flutter_app/lib/src/desktop_screen_capture_io.dart +142 -0
  91. package/flutter_app/lib/src/desktop_screen_capture_stub.dart +12 -0
  92. package/flutter_app/lib/src/diagnostics_logger.dart +119 -0
  93. package/flutter_app/lib/src/health_bridge.dart +136 -0
  94. package/flutter_app/lib/src/live_voice_capture.dart +85 -0
  95. package/flutter_app/lib/src/messaging_access_summary.dart +46 -0
  96. package/flutter_app/lib/src/network/app_http_client.dart +53 -0
  97. package/flutter_app/lib/src/network/app_http_client_factory.dart +6 -0
  98. package/flutter_app/lib/src/network/app_http_client_io.dart +138 -0
  99. package/flutter_app/lib/src/network/app_http_client_stub.dart +3 -0
  100. package/flutter_app/lib/src/network/app_http_client_web.dart +94 -0
  101. package/flutter_app/lib/src/oauth_launcher.dart +33 -0
  102. package/flutter_app/lib/src/oauth_launcher_io.dart +77 -0
  103. package/flutter_app/lib/src/oauth_launcher_stub.dart +33 -0
  104. package/flutter_app/lib/src/oauth_launcher_web.dart +107 -0
  105. package/flutter_app/lib/src/recording_bridge.dart +232 -0
  106. package/flutter_app/lib/src/recording_bridge_io.dart +1019 -0
  107. package/flutter_app/lib/src/recording_bridge_stub.dart +120 -0
  108. package/flutter_app/lib/src/recording_bridge_web.dart +689 -0
  109. package/flutter_app/lib/src/recording_payloads.dart +86 -0
  110. package/flutter_app/lib/src/theme/palette.dart +81 -0
  111. package/flutter_app/lib/src/widget_bridge.dart +49 -0
  112. package/flutter_app/linux/CMakeLists.txt +128 -0
  113. package/flutter_app/linux/flutter/CMakeLists.txt +88 -0
  114. package/flutter_app/linux/flutter/generated_plugin_registrant.cc +43 -0
  115. package/flutter_app/linux/flutter/generated_plugin_registrant.h +15 -0
  116. package/flutter_app/linux/flutter/generated_plugins.cmake +31 -0
  117. package/flutter_app/linux/runner/CMakeLists.txt +26 -0
  118. package/flutter_app/linux/runner/main.cc +6 -0
  119. package/flutter_app/linux/runner/my_application.cc +144 -0
  120. package/flutter_app/linux/runner/my_application.h +18 -0
  121. package/flutter_app/linux/runner/resources/app_icon.png +0 -0
  122. package/flutter_app/macos/Flutter/Flutter-Debug.xcconfig +2 -0
  123. package/flutter_app/macos/Flutter/Flutter-Release.xcconfig +2 -0
  124. package/flutter_app/macos/Flutter/GeneratedPluginRegistrant.swift +40 -0
  125. package/flutter_app/macos/Podfile +42 -0
  126. package/flutter_app/macos/Podfile.lock +87 -0
  127. package/flutter_app/macos/Runner/AppDelegate.swift +576 -0
  128. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
  129. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
  130. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
  131. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
  132. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
  133. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
  134. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
  135. package/flutter_app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
  136. package/flutter_app/macos/Runner/Base.lproj/MainMenu.xib +342 -0
  137. package/flutter_app/macos/Runner/Configs/AppInfo.xcconfig +14 -0
  138. package/flutter_app/macos/Runner/Configs/Debug.xcconfig +2 -0
  139. package/flutter_app/macos/Runner/Configs/Release.xcconfig +2 -0
  140. package/flutter_app/macos/Runner/Configs/Warnings.xcconfig +13 -0
  141. package/flutter_app/macos/Runner/DebugProfile.entitlements +16 -0
  142. package/flutter_app/macos/Runner/Info.plist +36 -0
  143. package/flutter_app/macos/Runner/MainFlutterWindow.swift +19 -0
  144. package/flutter_app/macos/Runner/Release.entitlements +12 -0
  145. package/flutter_app/macos/Runner.xcodeproj/project.pbxproj +801 -0
  146. package/flutter_app/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  147. package/flutter_app/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +99 -0
  148. package/flutter_app/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
  149. package/flutter_app/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  150. package/flutter_app/macos/RunnerTests/RunnerTests.swift +12 -0
  151. package/flutter_app/patch_strings.py +12 -0
  152. package/flutter_app/pubspec.lock +1088 -0
  153. package/flutter_app/pubspec.yaml +53 -0
  154. package/flutter_app/test/messaging_access_summary_test.dart +22 -0
  155. package/flutter_app/test/recording_payloads_test.dart +53 -0
  156. package/flutter_app/third_party/desktop_audio_capture/LICENSE +21 -0
  157. package/flutter_app/third_party/desktop_audio_capture/README.md +262 -0
  158. package/flutter_app/third_party/desktop_audio_capture/lib/audio_capture.dart +65 -0
  159. package/flutter_app/third_party/desktop_audio_capture/lib/config/mic_audio_config.dart +153 -0
  160. package/flutter_app/third_party/desktop_audio_capture/lib/config/system_adudio_config.dart +110 -0
  161. package/flutter_app/third_party/desktop_audio_capture/lib/mic/mic_audio_capture.dart +461 -0
  162. package/flutter_app/third_party/desktop_audio_capture/lib/model/audio_status.dart +91 -0
  163. package/flutter_app/third_party/desktop_audio_capture/lib/model/decibel_data.dart +106 -0
  164. package/flutter_app/third_party/desktop_audio_capture/lib/model/input_device_type.dart +219 -0
  165. package/flutter_app/third_party/desktop_audio_capture/lib/system/system_audio_capture.dart +336 -0
  166. package/flutter_app/third_party/desktop_audio_capture/linux/CMakeLists.txt +101 -0
  167. package/flutter_app/third_party/desktop_audio_capture/linux/audio_capture_plugin.cc +692 -0
  168. package/flutter_app/third_party/desktop_audio_capture/linux/include/audio_capture/audio_capture_plugin.h +35 -0
  169. package/flutter_app/third_party/desktop_audio_capture/linux/include/audio_capture/mic_capture_plugin.h +36 -0
  170. package/flutter_app/third_party/desktop_audio_capture/linux/include/desktop_audio_capture/audio_capture_plugin.h +32 -0
  171. package/flutter_app/third_party/desktop_audio_capture/linux/include/desktop_audio_capture/mic_capture_plugin.h +32 -0
  172. package/flutter_app/third_party/desktop_audio_capture/linux/mic_capture_plugin.cc +878 -0
  173. package/flutter_app/third_party/desktop_audio_capture/macos/Classes/AudioCapturePlugin.swift +27 -0
  174. package/flutter_app/third_party/desktop_audio_capture/macos/Classes/MicCapturePlugin.swift +1172 -0
  175. package/flutter_app/third_party/desktop_audio_capture/macos/Classes/SystemCapturePlugin.swift +655 -0
  176. package/flutter_app/third_party/desktop_audio_capture/macos/Resources/PrivacyInfo.xcprivacy +12 -0
  177. package/flutter_app/third_party/desktop_audio_capture/macos/desktop_audio_capture.podspec +30 -0
  178. package/flutter_app/third_party/desktop_audio_capture/pubspec.yaml +87 -0
  179. package/flutter_app/third_party/desktop_audio_capture/windows/CMakeLists.txt +105 -0
  180. package/flutter_app/third_party/desktop_audio_capture/windows/audio_capture_plugin.cpp +80 -0
  181. package/flutter_app/third_party/desktop_audio_capture/windows/audio_capture_plugin.h +31 -0
  182. package/flutter_app/third_party/desktop_audio_capture/windows/audio_capture_plugin_c_api.cpp +12 -0
  183. package/flutter_app/third_party/desktop_audio_capture/windows/include/audio_capture/audio_capture_plugin_c_api.h +23 -0
  184. package/flutter_app/third_party/desktop_audio_capture/windows/include/desktop_audio_capture/audio_capture_plugin.h +25 -0
  185. package/flutter_app/third_party/desktop_audio_capture/windows/mic_capture_plugin.cpp +1117 -0
  186. package/flutter_app/third_party/desktop_audio_capture/windows/mic_capture_plugin.h +115 -0
  187. package/flutter_app/third_party/desktop_audio_capture/windows/system_audio_capture_plugin.cpp +777 -0
  188. package/flutter_app/third_party/desktop_audio_capture/windows/system_audio_capture_plugin.h +87 -0
  189. package/flutter_app/third_party/flutter_secure_storage_linux/linux/CMakeLists.txt +30 -0
  190. package/flutter_app/third_party/flutter_secure_storage_linux/linux/flutter_secure_storage_linux_plugin.cc +215 -0
  191. package/flutter_app/third_party/flutter_secure_storage_linux/linux/include/flutter_secure_storage_linux/flutter_secure_storage_linux_plugin.h +27 -0
  192. package/flutter_app/third_party/flutter_secure_storage_linux/pubspec.yaml +20 -0
  193. package/flutter_app/tool/generate_desktop_branding.py +219 -0
  194. package/flutter_app/web/favicon.png +0 -0
  195. package/flutter_app/web/favicon.svg +12 -0
  196. package/flutter_app/web/icons/Icon-192.png +0 -0
  197. package/flutter_app/web/icons/Icon-512.png +0 -0
  198. package/flutter_app/web/icons/Icon-maskable-192.png +0 -0
  199. package/flutter_app/web/icons/Icon-maskable-512.png +0 -0
  200. package/flutter_app/web/index.html +39 -0
  201. package/flutter_app/web/manifest.json +35 -0
  202. package/flutter_app/windows/CMakeLists.txt +108 -0
  203. package/flutter_app/windows/flutter/CMakeLists.txt +109 -0
  204. package/flutter_app/windows/flutter/generated_plugin_registrant.cc +47 -0
  205. package/flutter_app/windows/flutter/generated_plugin_registrant.h +15 -0
  206. package/flutter_app/windows/flutter/generated_plugins.cmake +35 -0
  207. package/flutter_app/windows/runner/CMakeLists.txt +41 -0
  208. package/flutter_app/windows/runner/Runner.rc +121 -0
  209. package/flutter_app/windows/runner/flutter_window.cpp +533 -0
  210. package/flutter_app/windows/runner/flutter_window.h +37 -0
  211. package/flutter_app/windows/runner/main.cpp +53 -0
  212. package/flutter_app/windows/runner/resource.h +16 -0
  213. package/flutter_app/windows/runner/resources/app_icon.ico +0 -0
  214. package/flutter_app/windows/runner/runner.exe.manifest +14 -0
  215. package/flutter_app/windows/runner/utils.cpp +65 -0
  216. package/flutter_app/windows/runner/utils.h +19 -0
  217. package/flutter_app/windows/runner/win32_window.cpp +299 -0
  218. package/flutter_app/windows/runner/win32_window.h +102 -0
  219. package/lib/manager.js +231 -7
  220. package/package.json +3 -1
  221. package/server/db/database.js +68 -0
  222. package/server/http/middleware.js +50 -0
  223. package/server/http/routes.js +3 -1
  224. package/server/index.js +1 -0
  225. package/server/public/.last_build_id +1 -1
  226. package/server/public/assets/NOTICES +61 -0
  227. package/server/public/assets/fonts/MaterialIcons-Regular.otf +0 -0
  228. package/server/public/flutter_bootstrap.js +1 -1
  229. package/server/public/main.dart.js +65262 -64422
  230. package/server/routes/integrations.js +86 -0
  231. package/server/routes/memory.js +11 -2
  232. package/server/routes/screenHistory.js +46 -0
  233. package/server/routes/triggers.js +81 -0
  234. package/server/services/ai/models.js +30 -0
  235. package/server/services/ai/providers/githubCopilot.js +97 -0
  236. package/server/services/ai/providers/openai.js +2 -1
  237. package/server/services/ai/providers/openaiCodex.js +31 -0
  238. package/server/services/ai/settings.js +20 -0
  239. package/server/services/ai/systemPrompt.js +1 -1
  240. package/server/services/ai/tools.js +35 -6
  241. package/server/services/browser/controller.js +47 -3
  242. package/server/services/desktop/screenRecorder.js +172 -0
  243. package/server/services/integrations/env.js +5 -0
  244. package/server/services/integrations/github/common.js +106 -0
  245. package/server/services/integrations/github/provider.js +499 -0
  246. package/server/services/integrations/github/repos.js +1124 -0
  247. package/server/services/integrations/home_assistant/provider.js +306 -26
  248. package/server/services/integrations/manager.js +63 -7
  249. package/server/services/integrations/oauth_provider.js +13 -6
  250. package/server/services/integrations/provider_config_store.js +76 -0
  251. package/server/services/integrations/registry.js +4 -0
  252. package/server/services/integrations/trello/provider.js +744 -0
  253. package/server/services/integrations/whatsapp/provider.js +6 -2
  254. package/server/services/manager.js +22 -0
  255. package/server/services/memory/manager.js +39 -2
  256. package/server/services/skills/base_catalog.js +33 -0
  257. package/server/services/tasks/adapters/index.js +1 -0
  258. package/server/services/tasks/adapters/manual.js +12 -0
  259. package/server/services/tasks/runtime.js +1 -1
  260. package/server/services/voice/openaiClient.js +4 -1
  261. package/server/services/voice/providers.js +2 -1
  262. package/server/services/widgets/service.js +49 -4
  263. package/server/utils/local_secrets.js +56 -0
  264. package/server/utils/logger.js +37 -9
@@ -0,0 +1,801 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXAggregateTarget section */
10
+ 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = {
11
+ isa = PBXAggregateTarget;
12
+ buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */;
13
+ buildPhases = (
14
+ 33CC111E2044C6BF0003C045 /* ShellScript */,
15
+ );
16
+ dependencies = (
17
+ );
18
+ name = "Flutter Assemble";
19
+ productName = FLX;
20
+ };
21
+ /* End PBXAggregateTarget section */
22
+
23
+ /* Begin PBXBuildFile section */
24
+ 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C80D7294CF71000263BE5 /* RunnerTests.swift */; };
25
+ 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; };
26
+ 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; };
27
+ 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; };
28
+ 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; };
29
+ 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; };
30
+ 3AE76E5F023C97D9516890AA /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EF363E60CA8EC39E5FBFB7BD /* Pods_RunnerTests.framework */; };
31
+ D8156EC9903BA2663AD4008B /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3577604118592604BBC0FCB5 /* Pods_Runner.framework */; };
32
+ /* End PBXBuildFile section */
33
+
34
+ /* Begin PBXContainerItemProxy section */
35
+ 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */ = {
36
+ isa = PBXContainerItemProxy;
37
+ containerPortal = 33CC10E52044A3C60003C045 /* Project object */;
38
+ proxyType = 1;
39
+ remoteGlobalIDString = 33CC10EC2044A3C60003C045;
40
+ remoteInfo = Runner;
41
+ };
42
+ 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = {
43
+ isa = PBXContainerItemProxy;
44
+ containerPortal = 33CC10E52044A3C60003C045 /* Project object */;
45
+ proxyType = 1;
46
+ remoteGlobalIDString = 33CC111A2044C6BA0003C045;
47
+ remoteInfo = FLX;
48
+ };
49
+ /* End PBXContainerItemProxy section */
50
+
51
+ /* Begin PBXCopyFilesBuildPhase section */
52
+ 33CC110E2044A8840003C045 /* Bundle Framework */ = {
53
+ isa = PBXCopyFilesBuildPhase;
54
+ buildActionMask = 2147483647;
55
+ dstPath = "";
56
+ dstSubfolderSpec = 10;
57
+ files = (
58
+ );
59
+ name = "Bundle Framework";
60
+ runOnlyForDeploymentPostprocessing = 0;
61
+ };
62
+ /* End PBXCopyFilesBuildPhase section */
63
+
64
+ /* Begin PBXFileReference section */
65
+ 0179CF610254C2FD34168D66 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
66
+ 331C80D5294CF71000263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
67
+ 331C80D7294CF71000263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
68
+ 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
69
+ 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = "<group>"; };
70
+ 33CC10ED2044A3C60003C045 /* NeoAgent.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NeoAgent.app; sourceTree = BUILT_PRODUCTS_DIR; };
71
+ 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
72
+ 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = "<group>"; };
73
+ 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = "<group>"; };
74
+ 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = "<group>"; };
75
+ 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = "<group>"; };
76
+ 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = "<group>"; };
77
+ 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = "<group>"; };
78
+ 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = "<group>"; };
79
+ 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = "<group>"; };
80
+ 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = "<group>"; };
81
+ 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = "<group>"; };
82
+ 3577604118592604BBC0FCB5 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
83
+ 5BCAA3BB20FE3EDBC1B83DB8 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
84
+ 7AB3037E1BB10B0AF1356660 /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = "<group>"; };
85
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
86
+ 8610C43E9E5E676AD3815AA3 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
87
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
88
+ C98FA8B44195EBD8CF16F949 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = "<group>"; };
89
+ D3A95A82C594002005A24496 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = "<group>"; };
90
+ EF363E60CA8EC39E5FBFB7BD /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
91
+ /* End PBXFileReference section */
92
+
93
+ /* Begin PBXFrameworksBuildPhase section */
94
+ 331C80D2294CF70F00263BE5 /* Frameworks */ = {
95
+ isa = PBXFrameworksBuildPhase;
96
+ buildActionMask = 2147483647;
97
+ files = (
98
+ 3AE76E5F023C97D9516890AA /* Pods_RunnerTests.framework in Frameworks */,
99
+ );
100
+ runOnlyForDeploymentPostprocessing = 0;
101
+ };
102
+ 33CC10EA2044A3C60003C045 /* Frameworks */ = {
103
+ isa = PBXFrameworksBuildPhase;
104
+ buildActionMask = 2147483647;
105
+ files = (
106
+ D8156EC9903BA2663AD4008B /* Pods_Runner.framework in Frameworks */,
107
+ );
108
+ runOnlyForDeploymentPostprocessing = 0;
109
+ };
110
+ /* End PBXFrameworksBuildPhase section */
111
+
112
+ /* Begin PBXGroup section */
113
+ 331C80D6294CF71000263BE5 /* RunnerTests */ = {
114
+ isa = PBXGroup;
115
+ children = (
116
+ 331C80D7294CF71000263BE5 /* RunnerTests.swift */,
117
+ );
118
+ path = RunnerTests;
119
+ sourceTree = "<group>";
120
+ };
121
+ 33BA886A226E78AF003329D5 /* Configs */ = {
122
+ isa = PBXGroup;
123
+ children = (
124
+ 33E5194F232828860026EE4D /* AppInfo.xcconfig */,
125
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */,
126
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
127
+ 333000ED22D3DE5D00554162 /* Warnings.xcconfig */,
128
+ );
129
+ path = Configs;
130
+ sourceTree = "<group>";
131
+ };
132
+ 33CC10E42044A3C60003C045 = {
133
+ isa = PBXGroup;
134
+ children = (
135
+ 33FAB671232836740065AC1E /* Runner */,
136
+ 33CEB47122A05771004F2AC0 /* Flutter */,
137
+ 331C80D6294CF71000263BE5 /* RunnerTests */,
138
+ 33CC10EE2044A3C60003C045 /* Products */,
139
+ D73912EC22F37F3D000D13A0 /* Frameworks */,
140
+ 6A9F0EB7313DE4C6D001F931 /* Pods */,
141
+ );
142
+ sourceTree = "<group>";
143
+ };
144
+ 33CC10EE2044A3C60003C045 /* Products */ = {
145
+ isa = PBXGroup;
146
+ children = (
147
+ 33CC10ED2044A3C60003C045 /* NeoAgent.app */,
148
+ 331C80D5294CF71000263BE5 /* RunnerTests.xctest */,
149
+ );
150
+ name = Products;
151
+ sourceTree = "<group>";
152
+ };
153
+ 33CC11242044D66E0003C045 /* Resources */ = {
154
+ isa = PBXGroup;
155
+ children = (
156
+ 33CC10F22044A3C60003C045 /* Assets.xcassets */,
157
+ 33CC10F42044A3C60003C045 /* MainMenu.xib */,
158
+ 33CC10F72044A3C60003C045 /* Info.plist */,
159
+ );
160
+ name = Resources;
161
+ path = ..;
162
+ sourceTree = "<group>";
163
+ };
164
+ 33CEB47122A05771004F2AC0 /* Flutter */ = {
165
+ isa = PBXGroup;
166
+ children = (
167
+ 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */,
168
+ 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */,
169
+ 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */,
170
+ 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */,
171
+ );
172
+ path = Flutter;
173
+ sourceTree = "<group>";
174
+ };
175
+ 33FAB671232836740065AC1E /* Runner */ = {
176
+ isa = PBXGroup;
177
+ children = (
178
+ 33CC10F02044A3C60003C045 /* AppDelegate.swift */,
179
+ 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */,
180
+ 33E51913231747F40026EE4D /* DebugProfile.entitlements */,
181
+ 33E51914231749380026EE4D /* Release.entitlements */,
182
+ 33CC11242044D66E0003C045 /* Resources */,
183
+ 33BA886A226E78AF003329D5 /* Configs */,
184
+ );
185
+ path = Runner;
186
+ sourceTree = "<group>";
187
+ };
188
+ 6A9F0EB7313DE4C6D001F931 /* Pods */ = {
189
+ isa = PBXGroup;
190
+ children = (
191
+ 5BCAA3BB20FE3EDBC1B83DB8 /* Pods-Runner.debug.xcconfig */,
192
+ 0179CF610254C2FD34168D66 /* Pods-Runner.release.xcconfig */,
193
+ 8610C43E9E5E676AD3815AA3 /* Pods-Runner.profile.xcconfig */,
194
+ C98FA8B44195EBD8CF16F949 /* Pods-RunnerTests.debug.xcconfig */,
195
+ 7AB3037E1BB10B0AF1356660 /* Pods-RunnerTests.release.xcconfig */,
196
+ D3A95A82C594002005A24496 /* Pods-RunnerTests.profile.xcconfig */,
197
+ );
198
+ name = Pods;
199
+ path = Pods;
200
+ sourceTree = "<group>";
201
+ };
202
+ D73912EC22F37F3D000D13A0 /* Frameworks */ = {
203
+ isa = PBXGroup;
204
+ children = (
205
+ 3577604118592604BBC0FCB5 /* Pods_Runner.framework */,
206
+ EF363E60CA8EC39E5FBFB7BD /* Pods_RunnerTests.framework */,
207
+ );
208
+ name = Frameworks;
209
+ sourceTree = "<group>";
210
+ };
211
+ /* End PBXGroup section */
212
+
213
+ /* Begin PBXNativeTarget section */
214
+ 331C80D4294CF70F00263BE5 /* RunnerTests */ = {
215
+ isa = PBXNativeTarget;
216
+ buildConfigurationList = 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
217
+ buildPhases = (
218
+ 70760D8C20ACE8F23BC2AE33 /* [CP] Check Pods Manifest.lock */,
219
+ 331C80D1294CF70F00263BE5 /* Sources */,
220
+ 331C80D2294CF70F00263BE5 /* Frameworks */,
221
+ 331C80D3294CF70F00263BE5 /* Resources */,
222
+ );
223
+ buildRules = (
224
+ );
225
+ dependencies = (
226
+ 331C80DA294CF71000263BE5 /* PBXTargetDependency */,
227
+ );
228
+ name = RunnerTests;
229
+ productName = RunnerTests;
230
+ productReference = 331C80D5294CF71000263BE5 /* RunnerTests.xctest */;
231
+ productType = "com.apple.product-type.bundle.unit-test";
232
+ };
233
+ 33CC10EC2044A3C60003C045 /* Runner */ = {
234
+ isa = PBXNativeTarget;
235
+ buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */;
236
+ buildPhases = (
237
+ D8BB4486B33CAFE7FA12F41F /* [CP] Check Pods Manifest.lock */,
238
+ 33CC10E92044A3C60003C045 /* Sources */,
239
+ 33CC10EA2044A3C60003C045 /* Frameworks */,
240
+ 33CC10EB2044A3C60003C045 /* Resources */,
241
+ 33CC110E2044A8840003C045 /* Bundle Framework */,
242
+ 3399D490228B24CF009A79C7 /* ShellScript */,
243
+ F8A303DAD0AB24EA39222A31 /* [CP] Embed Pods Frameworks */,
244
+ );
245
+ buildRules = (
246
+ );
247
+ dependencies = (
248
+ 33CC11202044C79F0003C045 /* PBXTargetDependency */,
249
+ );
250
+ name = Runner;
251
+ productName = Runner;
252
+ productReference = 33CC10ED2044A3C60003C045 /* NeoAgent.app */;
253
+ productType = "com.apple.product-type.application";
254
+ };
255
+ /* End PBXNativeTarget section */
256
+
257
+ /* Begin PBXProject section */
258
+ 33CC10E52044A3C60003C045 /* Project object */ = {
259
+ isa = PBXProject;
260
+ attributes = {
261
+ BuildIndependentTargetsInParallel = YES;
262
+ LastSwiftUpdateCheck = 0920;
263
+ LastUpgradeCheck = 1510;
264
+ ORGANIZATIONNAME = "";
265
+ TargetAttributes = {
266
+ 331C80D4294CF70F00263BE5 = {
267
+ CreatedOnToolsVersion = 14.0;
268
+ TestTargetID = 33CC10EC2044A3C60003C045;
269
+ };
270
+ 33CC10EC2044A3C60003C045 = {
271
+ CreatedOnToolsVersion = 9.2;
272
+ LastSwiftMigration = 1100;
273
+ ProvisioningStyle = Automatic;
274
+ SystemCapabilities = {
275
+ com.apple.Sandbox = {
276
+ enabled = 1;
277
+ };
278
+ };
279
+ };
280
+ 33CC111A2044C6BA0003C045 = {
281
+ CreatedOnToolsVersion = 9.2;
282
+ ProvisioningStyle = Manual;
283
+ };
284
+ };
285
+ };
286
+ buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */;
287
+ compatibilityVersion = "Xcode 9.3";
288
+ developmentRegion = en;
289
+ hasScannedForEncodings = 0;
290
+ knownRegions = (
291
+ en,
292
+ Base,
293
+ );
294
+ mainGroup = 33CC10E42044A3C60003C045;
295
+ productRefGroup = 33CC10EE2044A3C60003C045 /* Products */;
296
+ projectDirPath = "";
297
+ projectRoot = "";
298
+ targets = (
299
+ 33CC10EC2044A3C60003C045 /* Runner */,
300
+ 331C80D4294CF70F00263BE5 /* RunnerTests */,
301
+ 33CC111A2044C6BA0003C045 /* Flutter Assemble */,
302
+ );
303
+ };
304
+ /* End PBXProject section */
305
+
306
+ /* Begin PBXResourcesBuildPhase section */
307
+ 331C80D3294CF70F00263BE5 /* Resources */ = {
308
+ isa = PBXResourcesBuildPhase;
309
+ buildActionMask = 2147483647;
310
+ files = (
311
+ );
312
+ runOnlyForDeploymentPostprocessing = 0;
313
+ };
314
+ 33CC10EB2044A3C60003C045 /* Resources */ = {
315
+ isa = PBXResourcesBuildPhase;
316
+ buildActionMask = 2147483647;
317
+ files = (
318
+ 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */,
319
+ 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */,
320
+ );
321
+ runOnlyForDeploymentPostprocessing = 0;
322
+ };
323
+ /* End PBXResourcesBuildPhase section */
324
+
325
+ /* Begin PBXShellScriptBuildPhase section */
326
+ 3399D490228B24CF009A79C7 /* ShellScript */ = {
327
+ isa = PBXShellScriptBuildPhase;
328
+ alwaysOutOfDate = 1;
329
+ buildActionMask = 2147483647;
330
+ files = (
331
+ );
332
+ inputFileListPaths = (
333
+ );
334
+ inputPaths = (
335
+ );
336
+ outputFileListPaths = (
337
+ );
338
+ outputPaths = (
339
+ );
340
+ runOnlyForDeploymentPostprocessing = 0;
341
+ shellPath = /bin/sh;
342
+ shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n";
343
+ };
344
+ 33CC111E2044C6BF0003C045 /* ShellScript */ = {
345
+ isa = PBXShellScriptBuildPhase;
346
+ buildActionMask = 2147483647;
347
+ files = (
348
+ );
349
+ inputFileListPaths = (
350
+ Flutter/ephemeral/FlutterInputs.xcfilelist,
351
+ );
352
+ inputPaths = (
353
+ Flutter/ephemeral/tripwire,
354
+ );
355
+ outputFileListPaths = (
356
+ Flutter/ephemeral/FlutterOutputs.xcfilelist,
357
+ );
358
+ outputPaths = (
359
+ );
360
+ runOnlyForDeploymentPostprocessing = 0;
361
+ shellPath = /bin/sh;
362
+ shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire";
363
+ };
364
+ 70760D8C20ACE8F23BC2AE33 /* [CP] Check Pods Manifest.lock */ = {
365
+ isa = PBXShellScriptBuildPhase;
366
+ buildActionMask = 2147483647;
367
+ files = (
368
+ );
369
+ inputFileListPaths = (
370
+ );
371
+ inputPaths = (
372
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
373
+ "${PODS_ROOT}/Manifest.lock",
374
+ );
375
+ name = "[CP] Check Pods Manifest.lock";
376
+ outputFileListPaths = (
377
+ );
378
+ outputPaths = (
379
+ "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
380
+ );
381
+ runOnlyForDeploymentPostprocessing = 0;
382
+ shellPath = /bin/sh;
383
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
384
+ showEnvVarsInLog = 0;
385
+ };
386
+ D8BB4486B33CAFE7FA12F41F /* [CP] Check Pods Manifest.lock */ = {
387
+ isa = PBXShellScriptBuildPhase;
388
+ buildActionMask = 2147483647;
389
+ files = (
390
+ );
391
+ inputFileListPaths = (
392
+ );
393
+ inputPaths = (
394
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
395
+ "${PODS_ROOT}/Manifest.lock",
396
+ );
397
+ name = "[CP] Check Pods Manifest.lock";
398
+ outputFileListPaths = (
399
+ );
400
+ outputPaths = (
401
+ "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
402
+ );
403
+ runOnlyForDeploymentPostprocessing = 0;
404
+ shellPath = /bin/sh;
405
+ shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
406
+ showEnvVarsInLog = 0;
407
+ };
408
+ F8A303DAD0AB24EA39222A31 /* [CP] Embed Pods Frameworks */ = {
409
+ isa = PBXShellScriptBuildPhase;
410
+ buildActionMask = 2147483647;
411
+ files = (
412
+ );
413
+ inputFileListPaths = (
414
+ "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
415
+ );
416
+ name = "[CP] Embed Pods Frameworks";
417
+ outputFileListPaths = (
418
+ "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
419
+ );
420
+ runOnlyForDeploymentPostprocessing = 0;
421
+ shellPath = /bin/sh;
422
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
423
+ showEnvVarsInLog = 0;
424
+ };
425
+ /* End PBXShellScriptBuildPhase section */
426
+
427
+ /* Begin PBXSourcesBuildPhase section */
428
+ 331C80D1294CF70F00263BE5 /* Sources */ = {
429
+ isa = PBXSourcesBuildPhase;
430
+ buildActionMask = 2147483647;
431
+ files = (
432
+ 331C80D8294CF71000263BE5 /* RunnerTests.swift in Sources */,
433
+ );
434
+ runOnlyForDeploymentPostprocessing = 0;
435
+ };
436
+ 33CC10E92044A3C60003C045 /* Sources */ = {
437
+ isa = PBXSourcesBuildPhase;
438
+ buildActionMask = 2147483647;
439
+ files = (
440
+ 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */,
441
+ 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */,
442
+ 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */,
443
+ );
444
+ runOnlyForDeploymentPostprocessing = 0;
445
+ };
446
+ /* End PBXSourcesBuildPhase section */
447
+
448
+ /* Begin PBXTargetDependency section */
449
+ 331C80DA294CF71000263BE5 /* PBXTargetDependency */ = {
450
+ isa = PBXTargetDependency;
451
+ target = 33CC10EC2044A3C60003C045 /* Runner */;
452
+ targetProxy = 331C80D9294CF71000263BE5 /* PBXContainerItemProxy */;
453
+ };
454
+ 33CC11202044C79F0003C045 /* PBXTargetDependency */ = {
455
+ isa = PBXTargetDependency;
456
+ target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */;
457
+ targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */;
458
+ };
459
+ /* End PBXTargetDependency section */
460
+
461
+ /* Begin PBXVariantGroup section */
462
+ 33CC10F42044A3C60003C045 /* MainMenu.xib */ = {
463
+ isa = PBXVariantGroup;
464
+ children = (
465
+ 33CC10F52044A3C60003C045 /* Base */,
466
+ );
467
+ name = MainMenu.xib;
468
+ path = Runner;
469
+ sourceTree = "<group>";
470
+ };
471
+ /* End PBXVariantGroup section */
472
+
473
+ /* Begin XCBuildConfiguration section */
474
+ 331C80DB294CF71000263BE5 /* Debug */ = {
475
+ isa = XCBuildConfiguration;
476
+ baseConfigurationReference = C98FA8B44195EBD8CF16F949 /* Pods-RunnerTests.debug.xcconfig */;
477
+ buildSettings = {
478
+ BUNDLE_LOADER = "$(TEST_HOST)";
479
+ CURRENT_PROJECT_VERSION = 1;
480
+ GENERATE_INFOPLIST_FILE = YES;
481
+ MARKETING_VERSION = 1.0;
482
+ PRODUCT_BUNDLE_IDENTIFIER = com.neoagent.neoagentFlutter.RunnerTests;
483
+ PRODUCT_NAME = "$(TARGET_NAME)";
484
+ SWIFT_VERSION = 5.0;
485
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/NeoAgent.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/NeoAgent";
486
+ };
487
+ name = Debug;
488
+ };
489
+ 331C80DC294CF71000263BE5 /* Release */ = {
490
+ isa = XCBuildConfiguration;
491
+ baseConfigurationReference = 7AB3037E1BB10B0AF1356660 /* Pods-RunnerTests.release.xcconfig */;
492
+ buildSettings = {
493
+ BUNDLE_LOADER = "$(TEST_HOST)";
494
+ CURRENT_PROJECT_VERSION = 1;
495
+ GENERATE_INFOPLIST_FILE = YES;
496
+ MARKETING_VERSION = 1.0;
497
+ PRODUCT_BUNDLE_IDENTIFIER = com.neoagent.neoagentFlutter.RunnerTests;
498
+ PRODUCT_NAME = "$(TARGET_NAME)";
499
+ SWIFT_VERSION = 5.0;
500
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/NeoAgent.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/NeoAgent";
501
+ };
502
+ name = Release;
503
+ };
504
+ 331C80DD294CF71000263BE5 /* Profile */ = {
505
+ isa = XCBuildConfiguration;
506
+ baseConfigurationReference = D3A95A82C594002005A24496 /* Pods-RunnerTests.profile.xcconfig */;
507
+ buildSettings = {
508
+ BUNDLE_LOADER = "$(TEST_HOST)";
509
+ CURRENT_PROJECT_VERSION = 1;
510
+ GENERATE_INFOPLIST_FILE = YES;
511
+ MARKETING_VERSION = 1.0;
512
+ PRODUCT_BUNDLE_IDENTIFIER = com.neoagent.neoagentFlutter.RunnerTests;
513
+ PRODUCT_NAME = "$(TARGET_NAME)";
514
+ SWIFT_VERSION = 5.0;
515
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/NeoAgent.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/NeoAgent";
516
+ };
517
+ name = Profile;
518
+ };
519
+ 338D0CE9231458BD00FA5F75 /* Profile */ = {
520
+ isa = XCBuildConfiguration;
521
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
522
+ buildSettings = {
523
+ ALWAYS_SEARCH_USER_PATHS = NO;
524
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
525
+ CLANG_ANALYZER_NONNULL = YES;
526
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
527
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
528
+ CLANG_CXX_LIBRARY = "libc++";
529
+ CLANG_ENABLE_MODULES = YES;
530
+ CLANG_ENABLE_OBJC_ARC = YES;
531
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
532
+ CLANG_WARN_BOOL_CONVERSION = YES;
533
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
534
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
535
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
536
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
537
+ CLANG_WARN_EMPTY_BODY = YES;
538
+ CLANG_WARN_ENUM_CONVERSION = YES;
539
+ CLANG_WARN_INFINITE_RECURSION = YES;
540
+ CLANG_WARN_INT_CONVERSION = YES;
541
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
542
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
543
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
544
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
545
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
546
+ CODE_SIGN_IDENTITY = "-";
547
+ COPY_PHASE_STRIP = NO;
548
+ DEAD_CODE_STRIPPING = YES;
549
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
550
+ ENABLE_NS_ASSERTIONS = NO;
551
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
552
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
553
+ GCC_C_LANGUAGE_STANDARD = gnu11;
554
+ GCC_NO_COMMON_BLOCKS = YES;
555
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
556
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
557
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
558
+ GCC_WARN_UNUSED_FUNCTION = YES;
559
+ GCC_WARN_UNUSED_VARIABLE = YES;
560
+ MACOSX_DEPLOYMENT_TARGET = 13.0;
561
+ MTL_ENABLE_DEBUG_INFO = NO;
562
+ SDKROOT = macosx;
563
+ SWIFT_COMPILATION_MODE = wholemodule;
564
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
565
+ };
566
+ name = Profile;
567
+ };
568
+ 338D0CEA231458BD00FA5F75 /* Profile */ = {
569
+ isa = XCBuildConfiguration;
570
+ baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
571
+ buildSettings = {
572
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
573
+ CLANG_ENABLE_MODULES = YES;
574
+ CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
575
+ CODE_SIGN_STYLE = Automatic;
576
+ COMBINE_HIDPI_IMAGES = YES;
577
+ INFOPLIST_FILE = Runner/Info.plist;
578
+ LD_RUNPATH_SEARCH_PATHS = (
579
+ "$(inherited)",
580
+ "@executable_path/../Frameworks",
581
+ );
582
+ PROVISIONING_PROFILE_SPECIFIER = "";
583
+ SWIFT_VERSION = 5.0;
584
+ };
585
+ name = Profile;
586
+ };
587
+ 338D0CEB231458BD00FA5F75 /* Profile */ = {
588
+ isa = XCBuildConfiguration;
589
+ buildSettings = {
590
+ CODE_SIGN_STYLE = Manual;
591
+ PRODUCT_NAME = "$(TARGET_NAME)";
592
+ };
593
+ name = Profile;
594
+ };
595
+ 33CC10F92044A3C60003C045 /* Debug */ = {
596
+ isa = XCBuildConfiguration;
597
+ baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
598
+ buildSettings = {
599
+ ALWAYS_SEARCH_USER_PATHS = NO;
600
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
601
+ CLANG_ANALYZER_NONNULL = YES;
602
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
603
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
604
+ CLANG_CXX_LIBRARY = "libc++";
605
+ CLANG_ENABLE_MODULES = YES;
606
+ CLANG_ENABLE_OBJC_ARC = YES;
607
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
608
+ CLANG_WARN_BOOL_CONVERSION = YES;
609
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
610
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
611
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
612
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
613
+ CLANG_WARN_EMPTY_BODY = YES;
614
+ CLANG_WARN_ENUM_CONVERSION = YES;
615
+ CLANG_WARN_INFINITE_RECURSION = YES;
616
+ CLANG_WARN_INT_CONVERSION = YES;
617
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
618
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
619
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
620
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
621
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
622
+ CODE_SIGN_IDENTITY = "-";
623
+ COPY_PHASE_STRIP = NO;
624
+ DEAD_CODE_STRIPPING = YES;
625
+ DEBUG_INFORMATION_FORMAT = dwarf;
626
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
627
+ ENABLE_TESTABILITY = YES;
628
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
629
+ GCC_C_LANGUAGE_STANDARD = gnu11;
630
+ GCC_DYNAMIC_NO_PIC = NO;
631
+ GCC_NO_COMMON_BLOCKS = YES;
632
+ GCC_OPTIMIZATION_LEVEL = 0;
633
+ GCC_PREPROCESSOR_DEFINITIONS = (
634
+ "DEBUG=1",
635
+ "$(inherited)",
636
+ );
637
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
638
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
639
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
640
+ GCC_WARN_UNUSED_FUNCTION = YES;
641
+ GCC_WARN_UNUSED_VARIABLE = YES;
642
+ MACOSX_DEPLOYMENT_TARGET = 13.0;
643
+ MTL_ENABLE_DEBUG_INFO = YES;
644
+ ONLY_ACTIVE_ARCH = YES;
645
+ SDKROOT = macosx;
646
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
647
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
648
+ };
649
+ name = Debug;
650
+ };
651
+ 33CC10FA2044A3C60003C045 /* Release */ = {
652
+ isa = XCBuildConfiguration;
653
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
654
+ buildSettings = {
655
+ ALWAYS_SEARCH_USER_PATHS = NO;
656
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
657
+ CLANG_ANALYZER_NONNULL = YES;
658
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
659
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
660
+ CLANG_CXX_LIBRARY = "libc++";
661
+ CLANG_ENABLE_MODULES = YES;
662
+ CLANG_ENABLE_OBJC_ARC = YES;
663
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
664
+ CLANG_WARN_BOOL_CONVERSION = YES;
665
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
666
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
667
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
668
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
669
+ CLANG_WARN_EMPTY_BODY = YES;
670
+ CLANG_WARN_ENUM_CONVERSION = YES;
671
+ CLANG_WARN_INFINITE_RECURSION = YES;
672
+ CLANG_WARN_INT_CONVERSION = YES;
673
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
674
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
675
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
676
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
677
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
678
+ CODE_SIGN_IDENTITY = "-";
679
+ COPY_PHASE_STRIP = NO;
680
+ DEAD_CODE_STRIPPING = YES;
681
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
682
+ ENABLE_NS_ASSERTIONS = NO;
683
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
684
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
685
+ GCC_C_LANGUAGE_STANDARD = gnu11;
686
+ GCC_NO_COMMON_BLOCKS = YES;
687
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
688
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
689
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
690
+ GCC_WARN_UNUSED_FUNCTION = YES;
691
+ GCC_WARN_UNUSED_VARIABLE = YES;
692
+ MACOSX_DEPLOYMENT_TARGET = 13.0;
693
+ MTL_ENABLE_DEBUG_INFO = NO;
694
+ SDKROOT = macosx;
695
+ SWIFT_COMPILATION_MODE = wholemodule;
696
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
697
+ };
698
+ name = Release;
699
+ };
700
+ 33CC10FC2044A3C60003C045 /* Debug */ = {
701
+ isa = XCBuildConfiguration;
702
+ baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
703
+ buildSettings = {
704
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
705
+ CLANG_ENABLE_MODULES = YES;
706
+ CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements;
707
+ CODE_SIGN_STYLE = Automatic;
708
+ COMBINE_HIDPI_IMAGES = YES;
709
+ INFOPLIST_FILE = Runner/Info.plist;
710
+ LD_RUNPATH_SEARCH_PATHS = (
711
+ "$(inherited)",
712
+ "@executable_path/../Frameworks",
713
+ );
714
+ PROVISIONING_PROFILE_SPECIFIER = "";
715
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
716
+ SWIFT_VERSION = 5.0;
717
+ };
718
+ name = Debug;
719
+ };
720
+ 33CC10FD2044A3C60003C045 /* Release */ = {
721
+ isa = XCBuildConfiguration;
722
+ baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */;
723
+ buildSettings = {
724
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
725
+ CLANG_ENABLE_MODULES = YES;
726
+ CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements;
727
+ CODE_SIGN_STYLE = Automatic;
728
+ COMBINE_HIDPI_IMAGES = YES;
729
+ INFOPLIST_FILE = Runner/Info.plist;
730
+ LD_RUNPATH_SEARCH_PATHS = (
731
+ "$(inherited)",
732
+ "@executable_path/../Frameworks",
733
+ );
734
+ PROVISIONING_PROFILE_SPECIFIER = "";
735
+ SWIFT_VERSION = 5.0;
736
+ };
737
+ name = Release;
738
+ };
739
+ 33CC111C2044C6BA0003C045 /* Debug */ = {
740
+ isa = XCBuildConfiguration;
741
+ buildSettings = {
742
+ CODE_SIGN_STYLE = Manual;
743
+ PRODUCT_NAME = "$(TARGET_NAME)";
744
+ };
745
+ name = Debug;
746
+ };
747
+ 33CC111D2044C6BA0003C045 /* Release */ = {
748
+ isa = XCBuildConfiguration;
749
+ buildSettings = {
750
+ CODE_SIGN_STYLE = Automatic;
751
+ PRODUCT_NAME = "$(TARGET_NAME)";
752
+ };
753
+ name = Release;
754
+ };
755
+ /* End XCBuildConfiguration section */
756
+
757
+ /* Begin XCConfigurationList section */
758
+ 331C80DE294CF71000263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
759
+ isa = XCConfigurationList;
760
+ buildConfigurations = (
761
+ 331C80DB294CF71000263BE5 /* Debug */,
762
+ 331C80DC294CF71000263BE5 /* Release */,
763
+ 331C80DD294CF71000263BE5 /* Profile */,
764
+ );
765
+ defaultConfigurationIsVisible = 0;
766
+ defaultConfigurationName = Release;
767
+ };
768
+ 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = {
769
+ isa = XCConfigurationList;
770
+ buildConfigurations = (
771
+ 33CC10F92044A3C60003C045 /* Debug */,
772
+ 33CC10FA2044A3C60003C045 /* Release */,
773
+ 338D0CE9231458BD00FA5F75 /* Profile */,
774
+ );
775
+ defaultConfigurationIsVisible = 0;
776
+ defaultConfigurationName = Release;
777
+ };
778
+ 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = {
779
+ isa = XCConfigurationList;
780
+ buildConfigurations = (
781
+ 33CC10FC2044A3C60003C045 /* Debug */,
782
+ 33CC10FD2044A3C60003C045 /* Release */,
783
+ 338D0CEA231458BD00FA5F75 /* Profile */,
784
+ );
785
+ defaultConfigurationIsVisible = 0;
786
+ defaultConfigurationName = Release;
787
+ };
788
+ 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = {
789
+ isa = XCConfigurationList;
790
+ buildConfigurations = (
791
+ 33CC111C2044C6BA0003C045 /* Debug */,
792
+ 33CC111D2044C6BA0003C045 /* Release */,
793
+ 338D0CEB231458BD00FA5F75 /* Profile */,
794
+ );
795
+ defaultConfigurationIsVisible = 0;
796
+ defaultConfigurationName = Release;
797
+ };
798
+ /* End XCConfigurationList section */
799
+ };
800
+ rootObject = 33CC10E52044A3C60003C045 /* Project object */;
801
+ }