bleam 0.0.8 → 0.0.10

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 (96) hide show
  1. package/dist/cli.cjs +269 -22
  2. package/dist/cli.d.cts +32 -2
  3. package/dist/cli.d.ts +32 -2
  4. package/dist/cli.js +270 -23
  5. package/dist/platform.d.cts +2 -0
  6. package/dist/platform.d.ts +2 -0
  7. package/dist/{ui-1WepaMS4.d.cts → ui-Bg11tvlc.d.ts} +1 -1
  8. package/dist/{ui-Ce-pnUUA.d.ts → ui-Dd7SXdbg.d.cts} +7 -7
  9. package/dist/ui.d.cts +1 -1
  10. package/dist/ui.d.ts +1 -1
  11. package/dist/window.d.cts +1 -1
  12. package/dist/window.d.ts +1 -1
  13. package/package.json +5 -1
  14. package/templates/image-generation/app/index.tsx +1 -1
  15. package/templates/native/.gitattributes +1 -0
  16. package/templates/native/App.tsx +26 -0
  17. package/templates/native/app.json +12 -0
  18. package/templates/native/index.ts +8 -0
  19. package/templates/native/ios/.xcode.env +11 -0
  20. package/templates/native/ios/Bleam/AI/Flux2/Configuration/Flux2Config.swift +288 -0
  21. package/templates/native/ios/Bleam/AI/Flux2/Configuration/MemoryConfig.swift +233 -0
  22. package/templates/native/ios/Bleam/AI/Flux2/Configuration/MemoryOptimizationConfig.swift +157 -0
  23. package/templates/native/ios/Bleam/AI/Flux2/Configuration/ModelRegistry.swift +425 -0
  24. package/templates/native/ios/Bleam/AI/Flux2/Configuration/QuantizationConfig.swift +138 -0
  25. package/templates/native/ios/Bleam/AI/Flux2/Configuration/TransformerRepoProfile.swift +59 -0
  26. package/templates/native/ios/Bleam/AI/Flux2/Configuration/VAEConfig.swift +134 -0
  27. package/templates/native/ios/Bleam/AI/Flux2/Flux2Core.swift +55 -0
  28. package/templates/native/ios/Bleam/AI/Flux2/Loading/WeightLoader.swift +1192 -0
  29. package/templates/native/ios/Bleam/AI/Flux2/Pipeline/FluxImageRunner.swift +1282 -0
  30. package/templates/native/ios/Bleam/AI/Flux2/Pipeline/LatentUtils.swift +191 -0
  31. package/templates/native/ios/Bleam/AI/Flux2/Scheduler/FlowMatchEulerScheduler.swift +279 -0
  32. package/templates/native/ios/Bleam/AI/Flux2/Text/KleinTextEncoder.swift +380 -0
  33. package/templates/native/ios/Bleam/AI/Flux2/Transformer/Flux2Attention.swift +379 -0
  34. package/templates/native/ios/Bleam/AI/Flux2/Transformer/Flux2Embeddings.swift +159 -0
  35. package/templates/native/ios/Bleam/AI/Flux2/Transformer/Flux2FeedForward.swift +154 -0
  36. package/templates/native/ios/Bleam/AI/Flux2/Transformer/Flux2FusedKernels.swift +198 -0
  37. package/templates/native/ios/Bleam/AI/Flux2/Transformer/Flux2KVCache.swift +36 -0
  38. package/templates/native/ios/Bleam/AI/Flux2/Transformer/Flux2Modulation.swift +193 -0
  39. package/templates/native/ios/Bleam/AI/Flux2/Transformer/Flux2ParallelAttention.swift +389 -0
  40. package/templates/native/ios/Bleam/AI/Flux2/Transformer/Flux2RoPE.swift +304 -0
  41. package/templates/native/ios/Bleam/AI/Flux2/Transformer/Flux2SingleBlock.swift +290 -0
  42. package/templates/native/ios/Bleam/AI/Flux2/Transformer/Flux2Transformer.swift +530 -0
  43. package/templates/native/ios/Bleam/AI/Flux2/Transformer/Flux2TransformerBlock.swift +362 -0
  44. package/templates/native/ios/Bleam/AI/Flux2/Utils/Flux2Debug.swift +101 -0
  45. package/templates/native/ios/Bleam/AI/Flux2/Utils/MLXCheckpoint.swift +118 -0
  46. package/templates/native/ios/Bleam/AI/Flux2/Utils/MemoryManager.swift +201 -0
  47. package/templates/native/ios/Bleam/AI/Flux2/VAE/AutoencoderKL.swift +476 -0
  48. package/templates/native/ios/Bleam/AI/Flux2/VAE/ResnetBlock.swift +316 -0
  49. package/templates/native/ios/Bleam/AI/Flux2/VAE/VAEDecoder.swift +120 -0
  50. package/templates/native/ios/Bleam/AI/Flux2/VAE/VAEEncoder.swift +136 -0
  51. package/templates/native/ios/Bleam/AppDelegate.swift +482 -0
  52. package/templates/native/ios/Bleam/Appearance.swift +62 -0
  53. package/templates/native/ios/Bleam/Bridging-Header.h +3 -0
  54. package/templates/native/ios/Bleam/Images.xcassets/AppIcon.appiconset/Contents.json +13 -0
  55. package/templates/native/ios/Bleam/Images.xcassets/Contents.json +6 -0
  56. package/templates/native/ios/Bleam/Info.plist +76 -0
  57. package/templates/native/ios/Bleam/PrivacyInfo.xcprivacy +48 -0
  58. package/templates/native/ios/Bleam/SceneDelegate.swift +58 -0
  59. package/templates/native/ios/Bleam/SplashScreen.storyboard +47 -0
  60. package/templates/native/ios/Bleam/Supporting/Expo.plist +6 -0
  61. package/templates/native/ios/Bleam/bleam.entitlements +10 -0
  62. package/templates/native/ios/Bleam.xcodeproj/project.pbxproj +1147 -0
  63. package/templates/native/ios/Bleam.xcodeproj/xcshareddata/xcschemes/Bleam.xcscheme +88 -0
  64. package/templates/native/ios/GenerationService/GenerationService.entitlements +10 -0
  65. package/templates/native/ios/GenerationService/ImageGenerationRunner.swift +591 -0
  66. package/templates/native/ios/GenerationService/Info.plist +31 -0
  67. package/templates/native/ios/GenerationService/main.swift +165 -0
  68. package/templates/native/ios/PlatformHelper/main.swift +726 -0
  69. package/templates/native/ios/Podfile +198 -0
  70. package/templates/native/ios/Podfile.lock +2284 -0
  71. package/templates/native/ios/Podfile.properties.json +5 -0
  72. package/templates/native/ios/Shared/Generation/GenerationServiceProtocol.swift +12 -0
  73. package/templates/native/ios/Shared/Generation/GenerationWorkerProtocol.swift +124 -0
  74. package/templates/native/metro.config.js +6 -0
  75. package/templates/native/modules/bleam-runtime/BleamRuntime.podspec +14 -0
  76. package/templates/native/modules/bleam-runtime/expo-module.config.json +8 -0
  77. package/templates/native/modules/bleam-runtime/ios/AIModule.swift +1258 -0
  78. package/templates/native/modules/bleam-runtime/ios/GenerationContracts.swift +135 -0
  79. package/templates/native/modules/bleam-runtime/ios/PlatformModule.swift +329 -0
  80. package/templates/native/modules/bleam-runtime/package.json +5 -0
  81. package/templates/native/package.json +39 -0
  82. package/templates/native/scripts/build/mlx-frameworks.ts +421 -0
  83. package/templates/native/scripts/start/index.ts +474 -0
  84. package/templates/native/scripts/start/known-failures.ts +20 -0
  85. package/templates/native/scripts/start/loader.ts +76 -0
  86. package/templates/native/scripts/start/native-state.ts +242 -0
  87. package/templates/native/scripts/start/package.json +4 -0
  88. package/templates/native/scripts/start/swift-packages.ts +414 -0
  89. package/templates/native/scripts/start/xcode-formatter.ts +106 -0
  90. package/templates/native/tsconfig.json +14 -0
  91. package/templates/native/yarn.lock +3749 -0
  92. package/templates/updates/README.md +272 -0
  93. package/templates/updates/src/index.ts +385 -0
  94. package/templates/updates/src/schema.ts +385 -0
  95. package/templates/updates/tsconfig.json +12 -0
  96. package/templates/updates/wrangler.jsonc +19 -0
