@sentry/wizard 3.39.0 → 3.41.0

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 (221) hide show
  1. package/CHANGELOG.md +12 -1
  2. package/README.md +21 -21
  3. package/bin.ts +5 -0
  4. package/codecov.yml +15 -0
  5. package/dist/bin.js +4 -0
  6. package/dist/bin.js.map +1 -1
  7. package/dist/e2e-tests/jest.config.d.ts +1 -0
  8. package/dist/e2e-tests/jest.config.js +1 -0
  9. package/dist/e2e-tests/jest.config.js.map +1 -1
  10. package/dist/e2e-tests/tests/flutter.test.d.ts +1 -0
  11. package/dist/e2e-tests/tests/flutter.test.js +190 -0
  12. package/dist/e2e-tests/tests/flutter.test.js.map +1 -0
  13. package/dist/e2e-tests/utils/index.d.ts +11 -0
  14. package/dist/e2e-tests/utils/index.js +36 -1
  15. package/dist/e2e-tests/utils/index.js.map +1 -1
  16. package/dist/lib/Constants.d.ts +1 -0
  17. package/dist/lib/Constants.js +5 -0
  18. package/dist/lib/Constants.js.map +1 -1
  19. package/dist/package.json +3 -2
  20. package/dist/src/apple/apple-wizard.js +2 -3
  21. package/dist/src/apple/apple-wizard.js.map +1 -1
  22. package/dist/src/apple/code-tools.d.ts +10 -0
  23. package/dist/src/apple/code-tools.js +16 -12
  24. package/dist/src/apple/code-tools.js.map +1 -1
  25. package/dist/src/apple/fastlane.d.ts +23 -0
  26. package/dist/src/apple/fastlane.js +11 -7
  27. package/dist/src/apple/fastlane.js.map +1 -1
  28. package/dist/src/apple/templates.d.ts +1 -1
  29. package/dist/src/apple/templates.js +0 -2
  30. package/dist/src/apple/templates.js.map +1 -1
  31. package/dist/src/apple/xcode-manager.d.ts +13 -9
  32. package/dist/src/apple/xcode-manager.js +146 -61
  33. package/dist/src/apple/xcode-manager.js.map +1 -1
  34. package/dist/src/flutter/code-tools.d.ts +17 -0
  35. package/dist/src/flutter/code-tools.js +263 -0
  36. package/dist/src/flutter/code-tools.js.map +1 -0
  37. package/dist/src/flutter/flutter-wizard.d.ts +2 -0
  38. package/dist/src/flutter/flutter-wizard.js +171 -0
  39. package/dist/src/flutter/flutter-wizard.js.map +1 -0
  40. package/dist/src/flutter/templates.d.ts +9 -0
  41. package/dist/src/flutter/templates.js +40 -0
  42. package/dist/src/flutter/templates.js.map +1 -0
  43. package/dist/src/nextjs/nextjs-wizard.js +5 -3
  44. package/dist/src/nextjs/nextjs-wizard.js.map +1 -1
  45. package/dist/src/nuxt/nuxt-wizard.js +6 -4
  46. package/dist/src/nuxt/nuxt-wizard.js.map +1 -1
  47. package/dist/src/nuxt/sdk-setup.d.ts +1 -1
  48. package/dist/src/nuxt/sdk-setup.js +2 -1
  49. package/dist/src/nuxt/sdk-setup.js.map +1 -1
  50. package/dist/src/react-native/react-native-wizard.js +5 -3
  51. package/dist/src/react-native/react-native-wizard.js.map +1 -1
  52. package/dist/src/remix/remix-wizard.js +5 -3
  53. package/dist/src/remix/remix-wizard.js.map +1 -1
  54. package/dist/src/run.d.ts +2 -1
  55. package/dist/src/run.js +40 -32
  56. package/dist/src/run.js.map +1 -1
  57. package/dist/src/sveltekit/sveltekit-wizard.js +5 -3
  58. package/dist/src/sveltekit/sveltekit-wizard.js.map +1 -1
  59. package/dist/src/utils/clack-utils.d.ts +4 -2
  60. package/dist/src/utils/clack-utils.js +18 -12
  61. package/dist/src/utils/clack-utils.js.map +1 -1
  62. package/dist/src/utils/package-manager.d.ts +1 -0
  63. package/dist/src/utils/package-manager.js +5 -0
  64. package/dist/src/utils/package-manager.js.map +1 -1
  65. package/dist/src/utils/types.d.ts +9 -0
  66. package/dist/src/utils/types.js.map +1 -1
  67. package/dist/test/apple/cocoapod.test.d.ts +1 -0
  68. package/dist/test/apple/cocoapod.test.js +409 -0
  69. package/dist/test/apple/cocoapod.test.js.map +1 -0
  70. package/dist/test/apple/code-tools.test.d.ts +1 -0
  71. package/dist/test/apple/code-tools.test.js +673 -0
  72. package/dist/test/apple/code-tools.test.js.map +1 -0
  73. package/dist/test/apple/fastfile.test.d.ts +1 -0
  74. package/dist/test/apple/fastfile.test.js +431 -0
  75. package/dist/test/apple/fastfile.test.js.map +1 -0
  76. package/dist/test/apple/templates.test.d.ts +1 -0
  77. package/dist/test/apple/templates.test.js +73 -0
  78. package/dist/test/apple/templates.test.js.map +1 -0
  79. package/dist/test/apple/xcode-manager.test.d.ts +1 -0
  80. package/dist/test/apple/xcode-manager.test.js +834 -0
  81. package/dist/test/apple/xcode-manager.test.js.map +1 -0
  82. package/dist/test/flutter/code-tools.test.d.ts +1 -0
  83. package/dist/test/flutter/code-tools.test.js +84 -0
  84. package/dist/test/flutter/code-tools.test.js.map +1 -0
  85. package/dist/test/flutter/templates.test.d.ts +1 -0
  86. package/dist/test/flutter/templates.test.js +41 -0
  87. package/dist/test/flutter/templates.test.js.map +1 -0
  88. package/dist/test/utils/clack-utils.test.js +89 -0
  89. package/dist/test/utils/clack-utils.test.js.map +1 -1
  90. package/e2e-tests/README.md +5 -1
  91. package/e2e-tests/jest.config.ts +1 -0
  92. package/e2e-tests/test-applications/apple/damaged-missing-configuration-list/Project.xcodeproj/project.pbxproj +52 -0
  93. package/e2e-tests/test-applications/apple/damaged-missing-configuration-list/Project.xcodeproj/xcshareddata/xcschemes/Project1.xcscheme +78 -0
  94. package/e2e-tests/test-applications/apple/no-targets/Project.xcodeproj/project.pbxproj +62 -0
  95. package/e2e-tests/test-applications/apple/no-targets/Project.xcodeproj/xcshareddata/xcschemes/Project1.xcscheme +78 -0
  96. package/e2e-tests/test-applications/apple/spm-swiftui-multi-targets/Project.xcodeproj/project.pbxproj +470 -0
  97. package/e2e-tests/test-applications/apple/spm-swiftui-multi-targets/Project.xcodeproj/xcshareddata/xcschemes/Project1.xcscheme +78 -0
  98. package/e2e-tests/test-applications/apple/spm-swiftui-multi-targets/Project1/ContentView.swift +7 -0
  99. package/e2e-tests/test-applications/apple/spm-swiftui-multi-targets/Project1/Project1App.swift +10 -0
  100. package/e2e-tests/test-applications/apple/spm-swiftui-multi-targets/Project2/ContentView.swift +7 -0
  101. package/e2e-tests/test-applications/apple/spm-swiftui-multi-targets/Project2/Project2App.swift +10 -0
  102. package/e2e-tests/test-applications/apple/spm-swiftui-single-target/Project.xcodeproj/project.pbxproj +382 -0
  103. package/e2e-tests/test-applications/apple/spm-swiftui-single-target/Project.xcodeproj/xcshareddata/xcschemes/Project.xcscheme +78 -0
  104. package/e2e-tests/test-applications/apple/spm-swiftui-single-target/Sources/ContentView.swift +7 -0
  105. package/e2e-tests/test-applications/apple/spm-swiftui-single-target/Sources/MainApp.swift +10 -0
  106. package/e2e-tests/test-applications/flutter-test-app/.metadata +45 -0
  107. package/e2e-tests/test-applications/flutter-test-app/README.md +16 -0
  108. package/e2e-tests/test-applications/flutter-test-app/analysis_options.yaml +28 -0
  109. package/e2e-tests/test-applications/flutter-test-app/android/app/build.gradle +44 -0
  110. package/e2e-tests/test-applications/flutter-test-app/android/app/src/debug/AndroidManifest.xml +7 -0
  111. package/e2e-tests/test-applications/flutter-test-app/android/app/src/main/AndroidManifest.xml +45 -0
  112. package/e2e-tests/test-applications/flutter-test-app/android/app/src/main/kotlin/com/example/flutter_magic/MainActivity.kt +5 -0
  113. package/e2e-tests/test-applications/flutter-test-app/android/app/src/main/res/drawable/launch_background.xml +12 -0
  114. package/e2e-tests/test-applications/flutter-test-app/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
  115. package/e2e-tests/test-applications/flutter-test-app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  116. package/e2e-tests/test-applications/flutter-test-app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  117. package/e2e-tests/test-applications/flutter-test-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  118. package/e2e-tests/test-applications/flutter-test-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  119. package/e2e-tests/test-applications/flutter-test-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  120. package/e2e-tests/test-applications/flutter-test-app/android/app/src/main/res/values/styles.xml +18 -0
  121. package/e2e-tests/test-applications/flutter-test-app/android/app/src/main/res/values-night/styles.xml +18 -0
  122. package/e2e-tests/test-applications/flutter-test-app/android/app/src/profile/AndroidManifest.xml +7 -0
  123. package/e2e-tests/test-applications/flutter-test-app/android/build.gradle +18 -0
  124. package/e2e-tests/test-applications/flutter-test-app/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  125. package/e2e-tests/test-applications/flutter-test-app/android/gradle.properties +3 -0
  126. package/e2e-tests/test-applications/flutter-test-app/android/settings.gradle +25 -0
  127. package/e2e-tests/test-applications/flutter-test-app/lib/main.dart +125 -0
  128. package/e2e-tests/test-applications/flutter-test-app/linux/CMakeLists.txt +145 -0
  129. package/e2e-tests/test-applications/flutter-test-app/linux/flutter/CMakeLists.txt +88 -0
  130. package/e2e-tests/test-applications/flutter-test-app/linux/flutter/generated_plugin_registrant.cc +11 -0
  131. package/e2e-tests/test-applications/flutter-test-app/linux/flutter/generated_plugin_registrant.h +15 -0
  132. package/e2e-tests/test-applications/flutter-test-app/linux/flutter/generated_plugins.cmake +23 -0
  133. package/e2e-tests/test-applications/flutter-test-app/linux/main.cc +6 -0
  134. package/e2e-tests/test-applications/flutter-test-app/linux/my_application.cc +124 -0
  135. package/e2e-tests/test-applications/flutter-test-app/linux/my_application.h +18 -0
  136. package/e2e-tests/test-applications/flutter-test-app/macos/Flutter/Flutter-Debug.xcconfig +2 -0
  137. package/e2e-tests/test-applications/flutter-test-app/macos/Flutter/Flutter-Release.xcconfig +2 -0
  138. package/e2e-tests/test-applications/flutter-test-app/macos/Flutter/GeneratedPluginRegistrant.swift +10 -0
  139. package/e2e-tests/test-applications/flutter-test-app/macos/Podfile +43 -0
  140. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/AppDelegate.swift +9 -0
  141. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
  142. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
  143. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
  144. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
  145. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
  146. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
  147. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
  148. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
  149. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Base.lproj/MainMenu.xib +343 -0
  150. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Configs/AppInfo.xcconfig +14 -0
  151. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Configs/Debug.xcconfig +2 -0
  152. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Configs/Release.xcconfig +2 -0
  153. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Configs/Warnings.xcconfig +13 -0
  154. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/DebugProfile.entitlements +12 -0
  155. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Info.plist +32 -0
  156. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/MainFlutterWindow.swift +15 -0
  157. package/e2e-tests/test-applications/flutter-test-app/macos/Runner/Release.entitlements +8 -0
  158. package/e2e-tests/test-applications/flutter-test-app/macos/Runner.xcodeproj/project.pbxproj +705 -0
  159. package/e2e-tests/test-applications/flutter-test-app/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  160. package/e2e-tests/test-applications/flutter-test-app/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +98 -0
  161. package/e2e-tests/test-applications/flutter-test-app/macos/Runner.xcworkspace/contents.xcworkspacedata +7 -0
  162. package/e2e-tests/test-applications/flutter-test-app/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  163. package/e2e-tests/test-applications/flutter-test-app/macos/RunnerTests/RunnerTests.swift +12 -0
  164. package/e2e-tests/test-applications/flutter-test-app/pubspec.lock +213 -0
  165. package/e2e-tests/test-applications/flutter-test-app/pubspec.yaml +89 -0
  166. package/e2e-tests/test-applications/flutter-test-app/test/widget_test.dart +30 -0
  167. package/e2e-tests/test-applications/flutter-test-app/web/favicon.png +0 -0
  168. package/e2e-tests/test-applications/flutter-test-app/web/icons/Icon-192.png +0 -0
  169. package/e2e-tests/test-applications/flutter-test-app/web/icons/Icon-512.png +0 -0
  170. package/e2e-tests/test-applications/flutter-test-app/web/icons/Icon-maskable-192.png +0 -0
  171. package/e2e-tests/test-applications/flutter-test-app/web/icons/Icon-maskable-512.png +0 -0
  172. package/e2e-tests/test-applications/flutter-test-app/web/index.html +38 -0
  173. package/e2e-tests/test-applications/flutter-test-app/web/manifest.json +35 -0
  174. package/e2e-tests/test-applications/flutter-test-app/windows/CMakeLists.txt +108 -0
  175. package/e2e-tests/test-applications/flutter-test-app/windows/flutter/CMakeLists.txt +109 -0
  176. package/e2e-tests/test-applications/flutter-test-app/windows/flutter/generated_plugin_registrant.cc +11 -0
  177. package/e2e-tests/test-applications/flutter-test-app/windows/flutter/generated_plugin_registrant.h +15 -0
  178. package/e2e-tests/test-applications/flutter-test-app/windows/flutter/generated_plugins.cmake +23 -0
  179. package/e2e-tests/test-applications/flutter-test-app/windows/runner/CMakeLists.txt +40 -0
  180. package/e2e-tests/test-applications/flutter-test-app/windows/runner/Runner.rc +121 -0
  181. package/e2e-tests/test-applications/flutter-test-app/windows/runner/flutter_window.cpp +71 -0
  182. package/e2e-tests/test-applications/flutter-test-app/windows/runner/flutter_window.h +33 -0
  183. package/e2e-tests/test-applications/flutter-test-app/windows/runner/main.cpp +43 -0
  184. package/e2e-tests/test-applications/flutter-test-app/windows/runner/resource.h +16 -0
  185. package/e2e-tests/test-applications/flutter-test-app/windows/runner/resources/app_icon.ico +0 -0
  186. package/e2e-tests/test-applications/flutter-test-app/windows/runner/runner.exe.manifest +14 -0
  187. package/e2e-tests/test-applications/flutter-test-app/windows/runner/utils.cpp +65 -0
  188. package/e2e-tests/test-applications/flutter-test-app/windows/runner/utils.h +19 -0
  189. package/e2e-tests/test-applications/flutter-test-app/windows/runner/win32_window.cpp +288 -0
  190. package/e2e-tests/test-applications/flutter-test-app/windows/runner/win32_window.h +102 -0
  191. package/e2e-tests/tests/flutter.test.ts +127 -0
  192. package/e2e-tests/utils/index.ts +33 -0
  193. package/lib/Constants.ts +5 -0
  194. package/package.json +3 -2
  195. package/src/apple/apple-wizard.ts +2 -3
  196. package/src/apple/code-tools.ts +21 -6
  197. package/src/apple/fastlane.ts +18 -2
  198. package/src/apple/templates.ts +2 -2
  199. package/src/apple/xcode-manager.ts +186 -99
  200. package/src/flutter/code-tools.ts +284 -0
  201. package/src/flutter/flutter-wizard.ts +164 -0
  202. package/src/flutter/templates.ts +90 -0
  203. package/src/nextjs/nextjs-wizard.ts +5 -2
  204. package/src/nuxt/nuxt-wizard.ts +6 -3
  205. package/src/nuxt/sdk-setup.ts +2 -0
  206. package/src/react-native/react-native-wizard.ts +5 -2
  207. package/src/remix/remix-wizard.ts +5 -2
  208. package/src/run.ts +9 -0
  209. package/src/sveltekit/sveltekit-wizard.ts +5 -2
  210. package/src/utils/clack-utils.ts +16 -4
  211. package/src/utils/package-manager.ts +6 -0
  212. package/src/utils/types.ts +10 -0
  213. package/test/apple/cocoapod.test.ts +306 -0
  214. package/test/apple/code-tools.test.ts +1042 -0
  215. package/test/apple/fastfile.test.ts +550 -0
  216. package/test/apple/templates.test.ts +191 -0
  217. package/test/apple/xcode-manager.test.ts +1066 -0
  218. package/test/flutter/code-tools.test.ts +212 -0
  219. package/test/flutter/templates.test.ts +100 -0
  220. package/test/utils/clack-utils.test.ts +92 -0
  221. package/types/xcode.d.ts +526 -0
