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