@@ -0,0 +1,1147 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 0A61E0C9AD2C524515035D34 /* Flux2Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000232F00000000000023 /* Flux2Debug.swift */; };
11
+ 0AFD71CA58FE814F0E10D8BB /* AutoencoderKL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000252F00000000000025 /* AutoencoderKL.swift */; };
12
+ 0E0CEDC1EA6186197AE2A6A3 /* Flux2RoPE.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000182F00000000000018 /* Flux2RoPE.swift */; };
13
+ 1264A9BEF8CEC8FAB61E70A0 /* VAEEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000262F00000000000026 /* VAEEncoder.swift */; };
14
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
15
+ 1B329811D9772E54C3A9AB29 /* TransformerRepoProfile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000072F00000000000007 /* TransformerRepoProfile.swift */; };
16
+ 233FAB725E8A3004716A8E24 /* LatentUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000292F00000000000029 /* LatentUtils.swift */; };
17
+ 25BC3F4AD766537E97BD0F82 /* Flux2FusedKernels.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000152F00000000000015 /* Flux2FusedKernels.swift */; };
18
+ 29CB768E5FC4C70E782B0CCE /* Flux2Embeddings.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000192F00000000000019 /* Flux2Embeddings.swift */; };
19
+ 2F3154D3F6A27FD3E193FE85 /* ResnetBlock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000282F00000000000028 /* ResnetBlock.swift */; };
20
+ 33F4BE81709FF1099AE37F88 /* Flux2Attention.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000112F00000000000011 /* Flux2Attention.swift */; };
21
+ 3997139A67333ECAF3E123BC /* QuantizationConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000052F00000000000005 /* QuantizationConfig.swift */; };
22
+ 3B4C2533DE63EA0A41B1DB55 /* Flux2ParallelAttention.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000162F00000000000016 /* Flux2ParallelAttention.swift */; };
23
+ 3D5960963160C13A253E4986 /* KleinTextEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000312F00000000000031 /* KleinTextEncoder.swift */; };
24
+ 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */; };
25
+ 40D3CED243015B2CFF6ABBDE /* GenerationServiceProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA962C2DD7808CB057168B5C /* GenerationServiceProtocol.swift */; };
26
+ 41C4ACF77557BC4E450D11F9 /* VAEDecoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000272F00000000000027 /* VAEDecoder.swift */; };
27
+ 44165776E01ECEAE6D62A9AF /* Flux2Core.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000012F00000000000001 /* Flux2Core.swift */; };
28
+ 45340A3E744B915275391906 /* MLXCheckpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000222F00000000000022 /* MLXCheckpoint.swift */; };
29
+ 5224DF2286EAF50159491DCA /* Flux2Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000032F00000000000003 /* Flux2Config.swift */; };
30
+ 5808A537E8C0FDD3F145939E /* Cmlx.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0C08FBC319FFA07AF3EB93F /* Cmlx.framework */; };
31
+ 5A6B7C8D9E0F100000000001 /* Cmlx.framework in Embed GenerationService MLX Frameworks */ = {isa = PBXBuildFile; fileRef = C0C08FBC319FFA07AF3EB93F /* Cmlx.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
32
+ 5A6B7C8D9E0F100000000002 /* MLX.framework in Embed GenerationService MLX Frameworks */ = {isa = PBXBuildFile; fileRef = 0AC583E7C9FCB6A6BC6F1190 /* MLX.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
33
+ 5A6B7C8D9E0F100000000003 /* MLXNN.framework in Embed GenerationService MLX Frameworks */ = {isa = PBXBuildFile; fileRef = A7D5F5A0E7AA60EC41DEF91E /* MLXNN.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
34
+ 5A6B7C8D9E0F100000000004 /* MLXOptimizers.framework in Embed GenerationService MLX Frameworks */ = {isa = PBXBuildFile; fileRef = 0A5CF16EB1478B841FE7CD1B /* MLXOptimizers.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
35
+ 67C837EB562FAB6302B9D806 /* MLXOptimizers.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0A5CF16EB1478B841FE7CD1B /* MLXOptimizers.framework */; };
36
+ 68D4680D3744044E87866844 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 1FFDC06DD726360924EFB3CC /* PrivacyInfo.xcprivacy */; };
37
+ 6D88D5C22AF7B2193D20B6AB /* Flux2Transformer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000202F00000000000020 /* Flux2Transformer.swift */; };
38
+ 720147A3EE18E6A5E742C944 /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40779663875581067F7CF4CE /* ExpoModulesProvider.swift */; };
39
+ 725D92B84B28EF1BBAEA8FCC /* Flux2TransformerBlock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000132F00000000000013 /* Flux2TransformerBlock.swift */; };
40
+ 765F8D93716FB0E9462F2740 /* VAEConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000022F00000000000002 /* VAEConfig.swift */; };
41
+ 814C5B6310C5000E9B289C59 /* MemoryConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000042F00000000000004 /* MemoryConfig.swift */; };
42
+ 85A9B86AC5D33F7C6B1090C5 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B102179524A8B237805F5FD2 /* Cocoa.framework */; };
43
+ 876A54A7301C4563517351C8 /* MLXNN.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7D5F5A0E7AA60EC41DEF91E /* MLXNN.framework */; };
44
+ 87970E718E17EDFDD6D44383 /* Flux2Modulation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000172F00000000000017 /* Flux2Modulation.swift */; };
45
+ 87C064F640E0EB57513F4213 /* Flux2FeedForward.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000142F00000000000014 /* Flux2FeedForward.swift */; };
46
+ 88118B47E2156DCE3654D954 /* MLX.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AC583E7C9FCB6A6BC6F1190 /* MLX.framework */; };
47
+ 8BEA0DE1098E9F3D9607D785 /* GenerationService.xpc in Embed XPC Services */ = {isa = PBXBuildFile; fileRef = FB433ED9D990D1F5BEAC2C93 /* GenerationService.xpc */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
48
+ 8C3E6C6A22B84B0C9F49B001 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C3E6C6922B84B0C9F49B001 /* SceneDelegate.swift */; };
49
+ 8C3E6C6E22B84B0C9F49B001 /* Appearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C3E6C6D22B84B0C9F49B001 /* Appearance.swift */; };
50
+ 8E3ED08321AD720C641E4025 /* FluxImageRunner.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000302F00000000000030 /* FluxImageRunner.swift */; };
51
+ 905090F00BCA35D089CB9667 /* libPods-bleam.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 61ED35322473816E5AB381B2 /* libPods-bleam.a */; };
52
+ 90AAAF98423C82ED52385571 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = E72903DB5F3C7D30AA5ED70B /* main.swift */; };
53
+ 94CF7F0ECED288C9E4DEDEE3 /* ModelRegistry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000082F00000000000008 /* ModelRegistry.swift */; };
54
+ 9819B5258147130BD109E6CD /* MemoryOptimizationConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000062F00000000000006 /* MemoryOptimizationConfig.swift */; };
55
+ B23B4E23A940CE8F6FD4B85A /* ImageGenerationRunner.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4485061CD0366330F3F5BE0 /* ImageGenerationRunner.swift */; };
56
+ B8D80A14FDE39B953F01DA98 /* WeightLoader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000092F00000000000009 /* WeightLoader.swift */; };
57
+ B957694592E7EBD326D03A2F /* FlowMatchEulerScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000102F00000000000010 /* FlowMatchEulerScheduler.swift */; };
58
+ BB2F792D24A3F905000567C9 /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = BB2F792C24A3F905000567C9 /* Expo.plist */; };
59
+ C0E15CD5E6F368701D5653B0 /* Flux2SingleBlock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000212F00000000000021 /* Flux2SingleBlock.swift */; };
60
+ CA976FF294D23C5C0D1BCB6A /* MemoryManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000242F00000000000024 /* MemoryManager.swift */; };
61
+ D63D5719C5F6BEF2642A0627 /* GenerationWorkerProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C1C083A847A6F08154A7655 /* GenerationWorkerProtocol.swift */; };
62
+ F11748422D0307B40044C1D9 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F11748412D0307B40044C1D9 /* AppDelegate.swift */; };
63
+ F3E19B0AABF791129F5C2531 /* Flux2KVCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D1000122F00000000000012 /* Flux2KVCache.swift */; };
64
+ A10000000000000000000001 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = A10000000000000000000005 /* main.swift */; };
65
+ A10000000000000000000002 /* PlatformHelper in Embed Platform Helper */ = {isa = PBXBuildFile; fileRef = A10000000000000000000006 /* PlatformHelper */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
66
+ /* End PBXBuildFile section */
67
+
68
+ /* Begin PBXContainerItemProxy section */
69
+ 0B3BB0ECB863062C83BCE9B3 /* PBXContainerItemProxy */ = {
70
+ isa = PBXContainerItemProxy;
71
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
72
+ proxyType = 1;
73
+ remoteGlobalIDString = 8F04CB76A01E93A4B73D67A5;
74
+ remoteInfo = GenerationService;
75
+ };
76
+ A10000000000000000000003 /* PBXContainerItemProxy */ = {
77
+ isa = PBXContainerItemProxy;
78
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
79
+ proxyType = 1;
80
+ remoteGlobalIDString = A1000000000000000000000A;
81
+ remoteInfo = PlatformHelper;
82
+ };
83
+ /* End PBXContainerItemProxy section */
84
+
85
+ /* Begin PBXCopyFilesBuildPhase section */
86
+ 5A6B7C8D9E0F100000000010 /* Embed GenerationService MLX Frameworks */ = {
87
+ isa = PBXCopyFilesBuildPhase;
88
+ buildActionMask = 2147483647;
89
+ dstPath = "";
90
+ dstSubfolderSpec = 10;
91
+ files = (
92
+ 5A6B7C8D9E0F100000000001 /* Cmlx.framework in Embed GenerationService MLX Frameworks */,
93
+ 5A6B7C8D9E0F100000000002 /* MLX.framework in Embed GenerationService MLX Frameworks */,
94
+ 5A6B7C8D9E0F100000000003 /* MLXNN.framework in Embed GenerationService MLX Frameworks */,
95
+ 5A6B7C8D9E0F100000000004 /* MLXOptimizers.framework in Embed GenerationService MLX Frameworks */,
96
+ );
97
+ name = "Embed GenerationService MLX Frameworks";
98
+ runOnlyForDeploymentPostprocessing = 0;
99
+ };
100
+ CA12AFD569B8A5A458B4F36A /* Embed XPC Services */ = {
101
+ isa = PBXCopyFilesBuildPhase;
102
+ buildActionMask = 2147483647;
103
+ dstPath = "$(CONTENTS_FOLDER_PATH)/XPCServices";
104
+ dstSubfolderSpec = 16;
105
+ files = (
106
+ 8BEA0DE1098E9F3D9607D785 /* GenerationService.xpc in Embed XPC Services */,
107
+ );
108
+ name = "Embed XPC Services";
109
+ runOnlyForDeploymentPostprocessing = 0;
110
+ };
111
+ A10000000000000000000010 /* Embed Platform Helper */ = {
112
+ isa = PBXCopyFilesBuildPhase;
113
+ buildActionMask = 2147483647;
114
+ dstPath = "$(CONTENTS_FOLDER_PATH)/Helpers";
115
+ dstSubfolderSpec = 16;
116
+ files = (
117
+ A10000000000000000000002 /* PlatformHelper in Embed Platform Helper */,
118
+ );
119
+ name = "Embed Platform Helper";
120
+ runOnlyForDeploymentPostprocessing = 0;
121
+ };
122
+ /* End PBXCopyFilesBuildPhase section */
123
+
124
+ /* Begin PBXFileReference section */
125
+ 01728992DE5D0CA230CE45FE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = Info.plist; sourceTree = "<group>"; };
126
+ 0A5CF16EB1478B841FE7CD1B /* MLXOptimizers.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MLXOptimizers.framework; path = "Vendor/MLXSwift/0.31.6-macos/MLXOptimizers.framework"; sourceTree = "<group>"; };
127
+ 0AC583E7C9FCB6A6BC6F1190 /* MLX.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MLX.framework; path = "Vendor/MLXSwift/0.31.6-macos/MLX.framework"; sourceTree = "<group>"; };
128
+ 13B07F961A680F5B00A75B9A /* bleam.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = bleam.app; sourceTree = BUILT_PRODUCTS_DIR; };
129
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = bleam/Images.xcassets; sourceTree = "<group>"; };
130
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = bleam/Info.plist; sourceTree = "<group>"; };
131
+ 19FBF3B9F72F53B33BE61EB3 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.0.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; };
132
+ 1FFDC06DD726360924EFB3CC /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = bleam/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
133
+ 40779663875581067F7CF4CE /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-bleam/ExpoModulesProvider.swift"; sourceTree = "<group>"; };
134
+ 61ED35322473816E5AB381B2 /* libPods-bleam.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-bleam.a"; sourceTree = BUILT_PRODUCTS_DIR; };
135
+ 69DD80AB1F0471BEE878B787 /* Pods-bleam.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-bleam.release.xcconfig"; path = "Target Support Files/Pods-bleam/Pods-bleam.release.xcconfig"; sourceTree = "<group>"; };
136
+ 7C1C083A847A6F08154A7655 /* GenerationWorkerProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GenerationWorkerProtocol.swift; path = GenerationWorkerProtocol.swift; sourceTree = "<group>"; };
137
+ 7DFD85F313B4BAB889F5FECF /* GenerationService.entitlements */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.entitlements; name = GenerationService.entitlements; path = GenerationService.entitlements; sourceTree = "<group>"; };
138
+ 8C3E6C6922B84B0C9F49B001 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = SceneDelegate.swift; path = bleam/SceneDelegate.swift; sourceTree = "<group>"; };
139
+ 8C3E6C6D22B84B0C9F49B001 /* Appearance.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Appearance.swift; path = bleam/Appearance.swift; sourceTree = "<group>"; };
140
+ 8C3E6C7822B84B0C9F49B001 /* bleam.entitlements */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.entitlements; name = bleam.entitlements; path = bleam/bleam.entitlements; sourceTree = "<group>"; };
141
+ 8D1000012F00000000000001 /* Flux2Core.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Flux2Core.swift; path = bleam/AI/Flux2/Flux2Core.swift; sourceTree = SOURCE_ROOT; };
142
+ 8D1000022F00000000000002 /* VAEConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = VAEConfig.swift; path = bleam/AI/Flux2/Configuration/VAEConfig.swift; sourceTree = SOURCE_ROOT; };
143
+ 8D1000032F00000000000003 /* Flux2Config.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Flux2Config.swift; path = bleam/AI/Flux2/Configuration/Flux2Config.swift; sourceTree = SOURCE_ROOT; };
144
+ 8D1000042F00000000000004 /* MemoryConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = MemoryConfig.swift; path = bleam/AI/Flux2/Configuration/MemoryConfig.swift; sourceTree = SOURCE_ROOT; };
145
+ 8D1000052F00000000000005 /* QuantizationConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = QuantizationConfig.swift; path = bleam/AI/Flux2/Configuration/QuantizationConfig.swift; sourceTree = SOURCE_ROOT; };
146
+ 8D1000062F00000000000006 /* MemoryOptimizationConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = MemoryOptimizationConfig.swift; path = bleam/AI/Flux2/Configuration/MemoryOptimizationConfig.swift; sourceTree = SOURCE_ROOT; };
147
+ 8D1000072F00000000000007 /* TransformerRepoProfile.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = TransformerRepoProfile.swift; path = bleam/AI/Flux2/Configuration/TransformerRepoProfile.swift; sourceTree = SOURCE_ROOT; };
148
+ 8D1000082F00000000000008 /* ModelRegistry.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = ModelRegistry.swift; path = bleam/AI/Flux2/Configuration/ModelRegistry.swift; sourceTree = SOURCE_ROOT; };
149
+ 8D1000092F00000000000009 /* WeightLoader.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = WeightLoader.swift; path = bleam/AI/Flux2/Loading/WeightLoader.swift; sourceTree = SOURCE_ROOT; };
150
+ 8D1000102F00000000000010 /* FlowMatchEulerScheduler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = FlowMatchEulerScheduler.swift; path = bleam/AI/Flux2/Scheduler/FlowMatchEulerScheduler.swift; sourceTree = SOURCE_ROOT; };
151
+ 8D1000112F00000000000011 /* Flux2Attention.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Flux2Attention.swift; path = bleam/AI/Flux2/Transformer/Flux2Attention.swift; sourceTree = SOURCE_ROOT; };
152
+ 8D1000122F00000000000012 /* Flux2KVCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Flux2KVCache.swift; path = bleam/AI/Flux2/Transformer/Flux2KVCache.swift; sourceTree = SOURCE_ROOT; };
153
+ 8D1000132F00000000000013 /* Flux2TransformerBlock.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Flux2TransformerBlock.swift; path = bleam/AI/Flux2/Transformer/Flux2TransformerBlock.swift; sourceTree = SOURCE_ROOT; };
154
+ 8D1000142F00000000000014 /* Flux2FeedForward.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Flux2FeedForward.swift; path = bleam/AI/Flux2/Transformer/Flux2FeedForward.swift; sourceTree = SOURCE_ROOT; };
155
+ 8D1000152F00000000000015 /* Flux2FusedKernels.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Flux2FusedKernels.swift; path = bleam/AI/Flux2/Transformer/Flux2FusedKernels.swift; sourceTree = SOURCE_ROOT; };
156
+ 8D1000162F00000000000016 /* Flux2ParallelAttention.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Flux2ParallelAttention.swift; path = bleam/AI/Flux2/Transformer/Flux2ParallelAttention.swift; sourceTree = SOURCE_ROOT; };
157
+ 8D1000172F00000000000017 /* Flux2Modulation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Flux2Modulation.swift; path = bleam/AI/Flux2/Transformer/Flux2Modulation.swift; sourceTree = SOURCE_ROOT; };
158
+ 8D1000182F00000000000018 /* Flux2RoPE.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Flux2RoPE.swift; path = bleam/AI/Flux2/Transformer/Flux2RoPE.swift; sourceTree = SOURCE_ROOT; };
159
+ 8D1000192F00000000000019 /* Flux2Embeddings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Flux2Embeddings.swift; path = bleam/AI/Flux2/Transformer/Flux2Embeddings.swift; sourceTree = SOURCE_ROOT; };
160
+ 8D1000202F00000000000020 /* Flux2Transformer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Flux2Transformer.swift; path = bleam/AI/Flux2/Transformer/Flux2Transformer.swift; sourceTree = SOURCE_ROOT; };
161
+ 8D1000212F00000000000021 /* Flux2SingleBlock.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Flux2SingleBlock.swift; path = bleam/AI/Flux2/Transformer/Flux2SingleBlock.swift; sourceTree = SOURCE_ROOT; };
162
+ 8D1000222F00000000000022 /* MLXCheckpoint.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = MLXCheckpoint.swift; path = bleam/AI/Flux2/Utils/MLXCheckpoint.swift; sourceTree = SOURCE_ROOT; };
163
+ 8D1000232F00000000000023 /* Flux2Debug.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Flux2Debug.swift; path = bleam/AI/Flux2/Utils/Flux2Debug.swift; sourceTree = SOURCE_ROOT; };
164
+ 8D1000242F00000000000024 /* MemoryManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = MemoryManager.swift; path = bleam/AI/Flux2/Utils/MemoryManager.swift; sourceTree = SOURCE_ROOT; };
165
+ 8D1000252F00000000000025 /* AutoencoderKL.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AutoencoderKL.swift; path = bleam/AI/Flux2/VAE/AutoencoderKL.swift; sourceTree = SOURCE_ROOT; };
166
+ 8D1000262F00000000000026 /* VAEEncoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = VAEEncoder.swift; path = bleam/AI/Flux2/VAE/VAEEncoder.swift; sourceTree = SOURCE_ROOT; };
167
+ 8D1000272F00000000000027 /* VAEDecoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = VAEDecoder.swift; path = bleam/AI/Flux2/VAE/VAEDecoder.swift; sourceTree = SOURCE_ROOT; };
168
+ 8D1000282F00000000000028 /* ResnetBlock.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = ResnetBlock.swift; path = bleam/AI/Flux2/VAE/ResnetBlock.swift; sourceTree = SOURCE_ROOT; };
169
+ 8D1000292F00000000000029 /* LatentUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = LatentUtils.swift; path = bleam/AI/Flux2/Pipeline/LatentUtils.swift; sourceTree = SOURCE_ROOT; };
170
+ 8D1000302F00000000000030 /* FluxImageRunner.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = FluxImageRunner.swift; path = bleam/AI/Flux2/Pipeline/FluxImageRunner.swift; sourceTree = SOURCE_ROOT; };
171
+ 8D1000312F00000000000031 /* KleinTextEncoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = KleinTextEncoder.swift; path = bleam/AI/Flux2/Text/KleinTextEncoder.swift; sourceTree = SOURCE_ROOT; };
172
+ A4485061CD0366330F3F5BE0 /* ImageGenerationRunner.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageGenerationRunner.swift; path = ImageGenerationRunner.swift; sourceTree = "<group>"; };
173
+ A7D5F5A0E7AA60EC41DEF91E /* MLXNN.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MLXNN.framework; path = "Vendor/MLXSwift/0.31.6-macos/MLXNN.framework"; sourceTree = "<group>"; };
174
+ AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = bleam/SplashScreen.storyboard; sourceTree = "<group>"; };
175
+ AC8CDCB8C321FC844F11AB7E /* Pods-bleam.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-bleam.debug.xcconfig"; path = "Target Support Files/Pods-bleam/Pods-bleam.debug.xcconfig"; sourceTree = "<group>"; };
176
+ B102179524A8B237805F5FD2 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; };
177
+ BB2F792C24A3F905000567C9 /* Expo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = "<group>"; };
178
+ C0C08FBC319FFA07AF3EB93F /* Cmlx.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cmlx.framework; path = "Vendor/MLXSwift/0.31.6-macos/Cmlx.framework"; sourceTree = "<group>"; };
179
+ CA962C2DD7808CB057168B5C /* GenerationServiceProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GenerationServiceProtocol.swift; path = GenerationServiceProtocol.swift; sourceTree = "<group>"; };
180
+ E72903DB5F3C7D30AA5ED70B /* main.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = main.swift; path = main.swift; sourceTree = "<group>"; };
181
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
182
+ F11748412D0307B40044C1D9 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = bleam/AppDelegate.swift; sourceTree = "<group>"; };
183
+ F11748442D0722820044C1D9 /* Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "Bridging-Header.h"; path = "bleam/Bridging-Header.h"; sourceTree = "<group>"; };
184
+ FB433ED9D990D1F5BEAC2C93 /* GenerationService.xpc */ = {isa = PBXFileReference; explicitFileType = "wrapper.xpc-service"; includeInIndex = 0; name = GenerationService.xpc; path = GenerationService.xpc; sourceTree = BUILT_PRODUCTS_DIR; };
185
+ A10000000000000000000005 /* main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = main.swift; sourceTree = "<group>"; };
186
+ A10000000000000000000006 /* PlatformHelper */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = PlatformHelper; sourceTree = BUILT_PRODUCTS_DIR; };
187
+ /* End PBXFileReference section */
188
+
189
+ /* Begin PBXFrameworksBuildPhase section */
190
+ A10000000000000000000007 /* Frameworks */ = {
191
+ isa = PBXFrameworksBuildPhase;
192
+ buildActionMask = 2147483647;
193
+ files = (
194
+ );
195
+ runOnlyForDeploymentPostprocessing = 0;
196
+ };
197
+ 0656BC11F02F0C51B3DC5EE0 /* Frameworks */ = {
198
+ isa = PBXFrameworksBuildPhase;
199
+ buildActionMask = 2147483647;
200
+ files = (
201
+ 85A9B86AC5D33F7C6B1090C5 /* Cocoa.framework in Frameworks */,
202
+ 5808A537E8C0FDD3F145939E /* Cmlx.framework in Frameworks */,
203
+ 88118B47E2156DCE3654D954 /* MLX.framework in Frameworks */,
204
+ 876A54A7301C4563517351C8 /* MLXNN.framework in Frameworks */,
205
+ 67C837EB562FAB6302B9D806 /* MLXOptimizers.framework in Frameworks */,
206
+ );
207
+ runOnlyForDeploymentPostprocessing = 0;
208
+ };
209
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
210
+ isa = PBXFrameworksBuildPhase;
211
+ buildActionMask = 2147483647;
212
+ files = (
213
+ 905090F00BCA35D089CB9667 /* libPods-bleam.a in Frameworks */,
214
+ );
215
+ runOnlyForDeploymentPostprocessing = 0;
216
+ };
217
+ /* End PBXFrameworksBuildPhase section */
218
+
219
+ /* Begin PBXGroup section */
220
+ 13B07FAE1A68108700A75B9A /* bleam */ = {
221
+ isa = PBXGroup;
222
+ children = (
223
+ F11748412D0307B40044C1D9 /* AppDelegate.swift */,
224
+ 8C3E6C6D22B84B0C9F49B001 /* Appearance.swift */,
225
+ 8C3E6C6922B84B0C9F49B001 /* SceneDelegate.swift */,
226
+ 8C3E6C7822B84B0C9F49B001 /* bleam.entitlements */,
227
+ 8D1001002F00000000000100 /* Flux2 */,
228
+ F11748442D0722820044C1D9 /* Bridging-Header.h */,
229
+ BB2F792B24A3F905000567C9 /* Supporting */,
230
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
231
+ 13B07FB61A68108700A75B9A /* Info.plist */,
232
+ AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */,
233
+ 1FFDC06DD726360924EFB3CC /* PrivacyInfo.xcprivacy */,
234
+ );
235
+ name = bleam;
236
+ sourceTree = "<group>";
237
+ };
238
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
239
+ isa = PBXGroup;
240
+ children = (
241
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
242
+ 61ED35322473816E5AB381B2 /* libPods-bleam.a */,
243
+ D8A675899C1B0F9C64EFD78D /* OS X */,
244
+ C0C08FBC319FFA07AF3EB93F /* Cmlx.framework */,
245
+ 0AC583E7C9FCB6A6BC6F1190 /* MLX.framework */,
246
+ A7D5F5A0E7AA60EC41DEF91E /* MLXNN.framework */,
247
+ 0A5CF16EB1478B841FE7CD1B /* MLXOptimizers.framework */,
248
+ );
249
+ name = Frameworks;
250
+ sourceTree = "<group>";
251
+ };
252
+ 82D05BA26154CF65650CEDD7 /* Pods */ = {
253
+ isa = PBXGroup;
254
+ children = (
255
+ AC8CDCB8C321FC844F11AB7E /* Pods-bleam.debug.xcconfig */,
256
+ 69DD80AB1F0471BEE878B787 /* Pods-bleam.release.xcconfig */,
257
+ );
258
+ name = Pods;
259
+ path = Pods;
260
+ sourceTree = "<group>";
261
+ };
262
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
263
+ isa = PBXGroup;
264
+ children = (
265
+ );
266
+ name = Libraries;
267
+ sourceTree = "<group>";
268
+ };
269
+ 83CBB9F61A601CBA00E9B192 = {
270
+ isa = PBXGroup;
271
+ children = (
272
+ 13B07FAE1A68108700A75B9A /* bleam */,
273
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
274
+ 83CBBA001A601CBA00E9B192 /* Products */,
275
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
276
+ 82D05BA26154CF65650CEDD7 /* Pods */,
277
+ C304F306F23C790312DB9DC3 /* ExpoModulesProviders */,
278
+ B895E2E16B0B07754F5B5D83 /* Shared */,
279
+ AB7C58FE1F91CA4ED0C60825 /* GenerationService */,
280
+ A1000000000000000000000F /* PlatformHelper */,
281
+ );
282
+ indentWidth = 2;
283
+ sourceTree = "<group>";
284
+ tabWidth = 2;
285
+ usesTabs = 0;
286
+ };
287
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
288
+ isa = PBXGroup;
289
+ children = (
290
+ 13B07F961A680F5B00A75B9A /* bleam.app */,
291
+ FB433ED9D990D1F5BEAC2C93 /* GenerationService.xpc */,
292
+ A10000000000000000000006 /* PlatformHelper */,
293
+ );
294
+ name = Products;
295
+ sourceTree = "<group>";
296
+ };
297
+ 8D1001002F00000000000100 /* Flux2 */ = {
298
+ isa = PBXGroup;
299
+ children = (
300
+ 8D1000012F00000000000001 /* Flux2Core.swift */,
301
+ 8D1000022F00000000000002 /* VAEConfig.swift */,
302
+ 8D1000032F00000000000003 /* Flux2Config.swift */,
303
+ 8D1000042F00000000000004 /* MemoryConfig.swift */,
304
+ 8D1000052F00000000000005 /* QuantizationConfig.swift */,
305
+ 8D1000062F00000000000006 /* MemoryOptimizationConfig.swift */,
306
+ 8D1000072F00000000000007 /* TransformerRepoProfile.swift */,
307
+ 8D1000082F00000000000008 /* ModelRegistry.swift */,
308
+ 8D1000092F00000000000009 /* WeightLoader.swift */,
309
+ 8D1000102F00000000000010 /* FlowMatchEulerScheduler.swift */,
310
+ 8D1000112F00000000000011 /* Flux2Attention.swift */,
311
+ 8D1000122F00000000000012 /* Flux2KVCache.swift */,
312
+ 8D1000132F00000000000013 /* Flux2TransformerBlock.swift */,
313
+ 8D1000142F00000000000014 /* Flux2FeedForward.swift */,
314
+ 8D1000152F00000000000015 /* Flux2FusedKernels.swift */,
315
+ 8D1000162F00000000000016 /* Flux2ParallelAttention.swift */,
316
+ 8D1000172F00000000000017 /* Flux2Modulation.swift */,
317
+ 8D1000182F00000000000018 /* Flux2RoPE.swift */,
318
+ 8D1000192F00000000000019 /* Flux2Embeddings.swift */,
319
+ 8D1000202F00000000000020 /* Flux2Transformer.swift */,
320
+ 8D1000212F00000000000021 /* Flux2SingleBlock.swift */,
321
+ 8D1000222F00000000000022 /* MLXCheckpoint.swift */,
322
+ 8D1000232F00000000000023 /* Flux2Debug.swift */,
323
+ 8D1000242F00000000000024 /* MemoryManager.swift */,
324
+ 8D1000252F00000000000025 /* AutoencoderKL.swift */,
325
+ 8D1000262F00000000000026 /* VAEEncoder.swift */,
326
+ 8D1000272F00000000000027 /* VAEDecoder.swift */,
327
+ 8D1000282F00000000000028 /* ResnetBlock.swift */,
328
+ 8D1000292F00000000000029 /* LatentUtils.swift */,
329
+ 8D1000302F00000000000030 /* FluxImageRunner.swift */,
330
+ 8D1000312F00000000000031 /* KleinTextEncoder.swift */,
331
+ );
332
+ name = Flux2;
333
+ sourceTree = "<group>";
334
+ };
335
+ AB7C58FE1F91CA4ED0C60825 /* GenerationService */ = {
336
+ isa = PBXGroup;
337
+ children = (
338
+ 01728992DE5D0CA230CE45FE /* Info.plist */,
339
+ 7DFD85F313B4BAB889F5FECF /* GenerationService.entitlements */,
340
+ E72903DB5F3C7D30AA5ED70B /* main.swift */,
341
+ A4485061CD0366330F3F5BE0 /* ImageGenerationRunner.swift */,
342
+ );
343
+ name = GenerationService;
344
+ path = GenerationService;
345
+ sourceTree = "<group>";
346
+ };
347
+ A1000000000000000000000F /* PlatformHelper */ = {
348
+ isa = PBXGroup;
349
+ children = (
350
+ A10000000000000000000005 /* main.swift */,
351
+ );
352
+ path = PlatformHelper;
353
+ sourceTree = "<group>";
354
+ };
355
+ B895E2E16B0B07754F5B5D83 /* Shared */ = {
356
+ isa = PBXGroup;
357
+ children = (
358
+ D1A2D6EC5CB7BB01DBBDF46B /* Generation */,
359
+ );
360
+ name = Shared;
361
+ path = Shared;
362
+ sourceTree = "<group>";
363
+ };
364
+ BB2F792B24A3F905000567C9 /* Supporting */ = {
365
+ isa = PBXGroup;
366
+ children = (
367
+ BB2F792C24A3F905000567C9 /* Expo.plist */,
368
+ );
369
+ name = Supporting;
370
+ path = bleam/Supporting;
371
+ sourceTree = "<group>";
372
+ };
373
+ BFD354351023DC714C9A186B /* bleam */ = {
374
+ isa = PBXGroup;
375
+ children = (
376
+ 40779663875581067F7CF4CE /* ExpoModulesProvider.swift */,
377
+ );
378
+ name = bleam;
379
+ sourceTree = "<group>";
380
+ };
381
+ C304F306F23C790312DB9DC3 /* ExpoModulesProviders */ = {
382
+ isa = PBXGroup;
383
+ children = (
384
+ BFD354351023DC714C9A186B /* bleam */,
385
+ );
386
+ name = ExpoModulesProviders;
387
+ sourceTree = "<group>";
388
+ };
389
+ D1A2D6EC5CB7BB01DBBDF46B /* Generation */ = {
390
+ isa = PBXGroup;
391
+ children = (
392
+ CA962C2DD7808CB057168B5C /* GenerationServiceProtocol.swift */,
393
+ 7C1C083A847A6F08154A7655 /* GenerationWorkerProtocol.swift */,
394
+ );
395
+ name = Generation;
396
+ path = Generation;
397
+ sourceTree = "<group>";
398
+ };
399
+ D8A675899C1B0F9C64EFD78D /* OS X */ = {
400
+ isa = PBXGroup;
401
+ children = (
402
+ B102179524A8B237805F5FD2 /* Cocoa.framework */,
403
+ 19FBF3B9F72F53B33BE61EB3 /* Cocoa.framework */,
404
+ );
405
+ name = "OS X";
406
+ sourceTree = "<group>";
407
+ };
408
+ /* End PBXGroup section */
409
+
410
+ /* Begin PBXNativeTarget section */
411
+ 13B07F861A680F5B00A75B9A /* bleam */ = {
412
+ isa = PBXNativeTarget;
413
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "bleam" */;
414
+ buildPhases = (
415
+ 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */,
416
+ 61014C22D114298E0DF8FB8E /* [Expo] Configure project */,
417
+ 13B07F871A680F5B00A75B9A /* Sources */,
418
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
419
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
420
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
421
+ 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */,
422
+ 84C420C0881684F1F1EB77FB /* [bleam] Normalize Catalyst prebuilt frameworks */,
423
+ BEC473809D63946EDB256C9A /* [CP] Embed Pods Frameworks */,
424
+ CA12AFD569B8A5A458B4F36A /* Embed XPC Services */,
425
+ A10000000000000000000010 /* Embed Platform Helper */,
426
+ );
427
+ buildRules = (
428
+ );
429
+ dependencies = (
430
+ 6E20F2C4EC850BB2D3853EAD /* PBXTargetDependency */,
431
+ A1000000000000000000000B /* PBXTargetDependency */,
432
+ );
433
+ name = bleam;
434
+ productName = bleam;
435
+ productReference = 13B07F961A680F5B00A75B9A /* bleam.app */;
436
+ productType = "com.apple.product-type.application";
437
+ };
438
+ 8F04CB76A01E93A4B73D67A5 /* GenerationService */ = {
439
+ isa = PBXNativeTarget;
440
+ buildConfigurationList = 8C91338140EE430FAA74813B /* Build configuration list for PBXNativeTarget "GenerationService" */;
441
+ buildPhases = (
442
+ DFDACF4528162BC6AD26B042 /* Sources */,
443
+ 0656BC11F02F0C51B3DC5EE0 /* Frameworks */,
444
+ 5A6B7C8D9E0F100000000010 /* Embed GenerationService MLX Frameworks */,
445
+ 2CC2401EFDA70EF0A2A22A6C /* Resources */,
446
+ );
447
+ buildRules = (
448
+ );
449
+ dependencies = (
450
+ );
451
+ name = GenerationService;
452
+ productName = GenerationService;
453
+ productReference = FB433ED9D990D1F5BEAC2C93 /* GenerationService.xpc */;
454
+ productType = "com.apple.product-type.xpc-service";
455
+ };
456
+ A1000000000000000000000A /* PlatformHelper */ = {
457
+ isa = PBXNativeTarget;
458
+ buildConfigurationList = A1000000000000000000000E /* Build configuration list for PBXNativeTarget "PlatformHelper" */;
459
+ buildPhases = (
460
+ A10000000000000000000009 /* Sources */,
461
+ A10000000000000000000007 /* Frameworks */,
462
+ A10000000000000000000008 /* Resources */,
463
+ );
464
+ buildRules = (
465
+ );
466
+ dependencies = (
467
+ );
468
+ name = PlatformHelper;
469
+ productName = PlatformHelper;
470
+ productReference = A10000000000000000000006 /* PlatformHelper */;
471
+ productType = "com.apple.product-type.tool";
472
+ };
473
+ /* End PBXNativeTarget section */
474
+
475
+ /* Begin PBXProject section */
476
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
477
+ isa = PBXProject;
478
+ attributes = {
479
+ LastUpgradeCheck = 1130;
480
+ TargetAttributes = {
481
+ 13B07F861A680F5B00A75B9A = {
482
+ LastSwiftMigration = 1250;
483
+ };
484
+ 8F04CB76A01E93A4B73D67A5 = {
485
+ LastSwiftMigration = 1250;
486
+ };
487
+ A1000000000000000000000A = {
488
+ LastSwiftMigration = 1250;
489
+ };
490
+ };
491
+ };
492
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Bleam" */;
493
+ compatibilityVersion = "Xcode 3.2";
494
+ developmentRegion = en;
495
+ hasScannedForEncodings = 0;
496
+ knownRegions = (
497
+ en,
498
+ Base,
499
+ );
500
+ mainGroup = 83CBB9F61A601CBA00E9B192;
501
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
502
+ projectDirPath = "";
503
+ projectRoot = "";
504
+ targets = (
505
+ 13B07F861A680F5B00A75B9A /* bleam */,
506
+ 8F04CB76A01E93A4B73D67A5 /* GenerationService */,
507
+ A1000000000000000000000A /* PlatformHelper */,
508
+ );
509
+ };
510
+ /* End PBXProject section */
511
+
512
+ /* Begin PBXResourcesBuildPhase section */
513
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
514
+ isa = PBXResourcesBuildPhase;
515
+ buildActionMask = 2147483647;
516
+ files = (
517
+ BB2F792D24A3F905000567C9 /* Expo.plist in Resources */,
518
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
519
+ 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */,
520
+ 68D4680D3744044E87866844 /* PrivacyInfo.xcprivacy in Resources */,
521
+ );
522
+ runOnlyForDeploymentPostprocessing = 0;
523
+ };
524
+ 2CC2401EFDA70EF0A2A22A6C /* Resources */ = {
525
+ isa = PBXResourcesBuildPhase;
526
+ buildActionMask = 2147483647;
527
+ files = (
528
+ );
529
+ runOnlyForDeploymentPostprocessing = 0;
530
+ };
531
+ A10000000000000000000008 /* Resources */ = {
532
+ isa = PBXResourcesBuildPhase;
533
+ buildActionMask = 2147483647;
534
+ files = (
535
+ );
536
+ runOnlyForDeploymentPostprocessing = 0;
537
+ };
538
+ /* End PBXResourcesBuildPhase section */
539
+
540
+ /* Begin PBXShellScriptBuildPhase section */
541
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
542
+ isa = PBXShellScriptBuildPhase;
543
+ alwaysOutOfDate = 1;
544
+ buildActionMask = 2147483647;
545
+ files = (
546
+ );
547
+ inputPaths = (
548
+ "$(SRCROOT)/.xcode.env",
549
+ "$(SRCROOT)/.xcode.env.local",
550
+ );
551
+ name = "Bundle React Native code and images";
552
+ outputPaths = (
553
+ );
554
+ runOnlyForDeploymentPostprocessing = 0;
555
+ shellPath = /bin/sh;
556
+ shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\nif [[ \"$CONFIGURATION\" = *Debug* ]]; then\n export SKIP_BUNDLING=1\nfi\nif [[ -z \"$ENTRY_FILE\" ]]; then\n # Set the entry JS file using the bundler's entry resolution.\n export ENTRY_FILE=\"$(\"$NODE_BINARY\" -e \"require('expo/scripts/resolveAppEntry')\" \"$PROJECT_ROOT\" ios absolute | tail -n 1)\"\nfi\n\nif [[ -z \"$CLI_PATH\" ]]; then\n # Use Expo CLI\n export CLI_PATH=\"$(\"$NODE_BINARY\" --print \"require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })\")\"\nfi\nif [[ -z \"$BUNDLE_COMMAND\" ]]; then\n # Default Expo CLI command for bundling\n export BUNDLE_COMMAND=\"export:embed\"\nfi\n\n# Source .xcode.env.updates if it exists to allow\n# SKIP_BUNDLING to be unset if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.updates\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.updates\"\nfi\n# Source local changes to allow overrides\n# if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n\n";
557
+ };
558
+ 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */ = {
559
+ isa = PBXShellScriptBuildPhase;
560
+ buildActionMask = 2147483647;
561
+ files = (
562
+ );
563
+ inputFileListPaths = (
564
+ );
565
+ inputPaths = (
566
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
567
+ "${PODS_ROOT}/Manifest.lock",
568
+ );
569
+ name = "[CP] Check Pods Manifest.lock";
570
+ outputFileListPaths = (
571
+ );
572
+ outputPaths = (
573
+ "$(DERIVED_FILE_DIR)/Pods-bleam-checkManifestLockResult.txt",
574
+ );
575
+ runOnlyForDeploymentPostprocessing = 0;
576
+ shellPath = /bin/sh;
577
+ 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";
578
+ showEnvVarsInLog = 0;
579
+ };
580
+ 61014C22D114298E0DF8FB8E /* [Expo] Configure project */ = {
581
+ isa = PBXShellScriptBuildPhase;
582
+ alwaysOutOfDate = 1;
583
+ buildActionMask = 2147483647;
584
+ files = (
585
+ );
586
+ inputFileListPaths = (
587
+ );
588
+ inputPaths = (
589
+ "$(SRCROOT)/.xcode.env",
590
+ "$(SRCROOT)/.xcode.env.local",
591
+ "$(SRCROOT)/bleam/bleam.entitlements",
592
+ "$(SRCROOT)/Pods/Target Support Files/Pods-bleam/expo-configure-project.sh",
593
+ );
594
+ name = "[Expo] Configure project";
595
+ outputFileListPaths = (
596
+ );
597
+ outputPaths = (
598
+ "$(SRCROOT)/Pods/Target Support Files/Pods-bleam/ExpoModulesProvider.swift",
599
+ );
600
+ runOnlyForDeploymentPostprocessing = 0;
601
+ shellPath = /bin/sh;
602
+ shellScript = "# This script configures Expo modules and generates the modules provider file.\nbash -l -c \"./Pods/Target\\ Support\\ Files/Pods-bleam/expo-configure-project.sh\"\n";
603
+ };
604
+ 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */ = {
605
+ isa = PBXShellScriptBuildPhase;
606
+ buildActionMask = 2147483647;
607
+ files = (
608
+ );
609
+ inputPaths = (
610
+ "${PODS_ROOT}/Target Support Files/Pods-bleam/Pods-bleam-resources.sh",
611
+ "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
612
+ "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/ExpoConstants_privacy.bundle",
613
+ "${PODS_CONFIGURATION_BUILD_DIR}/ExpoFileSystem/ExpoFileSystem_privacy.bundle",
614
+ "${PODS_CONFIGURATION_BUILD_DIR}/NativeScriptNativeApi/NativeScriptNativeApi.bundle",
615
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/React-Core_privacy.bundle",
616
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact/React-cxxreact_privacy.bundle",
617
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-timing/React-timing_privacy.bundle",
618
+ );
619
+ name = "[CP] Copy Pods Resources";
620
+ outputPaths = (
621
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
622
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoConstants_privacy.bundle",
623
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoFileSystem_privacy.bundle",
624
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/NativeScriptNativeApi.bundle",
625
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-Core_privacy.bundle",
626
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-cxxreact_privacy.bundle",
627
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-timing_privacy.bundle",
628
+ );
629
+ runOnlyForDeploymentPostprocessing = 0;
630
+ shellPath = /bin/sh;
631
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-bleam/Pods-bleam-resources.sh\"\n";
632
+ showEnvVarsInLog = 0;
633
+ };
634
+ 84C420C0881684F1F1EB77FB /* [bleam] Normalize Catalyst prebuilt frameworks */ = {
635
+ isa = PBXShellScriptBuildPhase;
636
+ buildActionMask = 2147483647;
637
+ files = (
638
+ );
639
+ inputFileListPaths = (
640
+ );
641
+ inputPaths = (
642
+ );
643
+ name = "[bleam] Normalize Catalyst prebuilt frameworks";
644
+ outputFileListPaths = (
645
+ );
646
+ outputPaths = (
647
+ );
648
+ runOnlyForDeploymentPostprocessing = 0;
649
+ shellPath = /bin/sh;
650
+ shellScript = "set -euo pipefail\n\nif [[ \"${EFFECTIVE_PLATFORM_NAME:-}\" != \"-maccatalyst\" ]]; then\n exit 0\nfi\n\nnormalize_framework() {\n # Codesign rejects embedded macOS frameworks with root-level payload files.\n local framework=\"$1\"\n local binary_name=\"$2\"\n local versions_dir=\"${framework}/Versions\"\n local current_dir=\"${versions_dir}/Current\"\n local version_a_dir=\"${versions_dir}/A\"\n\n if [[ ! -d \"${version_a_dir}\" ]]; then\n return 0\n fi\n\n if [[ ! -e \"${version_a_dir}/${binary_name}\" && -e \"${framework}/${binary_name}\" ]]; then\n mv \"${framework}/${binary_name}\" \"${version_a_dir}/${binary_name}\"\n fi\n\n if [[ -e \"${framework}/${binary_name}\" || -L \"${framework}/${binary_name}\" ]]; then\n rm -f \"${framework}/${binary_name}\"\n fi\n ln -sfn \"Versions/Current/${binary_name}\" \"${framework}/${binary_name}\"\n\n if [[ -e \"${current_dir}\" || -L \"${current_dir}\" ]]; then\n rm -rf \"${current_dir}\"\n fi\n ln -sfn \"A\" \"${current_dir}\"\n\n if [[ -e \"${framework}/Resources\" || -L \"${framework}/Resources\" ]]; then\n rm -rf \"${framework}/Resources\"\n fi\n mkdir -p \"${version_a_dir}/Resources\"\n\n shopt -s nullglob\n for bundle in \"${framework}\"/*.bundle; do\n mv \"${bundle}\" \"${version_a_dir}/Resources/\"\n done\n shopt -u nullglob\n\n if [[ -d \"${version_a_dir}/Resources\" ]]; then\n ln -sfn \"Versions/Current/Resources\" \"${framework}/Resources\"\n fi\n}\n\nnormalize_framework \"${BUILT_PRODUCTS_DIR}/XCFrameworkIntermediates/React-Core-prebuilt/React.framework\" \"React\"\nnormalize_framework \"${BUILT_PRODUCTS_DIR}/XCFrameworkIntermediates/ReactNativeDependencies/ReactNativeDependencies.framework\" \"ReactNativeDependencies\"\n";
651
+ showEnvVarsInLog = 0;
652
+ };
653
+ BEC473809D63946EDB256C9A /* [CP] Embed Pods Frameworks */ = {
654
+ isa = PBXShellScriptBuildPhase;
655
+ buildActionMask = 2147483647;
656
+ files = (
657
+ );
658
+ inputPaths = (
659
+ "${PODS_ROOT}/Target Support Files/Pods-bleam/Pods-bleam-frameworks.sh",
660
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/ExpoModulesJSI/ExpoModulesJSI.framework/ExpoModulesJSI",
661
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/React-Core-prebuilt/React.framework/React",
662
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/ReactNativeDependencies/ReactNativeDependencies.framework/ReactNativeDependencies",
663
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermesvm.framework/hermesvm",
664
+ );
665
+ name = "[CP] Embed Pods Frameworks";
666
+ outputPaths = (
667
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ExpoModulesJSI.framework",
668
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/React.framework",
669
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ReactNativeDependencies.framework",
670
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermesvm.framework",
671
+ );
672
+ runOnlyForDeploymentPostprocessing = 0;
673
+ shellPath = /bin/sh;
674
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-bleam/Pods-bleam-frameworks.sh\"\n";
675
+ showEnvVarsInLog = 0;
676
+ };
677
+ /* End PBXShellScriptBuildPhase section */
678
+
679
+ /* Begin PBXSourcesBuildPhase section */
680
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
681
+ isa = PBXSourcesBuildPhase;
682
+ buildActionMask = 2147483647;
683
+ files = (
684
+ F11748422D0307B40044C1D9 /* AppDelegate.swift in Sources */,
685
+ 8C3E6C6E22B84B0C9F49B001 /* Appearance.swift in Sources */,
686
+ 8C3E6C6A22B84B0C9F49B001 /* SceneDelegate.swift in Sources */,
687
+ 720147A3EE18E6A5E742C944 /* ExpoModulesProvider.swift in Sources */,
688
+ );
689
+ runOnlyForDeploymentPostprocessing = 0;
690
+ };
691
+ DFDACF4528162BC6AD26B042 /* Sources */ = {
692
+ isa = PBXSourcesBuildPhase;
693
+ buildActionMask = 2147483647;
694
+ files = (
695
+ 40D3CED243015B2CFF6ABBDE /* GenerationServiceProtocol.swift in Sources */,
696
+ D63D5719C5F6BEF2642A0627 /* GenerationWorkerProtocol.swift in Sources */,
697
+ 90AAAF98423C82ED52385571 /* main.swift in Sources */,
698
+ B23B4E23A940CE8F6FD4B85A /* ImageGenerationRunner.swift in Sources */,
699
+ 5224DF2286EAF50159491DCA /* Flux2Config.swift in Sources */,
700
+ 814C5B6310C5000E9B289C59 /* MemoryConfig.swift in Sources */,
701
+ 9819B5258147130BD109E6CD /* MemoryOptimizationConfig.swift in Sources */,
702
+ 94CF7F0ECED288C9E4DEDEE3 /* ModelRegistry.swift in Sources */,
703
+ 3997139A67333ECAF3E123BC /* QuantizationConfig.swift in Sources */,
704
+ 1B329811D9772E54C3A9AB29 /* TransformerRepoProfile.swift in Sources */,
705
+ 765F8D93716FB0E9462F2740 /* VAEConfig.swift in Sources */,
706
+ 44165776E01ECEAE6D62A9AF /* Flux2Core.swift in Sources */,
707
+ B8D80A14FDE39B953F01DA98 /* WeightLoader.swift in Sources */,
708
+ 8E3ED08321AD720C641E4025 /* FluxImageRunner.swift in Sources */,
709
+ 233FAB725E8A3004716A8E24 /* LatentUtils.swift in Sources */,
710
+ B957694592E7EBD326D03A2F /* FlowMatchEulerScheduler.swift in Sources */,
711
+ 3D5960963160C13A253E4986 /* KleinTextEncoder.swift in Sources */,
712
+ 33F4BE81709FF1099AE37F88 /* Flux2Attention.swift in Sources */,
713
+ 29CB768E5FC4C70E782B0CCE /* Flux2Embeddings.swift in Sources */,
714
+ 87C064F640E0EB57513F4213 /* Flux2FeedForward.swift in Sources */,
715
+ 25BC3F4AD766537E97BD0F82 /* Flux2FusedKernels.swift in Sources */,
716
+ F3E19B0AABF791129F5C2531 /* Flux2KVCache.swift in Sources */,
717
+ 87970E718E17EDFDD6D44383 /* Flux2Modulation.swift in Sources */,
718
+ 3B4C2533DE63EA0A41B1DB55 /* Flux2ParallelAttention.swift in Sources */,
719
+ 0E0CEDC1EA6186197AE2A6A3 /* Flux2RoPE.swift in Sources */,
720
+ C0E15CD5E6F368701D5653B0 /* Flux2SingleBlock.swift in Sources */,
721
+ 6D88D5C22AF7B2193D20B6AB /* Flux2Transformer.swift in Sources */,
722
+ 725D92B84B28EF1BBAEA8FCC /* Flux2TransformerBlock.swift in Sources */,
723
+ 0A61E0C9AD2C524515035D34 /* Flux2Debug.swift in Sources */,
724
+ 45340A3E744B915275391906 /* MLXCheckpoint.swift in Sources */,
725
+ CA976FF294D23C5C0D1BCB6A /* MemoryManager.swift in Sources */,
726
+ 0AFD71CA58FE814F0E10D8BB /* AutoencoderKL.swift in Sources */,
727
+ 2F3154D3F6A27FD3E193FE85 /* ResnetBlock.swift in Sources */,
728
+ 41C4ACF77557BC4E450D11F9 /* VAEDecoder.swift in Sources */,
729
+ 1264A9BEF8CEC8FAB61E70A0 /* VAEEncoder.swift in Sources */,
730
+ );
731
+ runOnlyForDeploymentPostprocessing = 0;
732
+ };
733
+ A10000000000000000000009 /* Sources */ = {
734
+ isa = PBXSourcesBuildPhase;
735
+ buildActionMask = 2147483647;
736
+ files = (
737
+ A10000000000000000000001 /* main.swift in Sources */,
738
+ );
739
+ runOnlyForDeploymentPostprocessing = 0;
740
+ };
741
+ /* End PBXSourcesBuildPhase section */
742
+
743
+ /* Begin PBXTargetDependency section */
744
+ 6E20F2C4EC850BB2D3853EAD /* PBXTargetDependency */ = {
745
+ isa = PBXTargetDependency;
746
+ name = GenerationService;
747
+ target = 8F04CB76A01E93A4B73D67A5 /* GenerationService */;
748
+ targetProxy = 0B3BB0ECB863062C83BCE9B3 /* PBXContainerItemProxy */;
749
+ };
750
+ A1000000000000000000000B /* PBXTargetDependency */ = {
751
+ isa = PBXTargetDependency;
752
+ name = PlatformHelper;
753
+ target = A1000000000000000000000A /* PlatformHelper */;
754
+ targetProxy = A10000000000000000000003 /* PBXContainerItemProxy */;
755
+ };
756
+ /* End PBXTargetDependency section */
757
+
758
+ /* Begin XCBuildConfiguration section */
759
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
760
+ isa = XCBuildConfiguration;
761
+ baseConfigurationReference = AC8CDCB8C321FC844F11AB7E /* Pods-bleam.debug.xcconfig */;
762
+ buildSettings = {
763
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
764
+ CLANG_ENABLE_MODULES = YES;
765
+ CODE_SIGN_ENTITLEMENTS = bleam/bleam.entitlements;
766
+ CURRENT_PROJECT_VERSION = 1;
767
+ DEAD_CODE_STRIPPING = YES;
768
+ DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER = NO;
769
+ DEVELOPMENT_TEAM = 5SZ3H5P69M;
770
+ ENABLE_BITCODE = NO;
771
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = x86_64;
772
+ FRAMEWORK_SEARCH_PATHS = "$(inherited)";
773
+ GCC_PREPROCESSOR_DEFINITIONS = (
774
+ "$(inherited)",
775
+ "FB_SONARKIT_ENABLED=1",
776
+ );
777
+ INFOPLIST_FILE = bleam/Info.plist;
778
+ IPHONEOS_DEPLOYMENT_TARGET = 17.0;
779
+ LD_RUNPATH_SEARCH_PATHS = (
780
+ "$(inherited)",
781
+ "@executable_path/Frameworks",
782
+ );
783
+ LIBRARY_SEARCH_PATHS = (
784
+ "$(SDKROOT)/usr/lib/swift",
785
+ "$(SDKROOT)/System/iOSSupport/usr/lib/swift",
786
+ "$(inherited)",
787
+ );
788
+ MACCATALYST_MINIMUM_DEPLOYMENT_TARGET = 13.0;
789
+ MACOSX_DEPLOYMENT_TARGET = 13.4;
790
+ MARKETING_VERSION = 1.0;
791
+ OTHER_LDFLAGS = (
792
+ "$(inherited)",
793
+ "-ObjC",
794
+ "-lc++",
795
+ );
796
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
797
+ PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
798
+ PRODUCT_BUNDLE_IDENTIFIER = dev.bleam.app;
799
+ PRODUCT_NAME = bleam;
800
+ SUPPORTS_MACCATALYST = YES;
801
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
802
+ SWIFT_OBJC_BRIDGING_HEADER = "bleam/Bridging-Header.h";
803
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
804
+ SWIFT_VERSION = 5.0;
805
+ TARGETED_DEVICE_FAMILY = "1,2,6";
806
+ VERSIONING_SYSTEM = "apple-generic";
807
+ };
808
+ name = Debug;
809
+ };
810
+ 13B07F951A680F5B00A75B9A /* Release */ = {
811
+ isa = XCBuildConfiguration;
812
+ baseConfigurationReference = 69DD80AB1F0471BEE878B787 /* Pods-bleam.release.xcconfig */;
813
+ buildSettings = {
814
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
815
+ CLANG_ENABLE_MODULES = YES;
816
+ CODE_SIGN_ENTITLEMENTS = bleam/bleam.entitlements;
817
+ CURRENT_PROJECT_VERSION = 1;
818
+ DEAD_CODE_STRIPPING = YES;
819
+ DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER = NO;
820
+ DEVELOPMENT_TEAM = 5SZ3H5P69M;
821
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = x86_64;
822
+ FRAMEWORK_SEARCH_PATHS = "$(inherited)";
823
+ INFOPLIST_FILE = bleam/Info.plist;
824
+ IPHONEOS_DEPLOYMENT_TARGET = 17.0;
825
+ LD_RUNPATH_SEARCH_PATHS = (
826
+ "$(inherited)",
827
+ "@executable_path/Frameworks",
828
+ );
829
+ LIBRARY_SEARCH_PATHS = (
830
+ "$(SDKROOT)/usr/lib/swift",
831
+ "$(SDKROOT)/System/iOSSupport/usr/lib/swift",
832
+ "$(inherited)",
833
+ );
834
+ MACCATALYST_MINIMUM_DEPLOYMENT_TARGET = 13.0;
835
+ MACOSX_DEPLOYMENT_TARGET = 13.4;
836
+ MARKETING_VERSION = 1.0;
837
+ OTHER_LDFLAGS = (
838
+ "$(inherited)",
839
+ "-ObjC",
840
+ "-lc++",
841
+ );
842
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
843
+ PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
844
+ PRODUCT_BUNDLE_IDENTIFIER = dev.bleam.app;
845
+ PRODUCT_NAME = bleam;
846
+ SUPPORTS_MACCATALYST = YES;
847
+ SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
848
+ SWIFT_OBJC_BRIDGING_HEADER = "bleam/Bridging-Header.h";
849
+ SWIFT_VERSION = 5.0;
850
+ TARGETED_DEVICE_FAMILY = "1,2,6";
851
+ VERSIONING_SYSTEM = "apple-generic";
852
+ };
853
+ name = Release;
854
+ };
855
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
856
+ isa = XCBuildConfiguration;
857
+ buildSettings = {
858
+ ALWAYS_SEARCH_USER_PATHS = NO;
859
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
860
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
861
+ CLANG_CXX_LIBRARY = "libc++";
862
+ CLANG_ENABLE_MODULES = YES;
863
+ CLANG_ENABLE_OBJC_ARC = YES;
864
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
865
+ CLANG_WARN_BOOL_CONVERSION = YES;
866
+ CLANG_WARN_COMMA = YES;
867
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
868
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
869
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
870
+ CLANG_WARN_EMPTY_BODY = YES;
871
+ CLANG_WARN_ENUM_CONVERSION = YES;
872
+ CLANG_WARN_INFINITE_RECURSION = YES;
873
+ CLANG_WARN_INT_CONVERSION = YES;
874
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
875
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
876
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
877
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
878
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
879
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
880
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
881
+ CLANG_WARN_UNREACHABLE_CODE = YES;
882
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
883
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
884
+ COPY_PHASE_STRIP = NO;
885
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
886
+ ENABLE_TESTABILITY = YES;
887
+ GCC_C_LANGUAGE_STANDARD = gnu99;
888
+ GCC_DYNAMIC_NO_PIC = NO;
889
+ GCC_NO_COMMON_BLOCKS = YES;
890
+ GCC_OPTIMIZATION_LEVEL = 0;
891
+ GCC_PREPROCESSOR_DEFINITIONS = (
892
+ "DEBUG=1",
893
+ "$(inherited)",
894
+ );
895
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
896
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
897
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
898
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
899
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
900
+ GCC_WARN_UNUSED_FUNCTION = YES;
901
+ GCC_WARN_UNUSED_VARIABLE = YES;
902
+ IPHONEOS_DEPLOYMENT_TARGET = 17.0;
903
+ LD_RUNPATH_SEARCH_PATHS = (
904
+ /usr/lib/swift,
905
+ "$(inherited)",
906
+ );
907
+ LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
908
+ MTL_ENABLE_DEBUG_INFO = YES;
909
+ ONLY_ACTIVE_ARCH = YES;
910
+ OTHER_CFLAGS = (
911
+ "$(inherited)",
912
+ "-DRCT_REMOVE_LEGACY_ARCH=1",
913
+ );
914
+ OTHER_CPLUSPLUSFLAGS = (
915
+ "$(inherited)",
916
+ "-DRCT_REMOVE_LEGACY_ARCH=1",
917
+ );
918
+ PODFILE_DIR = "$(SRCROOT)";
919
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../../../node_modules/react-native";
920
+ SDKROOT = iphoneos;
921
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
922
+ SWIFT_ENABLE_EXPLICIT_MODULES = NO;
923
+ USE_HERMES = true;
924
+ };
925
+ name = Debug;
926
+ };
927
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
928
+ isa = XCBuildConfiguration;
929
+ buildSettings = {
930
+ ALWAYS_SEARCH_USER_PATHS = NO;
931
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
932
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
933
+ CLANG_CXX_LIBRARY = "libc++";
934
+ CLANG_ENABLE_MODULES = YES;
935
+ CLANG_ENABLE_OBJC_ARC = YES;
936
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
937
+ CLANG_WARN_BOOL_CONVERSION = YES;
938
+ CLANG_WARN_COMMA = YES;
939
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
940
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
941
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
942
+ CLANG_WARN_EMPTY_BODY = YES;
943
+ CLANG_WARN_ENUM_CONVERSION = YES;
944
+ CLANG_WARN_INFINITE_RECURSION = YES;
945
+ CLANG_WARN_INT_CONVERSION = YES;
946
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
947
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
948
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
949
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
950
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
951
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
952
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
953
+ CLANG_WARN_UNREACHABLE_CODE = YES;
954
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
955
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
956
+ COPY_PHASE_STRIP = YES;
957
+ ENABLE_NS_ASSERTIONS = NO;
958
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
959
+ GCC_C_LANGUAGE_STANDARD = gnu99;
960
+ GCC_NO_COMMON_BLOCKS = YES;
961
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
962
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
963
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
964
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
965
+ GCC_WARN_UNUSED_FUNCTION = YES;
966
+ GCC_WARN_UNUSED_VARIABLE = YES;
967
+ IPHONEOS_DEPLOYMENT_TARGET = 17.0;
968
+ LD_RUNPATH_SEARCH_PATHS = (
969
+ /usr/lib/swift,
970
+ "$(inherited)",
971
+ );
972
+ LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
973
+ MTL_ENABLE_DEBUG_INFO = NO;
974
+ OTHER_CFLAGS = (
975
+ "$(inherited)",
976
+ "-DRCT_REMOVE_LEGACY_ARCH=1",
977
+ );
978
+ OTHER_CPLUSPLUSFLAGS = (
979
+ "$(inherited)",
980
+ "-DRCT_REMOVE_LEGACY_ARCH=1",
981
+ );
982
+ PODFILE_DIR = "$(SRCROOT)";
983
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../../../node_modules/react-native";
984
+ SDKROOT = iphoneos;
985
+ SWIFT_ENABLE_EXPLICIT_MODULES = NO;
986
+ USE_HERMES = true;
987
+ VALIDATE_PRODUCT = YES;
988
+ };
989
+ name = Release;
990
+ };
991
+ E2FABB6CBB414995A62BCE52 /* Release */ = {
992
+ isa = XCBuildConfiguration;
993
+ buildSettings = {
994
+ CODE_SIGN_ENTITLEMENTS = GenerationService/GenerationService.entitlements;
995
+ CODE_SIGN_STYLE = Automatic;
996
+ CURRENT_PROJECT_VERSION = 1;
997
+ DEAD_CODE_STRIPPING = YES;
998
+ DEVELOPMENT_TEAM = 5SZ3H5P69M;
999
+ ENABLE_APP_SANDBOX = NO;
1000
+ ENABLE_HARDENED_RUNTIME = YES;
1001
+ FRAMEWORK_SEARCH_PATHS = (
1002
+ "$(inherited)",
1003
+ "$(PROJECT_DIR)/Vendor/MLXSwift/0.31.6-macos",
1004
+ );
1005
+ GENERATE_INFOPLIST_FILE = NO;
1006
+ INFOPLIST_FILE = GenerationService/Info.plist;
1007
+ LD_RUNPATH_SEARCH_PATHS = (
1008
+ "$(inherited)",
1009
+ "@executable_path/../Frameworks",
1010
+ "@executable_path/../../../../Frameworks",
1011
+ );
1012
+ LIBRARY_SEARCH_PATHS = (
1013
+ "$(SDKROOT)/usr/lib/swift",
1014
+ "$(SDKROOT)/System/iOSSupport/usr/lib/swift",
1015
+ "$(inherited)",
1016
+ );
1017
+ MACOSX_DEPLOYMENT_TARGET = 13.4;
1018
+ MARKETING_VERSION = 1.0;
1019
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
1020
+ PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
1021
+ PRODUCT_BUNDLE_IDENTIFIER = dev.bleam.app.GenerationService;
1022
+ PRODUCT_NAME = "$(TARGET_NAME)";
1023
+ SDKROOT = macosx;
1024
+ SKIP_INSTALL = YES;
1025
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
1026
+ SWIFT_VERSION = 5.0;
1027
+ };
1028
+ name = Release;
1029
+ };
1030
+ F2710619ADF0B3AB8014C12D /* Debug */ = {
1031
+ isa = XCBuildConfiguration;
1032
+ buildSettings = {
1033
+ CODE_SIGN_ENTITLEMENTS = GenerationService/GenerationService.entitlements;
1034
+ CODE_SIGN_STYLE = Automatic;
1035
+ CURRENT_PROJECT_VERSION = 1;
1036
+ DEAD_CODE_STRIPPING = YES;
1037
+ DEVELOPMENT_TEAM = 5SZ3H5P69M;
1038
+ ENABLE_APP_SANDBOX = NO;
1039
+ ENABLE_HARDENED_RUNTIME = YES;
1040
+ FRAMEWORK_SEARCH_PATHS = (
1041
+ "$(inherited)",
1042
+ "$(PROJECT_DIR)/Vendor/MLXSwift/0.31.6-macos",
1043
+ );
1044
+ GENERATE_INFOPLIST_FILE = NO;
1045
+ INFOPLIST_FILE = GenerationService/Info.plist;
1046
+ LD_RUNPATH_SEARCH_PATHS = (
1047
+ "$(inherited)",
1048
+ "@executable_path/../Frameworks",
1049
+ "@executable_path/../../../../Frameworks",
1050
+ );
1051
+ LIBRARY_SEARCH_PATHS = (
1052
+ "$(SDKROOT)/usr/lib/swift",
1053
+ "$(SDKROOT)/System/iOSSupport/usr/lib/swift",
1054
+ "$(inherited)",
1055
+ );
1056
+ MACOSX_DEPLOYMENT_TARGET = 13.4;
1057
+ MARKETING_VERSION = 1.0;
1058
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
1059
+ PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
1060
+ PRODUCT_BUNDLE_IDENTIFIER = dev.bleam.app.GenerationService;
1061
+ PRODUCT_NAME = "$(TARGET_NAME)";
1062
+ SDKROOT = macosx;
1063
+ SKIP_INSTALL = YES;
1064
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited)";
1065
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
1066
+ SWIFT_VERSION = 5.0;
1067
+ };
1068
+ name = Debug;
1069
+ };
1070
+ A1000000000000000000000C /* Debug */ = {
1071
+ isa = XCBuildConfiguration;
1072
+ buildSettings = {
1073
+ ARCHS = arm64;
1074
+ CODE_SIGN_STYLE = Automatic;
1075
+ DEAD_CODE_STRIPPING = YES;
1076
+ DEVELOPMENT_TEAM = 5SZ3H5P69M;
1077
+ ENABLE_APP_SANDBOX = NO;
1078
+ ENABLE_HARDENED_RUNTIME = YES;
1079
+ MACOSX_DEPLOYMENT_TARGET = 13.4;
1080
+ PRODUCT_NAME = "$(TARGET_NAME)";
1081
+ SDKROOT = macosx;
1082
+ SKIP_INSTALL = YES;
1083
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
1084
+ SWIFT_VERSION = 5.0;
1085
+ };
1086
+ name = Debug;
1087
+ };
1088
+ A1000000000000000000000D /* Release */ = {
1089
+ isa = XCBuildConfiguration;
1090
+ buildSettings = {
1091
+ ARCHS = arm64;
1092
+ CODE_SIGN_STYLE = Automatic;
1093
+ DEAD_CODE_STRIPPING = YES;
1094
+ DEVELOPMENT_TEAM = 5SZ3H5P69M;
1095
+ ENABLE_APP_SANDBOX = NO;
1096
+ ENABLE_HARDENED_RUNTIME = YES;
1097
+ MACOSX_DEPLOYMENT_TARGET = 13.4;
1098
+ PRODUCT_NAME = "$(TARGET_NAME)";
1099
+ SDKROOT = macosx;
1100
+ SKIP_INSTALL = YES;
1101
+ SWIFT_VERSION = 5.0;
1102
+ };
1103
+ name = Release;
1104
+ };
1105
+ /* End XCBuildConfiguration section */
1106
+
1107
+ /* Begin XCConfigurationList section */
1108
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "bleam" */ = {
1109
+ isa = XCConfigurationList;
1110
+ buildConfigurations = (
1111
+ 13B07F941A680F5B00A75B9A /* Debug */,
1112
+ 13B07F951A680F5B00A75B9A /* Release */,
1113
+ );
1114
+ defaultConfigurationIsVisible = 0;
1115
+ defaultConfigurationName = Release;
1116
+ };
1117
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Bleam" */ = {
1118
+ isa = XCConfigurationList;
1119
+ buildConfigurations = (
1120
+ 83CBBA201A601CBA00E9B192 /* Debug */,
1121
+ 83CBBA211A601CBA00E9B192 /* Release */,
1122
+ );
1123
+ defaultConfigurationIsVisible = 0;
1124
+ defaultConfigurationName = Release;
1125
+ };
1126
+ 8C91338140EE430FAA74813B /* Build configuration list for PBXNativeTarget "GenerationService" */ = {
1127
+ isa = XCConfigurationList;
1128
+ buildConfigurations = (
1129
+ E2FABB6CBB414995A62BCE52 /* Release */,
1130
+ F2710619ADF0B3AB8014C12D /* Debug */,
1131
+ );
1132
+ defaultConfigurationIsVisible = 0;
1133
+ defaultConfigurationName = Release;
1134
+ };
1135
+ A1000000000000000000000E /* Build configuration list for PBXNativeTarget "PlatformHelper" */ = {
1136
+ isa = XCConfigurationList;
1137
+ buildConfigurations = (
1138
+ A1000000000000000000000C /* Debug */,
1139
+ A1000000000000000000000D /* Release */,
1140
+ );
1141
+ defaultConfigurationIsVisible = 0;
1142
+ defaultConfigurationName = Release;
1143
+ };
1144
+ /* End XCConfigurationList section */
1145
+ };
1146
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
1147
+ }