@@ -0,0 +1,78 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "1620"
4
+ version = "1.7">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES"
8
+ buildArchitectures = "Automatic">
9
+ <BuildActionEntries>
10
+ <BuildActionEntry
11
+ buildForTesting = "YES"
12
+ buildForRunning = "YES"
13
+ buildForProfiling = "YES"
14
+ buildForArchiving = "YES"
15
+ buildForAnalyzing = "YES">
16
+ <BuildableReference
17
+ BuildableIdentifier = "primary"
18
+ BlueprintIdentifier = "D4E604CC2D50CEEC00CAB00F"
19
+ BuildableName = "Project1.app"
20
+ BlueprintName = "Project1"
21
+ ReferencedContainer = "container:Project.xcodeproj">
22
+ </BuildableReference>
23
+ </BuildActionEntry>
24
+ </BuildActionEntries>
25
+ </BuildAction>
26
+ <TestAction
27
+ buildConfiguration = "Debug"
28
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
29
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
30
+ shouldUseLaunchSchemeArgsEnv = "YES"
31
+ shouldAutocreateTestPlan = "YES">
32
+ </TestAction>
33
+ <LaunchAction
34
+ buildConfiguration = "Debug"
35
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37
+ launchStyle = "0"
38
+ useCustomWorkingDirectory = "NO"
39
+ ignoresPersistentStateOnLaunch = "NO"
40
+ debugDocumentVersioning = "YES"
41
+ debugServiceExtension = "internal"
42
+ allowLocationSimulation = "YES">
43
+ <BuildableProductRunnable
44
+ runnableDebuggingMode = "0">
45
+ <BuildableReference
46
+ BuildableIdentifier = "primary"
47
+ BlueprintIdentifier = "D4E604CC2D50CEEC00CAB00F"
48
+ BuildableName = "Project1.app"
49
+ BlueprintName = "Project1"
50
+ ReferencedContainer = "container:Project.xcodeproj">
51
+ </BuildableReference>
52
+ </BuildableProductRunnable>
53
+ </LaunchAction>
54
+ <ProfileAction
55
+ buildConfiguration = "Release"
56
+ shouldUseLaunchSchemeArgsEnv = "YES"
57
+ savedToolIdentifier = ""
58
+ useCustomWorkingDirectory = "NO"
59
+ debugDocumentVersioning = "YES">
60
+ <BuildableProductRunnable
61
+ runnableDebuggingMode = "0">
62
+ <BuildableReference
63
+ BuildableIdentifier = "primary"
64
+ BlueprintIdentifier = "D4E604CC2D50CEEC00CAB00F"
65
+ BuildableName = "Project1.app"
66
+ BlueprintName = "Project1"
67
+ ReferencedContainer = "container:Project.xcodeproj">
68
+ </BuildableReference>
69
+ </BuildableProductRunnable>
70
+ </ProfileAction>
71
+ <AnalyzeAction
72
+ buildConfiguration = "Debug">
73
+ </AnalyzeAction>
74
+ <ArchiveAction
75
+ buildConfiguration = "Release"
76
+ revealArchiveInOrganizer = "YES">
77
+ </ArchiveAction>
78
+ </Scheme>
@@ -0,0 +1,62 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 77;
7
+ objects = {
8
+
9
+ /* Begin PBXGroup section */
10
+ D4E604C42D50CEEC00CAB00F = {
11
+ isa = PBXGroup;
12
+ children = (
13
+ D4E604CE2D50CEEC00CAB00F /* Products */,
14
+ );
15
+ sourceTree = "<group>";
16
+ };
17
+ D4E604CE2D50CEEC00CAB00F /* Products */ = {
18
+ isa = PBXGroup;
19
+ children = (
20
+ );
21
+ name = Products;
22
+ sourceTree = "<group>";
23
+ };
24
+ /* End PBXGroup section */
25
+
26
+ /* Begin PBXProject section */
27
+ D4E604C52D50CEEC00CAB00F /* Project object */ = {
28
+ isa = PBXProject;
29
+ attributes = {
30
+ BuildIndependentTargetsInParallel = 1;
31
+ LastSwiftUpdateCheck = 1620;
32
+ LastUpgradeCheck = 1620;
33
+ };
34
+ buildConfigurationList = D4E604C82D50CEEC00CAB00F /* Build configuration list for PBXProject "Project" */;
35
+ developmentRegion = en;
36
+ hasScannedForEncodings = 0;
37
+ knownRegions = (
38
+ en,
39
+ Base,
40
+ );
41
+ mainGroup = D4E604C42D50CEEC00CAB00F;
42
+ minimizedProjectReferenceProxies = 1;
43
+ preferredProjectObjectVersion = 77;
44
+ productRefGroup = D4E604CE2D50CEEC00CAB00F /* Products */;
45
+ projectDirPath = "";
46
+ projectRoot = "";
47
+ targets = (
48
+ );
49
+ };
50
+ /* End PBXProject section */
51
+
52
+ /* Begin XCConfigurationList section */
53
+ D4E604C82D50CEEC00CAB00F /* Build configuration list for PBXProject "Project" */ = {
54
+ isa = XCConfigurationList;
55
+ buildConfigurations = (
56
+ );
57
+ defaultConfigurationIsVisible = 0;
58
+ };
59
+ /* End XCConfigurationList section */
60
+ };
61
+ rootObject = D4E604C52D50CEEC00CAB00F /* Project object */;
62
+ }
@@ -0,0 +1,78 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "1620"
4
+ version = "1.7">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES"
8
+ buildArchitectures = "Automatic">
9
+ <BuildActionEntries>
10
+ <BuildActionEntry
11
+ buildForTesting = "YES"
12
+ buildForRunning = "YES"
13
+ buildForProfiling = "YES"
14
+ buildForArchiving = "YES"
15
+ buildForAnalyzing = "YES">
16
+ <BuildableReference
17
+ BuildableIdentifier = "primary"
18
+ BlueprintIdentifier = "D4E604CC2D50CEEC00CAB00F"
19
+ BuildableName = "Project1.app"
20
+ BlueprintName = "Project1"
21
+ ReferencedContainer = "container:Project.xcodeproj">
22
+ </BuildableReference>
23
+ </BuildActionEntry>
24
+ </BuildActionEntries>
25
+ </BuildAction>
26
+ <TestAction
27
+ buildConfiguration = "Debug"
28
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
29
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
30
+ shouldUseLaunchSchemeArgsEnv = "YES"
31
+ shouldAutocreateTestPlan = "YES">
32
+ </TestAction>
33
+ <LaunchAction
34
+ buildConfiguration = "Debug"
35
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37
+ launchStyle = "0"
38
+ useCustomWorkingDirectory = "NO"
39
+ ignoresPersistentStateOnLaunch = "NO"
40
+ debugDocumentVersioning = "YES"
41
+ debugServiceExtension = "internal"
42
+ allowLocationSimulation = "YES">
43
+ <BuildableProductRunnable
44
+ runnableDebuggingMode = "0">
45
+ <BuildableReference
46
+ BuildableIdentifier = "primary"
47
+ BlueprintIdentifier = "D4E604CC2D50CEEC00CAB00F"
48
+ BuildableName = "Project1.app"
49
+ BlueprintName = "Project1"
50
+ ReferencedContainer = "container:Project.xcodeproj">
51
+ </BuildableReference>
52
+ </BuildableProductRunnable>
53
+ </LaunchAction>
54
+ <ProfileAction
55
+ buildConfiguration = "Release"
56
+ shouldUseLaunchSchemeArgsEnv = "YES"
57
+ savedToolIdentifier = ""
58
+ useCustomWorkingDirectory = "NO"
59
+ debugDocumentVersioning = "YES">
60
+ <BuildableProductRunnable
61
+ runnableDebuggingMode = "0">
62
+ <BuildableReference
63
+ BuildableIdentifier = "primary"
64
+ BlueprintIdentifier = "D4E604CC2D50CEEC00CAB00F"
65
+ BuildableName = "Project1.app"
66
+ BlueprintName = "Project1"
67
+ ReferencedContainer = "container:Project.xcodeproj">
68
+ </BuildableReference>
69
+ </BuildableProductRunnable>
70
+ </ProfileAction>
71
+ <AnalyzeAction
72
+ buildConfiguration = "Debug">
73
+ </AnalyzeAction>
74
+ <ArchiveAction
75
+ buildConfiguration = "Release"
76
+ revealArchiveInOrganizer = "YES">
77
+ </ArchiveAction>
78
+ </Scheme>
@@ -0,0 +1,470 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 77;
7
+ objects = {
8
+
9
+ /* Begin PBXFileReference section */
10
+ D4E604CD2D50CEEC00CAB00F /* Project1.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Project1.app; sourceTree = BUILT_PRODUCTS_DIR; };
11
+ D4E604EE2D50D83000CAB00F /* Project2.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Project2.app; sourceTree = BUILT_PRODUCTS_DIR; };
12
+ /* End PBXFileReference section */
13
+
14
+ /* Begin PBXFileSystemSynchronizedRootGroup section */
15
+ D4E604CF2D50CEEC00CAB00F /* Project1 */ = {
16
+ isa = PBXFileSystemSynchronizedRootGroup;
17
+ path = Project1;
18
+ sourceTree = "<group>";
19
+ };
20
+ D4E604EF2D50D83000CAB00F /* Project2 */ = {
21
+ isa = PBXFileSystemSynchronizedRootGroup;
22
+ path = Project2;
23
+ sourceTree = "<group>";
24
+ };
25
+ /* End PBXFileSystemSynchronizedRootGroup section */
26
+
27
+ /* Begin PBXFrameworksBuildPhase section */
28
+ D4E604CA2D50CEEC00CAB00F /* Frameworks */ = {
29
+ isa = PBXFrameworksBuildPhase;
30
+ buildActionMask = 2147483647;
31
+ files = (
32
+ );
33
+ runOnlyForDeploymentPostprocessing = 0;
34
+ };
35
+ D4E604EB2D50D83000CAB00F /* Frameworks */ = {
36
+ isa = PBXFrameworksBuildPhase;
37
+ buildActionMask = 2147483647;
38
+ files = (
39
+ );
40
+ runOnlyForDeploymentPostprocessing = 0;
41
+ };
42
+ /* End PBXFrameworksBuildPhase section */
43
+
44
+ /* Begin PBXGroup section */
45
+ D4E604C42D50CEEC00CAB00F = {
46
+ isa = PBXGroup;
47
+ children = (
48
+ D4E604CF2D50CEEC00CAB00F /* Project1 */,
49
+ D4E604EF2D50D83000CAB00F /* Project2 */,
50
+ D4E604CE2D50CEEC00CAB00F /* Products */,
51
+ );
52
+ sourceTree = "<group>";
53
+ };
54
+ D4E604CE2D50CEEC00CAB00F /* Products */ = {
55
+ isa = PBXGroup;
56
+ children = (
57
+ D4E604CD2D50CEEC00CAB00F /* Project1.app */,
58
+ D4E604EE2D50D83000CAB00F /* Project2.app */,
59
+ );
60
+ name = Products;
61
+ sourceTree = "<group>";
62
+ };
63
+ /* End PBXGroup section */
64
+
65
+ /* Begin PBXNativeTarget section */
66
+ D4E604CC2D50CEEC00CAB00F /* Project1 */ = {
67
+ isa = PBXNativeTarget;
68
+ buildConfigurationList = D4E604DC2D50CEEE00CAB00F /* Build configuration list for PBXNativeTarget "Project1" */;
69
+ buildPhases = (
70
+ D4E604C92D50CEEC00CAB00F /* Sources */,
71
+ D4E604CA2D50CEEC00CAB00F /* Frameworks */,
72
+ D4E604CB2D50CEEC00CAB00F /* Resources */,
73
+ );
74
+ buildRules = (
75
+ );
76
+ dependencies = (
77
+ );
78
+ fileSystemSynchronizedGroups = (
79
+ D4E604CF2D50CEEC00CAB00F /* Project1 */,
80
+ );
81
+ name = Project1;
82
+ packageProductDependencies = (
83
+ );
84
+ productName = SentryWizardSampleBlank;
85
+ productReference = D4E604CD2D50CEEC00CAB00F /* Project1.app */;
86
+ productType = "com.apple.product-type.application";
87
+ };
88
+ D4E604ED2D50D83000CAB00F /* Project2 */ = {
89
+ isa = PBXNativeTarget;
90
+ buildConfigurationList = D4E604FA2D50D83100CAB00F /* Build configuration list for PBXNativeTarget "Project2" */;
91
+ buildPhases = (
92
+ D4E604EA2D50D83000CAB00F /* Sources */,
93
+ D4E604EB2D50D83000CAB00F /* Frameworks */,
94
+ D4E604EC2D50D83000CAB00F /* Resources */,
95
+ );
96
+ buildRules = (
97
+ );
98
+ dependencies = (
99
+ );
100
+ fileSystemSynchronizedGroups = (
101
+ D4E604EF2D50D83000CAB00F /* Project2 */,
102
+ );
103
+ name = Project2;
104
+ packageProductDependencies = (
105
+ );
106
+ productName = Project2;
107
+ productReference = D4E604EE2D50D83000CAB00F /* Project2.app */;
108
+ productType = "com.apple.product-type.application";
109
+ };
110
+ /* End PBXNativeTarget section */
111
+
112
+ /* Begin PBXProject section */
113
+ D4E604C52D50CEEC00CAB00F /* Project object */ = {
114
+ isa = PBXProject;
115
+ attributes = {
116
+ BuildIndependentTargetsInParallel = 1;
117
+ LastSwiftUpdateCheck = 1620;
118
+ LastUpgradeCheck = 1620;
119
+ TargetAttributes = {
120
+ D4E604CC2D50CEEC00CAB00F = {
121
+ CreatedOnToolsVersion = 16.2;
122
+ };
123
+ D4E604ED2D50D83000CAB00F = {
124
+ CreatedOnToolsVersion = 16.2;
125
+ };
126
+ };
127
+ };
128
+ buildConfigurationList = D4E604C82D50CEEC00CAB00F /* Build configuration list for PBXProject "Project" */;
129
+ developmentRegion = en;
130
+ hasScannedForEncodings = 0;
131
+ knownRegions = (
132
+ en,
133
+ Base,
134
+ );
135
+ mainGroup = D4E604C42D50CEEC00CAB00F;
136
+ minimizedProjectReferenceProxies = 1;
137
+ preferredProjectObjectVersion = 77;
138
+ productRefGroup = D4E604CE2D50CEEC00CAB00F /* Products */;
139
+ projectDirPath = "";
140
+ projectRoot = "";
141
+ targets = (
142
+ D4E604CC2D50CEEC00CAB00F /* Project1 */,
143
+ D4E604ED2D50D83000CAB00F /* Project2 */,
144
+ );
145
+ };
146
+ /* End PBXProject section */
147
+
148
+ /* Begin PBXResourcesBuildPhase section */
149
+ D4E604CB2D50CEEC00CAB00F /* Resources */ = {
150
+ isa = PBXResourcesBuildPhase;
151
+ buildActionMask = 2147483647;
152
+ files = (
153
+ );
154
+ runOnlyForDeploymentPostprocessing = 0;
155
+ };
156
+ D4E604EC2D50D83000CAB00F /* Resources */ = {
157
+ isa = PBXResourcesBuildPhase;
158
+ buildActionMask = 2147483647;
159
+ files = (
160
+ );
161
+ runOnlyForDeploymentPostprocessing = 0;
162
+ };
163
+ /* End PBXResourcesBuildPhase section */
164
+
165
+ /* Begin PBXSourcesBuildPhase section */
166
+ D4E604C92D50CEEC00CAB00F /* Sources */ = {
167
+ isa = PBXSourcesBuildPhase;
168
+ buildActionMask = 2147483647;
169
+ files = (
170
+ );
171
+ runOnlyForDeploymentPostprocessing = 0;
172
+ };
173
+ D4E604EA2D50D83000CAB00F /* Sources */ = {
174
+ isa = PBXSourcesBuildPhase;
175
+ buildActionMask = 2147483647;
176
+ files = (
177
+ );
178
+ runOnlyForDeploymentPostprocessing = 0;
179
+ };
180
+ /* End PBXSourcesBuildPhase section */
181
+
182
+ /* Begin XCBuildConfiguration section */
183
+ D4E604DA2D50CEEE00CAB00F /* Debug */ = {
184
+ isa = XCBuildConfiguration;
185
+ buildSettings = {
186
+ ALWAYS_SEARCH_USER_PATHS = NO;
187
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
188
+ CLANG_ANALYZER_NONNULL = YES;
189
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
190
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
191
+ CLANG_ENABLE_MODULES = YES;
192
+ CLANG_ENABLE_OBJC_ARC = YES;
193
+ CLANG_ENABLE_OBJC_WEAK = YES;
194
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
195
+ CLANG_WARN_BOOL_CONVERSION = YES;
196
+ CLANG_WARN_COMMA = YES;
197
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
198
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
199
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
200
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
201
+ CLANG_WARN_EMPTY_BODY = YES;
202
+ CLANG_WARN_ENUM_CONVERSION = YES;
203
+ CLANG_WARN_INFINITE_RECURSION = YES;
204
+ CLANG_WARN_INT_CONVERSION = YES;
205
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
206
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
207
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
208
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
209
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
210
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
211
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
212
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
213
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
214
+ CLANG_WARN_UNREACHABLE_CODE = YES;
215
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
216
+ COPY_PHASE_STRIP = NO;
217
+ DEBUG_INFORMATION_FORMAT = dwarf;
218
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
219
+ ENABLE_TESTABILITY = YES;
220
+ ENABLE_USER_SCRIPT_SANDBOXING = YES;
221
+ GCC_C_LANGUAGE_STANDARD = gnu17;
222
+ GCC_DYNAMIC_NO_PIC = NO;
223
+ GCC_NO_COMMON_BLOCKS = YES;
224
+ GCC_OPTIMIZATION_LEVEL = 0;
225
+ GCC_PREPROCESSOR_DEFINITIONS = (
226
+ "DEBUG=1",
227
+ "$(inherited)",
228
+ );
229
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
230
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
231
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
232
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
233
+ GCC_WARN_UNUSED_FUNCTION = YES;
234
+ GCC_WARN_UNUSED_VARIABLE = YES;
235
+ LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
236
+ MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
237
+ MTL_FAST_MATH = YES;
238
+ ONLY_ACTIVE_ARCH = YES;
239
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
240
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
241
+ };
242
+ name = Debug;
243
+ };
244
+ D4E604DB2D50CEEE00CAB00F /* Release */ = {
245
+ isa = XCBuildConfiguration;
246
+ buildSettings = {
247
+ ALWAYS_SEARCH_USER_PATHS = NO;
248
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
249
+ CLANG_ANALYZER_NONNULL = YES;
250
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
251
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
252
+ CLANG_ENABLE_MODULES = YES;
253
+ CLANG_ENABLE_OBJC_ARC = YES;
254
+ CLANG_ENABLE_OBJC_WEAK = YES;
255
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
256
+ CLANG_WARN_BOOL_CONVERSION = YES;
257
+ CLANG_WARN_COMMA = YES;
258
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
259
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
260
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
261
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
262
+ CLANG_WARN_EMPTY_BODY = YES;
263
+ CLANG_WARN_ENUM_CONVERSION = YES;
264
+ CLANG_WARN_INFINITE_RECURSION = YES;
265
+ CLANG_WARN_INT_CONVERSION = YES;
266
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
267
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
268
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
269
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
270
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
271
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
272
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
273
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
274
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
275
+ CLANG_WARN_UNREACHABLE_CODE = YES;
276
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
277
+ COPY_PHASE_STRIP = NO;
278
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
279
+ ENABLE_NS_ASSERTIONS = NO;
280
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
281
+ ENABLE_USER_SCRIPT_SANDBOXING = YES;
282
+ GCC_C_LANGUAGE_STANDARD = gnu17;
283
+ GCC_NO_COMMON_BLOCKS = YES;
284
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
285
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
286
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
287
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
288
+ GCC_WARN_UNUSED_FUNCTION = YES;
289
+ GCC_WARN_UNUSED_VARIABLE = YES;
290
+ LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
291
+ MTL_ENABLE_DEBUG_INFO = NO;
292
+ MTL_FAST_MATH = YES;
293
+ SWIFT_COMPILATION_MODE = wholemodule;
294
+ };
295
+ name = Release;
296
+ };
297
+ D4E604DD2D50CEEE00CAB00F /* Debug */ = {
298
+ isa = XCBuildConfiguration;
299
+ buildSettings = {
300
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
301
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
302
+ CODE_SIGN_STYLE = Automatic;
303
+ CURRENT_PROJECT_VERSION = 1;
304
+ ENABLE_PREVIEWS = YES;
305
+ GENERATE_INFOPLIST_FILE = YES;
306
+ "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
307
+ "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
308
+ "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES;
309
+ "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES;
310
+ "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES;
311
+ "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
312
+ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
313
+ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
314
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
315
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
316
+ IPHONEOS_DEPLOYMENT_TARGET = 18.2;
317
+ LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
318
+ "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
319
+ MACOSX_DEPLOYMENT_TARGET = 15.2;
320
+ MARKETING_VERSION = 1.0;
321
+ PRODUCT_BUNDLE_IDENTIFIER = com.getsentry.SentryWizardSampleBlank;
322
+ PRODUCT_NAME = "$(TARGET_NAME)";
323
+ SDKROOT = auto;
324
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx xros xrsimulator";
325
+ SWIFT_EMIT_LOC_STRINGS = YES;
326
+ SWIFT_VERSION = 5.0;
327
+ TARGETED_DEVICE_FAMILY = "1,2,7";
328
+ XROS_DEPLOYMENT_TARGET = 2.2;
329
+ };
330
+ name = Debug;
331
+ };
332
+ D4E604DE2D50CEEE00CAB00F /* Release */ = {
333
+ isa = XCBuildConfiguration;
334
+ buildSettings = {
335
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
336
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
337
+ CODE_SIGN_STYLE = Automatic;
338
+ CURRENT_PROJECT_VERSION = 1;
339
+ ENABLE_PREVIEWS = YES;
340
+ GENERATE_INFOPLIST_FILE = YES;
341
+ "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
342
+ "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
343
+ "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES;
344
+ "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES;
345
+ "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES;
346
+ "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
347
+ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
348
+ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
349
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
350
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
351
+ IPHONEOS_DEPLOYMENT_TARGET = 18.2;
352
+ LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
353
+ "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
354
+ MACOSX_DEPLOYMENT_TARGET = 15.2;
355
+ MARKETING_VERSION = 1.0;
356
+ PRODUCT_BUNDLE_IDENTIFIER = com.getsentry.SentryWizardSampleBlank;
357
+ PRODUCT_NAME = "$(TARGET_NAME)";
358
+ SDKROOT = auto;
359
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx xros xrsimulator";
360
+ SWIFT_EMIT_LOC_STRINGS = YES;
361
+ SWIFT_VERSION = 5.0;
362
+ TARGETED_DEVICE_FAMILY = "1,2,7";
363
+ XROS_DEPLOYMENT_TARGET = 2.2;
364
+ };
365
+ name = Release;
366
+ };
367
+ D4E604FB2D50D83100CAB00F /* Debug */ = {
368
+ isa = XCBuildConfiguration;
369
+ buildSettings = {
370
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
371
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
372
+ CODE_SIGN_STYLE = Automatic;
373
+ CURRENT_PROJECT_VERSION = 1;
374
+ ENABLE_PREVIEWS = YES;
375
+ GENERATE_INFOPLIST_FILE = YES;
376
+ "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
377
+ "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
378
+ "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES;
379
+ "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES;
380
+ "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES;
381
+ "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
382
+ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
383
+ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
384
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
385
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
386
+ IPHONEOS_DEPLOYMENT_TARGET = 18.2;
387
+ LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
388
+ "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
389
+ MACOSX_DEPLOYMENT_TARGET = 15.2;
390
+ MARKETING_VERSION = 1.0;
391
+ PRODUCT_BUNDLE_IDENTIFIER = com.getsentry.Project2;
392
+ PRODUCT_NAME = "$(TARGET_NAME)";
393
+ SDKROOT = auto;
394
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx xros xrsimulator";
395
+ SWIFT_EMIT_LOC_STRINGS = YES;
396
+ SWIFT_VERSION = 5.0;
397
+ TARGETED_DEVICE_FAMILY = "1,2,7";
398
+ XROS_DEPLOYMENT_TARGET = 2.2;
399
+ };
400
+ name = Debug;
401
+ };
402
+ D4E604FC2D50D83100CAB00F /* Release */ = {
403
+ isa = XCBuildConfiguration;
404
+ buildSettings = {
405
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
406
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
407
+ CODE_SIGN_STYLE = Automatic;
408
+ CURRENT_PROJECT_VERSION = 1;
409
+ ENABLE_PREVIEWS = YES;
410
+ GENERATE_INFOPLIST_FILE = YES;
411
+ "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
412
+ "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
413
+ "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES;
414
+ "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES;
415
+ "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES;
416
+ "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
417
+ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
418
+ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
419
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
420
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
421
+ IPHONEOS_DEPLOYMENT_TARGET = 18.2;
422
+ LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
423
+ "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
424
+ MACOSX_DEPLOYMENT_TARGET = 15.2;
425
+ MARKETING_VERSION = 1.0;
426
+ PRODUCT_BUNDLE_IDENTIFIER = com.getsentry.Project2;
427
+ PRODUCT_NAME = "$(TARGET_NAME)";
428
+ SDKROOT = auto;
429
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx xros xrsimulator";
430
+ SWIFT_EMIT_LOC_STRINGS = YES;
431
+ SWIFT_VERSION = 5.0;
432
+ TARGETED_DEVICE_FAMILY = "1,2,7";
433
+ XROS_DEPLOYMENT_TARGET = 2.2;
434
+ };
435
+ name = Release;
436
+ };
437
+ /* End XCBuildConfiguration section */
438
+
439
+ /* Begin XCConfigurationList section */
440
+ D4E604C82D50CEEC00CAB00F /* Build configuration list for PBXProject "Project" */ = {
441
+ isa = XCConfigurationList;
442
+ buildConfigurations = (
443
+ D4E604DA2D50CEEE00CAB00F /* Debug */,
444
+ D4E604DB2D50CEEE00CAB00F /* Release */,
445
+ );
446
+ defaultConfigurationIsVisible = 0;
447
+ defaultConfigurationName = Release;
448
+ };
449
+ D4E604DC2D50CEEE00CAB00F /* Build configuration list for PBXNativeTarget "Project1" */ = {
450
+ isa = XCConfigurationList;
451
+ buildConfigurations = (
452
+ D4E604DD2D50CEEE00CAB00F /* Debug */,
453
+ D4E604DE2D50CEEE00CAB00F /* Release */,
454
+ );
455
+ defaultConfigurationIsVisible = 0;
456
+ defaultConfigurationName = Release;
457
+ };
458
+ D4E604FA2D50D83100CAB00F /* Build configuration list for PBXNativeTarget "Project2" */ = {
459
+ isa = XCConfigurationList;
460
+ buildConfigurations = (
461
+ D4E604FB2D50D83100CAB00F /* Debug */,
462
+ D4E604FC2D50D83100CAB00F /* Release */,
463
+ );
464
+ defaultConfigurationIsVisible = 0;
465
+ defaultConfigurationName = Release;
466
+ };
467
+ /* End XCConfigurationList section */
468
+ };
469
+ rootObject = D4E604C52D50CEEC00CAB00F /* Project object */;
470
+ }