pumaguard 21.post29__py3-none-any.whl → 21.post83__py3-none-any.whl

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 (188) hide show
  1. pumaguard/presets.py +1 -0
  2. pumaguard/pumaguard-ui/.last_build_id +1 -1
  3. pumaguard/pumaguard-ui/assets/NOTICES +621 -71
  4. pumaguard/pumaguard-ui/assets/fonts/MaterialIcons-Regular.otf +0 -0
  5. pumaguard/pumaguard-ui/flutter_bootstrap.js +1 -1
  6. pumaguard/pumaguard-ui/main.dart.js +28869 -28787
  7. pumaguard/web_routes/dhcp.py +311 -54
  8. pumaguard/web_routes/diagnostics.py +6 -0
  9. pumaguard/web_routes/settings.py +13 -0
  10. pumaguard/web_ui.py +29 -0
  11. {pumaguard-21.post29.dist-info → pumaguard-21.post83.dist-info}/METADATA +1 -1
  12. pumaguard-21.post83.dist-info/RECORD +254 -0
  13. pumaguard-ui/.gitignore +48 -0
  14. pumaguard-ui/.metadata +45 -0
  15. pumaguard-ui/API_REFERENCE.md +717 -0
  16. pumaguard-ui/LICENSE +201 -0
  17. pumaguard-ui/Makefile +36 -0
  18. pumaguard-ui/README.md +371 -0
  19. pumaguard-ui/UI_DEVELOPMENT_CONTEXT.md +427 -0
  20. pumaguard-ui/analysis_options.yaml +28 -0
  21. pumaguard-ui/android/.gitignore +14 -0
  22. pumaguard-ui/android/app/build.gradle.kts +44 -0
  23. pumaguard-ui/android/app/src/debug/AndroidManifest.xml +7 -0
  24. pumaguard-ui/android/app/src/main/AndroidManifest.xml +45 -0
  25. pumaguard-ui/android/app/src/main/kotlin/com/example/pumaguard_ui/MainActivity.kt +5 -0
  26. pumaguard-ui/android/app/src/main/res/drawable/launch_background.xml +12 -0
  27. pumaguard-ui/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
  28. pumaguard-ui/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  29. pumaguard-ui/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  30. pumaguard-ui/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  31. pumaguard-ui/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  32. pumaguard-ui/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  33. pumaguard-ui/android/app/src/main/res/values/styles.xml +18 -0
  34. pumaguard-ui/android/app/src/main/res/values-night/styles.xml +18 -0
  35. pumaguard-ui/android/app/src/profile/AndroidManifest.xml +7 -0
  36. pumaguard-ui/android/build.gradle.kts +24 -0
  37. pumaguard-ui/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  38. pumaguard-ui/android/gradle.properties +2 -0
  39. pumaguard-ui/android/settings.gradle.kts +26 -0
  40. pumaguard-ui/fonts/README.md +38 -0
  41. pumaguard-ui/fonts/Roboto-Bold.ttf +0 -0
  42. pumaguard-ui/fonts/Roboto-Light.ttf +0 -0
  43. pumaguard-ui/fonts/Roboto-Medium.ttf +0 -0
  44. pumaguard-ui/fonts/Roboto-Regular.ttf +0 -0
  45. pumaguard-ui/fonts/RobotoMono-Bold.ttf +0 -0
  46. pumaguard-ui/fonts/RobotoMono-Medium.ttf +0 -0
  47. pumaguard-ui/fonts/RobotoMono-Regular.ttf +0 -0
  48. pumaguard-ui/fonts/download_fonts.sh +76 -0
  49. pumaguard-ui/ios/.gitignore +34 -0
  50. pumaguard-ui/ios/Flutter/AppFrameworkInfo.plist +26 -0
  51. pumaguard-ui/ios/Flutter/Debug.xcconfig +1 -0
  52. pumaguard-ui/ios/Flutter/Release.xcconfig +1 -0
  53. pumaguard-ui/ios/Runner/AppDelegate.swift +13 -0
  54. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
  55. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
  56. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
  57. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
  58. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
  59. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
  60. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
  61. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
  62. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
  63. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
  64. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
  65. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
  66. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
  67. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
  68. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
  69. pumaguard-ui/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
  70. pumaguard-ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
  71. pumaguard-ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
  72. pumaguard-ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
  73. pumaguard-ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
  74. pumaguard-ui/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
  75. pumaguard-ui/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
  76. pumaguard-ui/ios/Runner/Base.lproj/Main.storyboard +26 -0
  77. pumaguard-ui/ios/Runner/Info.plist +49 -0
  78. pumaguard-ui/ios/Runner/Runner-Bridging-Header.h +1 -0
  79. pumaguard-ui/ios/Runner.xcodeproj/project.pbxproj +616 -0
  80. pumaguard-ui/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  81. pumaguard-ui/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  82. pumaguard-ui/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  83. pumaguard-ui/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +101 -0
  84. pumaguard-ui/ios/Runner.xcworkspace/contents.xcworkspacedata +7 -0
  85. pumaguard-ui/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  86. pumaguard-ui/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  87. pumaguard-ui/ios/RunnerTests/RunnerTests.swift +12 -0
  88. pumaguard-ui/lib/main.dart +56 -0
  89. pumaguard-ui/lib/models/camera.dart +45 -0
  90. pumaguard-ui/lib/models/plug.dart +45 -0
  91. pumaguard-ui/lib/models/settings.dart +112 -0
  92. pumaguard-ui/lib/models/status.dart +58 -0
  93. pumaguard-ui/lib/screens/directories_screen.dart +319 -0
  94. pumaguard-ui/lib/screens/home_screen.dart +545 -0
  95. pumaguard-ui/lib/screens/image_browser_screen.dart +1248 -0
  96. pumaguard-ui/lib/screens/server_discovery_screen.dart +390 -0
  97. pumaguard-ui/lib/screens/settings_screen.dart +1162 -0
  98. pumaguard-ui/lib/screens/wifi_settings_screen.dart +671 -0
  99. pumaguard-ui/lib/services/api_service.dart +717 -0
  100. pumaguard-ui/lib/services/camera_events_service.dart +195 -0
  101. pumaguard-ui/lib/services/mdns_service.dart +4 -0
  102. pumaguard-ui/lib/services/mdns_service_impl.dart +282 -0
  103. pumaguard-ui/lib/services/mdns_service_io.dart +1 -0
  104. pumaguard-ui/lib/services/mdns_service_web.dart +106 -0
  105. pumaguard-ui/lib/utils/download_helper.dart +2 -0
  106. pumaguard-ui/lib/utils/download_helper_stub.dart +6 -0
  107. pumaguard-ui/lib/utils/download_helper_web.dart +14 -0
  108. pumaguard-ui/lib/utils/platform_url.dart +10 -0
  109. pumaguard-ui/lib/utils/platform_url_stub.dart +11 -0
  110. pumaguard-ui/lib/utils/platform_url_web.dart +16 -0
  111. pumaguard-ui/linux/.gitignore +1 -0
  112. pumaguard-ui/linux/CMakeLists.txt +128 -0
  113. pumaguard-ui/linux/flutter/CMakeLists.txt +88 -0
  114. pumaguard-ui/linux/flutter/generated_plugin_registrant.cc +15 -0
  115. pumaguard-ui/linux/flutter/generated_plugin_registrant.h +15 -0
  116. pumaguard-ui/linux/flutter/generated_plugins.cmake +24 -0
  117. pumaguard-ui/linux/runner/CMakeLists.txt +26 -0
  118. pumaguard-ui/linux/runner/main.cc +6 -0
  119. pumaguard-ui/linux/runner/my_application.cc +148 -0
  120. pumaguard-ui/linux/runner/my_application.h +21 -0
  121. pumaguard-ui/macos/.gitignore +7 -0
  122. pumaguard-ui/macos/Flutter/Flutter-Debug.xcconfig +1 -0
  123. pumaguard-ui/macos/Flutter/Flutter-Release.xcconfig +1 -0
  124. pumaguard-ui/macos/Flutter/GeneratedPluginRegistrant.swift +16 -0
  125. pumaguard-ui/macos/Runner/AppDelegate.swift +13 -0
  126. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
  127. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
  128. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
  129. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
  130. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
  131. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
  132. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
  133. pumaguard-ui/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
  134. pumaguard-ui/macos/Runner/Base.lproj/MainMenu.xib +343 -0
  135. pumaguard-ui/macos/Runner/Configs/AppInfo.xcconfig +14 -0
  136. pumaguard-ui/macos/Runner/Configs/Debug.xcconfig +2 -0
  137. pumaguard-ui/macos/Runner/Configs/Release.xcconfig +2 -0
  138. pumaguard-ui/macos/Runner/Configs/Warnings.xcconfig +13 -0
  139. pumaguard-ui/macos/Runner/DebugProfile.entitlements +12 -0
  140. pumaguard-ui/macos/Runner/Info.plist +32 -0
  141. pumaguard-ui/macos/Runner/MainFlutterWindow.swift +15 -0
  142. pumaguard-ui/macos/Runner/Release.entitlements +8 -0
  143. pumaguard-ui/macos/Runner.xcodeproj/project.pbxproj +705 -0
  144. pumaguard-ui/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  145. pumaguard-ui/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +99 -0
  146. pumaguard-ui/macos/Runner.xcworkspace/contents.xcworkspacedata +7 -0
  147. pumaguard-ui/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  148. pumaguard-ui/macos/RunnerTests/RunnerTests.swift +12 -0
  149. pumaguard-ui/pubspec.lock +882 -0
  150. pumaguard-ui/pubspec.yaml +125 -0
  151. pumaguard-ui/test/models/camera_test.dart +515 -0
  152. pumaguard-ui/test/models/plug_test.dart +499 -0
  153. pumaguard-ui/test/models/settings_test.dart +903 -0
  154. pumaguard-ui/test/models/status_test.dart +707 -0
  155. pumaguard-ui/test/screens/image_browser_grouping_test.dart +555 -0
  156. pumaguard-ui/test/services/api_service_cameras_test.dart +580 -0
  157. pumaguard-ui/test/services/api_service_image_browser_test.dart +512 -0
  158. pumaguard-ui/test/widget_test.dart.skip +38 -0
  159. pumaguard-ui/web/favicon.png +0 -0
  160. pumaguard-ui/web/icons/Icon-192.png +0 -0
  161. pumaguard-ui/web/icons/Icon-512.png +0 -0
  162. pumaguard-ui/web/icons/Icon-maskable-192.png +0 -0
  163. pumaguard-ui/web/icons/Icon-maskable-512.png +0 -0
  164. pumaguard-ui/web/index.html +38 -0
  165. pumaguard-ui/web/manifest.json +35 -0
  166. pumaguard-ui/windows/.gitignore +17 -0
  167. pumaguard-ui/windows/CMakeLists.txt +108 -0
  168. pumaguard-ui/windows/flutter/CMakeLists.txt +109 -0
  169. pumaguard-ui/windows/flutter/generated_plugin_registrant.cc +14 -0
  170. pumaguard-ui/windows/flutter/generated_plugin_registrant.h +15 -0
  171. pumaguard-ui/windows/flutter/generated_plugins.cmake +24 -0
  172. pumaguard-ui/windows/runner/CMakeLists.txt +40 -0
  173. pumaguard-ui/windows/runner/Runner.rc +121 -0
  174. pumaguard-ui/windows/runner/flutter_window.cpp +71 -0
  175. pumaguard-ui/windows/runner/flutter_window.h +33 -0
  176. pumaguard-ui/windows/runner/main.cpp +43 -0
  177. pumaguard-ui/windows/runner/resource.h +16 -0
  178. pumaguard-ui/windows/runner/resources/app_icon.ico +0 -0
  179. pumaguard-ui/windows/runner/runner.exe.manifest +14 -0
  180. pumaguard-ui/windows/runner/utils.cpp +65 -0
  181. pumaguard-ui/windows/runner/utils.h +19 -0
  182. pumaguard-ui/windows/runner/win32_window.cpp +288 -0
  183. pumaguard-ui/windows/runner/win32_window.h +102 -0
  184. pumaguard-21.post29.dist-info/RECORD +0 -83
  185. {pumaguard-21.post29.dist-info → pumaguard-21.post83.dist-info}/WHEEL +0 -0
  186. {pumaguard-21.post29.dist-info → pumaguard-21.post83.dist-info}/entry_points.txt +0 -0
  187. {pumaguard-21.post29.dist-info → pumaguard-21.post83.dist-info}/licenses/LICENSE +0 -0
  188. {pumaguard-21.post29.dist-info → pumaguard-21.post83.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,616 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
11
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
12
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
13
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
14
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
15
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
16
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
17
+ /* End PBXBuildFile section */
18
+
19
+ /* Begin PBXContainerItemProxy section */
20
+ 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
21
+ isa = PBXContainerItemProxy;
22
+ containerPortal = 97C146E61CF9000F007C117D /* Project object */;
23
+ proxyType = 1;
24
+ remoteGlobalIDString = 97C146ED1CF9000F007C117D;
25
+ remoteInfo = Runner;
26
+ };
27
+ /* End PBXContainerItemProxy section */
28
+
29
+ /* Begin PBXCopyFilesBuildPhase section */
30
+ 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
31
+ isa = PBXCopyFilesBuildPhase;
32
+ buildActionMask = 2147483647;
33
+ dstPath = "";
34
+ dstSubfolderSpec = 10;
35
+ files = (
36
+ );
37
+ name = "Embed Frameworks";
38
+ runOnlyForDeploymentPostprocessing = 0;
39
+ };
40
+ /* End PBXCopyFilesBuildPhase section */
41
+
42
+ /* Begin PBXFileReference section */
43
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
44
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
45
+ 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
46
+ 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
47
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
48
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
49
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
50
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
51
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
52
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
53
+ 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
54
+ 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
55
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
56
+ 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
57
+ 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
58
+ /* End PBXFileReference section */
59
+
60
+ /* Begin PBXFrameworksBuildPhase section */
61
+ 97C146EB1CF9000F007C117D /* Frameworks */ = {
62
+ isa = PBXFrameworksBuildPhase;
63
+ buildActionMask = 2147483647;
64
+ files = (
65
+ );
66
+ runOnlyForDeploymentPostprocessing = 0;
67
+ };
68
+ /* End PBXFrameworksBuildPhase section */
69
+
70
+ /* Begin PBXGroup section */
71
+ 331C8082294A63A400263BE5 /* RunnerTests */ = {
72
+ isa = PBXGroup;
73
+ children = (
74
+ 331C807B294A618700263BE5 /* RunnerTests.swift */,
75
+ );
76
+ path = RunnerTests;
77
+ sourceTree = "<group>";
78
+ };
79
+ 9740EEB11CF90186004384FC /* Flutter */ = {
80
+ isa = PBXGroup;
81
+ children = (
82
+ 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
83
+ 9740EEB21CF90195004384FC /* Debug.xcconfig */,
84
+ 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
85
+ 9740EEB31CF90195004384FC /* Generated.xcconfig */,
86
+ );
87
+ name = Flutter;
88
+ sourceTree = "<group>";
89
+ };
90
+ 97C146E51CF9000F007C117D = {
91
+ isa = PBXGroup;
92
+ children = (
93
+ 9740EEB11CF90186004384FC /* Flutter */,
94
+ 97C146F01CF9000F007C117D /* Runner */,
95
+ 97C146EF1CF9000F007C117D /* Products */,
96
+ 331C8082294A63A400263BE5 /* RunnerTests */,
97
+ );
98
+ sourceTree = "<group>";
99
+ };
100
+ 97C146EF1CF9000F007C117D /* Products */ = {
101
+ isa = PBXGroup;
102
+ children = (
103
+ 97C146EE1CF9000F007C117D /* Runner.app */,
104
+ 331C8081294A63A400263BE5 /* RunnerTests.xctest */,
105
+ );
106
+ name = Products;
107
+ sourceTree = "<group>";
108
+ };
109
+ 97C146F01CF9000F007C117D /* Runner */ = {
110
+ isa = PBXGroup;
111
+ children = (
112
+ 97C146FA1CF9000F007C117D /* Main.storyboard */,
113
+ 97C146FD1CF9000F007C117D /* Assets.xcassets */,
114
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
115
+ 97C147021CF9000F007C117D /* Info.plist */,
116
+ 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
117
+ 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
118
+ 74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
119
+ 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
120
+ );
121
+ path = Runner;
122
+ sourceTree = "<group>";
123
+ };
124
+ /* End PBXGroup section */
125
+
126
+ /* Begin PBXNativeTarget section */
127
+ 331C8080294A63A400263BE5 /* RunnerTests */ = {
128
+ isa = PBXNativeTarget;
129
+ buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
130
+ buildPhases = (
131
+ 331C807D294A63A400263BE5 /* Sources */,
132
+ 331C807F294A63A400263BE5 /* Resources */,
133
+ );
134
+ buildRules = (
135
+ );
136
+ dependencies = (
137
+ 331C8086294A63A400263BE5 /* PBXTargetDependency */,
138
+ );
139
+ name = RunnerTests;
140
+ productName = RunnerTests;
141
+ productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
142
+ productType = "com.apple.product-type.bundle.unit-test";
143
+ };
144
+ 97C146ED1CF9000F007C117D /* Runner */ = {
145
+ isa = PBXNativeTarget;
146
+ buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
147
+ buildPhases = (
148
+ 9740EEB61CF901F6004384FC /* Run Script */,
149
+ 97C146EA1CF9000F007C117D /* Sources */,
150
+ 97C146EB1CF9000F007C117D /* Frameworks */,
151
+ 97C146EC1CF9000F007C117D /* Resources */,
152
+ 9705A1C41CF9048500538489 /* Embed Frameworks */,
153
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
154
+ );
155
+ buildRules = (
156
+ );
157
+ dependencies = (
158
+ );
159
+ name = Runner;
160
+ productName = Runner;
161
+ productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
162
+ productType = "com.apple.product-type.application";
163
+ };
164
+ /* End PBXNativeTarget section */
165
+
166
+ /* Begin PBXProject section */
167
+ 97C146E61CF9000F007C117D /* Project object */ = {
168
+ isa = PBXProject;
169
+ attributes = {
170
+ BuildIndependentTargetsInParallel = YES;
171
+ LastUpgradeCheck = 1510;
172
+ ORGANIZATIONNAME = "";
173
+ TargetAttributes = {
174
+ 331C8080294A63A400263BE5 = {
175
+ CreatedOnToolsVersion = 14.0;
176
+ TestTargetID = 97C146ED1CF9000F007C117D;
177
+ };
178
+ 97C146ED1CF9000F007C117D = {
179
+ CreatedOnToolsVersion = 7.3.1;
180
+ LastSwiftMigration = 1100;
181
+ };
182
+ };
183
+ };
184
+ buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
185
+ compatibilityVersion = "Xcode 9.3";
186
+ developmentRegion = en;
187
+ hasScannedForEncodings = 0;
188
+ knownRegions = (
189
+ en,
190
+ Base,
191
+ );
192
+ mainGroup = 97C146E51CF9000F007C117D;
193
+ productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
194
+ projectDirPath = "";
195
+ projectRoot = "";
196
+ targets = (
197
+ 97C146ED1CF9000F007C117D /* Runner */,
198
+ 331C8080294A63A400263BE5 /* RunnerTests */,
199
+ );
200
+ };
201
+ /* End PBXProject section */
202
+
203
+ /* Begin PBXResourcesBuildPhase section */
204
+ 331C807F294A63A400263BE5 /* Resources */ = {
205
+ isa = PBXResourcesBuildPhase;
206
+ buildActionMask = 2147483647;
207
+ files = (
208
+ );
209
+ runOnlyForDeploymentPostprocessing = 0;
210
+ };
211
+ 97C146EC1CF9000F007C117D /* Resources */ = {
212
+ isa = PBXResourcesBuildPhase;
213
+ buildActionMask = 2147483647;
214
+ files = (
215
+ 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
216
+ 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
217
+ 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
218
+ 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
219
+ );
220
+ runOnlyForDeploymentPostprocessing = 0;
221
+ };
222
+ /* End PBXResourcesBuildPhase section */
223
+
224
+ /* Begin PBXShellScriptBuildPhase section */
225
+ 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
226
+ isa = PBXShellScriptBuildPhase;
227
+ alwaysOutOfDate = 1;
228
+ buildActionMask = 2147483647;
229
+ files = (
230
+ );
231
+ inputPaths = (
232
+ "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
233
+ );
234
+ name = "Thin Binary";
235
+ outputPaths = (
236
+ );
237
+ runOnlyForDeploymentPostprocessing = 0;
238
+ shellPath = /bin/sh;
239
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
240
+ };
241
+ 9740EEB61CF901F6004384FC /* Run Script */ = {
242
+ isa = PBXShellScriptBuildPhase;
243
+ alwaysOutOfDate = 1;
244
+ buildActionMask = 2147483647;
245
+ files = (
246
+ );
247
+ inputPaths = (
248
+ );
249
+ name = "Run Script";
250
+ outputPaths = (
251
+ );
252
+ runOnlyForDeploymentPostprocessing = 0;
253
+ shellPath = /bin/sh;
254
+ shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
255
+ };
256
+ /* End PBXShellScriptBuildPhase section */
257
+
258
+ /* Begin PBXSourcesBuildPhase section */
259
+ 331C807D294A63A400263BE5 /* Sources */ = {
260
+ isa = PBXSourcesBuildPhase;
261
+ buildActionMask = 2147483647;
262
+ files = (
263
+ 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
264
+ );
265
+ runOnlyForDeploymentPostprocessing = 0;
266
+ };
267
+ 97C146EA1CF9000F007C117D /* Sources */ = {
268
+ isa = PBXSourcesBuildPhase;
269
+ buildActionMask = 2147483647;
270
+ files = (
271
+ 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
272
+ 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
273
+ );
274
+ runOnlyForDeploymentPostprocessing = 0;
275
+ };
276
+ /* End PBXSourcesBuildPhase section */
277
+
278
+ /* Begin PBXTargetDependency section */
279
+ 331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
280
+ isa = PBXTargetDependency;
281
+ target = 97C146ED1CF9000F007C117D /* Runner */;
282
+ targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
283
+ };
284
+ /* End PBXTargetDependency section */
285
+
286
+ /* Begin PBXVariantGroup section */
287
+ 97C146FA1CF9000F007C117D /* Main.storyboard */ = {
288
+ isa = PBXVariantGroup;
289
+ children = (
290
+ 97C146FB1CF9000F007C117D /* Base */,
291
+ );
292
+ name = Main.storyboard;
293
+ sourceTree = "<group>";
294
+ };
295
+ 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
296
+ isa = PBXVariantGroup;
297
+ children = (
298
+ 97C147001CF9000F007C117D /* Base */,
299
+ );
300
+ name = LaunchScreen.storyboard;
301
+ sourceTree = "<group>";
302
+ };
303
+ /* End PBXVariantGroup section */
304
+
305
+ /* Begin XCBuildConfiguration section */
306
+ 249021D3217E4FDB00AE95B9 /* Profile */ = {
307
+ isa = XCBuildConfiguration;
308
+ buildSettings = {
309
+ ALWAYS_SEARCH_USER_PATHS = NO;
310
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
311
+ CLANG_ANALYZER_NONNULL = YES;
312
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
313
+ CLANG_CXX_LIBRARY = "libc++";
314
+ CLANG_ENABLE_MODULES = YES;
315
+ CLANG_ENABLE_OBJC_ARC = YES;
316
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
317
+ CLANG_WARN_BOOL_CONVERSION = YES;
318
+ CLANG_WARN_COMMA = YES;
319
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
320
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
321
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
322
+ CLANG_WARN_EMPTY_BODY = YES;
323
+ CLANG_WARN_ENUM_CONVERSION = YES;
324
+ CLANG_WARN_INFINITE_RECURSION = YES;
325
+ CLANG_WARN_INT_CONVERSION = YES;
326
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
327
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
328
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
329
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
330
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
331
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
332
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
333
+ CLANG_WARN_UNREACHABLE_CODE = YES;
334
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
335
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
336
+ COPY_PHASE_STRIP = NO;
337
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
338
+ ENABLE_NS_ASSERTIONS = NO;
339
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
340
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
341
+ GCC_C_LANGUAGE_STANDARD = gnu99;
342
+ GCC_NO_COMMON_BLOCKS = YES;
343
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
344
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
345
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
346
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
347
+ GCC_WARN_UNUSED_FUNCTION = YES;
348
+ GCC_WARN_UNUSED_VARIABLE = YES;
349
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
350
+ MTL_ENABLE_DEBUG_INFO = NO;
351
+ SDKROOT = iphoneos;
352
+ SUPPORTED_PLATFORMS = iphoneos;
353
+ TARGETED_DEVICE_FAMILY = "1,2";
354
+ VALIDATE_PRODUCT = YES;
355
+ };
356
+ name = Profile;
357
+ };
358
+ 249021D4217E4FDB00AE95B9 /* Profile */ = {
359
+ isa = XCBuildConfiguration;
360
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
361
+ buildSettings = {
362
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
363
+ CLANG_ENABLE_MODULES = YES;
364
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
365
+ ENABLE_BITCODE = NO;
366
+ INFOPLIST_FILE = Runner/Info.plist;
367
+ LD_RUNPATH_SEARCH_PATHS = (
368
+ "$(inherited)",
369
+ "@executable_path/Frameworks",
370
+ );
371
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.pumaguardUi;
372
+ PRODUCT_NAME = "$(TARGET_NAME)";
373
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
374
+ SWIFT_VERSION = 5.0;
375
+ VERSIONING_SYSTEM = "apple-generic";
376
+ };
377
+ name = Profile;
378
+ };
379
+ 331C8088294A63A400263BE5 /* Debug */ = {
380
+ isa = XCBuildConfiguration;
381
+ buildSettings = {
382
+ BUNDLE_LOADER = "$(TEST_HOST)";
383
+ CODE_SIGN_STYLE = Automatic;
384
+ CURRENT_PROJECT_VERSION = 1;
385
+ GENERATE_INFOPLIST_FILE = YES;
386
+ MARKETING_VERSION = 1.0;
387
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.pumaguardUi.RunnerTests;
388
+ PRODUCT_NAME = "$(TARGET_NAME)";
389
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
390
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
391
+ SWIFT_VERSION = 5.0;
392
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
393
+ };
394
+ name = Debug;
395
+ };
396
+ 331C8089294A63A400263BE5 /* Release */ = {
397
+ isa = XCBuildConfiguration;
398
+ buildSettings = {
399
+ BUNDLE_LOADER = "$(TEST_HOST)";
400
+ CODE_SIGN_STYLE = Automatic;
401
+ CURRENT_PROJECT_VERSION = 1;
402
+ GENERATE_INFOPLIST_FILE = YES;
403
+ MARKETING_VERSION = 1.0;
404
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.pumaguardUi.RunnerTests;
405
+ PRODUCT_NAME = "$(TARGET_NAME)";
406
+ SWIFT_VERSION = 5.0;
407
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
408
+ };
409
+ name = Release;
410
+ };
411
+ 331C808A294A63A400263BE5 /* Profile */ = {
412
+ isa = XCBuildConfiguration;
413
+ buildSettings = {
414
+ BUNDLE_LOADER = "$(TEST_HOST)";
415
+ CODE_SIGN_STYLE = Automatic;
416
+ CURRENT_PROJECT_VERSION = 1;
417
+ GENERATE_INFOPLIST_FILE = YES;
418
+ MARKETING_VERSION = 1.0;
419
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.pumaguardUi.RunnerTests;
420
+ PRODUCT_NAME = "$(TARGET_NAME)";
421
+ SWIFT_VERSION = 5.0;
422
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
423
+ };
424
+ name = Profile;
425
+ };
426
+ 97C147031CF9000F007C117D /* Debug */ = {
427
+ isa = XCBuildConfiguration;
428
+ buildSettings = {
429
+ ALWAYS_SEARCH_USER_PATHS = NO;
430
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
431
+ CLANG_ANALYZER_NONNULL = YES;
432
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
433
+ CLANG_CXX_LIBRARY = "libc++";
434
+ CLANG_ENABLE_MODULES = YES;
435
+ CLANG_ENABLE_OBJC_ARC = YES;
436
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
437
+ CLANG_WARN_BOOL_CONVERSION = YES;
438
+ CLANG_WARN_COMMA = YES;
439
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
440
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
441
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
442
+ CLANG_WARN_EMPTY_BODY = YES;
443
+ CLANG_WARN_ENUM_CONVERSION = YES;
444
+ CLANG_WARN_INFINITE_RECURSION = YES;
445
+ CLANG_WARN_INT_CONVERSION = YES;
446
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
447
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
448
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
449
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
450
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
451
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
452
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
453
+ CLANG_WARN_UNREACHABLE_CODE = YES;
454
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
455
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
456
+ COPY_PHASE_STRIP = NO;
457
+ DEBUG_INFORMATION_FORMAT = dwarf;
458
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
459
+ ENABLE_TESTABILITY = YES;
460
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
461
+ GCC_C_LANGUAGE_STANDARD = gnu99;
462
+ GCC_DYNAMIC_NO_PIC = NO;
463
+ GCC_NO_COMMON_BLOCKS = YES;
464
+ GCC_OPTIMIZATION_LEVEL = 0;
465
+ GCC_PREPROCESSOR_DEFINITIONS = (
466
+ "DEBUG=1",
467
+ "$(inherited)",
468
+ );
469
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
470
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
471
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
472
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
473
+ GCC_WARN_UNUSED_FUNCTION = YES;
474
+ GCC_WARN_UNUSED_VARIABLE = YES;
475
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
476
+ MTL_ENABLE_DEBUG_INFO = YES;
477
+ ONLY_ACTIVE_ARCH = YES;
478
+ SDKROOT = iphoneos;
479
+ TARGETED_DEVICE_FAMILY = "1,2";
480
+ };
481
+ name = Debug;
482
+ };
483
+ 97C147041CF9000F007C117D /* Release */ = {
484
+ isa = XCBuildConfiguration;
485
+ buildSettings = {
486
+ ALWAYS_SEARCH_USER_PATHS = NO;
487
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
488
+ CLANG_ANALYZER_NONNULL = YES;
489
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
490
+ CLANG_CXX_LIBRARY = "libc++";
491
+ CLANG_ENABLE_MODULES = YES;
492
+ CLANG_ENABLE_OBJC_ARC = YES;
493
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
494
+ CLANG_WARN_BOOL_CONVERSION = YES;
495
+ CLANG_WARN_COMMA = YES;
496
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
497
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
498
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
499
+ CLANG_WARN_EMPTY_BODY = YES;
500
+ CLANG_WARN_ENUM_CONVERSION = YES;
501
+ CLANG_WARN_INFINITE_RECURSION = YES;
502
+ CLANG_WARN_INT_CONVERSION = YES;
503
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
504
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
505
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
506
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
507
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
508
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
509
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
510
+ CLANG_WARN_UNREACHABLE_CODE = YES;
511
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
512
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
513
+ COPY_PHASE_STRIP = NO;
514
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
515
+ ENABLE_NS_ASSERTIONS = NO;
516
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
517
+ ENABLE_USER_SCRIPT_SANDBOXING = NO;
518
+ GCC_C_LANGUAGE_STANDARD = gnu99;
519
+ GCC_NO_COMMON_BLOCKS = YES;
520
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
521
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
522
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
523
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
524
+ GCC_WARN_UNUSED_FUNCTION = YES;
525
+ GCC_WARN_UNUSED_VARIABLE = YES;
526
+ IPHONEOS_DEPLOYMENT_TARGET = 13.0;
527
+ MTL_ENABLE_DEBUG_INFO = NO;
528
+ SDKROOT = iphoneos;
529
+ SUPPORTED_PLATFORMS = iphoneos;
530
+ SWIFT_COMPILATION_MODE = wholemodule;
531
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
532
+ TARGETED_DEVICE_FAMILY = "1,2";
533
+ VALIDATE_PRODUCT = YES;
534
+ };
535
+ name = Release;
536
+ };
537
+ 97C147061CF9000F007C117D /* Debug */ = {
538
+ isa = XCBuildConfiguration;
539
+ baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
540
+ buildSettings = {
541
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
542
+ CLANG_ENABLE_MODULES = YES;
543
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
544
+ ENABLE_BITCODE = NO;
545
+ INFOPLIST_FILE = Runner/Info.plist;
546
+ LD_RUNPATH_SEARCH_PATHS = (
547
+ "$(inherited)",
548
+ "@executable_path/Frameworks",
549
+ );
550
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.pumaguardUi;
551
+ PRODUCT_NAME = "$(TARGET_NAME)";
552
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
553
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
554
+ SWIFT_VERSION = 5.0;
555
+ VERSIONING_SYSTEM = "apple-generic";
556
+ };
557
+ name = Debug;
558
+ };
559
+ 97C147071CF9000F007C117D /* Release */ = {
560
+ isa = XCBuildConfiguration;
561
+ baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
562
+ buildSettings = {
563
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
564
+ CLANG_ENABLE_MODULES = YES;
565
+ CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
566
+ ENABLE_BITCODE = NO;
567
+ INFOPLIST_FILE = Runner/Info.plist;
568
+ LD_RUNPATH_SEARCH_PATHS = (
569
+ "$(inherited)",
570
+ "@executable_path/Frameworks",
571
+ );
572
+ PRODUCT_BUNDLE_IDENTIFIER = com.example.pumaguardUi;
573
+ PRODUCT_NAME = "$(TARGET_NAME)";
574
+ SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
575
+ SWIFT_VERSION = 5.0;
576
+ VERSIONING_SYSTEM = "apple-generic";
577
+ };
578
+ name = Release;
579
+ };
580
+ /* End XCBuildConfiguration section */
581
+
582
+ /* Begin XCConfigurationList section */
583
+ 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
584
+ isa = XCConfigurationList;
585
+ buildConfigurations = (
586
+ 331C8088294A63A400263BE5 /* Debug */,
587
+ 331C8089294A63A400263BE5 /* Release */,
588
+ 331C808A294A63A400263BE5 /* Profile */,
589
+ );
590
+ defaultConfigurationIsVisible = 0;
591
+ defaultConfigurationName = Release;
592
+ };
593
+ 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
594
+ isa = XCConfigurationList;
595
+ buildConfigurations = (
596
+ 97C147031CF9000F007C117D /* Debug */,
597
+ 97C147041CF9000F007C117D /* Release */,
598
+ 249021D3217E4FDB00AE95B9 /* Profile */,
599
+ );
600
+ defaultConfigurationIsVisible = 0;
601
+ defaultConfigurationName = Release;
602
+ };
603
+ 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
604
+ isa = XCConfigurationList;
605
+ buildConfigurations = (
606
+ 97C147061CF9000F007C117D /* Debug */,
607
+ 97C147071CF9000F007C117D /* Release */,
608
+ 249021D4217E4FDB00AE95B9 /* Profile */,
609
+ );
610
+ defaultConfigurationIsVisible = 0;
611
+ defaultConfigurationName = Release;
612
+ };
613
+ /* End XCConfigurationList section */
614
+ };
615
+ rootObject = 97C146E61CF9000F007C117D /* Project object */;
616
+ }
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,8 @@
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>IDEDidComputeMac32BitWarning</key>
6
+ <true/>
7
+ </dict>
8
+ </plist>
@@ -0,0 +1,8 @@
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>PreviewsEnabled</key>
6
+ <false/>
7
+ </dict>
8
+ </plist>