mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-24 23:45:18 +00:00
* Refactor: move Nostr embedding and TLVs out of BLE; add NostrEmbeddedBitChat, Packets, PeerIDUtils; centralize MessageDeduplicator; update ChatViewModel to use new helpers; remove AI_CONTEXT.md and CLAUDE.md * Rename class to BLEService with compatibility alias; move mention parsing out of BLE; emit low-level BLE events to delegate; unify hex helpers; accept 64-hex in isPeerConnected; add PeerIDResolver * Project: rename file to BLEService.swift and update Xcode project; keep typealias SimplifiedBluetoothService = BLEService for compatibility * Remove SimplifiedBluetoothService alias; update app code to use BLEService explicitly * Tests: rename MockSimplifiedBluetoothService to MockBLEService; update typealiases and Xcode project * Docs: update comments to refer to BLEService (tests, protocol, noise service) * Tests: rename SimplifiedBluetoothServiceTests to BLEServiceTests; update project references and class names * Introduce Transport protocol; BLEService conforms; document delegate-only event pattern in BLEService; keep publishers internal for UnifiedPeerService * Adopt Transport end-to-end: add TransportPeerSnapshot + publishers; BLEService maps to Transport snapshots; UnifiedPeerService consumes Transport; ChatViewModel holds Transport * Fix Transport integration: replace getPeerFingerprint with getFingerprint(for:); update PrivateChatManager and CommandProcessor to use Transport; add BLEService.getFingerprint(for:); update PeerManager to use Transport * Refactor transport and BLE/Nostr layers; unify UI events; fix MainActor isolation - Rename SimplifiedBluetoothService to BLEService and slim responsibilities - Introduce Transport protocol and peerEventsDelegate for UI updates - Add NostrTransport and MessageRouter to route PM/read/favorite via BLE or Nostr - Centralize TLVs, PeerID utils, and MessageDeduplicator outside BLE - Update UnifiedPeerService and ChatViewModel to use Transport and delegate events - Fix MainActor isolation: route delegate calls via Task on MainActor; update notifyUI helper - Adjust related files and tests accordingly * BLEService: remove internal publishers; switch to delegate-only events - Drop legacy messages/peers/fullPeers publishers - Provide lightweight peerSnapshotSubject only to satisfy Transport - Rework publishFullPeerData to build snapshots from internal state and notify delegate + subject - Remove all peersPublisher.send call sites - Keep UnifiedPeerService on delegate updates exclusively * Remove inlined Nostr send helpers from ChatViewModel; route via MessageRouter - Replace direct Nostr sends (PM, ACKs, favorites) with MessageRouter - Add router method for delivery ACKs and implement NostrTransport.sendDeliveryAck - Simplify ChatViewModel favorite notification path to use router - Keep Nostr receive handling intact; reduce duplication * Fix ReadReceipt initializer usage in ChatViewModel (readerID + readerNickname) * Fix unused variable warning: replace shadowed 'nostrPubkey' bind with boolean check in ChatViewModel * Fix queued PM format: use TLV for pending messages after Noise handshake - Pending messages (including first-time favorite notifications) now use the same TLV encoding as normal sends - Ensures ChatViewModel can decode on first send, even if handshake completes after queuing --------- Co-authored-by: jack <jackjackbits@users.noreply.github.com>
1278 lines
68 KiB
Plaintext
1278 lines
68 KiB
Plaintext
// !$*UTF8*$!
|
|
{
|
|
archiveVersion = 1;
|
|
classes = {
|
|
};
|
|
objectVersion = 63;
|
|
objects = {
|
|
|
|
/* Begin PBXBuildFile section */
|
|
049BD3902E4EC4F0001A566B /* PrivateChatManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD38F2E4EC4F0001A566B /* PrivateChatManager.swift */; };
|
|
049BD3912E4EC4F0001A566B /* AutocompleteService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD38C2E4EC4F0001A566B /* AutocompleteService.swift */; };
|
|
049BD3922E4EC4F0001A566B /* CommandProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD38D2E4EC4F0001A566B /* CommandProcessor.swift */; };
|
|
049BD3942E4EC4F0001A566B /* PrivateChatManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD38F2E4EC4F0001A566B /* PrivateChatManager.swift */; };
|
|
049BD3952E4EC4F0001A566B /* AutocompleteService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD38C2E4EC4F0001A566B /* AutocompleteService.swift */; };
|
|
049BD3962E4EC4F0001A566B /* CommandProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD38D2E4EC4F0001A566B /* CommandProcessor.swift */; };
|
|
049BD3992E506A12001A566B /* UnifiedPeerService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD3982E506A12001A566B /* UnifiedPeerService.swift */; };
|
|
049BD39A2E506A12001A566B /* UnifiedPeerService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD3982E506A12001A566B /* UnifiedPeerService.swift */; };
|
|
049BD39C2E51DBD9001A566B /* NostrEmbeddedBitChat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD39B2E51DBD9001A566B /* NostrEmbeddedBitChat.swift */; };
|
|
049BD39D2E51DBD9001A566B /* NostrEmbeddedBitChat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD39B2E51DBD9001A566B /* NostrEmbeddedBitChat.swift */; };
|
|
049BD3A02E51DBF4001A566B /* Packets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD39E2E51DBF4001A566B /* Packets.swift */; };
|
|
049BD3A12E51DBF4001A566B /* PeerID.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD39F2E51DBF4001A566B /* PeerID.swift */; };
|
|
049BD3A22E51DBF4001A566B /* Packets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD39E2E51DBF4001A566B /* Packets.swift */; };
|
|
049BD3A32E51DBF4001A566B /* PeerID.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD39F2E51DBF4001A566B /* PeerID.swift */; };
|
|
049BD3A52E51DC0E001A566B /* MessageDeduplicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD3A42E51DC0E001A566B /* MessageDeduplicator.swift */; };
|
|
049BD3A62E51DC0E001A566B /* MessageDeduplicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD3A42E51DC0E001A566B /* MessageDeduplicator.swift */; };
|
|
049BD3AB2E51E38E001A566B /* PeerIDResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD3AA2E51E38E001A566B /* PeerIDResolver.swift */; };
|
|
049BD3AC2E51E38E001A566B /* PeerIDResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD3AA2E51E38E001A566B /* PeerIDResolver.swift */; };
|
|
049BD3AE2E51ED60001A566B /* Transport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD3AD2E51ED60001A566B /* Transport.swift */; };
|
|
049BD3AF2E51ED60001A566B /* Transport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD3AD2E51ED60001A566B /* Transport.swift */; };
|
|
049BD3B22E51F319001A566B /* NostrTransport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD3B12E51F319001A566B /* NostrTransport.swift */; };
|
|
049BD3B32E51F319001A566B /* MessageRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD3B02E51F319001A566B /* MessageRouter.swift */; };
|
|
049BD3B42E51F319001A566B /* NostrTransport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD3B12E51F319001A566B /* NostrTransport.swift */; };
|
|
049BD3B52E51F319001A566B /* MessageRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 049BD3B02E51F319001A566B /* MessageRouter.swift */; };
|
|
0AE840940F21AFC07C226636 /* PrivateChatE2ETests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A262EDDC04B7D7B5E31F321 /* PrivateChatE2ETests.swift */; };
|
|
0B6F25559A21F8C69C8357C6 /* BinaryProtocolTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B3CC6FA298729906109F61B /* BinaryProtocolTests.swift */; };
|
|
10E68BB889356219189E38EC /* BitchatApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF625BB3AD919322C01A46B2 /* BitchatApp.swift */; };
|
|
132DF1E24B4E9C7DCDAD4376 /* FingerprintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9195CDC7EB236AFBC9A4D41A /* FingerprintView.swift */; };
|
|
17901751FD8010AFC8E750F2 /* bitchatShareExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 61F92EBA29C47C0FCC482F1F /* bitchatShareExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
|
|
1D9674FA5F998503831DC281 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A08E03AA0C63E97C91749AEC /* ContentView.swift */; };
|
|
2EFCCAA297B16FA2B56747C7 /* TestConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC75901A0F0073B5BB8356E7 /* TestConstants.swift */; };
|
|
31D147471B9F4E2815352DDA /* LinkPreviewView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AC141774F6671FCDC347DC7 /* LinkPreviewView.swift */; };
|
|
37DDF3D09E2BAB92A5A8A9C1 /* TestHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E346DF8E026FD34EE3DD038 /* TestHelpers.swift */; };
|
|
3849CA6D99B2D536636DF4A6 /* MockBLEService.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE7CCF2BD78A3F3DAE6DA145 /* MockBLEService.swift */; };
|
|
38EDDC049FD56B1BB1F14C91 /* IdentityModels.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05BA20BC0F123F1507C5C247 /* IdentityModels.swift */; };
|
|
3EE336D150427F736F32B56C /* P256K in Frameworks */ = {isa = PBXBuildFile; productRef = B1D9136AA0083366353BFA2F /* P256K */; };
|
|
4B747085D07A1BCE0F5BA612 /* BinaryProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2136C3E22D02D4A8DBE7EAB /* BinaryProtocol.swift */; };
|
|
501BC56B1A08C0327A09AAF1 /* NoiseEncryptionService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 394E8A1AC76EFAE352075BE9 /* NoiseEncryptionService.swift */; };
|
|
5C93B4FDD0C448C3EDDBF8AE /* FavoritesPersistenceService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 419BFFF209EBA93F410E9E9F /* FavoritesPersistenceService.swift */; };
|
|
5EE49E150BBF0488E7473687 /* NoiseEncryptionService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 394E8A1AC76EFAE352075BE9 /* NoiseEncryptionService.swift */; };
|
|
61C81ED5F679D5E973EE0C07 /* NotificationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3448F84BF86A42A3CC4A9379 /* NotificationService.swift */; };
|
|
686441ABC2AF83EE98E6ECF2 /* IntegrationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BC5AB43F4A8FB62C935CD74 /* IntegrationTests.swift */; };
|
|
68C4BE564735F6E7915274A2 /* SecureIdentityStateManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDC18D910D6FF2E8B1B6C885 /* SecureIdentityStateManager.swift */; };
|
|
6A85FC357ACD85DBD9020845 /* NostrRelayManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78595178957244CBDF7E79B6 /* NostrRelayManager.swift */; };
|
|
6C63FA98D59854C15C57B3D6 /* FingerprintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9195CDC7EB236AFBC9A4D41A /* FingerprintView.swift */; };
|
|
6C803BF930E7E19BE6E99EAA /* MockBLEService.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE7CCF2BD78A3F3DAE6DA145 /* MockBLEService.swift */; };
|
|
6D0D4A0B1D8B659DCBAE7C9C /* NoiseHandshakeCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1D6A89B36A3D31E590B94E5 /* NoiseHandshakeCoordinator.swift */; };
|
|
6DE056E1EE9850E9FBF50157 /* BitchatProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 229F17B68CFF7AB1BC91C847 /* BitchatProtocol.swift */; };
|
|
6E7761E21C99F28AE2F9BE5F /* BitchatApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF625BB3AD919322C01A46B2 /* BitchatApp.swift */; };
|
|
7241FFD6CFFB875B864FA223 /* InputValidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90CB7A5CD1D1A521CD31F380 /* InputValidator.swift */; };
|
|
749D8CF8A362B6CD0786782D /* NotificationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3448F84BF86A42A3CC4A9379 /* NotificationService.swift */; };
|
|
7576A357B278E5733E9D9F33 /* ChatViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6B8F7B7D55092C2540A7996 /* ChatViewModel.swift */; };
|
|
765254F56997F01054699AC0 /* NoiseProtocolTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E95DBE6A48626C5AE287245E /* NoiseProtocolTests.swift */; };
|
|
7A5B1AB5642FEC168E917949 /* LinkPreviewView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AC141774F6671FCDC347DC7 /* LinkPreviewView.swift */; };
|
|
7DCA0DBCB8884E3B31C7BCE3 /* CompressionUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32F149C43D1915831B60FE09 /* CompressionUtil.swift */; };
|
|
7DD72D928FF9DD3CA81B46B0 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3A69677D382F1C3D5ED03F7D /* Assets.xcassets */; };
|
|
84D13329AB7EE1D65A37438A /* BitchatPeer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11186E29A064E8D210880E1B /* BitchatPeer.swift */; };
|
|
84E3F9B64FB7FB4A140BD0A8 /* BitchatPeer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11186E29A064E8D210880E1B /* BitchatPeer.swift */; };
|
|
8851F08D88C5B1DE7B9F55C6 /* MockBluetoothMeshService.swift in Sources */ = {isa = PBXBuildFile; fileRef = C27328EE574221395B2B8E87 /* MockBluetoothMeshService.swift */; };
|
|
885BBED78092484A5B069461 /* P256K in Frameworks */ = {isa = PBXBuildFile; productRef = 4EB6BA1B8464F1EA38F4E286 /* P256K */; };
|
|
8A14ADADF5CD7A79919CB655 /* NoiseSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AB6BE4ABD7F5088E9865E56 /* NoiseSession.swift */; };
|
|
8C1AB0F2D48207E0755DA91A /* NoiseProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43613045E63D21D429396805 /* NoiseProtocol.swift */; };
|
|
8CE446C9364F54DF89E7A364 /* PublicChatE2ETests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D22BF09A49010947CEFE45E2 /* PublicChatE2ETests.swift */; };
|
|
8D0196EAEE56973679F6A655 /* TestConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC75901A0F0073B5BB8356E7 /* TestConstants.swift */; };
|
|
8DE687D2EB5EB120868DBFB5 /* BLEService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C6FDA03416FDB2157A0A8C7 /* BLEService.swift */; };
|
|
8F282E9CCA5AE1ECC001D2E4 /* IntegrationTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5BC5AB43F4A8FB62C935CD74 /* IntegrationTests.swift */; };
|
|
8F737CE0435792CC2AD65FCB /* KeychainManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 136696FC4436A02D98CE6A77 /* KeychainManager.swift */; };
|
|
923027D6F2F417AFA2488127 /* BitchatProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 229F17B68CFF7AB1BC91C847 /* BitchatProtocol.swift */; };
|
|
92D1CF17DF88EA298F6E5E8E /* NoiseSession.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AB6BE4ABD7F5088E9865E56 /* NoiseSession.swift */; };
|
|
92D34E7A07C990C8A815B0CE /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A08E03AA0C63E97C91749AEC /* ContentView.swift */; };
|
|
968181D255CA7A804340B4DA /* NostrProtocolTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C272F137CE00FC5A96E0CC06 /* NostrProtocolTests.swift */; };
|
|
9B51E9B63A3EA59B1A7874BD /* BinaryEncodingUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5318B743C64628A125261163 /* BinaryEncodingUtils.swift */; };
|
|
9C7D287C8E67AAE576A5ECB7 /* ShareViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1B378C16594575FCC7F9C75 /* ShareViewController.swift */; };
|
|
9CCF09F7527EC681A13FC246 /* NoiseSecurityConsiderations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43B4548DAFC9F7AA8873DA53 /* NoiseSecurityConsiderations.swift */; };
|
|
A0A1C26EFBFDD5B8EFEEDE57 /* PublicChatE2ETests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D22BF09A49010947CEFE45E2 /* PublicChatE2ETests.swift */; };
|
|
A2977428C1D9EF9944C4BFAF /* BLEServiceTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 980B109CBA72BC996455C62B /* BLEServiceTests.swift */; };
|
|
A7187D48B07C6857DE01D0ED /* NoiseProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43613045E63D21D429396805 /* NoiseProtocol.swift */; };
|
|
AA6E067DB034FC0FA23C28A9 /* BinaryProtocolTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B3CC6FA298729906109F61B /* BinaryProtocolTests.swift */; };
|
|
ABAF130D88561F4A646F0430 /* AppInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 763E0DBA9492A654FC0CDCB9 /* AppInfoView.swift */; };
|
|
ACE2ED172C37F01561E50B71 /* FavoritesPersistenceService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 419BFFF209EBA93F410E9E9F /* FavoritesPersistenceService.swift */; };
|
|
AD11E46940D742AEAF547EB2 /* AppInfoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 763E0DBA9492A654FC0CDCB9 /* AppInfoView.swift */; };
|
|
AFB6AEFCABBE97441CB3102B /* BinaryEncodingUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5318B743C64628A125261163 /* BinaryEncodingUtils.swift */; };
|
|
AFF33EF44626EF0579D17EB1 /* NoiseHandshakeCoordinator.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1D6A89B36A3D31E590B94E5 /* NoiseHandshakeCoordinator.swift */; };
|
|
B0CA7796B2B2AC2B33F84548 /* CompressionUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32F149C43D1915831B60FE09 /* CompressionUtil.swift */; };
|
|
B45AD5BF95220A0289216D32 /* TestHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E346DF8E026FD34EE3DD038 /* TestHelpers.swift */; };
|
|
B909706CD38FC56C0C8EB7BF /* IdentityModels.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05BA20BC0F123F1507C5C247 /* IdentityModels.swift */; };
|
|
BC4DC75F4FB823FF40569676 /* NoiseProtocolTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E95DBE6A48626C5AE287245E /* NoiseProtocolTests.swift */; };
|
|
BCCFEDC1EBE59323C3C470BF /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3A69677D382F1C3D5ED03F7D /* Assets.xcassets */; };
|
|
BCD0EBACD82AF5E55C2CB2B9 /* NostrRelayManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78595178957244CBDF7E79B6 /* NostrRelayManager.swift */; };
|
|
BE729E149C98F775D9622D9C /* BLEServiceTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 980B109CBA72BC996455C62B /* BLEServiceTests.swift */; };
|
|
C165DD35BB8E9C327A3C2DA4 /* BLEService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C6FDA03416FDB2157A0A8C7 /* BLEService.swift */; };
|
|
C3B1226CD30C87501EF6F12F /* NostrIdentity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F8043995007F0D84438EDD9 /* NostrIdentity.swift */; };
|
|
D111988977C3BC246AB27FA4 /* SecureLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE7EFB209C86BBD956B749EC /* SecureLogger.swift */; };
|
|
D450CF41F207BDE1A1AAA56E /* ChatViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6B8F7B7D55092C2540A7996 /* ChatViewModel.swift */; };
|
|
D691938B4029A04CC905FDC8 /* NoiseSecurityConsiderations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43B4548DAFC9F7AA8873DA53 /* NoiseSecurityConsiderations.swift */; };
|
|
D727EA273CB214FC32612469 /* MockBluetoothMeshService.swift in Sources */ = {isa = PBXBuildFile; fileRef = C27328EE574221395B2B8E87 /* MockBluetoothMeshService.swift */; };
|
|
D782AB596DDB5C846554F7C3 /* NostrIdentity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F8043995007F0D84438EDD9 /* NostrIdentity.swift */; };
|
|
E2DCF7817344F1CCDB8B7B2F /* SecureIdentityStateManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDC18D910D6FF2E8B1B6C885 /* SecureIdentityStateManager.swift */; };
|
|
E65BBB6544FE0159F3C6C3A8 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 95F16C3A4A5621C74461D8D3 /* LaunchScreen.storyboard */; };
|
|
EC5241969D2550B97629EBD0 /* SecureLogger.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE7EFB209C86BBD956B749EC /* SecureLogger.swift */; };
|
|
ED83C7AC1E6BEF15389C0132 /* PrivateChatE2ETests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A262EDDC04B7D7B5E31F321 /* PrivateChatE2ETests.swift */; };
|
|
EE8C3ECADAB3083A2687D50B /* NostrProtocolTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C272F137CE00FC5A96E0CC06 /* NostrProtocolTests.swift */; };
|
|
EF49C600C1E464710DD6CA29 /* InputValidator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90CB7A5CD1D1A521CD31F380 /* InputValidator.swift */; };
|
|
F06732B1719EE13C5D09CE77 /* NostrProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E5A9FF4AEA8A923317ED26A /* NostrProtocol.swift */; };
|
|
F455F011B3B648ADA233F998 /* BinaryProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2136C3E22D02D4A8DBE7EAB /* BinaryProtocol.swift */; };
|
|
FB8819B4C84FAFEF5C36B216 /* KeychainManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 136696FC4436A02D98CE6A77 /* KeychainManager.swift */; };
|
|
FBC409E105493C491531B59A /* NostrProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E5A9FF4AEA8A923317ED26A /* NostrProtocol.swift */; };
|
|
/* End PBXBuildFile section */
|
|
|
|
/* Begin PBXContainerItemProxy section */
|
|
96415D4F989854F908EAD303 /* PBXContainerItemProxy */ = {
|
|
isa = PBXContainerItemProxy;
|
|
containerPortal = 475D96681D0EA0AE57A4E06E /* Project object */;
|
|
proxyType = 1;
|
|
remoteGlobalIDString = AF077EA0474EDEDE2C72716C;
|
|
remoteInfo = bitchat_iOS;
|
|
};
|
|
E35E7AF9854A2E72452DD34F /* PBXContainerItemProxy */ = {
|
|
isa = PBXContainerItemProxy;
|
|
containerPortal = 475D96681D0EA0AE57A4E06E /* Project object */;
|
|
proxyType = 1;
|
|
remoteGlobalIDString = 57CA17A36A2532A6CFF367BB;
|
|
remoteInfo = bitchatShareExtension;
|
|
};
|
|
FF470234EF8C6BB8865B80B5 /* PBXContainerItemProxy */ = {
|
|
isa = PBXContainerItemProxy;
|
|
containerPortal = 475D96681D0EA0AE57A4E06E /* Project object */;
|
|
proxyType = 1;
|
|
remoteGlobalIDString = 0576A29205865664C0937536;
|
|
remoteInfo = bitchat_macOS;
|
|
};
|
|
/* End PBXContainerItemProxy section */
|
|
|
|
/* Begin PBXCopyFilesBuildPhase section */
|
|
B6C356449BAE4E0F650565D1 /* Embed Foundation Extensions */ = {
|
|
isa = PBXCopyFilesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
dstPath = "";
|
|
dstSubfolderSpec = 13;
|
|
files = (
|
|
17901751FD8010AFC8E750F2 /* bitchatShareExtension.appex in Embed Foundation Extensions */,
|
|
);
|
|
name = "Embed Foundation Extensions";
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXCopyFilesBuildPhase section */
|
|
|
|
/* Begin PBXFileReference section */
|
|
03C57F452B55FD0FD8F51421 /* bitchatTests_macOS.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = bitchatTests_macOS.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
049BD38C2E4EC4F0001A566B /* AutocompleteService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutocompleteService.swift; sourceTree = "<group>"; };
|
|
049BD38D2E4EC4F0001A566B /* CommandProcessor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommandProcessor.swift; sourceTree = "<group>"; };
|
|
049BD38F2E4EC4F0001A566B /* PrivateChatManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PrivateChatManager.swift; sourceTree = "<group>"; };
|
|
049BD3982E506A12001A566B /* UnifiedPeerService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnifiedPeerService.swift; sourceTree = "<group>"; };
|
|
049BD39B2E51DBD9001A566B /* NostrEmbeddedBitChat.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NostrEmbeddedBitChat.swift; sourceTree = "<group>"; };
|
|
049BD39E2E51DBF4001A566B /* Packets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Packets.swift; sourceTree = "<group>"; };
|
|
049BD39F2E51DBF4001A566B /* PeerID.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PeerID.swift; sourceTree = "<group>"; };
|
|
049BD3A42E51DC0E001A566B /* MessageDeduplicator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageDeduplicator.swift; sourceTree = "<group>"; };
|
|
049BD3AA2E51E38E001A566B /* PeerIDResolver.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PeerIDResolver.swift; sourceTree = "<group>"; };
|
|
049BD3AD2E51ED60001A566B /* Transport.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Transport.swift; sourceTree = "<group>"; };
|
|
049BD3B02E51F319001A566B /* MessageRouter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageRouter.swift; sourceTree = "<group>"; };
|
|
049BD3B12E51F319001A566B /* NostrTransport.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NostrTransport.swift; sourceTree = "<group>"; };
|
|
05BA20BC0F123F1507C5C247 /* IdentityModels.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IdentityModels.swift; sourceTree = "<group>"; };
|
|
0B3CC6FA298729906109F61B /* BinaryProtocolTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BinaryProtocolTests.swift; sourceTree = "<group>"; };
|
|
11186E29A064E8D210880E1B /* BitchatPeer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BitchatPeer.swift; sourceTree = "<group>"; };
|
|
136696FC4436A02D98CE6A77 /* KeychainManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KeychainManager.swift; sourceTree = "<group>"; };
|
|
229F17B68CFF7AB1BC91C847 /* BitchatProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BitchatProtocol.swift; sourceTree = "<group>"; };
|
|
2E346DF8E026FD34EE3DD038 /* TestHelpers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestHelpers.swift; sourceTree = "<group>"; };
|
|
2E5A9FF4AEA8A923317ED26A /* NostrProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NostrProtocol.swift; sourceTree = "<group>"; };
|
|
32F149C43D1915831B60FE09 /* CompressionUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CompressionUtil.swift; sourceTree = "<group>"; };
|
|
3448F84BF86A42A3CC4A9379 /* NotificationService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NotificationService.swift; sourceTree = "<group>"; };
|
|
3668EEBB42FD4A24D5D83B7B /* bitchatShareExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = bitchatShareExtension.entitlements; sourceTree = "<group>"; };
|
|
394E8A1AC76EFAE352075BE9 /* NoiseEncryptionService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NoiseEncryptionService.swift; sourceTree = "<group>"; };
|
|
3A556661F74B7D5AE2F0521B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
|
|
3A69677D382F1C3D5ED03F7D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
419BFFF209EBA93F410E9E9F /* FavoritesPersistenceService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FavoritesPersistenceService.swift; sourceTree = "<group>"; };
|
|
43613045E63D21D429396805 /* NoiseProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NoiseProtocol.swift; sourceTree = "<group>"; };
|
|
43B4548DAFC9F7AA8873DA53 /* NoiseSecurityConsiderations.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NoiseSecurityConsiderations.swift; sourceTree = "<group>"; };
|
|
527EB217EFDFAD4CF1C91F07 /* bitchat.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = bitchat.entitlements; sourceTree = "<group>"; };
|
|
5318B743C64628A125261163 /* BinaryEncodingUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BinaryEncodingUtils.swift; sourceTree = "<group>"; };
|
|
5BC5AB43F4A8FB62C935CD74 /* IntegrationTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntegrationTests.swift; sourceTree = "<group>"; };
|
|
5F8043995007F0D84438EDD9 /* NostrIdentity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NostrIdentity.swift; sourceTree = "<group>"; };
|
|
61F92EBA29C47C0FCC482F1F /* bitchatShareExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = bitchatShareExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
763E0DBA9492A654FC0CDCB9 /* AppInfoView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppInfoView.swift; sourceTree = "<group>"; };
|
|
78595178957244CBDF7E79B6 /* NostrRelayManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NostrRelayManager.swift; sourceTree = "<group>"; };
|
|
8A262EDDC04B7D7B5E31F321 /* PrivateChatE2ETests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PrivateChatE2ETests.swift; sourceTree = "<group>"; };
|
|
8C6FDA03416FDB2157A0A8C7 /* BLEService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BLEService.swift; sourceTree = "<group>"; };
|
|
8F3A7C058C2C8E1A06C8CF8B /* bitchat.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = bitchat.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
90CB7A5CD1D1A521CD31F380 /* InputValidator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InputValidator.swift; sourceTree = "<group>"; };
|
|
9195CDC7EB236AFBC9A4D41A /* FingerprintView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FingerprintView.swift; sourceTree = "<group>"; };
|
|
95F16C3A4A5621C74461D8D3 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
96D0D41CA19EE5A772AA8434 /* bitchat.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = bitchat.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
980B109CBA72BC996455C62B /* BLEServiceTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BLEServiceTests.swift; sourceTree = "<group>"; };
|
|
9AB6BE4ABD7F5088E9865E56 /* NoiseSession.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NoiseSession.swift; sourceTree = "<group>"; };
|
|
9AC141774F6671FCDC347DC7 /* LinkPreviewView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LinkPreviewView.swift; sourceTree = "<group>"; };
|
|
A08E03AA0C63E97C91749AEC /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; };
|
|
A2136C3E22D02D4A8DBE7EAB /* BinaryProtocol.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BinaryProtocol.swift; sourceTree = "<group>"; };
|
|
B1D6A89B36A3D31E590B94E5 /* NoiseHandshakeCoordinator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NoiseHandshakeCoordinator.swift; sourceTree = "<group>"; };
|
|
C0DB1DE27F0AAB5092663E8E /* bitchatTests_iOS.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = bitchatTests_iOS.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
C1B378C16594575FCC7F9C75 /* ShareViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareViewController.swift; sourceTree = "<group>"; };
|
|
C272F137CE00FC5A96E0CC06 /* NostrProtocolTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NostrProtocolTests.swift; sourceTree = "<group>"; };
|
|
C27328EE574221395B2B8E87 /* MockBluetoothMeshService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MockBluetoothMeshService.swift; sourceTree = "<group>"; };
|
|
D22BF09A49010947CEFE45E2 /* PublicChatE2ETests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PublicChatE2ETests.swift; sourceTree = "<group>"; };
|
|
D69A18D27F9A565FD6041E12 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
|
|
E6B8F7B7D55092C2540A7996 /* ChatViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChatViewModel.swift; sourceTree = "<group>"; };
|
|
E95DBE6A48626C5AE287245E /* NoiseProtocolTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NoiseProtocolTests.swift; sourceTree = "<group>"; };
|
|
EA706D8E5097785414646A8E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
|
|
EE7EFB209C86BBD956B749EC /* SecureLogger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecureLogger.swift; sourceTree = "<group>"; };
|
|
EF625BB3AD919322C01A46B2 /* BitchatApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BitchatApp.swift; sourceTree = "<group>"; };
|
|
FC75901A0F0073B5BB8356E7 /* TestConstants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestConstants.swift; sourceTree = "<group>"; };
|
|
FDC18D910D6FF2E8B1B6C885 /* SecureIdentityStateManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecureIdentityStateManager.swift; sourceTree = "<group>"; };
|
|
FE7CCF2BD78A3F3DAE6DA145 /* MockBLEService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MockBLEService.swift; sourceTree = "<group>"; };
|
|
FF7AF93D874001FBD94C8306 /* bitchat-macOS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "bitchat-macOS.entitlements"; sourceTree = "<group>"; };
|
|
/* End PBXFileReference section */
|
|
|
|
/* Begin PBXFrameworksBuildPhase section */
|
|
31F6FDADA63050361C14F3A1 /* Frameworks */ = {
|
|
isa = PBXFrameworksBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
3EE336D150427F736F32B56C /* P256K in Frameworks */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
B5A5CC493FFB3D8966548140 /* Frameworks */ = {
|
|
isa = PBXFrameworksBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
885BBED78092484A5B069461 /* P256K in Frameworks */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXFrameworksBuildPhase section */
|
|
|
|
/* Begin PBXGroup section */
|
|
0575DCBD15C7C719ADDCB67E /* Models */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
11186E29A064E8D210880E1B /* BitchatPeer.swift */,
|
|
);
|
|
path = Models;
|
|
sourceTree = "<group>";
|
|
};
|
|
18198ED912AAF495D8AF7763 = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
2F82C5FC8433F4064F079D1F /* bitchat */,
|
|
A2E8C336FA1ADBEC03261DFD /* bitchatShareExtension */,
|
|
C3D98EB3E1B455E321F519F4 /* bitchatTests */,
|
|
9F37F9F2C353B58AC809E93B /* Products */,
|
|
);
|
|
sourceTree = "<group>";
|
|
};
|
|
204CC4C7704C7348D456E374 /* TestUtilities */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
FC75901A0F0073B5BB8356E7 /* TestConstants.swift */,
|
|
2E346DF8E026FD34EE3DD038 /* TestHelpers.swift */,
|
|
);
|
|
path = TestUtilities;
|
|
sourceTree = "<group>";
|
|
};
|
|
2F82C5FC8433F4064F079D1F /* bitchat */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
3A69677D382F1C3D5ED03F7D /* Assets.xcassets */,
|
|
FF7AF93D874001FBD94C8306 /* bitchat-macOS.entitlements */,
|
|
527EB217EFDFAD4CF1C91F07 /* bitchat.entitlements */,
|
|
EF625BB3AD919322C01A46B2 /* BitchatApp.swift */,
|
|
EA706D8E5097785414646A8E /* Info.plist */,
|
|
95F16C3A4A5621C74461D8D3 /* LaunchScreen.storyboard */,
|
|
C845B6F5D25AEEA0B9FE557F /* Identity */,
|
|
0575DCBD15C7C719ADDCB67E /* Models */,
|
|
637EDFDD042BDB5F2569A501 /* Noise */,
|
|
E78C7F4B6769C0A72F5DE544 /* Nostr */,
|
|
ADD53BCDA233C02E53458926 /* Protocols */,
|
|
D98A3186D7E4C72E35BDF7FE /* Services */,
|
|
9A78348821A7D3374607D4E3 /* Utils */,
|
|
45BB7D87CAE42A8C0447D909 /* ViewModels */,
|
|
A55126E93155456CAA8D6656 /* Views */,
|
|
);
|
|
path = bitchat;
|
|
sourceTree = "<group>";
|
|
};
|
|
45BB7D87CAE42A8C0447D909 /* ViewModels */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
E6B8F7B7D55092C2540A7996 /* ChatViewModel.swift */,
|
|
);
|
|
path = ViewModels;
|
|
sourceTree = "<group>";
|
|
};
|
|
5B90895AFF0957E08FA3D429 /* Integration */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
5BC5AB43F4A8FB62C935CD74 /* IntegrationTests.swift */,
|
|
);
|
|
path = Integration;
|
|
sourceTree = "<group>";
|
|
};
|
|
637EDFDD042BDB5F2569A501 /* Noise */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
B1D6A89B36A3D31E590B94E5 /* NoiseHandshakeCoordinator.swift */,
|
|
43613045E63D21D429396805 /* NoiseProtocol.swift */,
|
|
43B4548DAFC9F7AA8873DA53 /* NoiseSecurityConsiderations.swift */,
|
|
9AB6BE4ABD7F5088E9865E56 /* NoiseSession.swift */,
|
|
);
|
|
path = Noise;
|
|
sourceTree = "<group>";
|
|
};
|
|
84933DAE9D7E5D0155BA7AEA /* Protocol */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
0B3CC6FA298729906109F61B /* BinaryProtocolTests.swift */,
|
|
);
|
|
path = Protocol;
|
|
sourceTree = "<group>";
|
|
};
|
|
966CD21F221332CF564AC724 /* Mocks */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
C27328EE574221395B2B8E87 /* MockBluetoothMeshService.swift */,
|
|
FE7CCF2BD78A3F3DAE6DA145 /* MockBLEService.swift */,
|
|
);
|
|
path = Mocks;
|
|
sourceTree = "<group>";
|
|
};
|
|
9A78348821A7D3374607D4E3 /* Utils */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
049BD3AA2E51E38E001A566B /* PeerIDResolver.swift */,
|
|
049BD3A42E51DC0E001A566B /* MessageDeduplicator.swift */,
|
|
32F149C43D1915831B60FE09 /* CompressionUtil.swift */,
|
|
90CB7A5CD1D1A521CD31F380 /* InputValidator.swift */,
|
|
EE7EFB209C86BBD956B749EC /* SecureLogger.swift */,
|
|
);
|
|
path = Utils;
|
|
sourceTree = "<group>";
|
|
};
|
|
9F37F9F2C353B58AC809E93B /* Products */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
96D0D41CA19EE5A772AA8434 /* bitchat.app */,
|
|
8F3A7C058C2C8E1A06C8CF8B /* bitchat.app */,
|
|
61F92EBA29C47C0FCC482F1F /* bitchatShareExtension.appex */,
|
|
C0DB1DE27F0AAB5092663E8E /* bitchatTests_iOS.xctest */,
|
|
03C57F452B55FD0FD8F51421 /* bitchatTests_macOS.xctest */,
|
|
);
|
|
name = Products;
|
|
sourceTree = "<group>";
|
|
};
|
|
A2E8C336FA1ADBEC03261DFD /* bitchatShareExtension */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
3668EEBB42FD4A24D5D83B7B /* bitchatShareExtension.entitlements */,
|
|
3A556661F74B7D5AE2F0521B /* Info.plist */,
|
|
C1B378C16594575FCC7F9C75 /* ShareViewController.swift */,
|
|
);
|
|
path = bitchatShareExtension;
|
|
sourceTree = "<group>";
|
|
};
|
|
A55126E93155456CAA8D6656 /* Views */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
763E0DBA9492A654FC0CDCB9 /* AppInfoView.swift */,
|
|
A08E03AA0C63E97C91749AEC /* ContentView.swift */,
|
|
9195CDC7EB236AFBC9A4D41A /* FingerprintView.swift */,
|
|
9AC141774F6671FCDC347DC7 /* LinkPreviewView.swift */,
|
|
);
|
|
path = Views;
|
|
sourceTree = "<group>";
|
|
};
|
|
ADD53BCDA233C02E53458926 /* Protocols */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
049BD39E2E51DBF4001A566B /* Packets.swift */,
|
|
049BD39F2E51DBF4001A566B /* PeerID.swift */,
|
|
5318B743C64628A125261163 /* BinaryEncodingUtils.swift */,
|
|
A2136C3E22D02D4A8DBE7EAB /* BinaryProtocol.swift */,
|
|
229F17B68CFF7AB1BC91C847 /* BitchatProtocol.swift */,
|
|
);
|
|
path = Protocols;
|
|
sourceTree = "<group>";
|
|
};
|
|
C2F78AB254FDAD5FEDA18B58 /* EndToEnd */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
8A262EDDC04B7D7B5E31F321 /* PrivateChatE2ETests.swift */,
|
|
D22BF09A49010947CEFE45E2 /* PublicChatE2ETests.swift */,
|
|
);
|
|
path = EndToEnd;
|
|
sourceTree = "<group>";
|
|
};
|
|
C3D98EB3E1B455E321F519F4 /* bitchatTests */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
D69A18D27F9A565FD6041E12 /* Info.plist */,
|
|
C272F137CE00FC5A96E0CC06 /* NostrProtocolTests.swift */,
|
|
980B109CBA72BC996455C62B /* BLEServiceTests.swift */,
|
|
C2F78AB254FDAD5FEDA18B58 /* EndToEnd */,
|
|
5B90895AFF0957E08FA3D429 /* Integration */,
|
|
966CD21F221332CF564AC724 /* Mocks */,
|
|
D80E19E04513C0046D611574 /* Noise */,
|
|
84933DAE9D7E5D0155BA7AEA /* Protocol */,
|
|
204CC4C7704C7348D456E374 /* TestUtilities */,
|
|
);
|
|
path = bitchatTests;
|
|
sourceTree = "<group>";
|
|
};
|
|
C845B6F5D25AEEA0B9FE557F /* Identity */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
05BA20BC0F123F1507C5C247 /* IdentityModels.swift */,
|
|
FDC18D910D6FF2E8B1B6C885 /* SecureIdentityStateManager.swift */,
|
|
);
|
|
path = Identity;
|
|
sourceTree = "<group>";
|
|
};
|
|
D80E19E04513C0046D611574 /* Noise */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
E95DBE6A48626C5AE287245E /* NoiseProtocolTests.swift */,
|
|
);
|
|
path = Noise;
|
|
sourceTree = "<group>";
|
|
};
|
|
D98A3186D7E4C72E35BDF7FE /* Services */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
049BD3B02E51F319001A566B /* MessageRouter.swift */,
|
|
049BD3B12E51F319001A566B /* NostrTransport.swift */,
|
|
049BD3AD2E51ED60001A566B /* Transport.swift */,
|
|
049BD3982E506A12001A566B /* UnifiedPeerService.swift */,
|
|
049BD38C2E4EC4F0001A566B /* AutocompleteService.swift */,
|
|
049BD38D2E4EC4F0001A566B /* CommandProcessor.swift */,
|
|
049BD38F2E4EC4F0001A566B /* PrivateChatManager.swift */,
|
|
419BFFF209EBA93F410E9E9F /* FavoritesPersistenceService.swift */,
|
|
136696FC4436A02D98CE6A77 /* KeychainManager.swift */,
|
|
394E8A1AC76EFAE352075BE9 /* NoiseEncryptionService.swift */,
|
|
3448F84BF86A42A3CC4A9379 /* NotificationService.swift */,
|
|
8C6FDA03416FDB2157A0A8C7 /* BLEService.swift */,
|
|
);
|
|
path = Services;
|
|
sourceTree = "<group>";
|
|
};
|
|
E78C7F4B6769C0A72F5DE544 /* Nostr */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
049BD39B2E51DBD9001A566B /* NostrEmbeddedBitChat.swift */,
|
|
5F8043995007F0D84438EDD9 /* NostrIdentity.swift */,
|
|
2E5A9FF4AEA8A923317ED26A /* NostrProtocol.swift */,
|
|
78595178957244CBDF7E79B6 /* NostrRelayManager.swift */,
|
|
);
|
|
path = Nostr;
|
|
sourceTree = "<group>";
|
|
};
|
|
/* End PBXGroup section */
|
|
|
|
/* Begin PBXNativeTarget section */
|
|
0576A29205865664C0937536 /* bitchat_macOS */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = DA5644925338B8189B035657 /* Build configuration list for PBXNativeTarget "bitchat_macOS" */;
|
|
buildPhases = (
|
|
137ABE739BF20ACDDF8CC605 /* Sources */,
|
|
0214973A876129753D39EB47 /* Resources */,
|
|
31F6FDADA63050361C14F3A1 /* Frameworks */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
);
|
|
name = bitchat_macOS;
|
|
packageProductDependencies = (
|
|
B1D9136AA0083366353BFA2F /* P256K */,
|
|
);
|
|
productName = bitchat_macOS;
|
|
productReference = 8F3A7C058C2C8E1A06C8CF8B /* bitchat.app */;
|
|
productType = "com.apple.product-type.application";
|
|
};
|
|
47FF23248747DD7CB666CB91 /* bitchatTests_macOS */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = 1C27B5BA3DB46DDF0DBFEF62 /* Build configuration list for PBXNativeTarget "bitchatTests_macOS" */;
|
|
buildPhases = (
|
|
5C22AA7B9ACC5A861445C769 /* Sources */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
4AA8605DCAA64A45657EF0CA /* PBXTargetDependency */,
|
|
);
|
|
name = bitchatTests_macOS;
|
|
packageProductDependencies = (
|
|
);
|
|
productName = bitchatTests_macOS;
|
|
productReference = 03C57F452B55FD0FD8F51421 /* bitchatTests_macOS.xctest */;
|
|
productType = "com.apple.product-type.bundle.unit-test";
|
|
};
|
|
57CA17A36A2532A6CFF367BB /* bitchatShareExtension */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = E4EA6DC648DF55FF84032EB5 /* Build configuration list for PBXNativeTarget "bitchatShareExtension" */;
|
|
buildPhases = (
|
|
0A08E70F08F55FD5BA8C7EF3 /* Sources */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
);
|
|
name = bitchatShareExtension;
|
|
packageProductDependencies = (
|
|
);
|
|
productName = bitchatShareExtension;
|
|
productReference = 61F92EBA29C47C0FCC482F1F /* bitchatShareExtension.appex */;
|
|
productType = "com.apple.product-type.app-extension";
|
|
};
|
|
6CB97DF2EA57234CB3E563B8 /* bitchatTests_iOS */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = 38C4AF6313E5037F25CEF30B /* Build configuration list for PBXNativeTarget "bitchatTests_iOS" */;
|
|
buildPhases = (
|
|
865C8403EF02C089369A9FCB /* Sources */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
D8C09F21DB7DC06E8E672C21 /* PBXTargetDependency */,
|
|
);
|
|
name = bitchatTests_iOS;
|
|
packageProductDependencies = (
|
|
);
|
|
productName = bitchatTests_iOS;
|
|
productReference = C0DB1DE27F0AAB5092663E8E /* bitchatTests_iOS.xctest */;
|
|
productType = "com.apple.product-type.bundle.unit-test";
|
|
};
|
|
AF077EA0474EDEDE2C72716C /* bitchat_iOS */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = 53EADEF7546F94DDF82271B9 /* Build configuration list for PBXNativeTarget "bitchat_iOS" */;
|
|
buildPhases = (
|
|
4E49E34F00154C051AE90FED /* Sources */,
|
|
CD6E8F32BC38357473954F97 /* Resources */,
|
|
B5A5CC493FFB3D8966548140 /* Frameworks */,
|
|
B6C356449BAE4E0F650565D1 /* Embed Foundation Extensions */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
6EB655BA5DB11909C1DEC460 /* PBXTargetDependency */,
|
|
);
|
|
name = bitchat_iOS;
|
|
packageProductDependencies = (
|
|
4EB6BA1B8464F1EA38F4E286 /* P256K */,
|
|
);
|
|
productName = bitchat_iOS;
|
|
productReference = 96D0D41CA19EE5A772AA8434 /* bitchat.app */;
|
|
productType = "com.apple.product-type.application";
|
|
};
|
|
/* End PBXNativeTarget section */
|
|
|
|
/* Begin PBXProject section */
|
|
475D96681D0EA0AE57A4E06E /* Project object */ = {
|
|
isa = PBXProject;
|
|
attributes = {
|
|
BuildIndependentTargetsInParallel = YES;
|
|
LastUpgradeCheck = 1640;
|
|
TargetAttributes = {
|
|
0576A29205865664C0937536 = {
|
|
DevelopmentTeam = L3N5LHJD5Y;
|
|
ProvisioningStyle = Automatic;
|
|
};
|
|
47FF23248747DD7CB666CB91 = {
|
|
DevelopmentTeam = L3N5LHJD5Y;
|
|
ProvisioningStyle = Automatic;
|
|
};
|
|
57CA17A36A2532A6CFF367BB = {
|
|
DevelopmentTeam = L3N5LHJD5Y;
|
|
ProvisioningStyle = Automatic;
|
|
};
|
|
6CB97DF2EA57234CB3E563B8 = {
|
|
DevelopmentTeam = L3N5LHJD5Y;
|
|
ProvisioningStyle = Automatic;
|
|
};
|
|
AF077EA0474EDEDE2C72716C = {
|
|
DevelopmentTeam = L3N5LHJD5Y;
|
|
ProvisioningStyle = Automatic;
|
|
};
|
|
};
|
|
};
|
|
buildConfigurationList = 3EA424CBD51200895D361189 /* Build configuration list for PBXProject "bitchat" */;
|
|
compatibilityVersion = "Xcode 14.0";
|
|
developmentRegion = en;
|
|
hasScannedForEncodings = 0;
|
|
knownRegions = (
|
|
Base,
|
|
en,
|
|
);
|
|
mainGroup = 18198ED912AAF495D8AF7763;
|
|
minimizedProjectReferenceProxies = 1;
|
|
packageReferences = (
|
|
B8C407587481BBB190741C93 /* XCRemoteSwiftPackageReference "swift-secp256k1" */,
|
|
);
|
|
projectDirPath = "";
|
|
projectRoot = "";
|
|
targets = (
|
|
57CA17A36A2532A6CFF367BB /* bitchatShareExtension */,
|
|
6CB97DF2EA57234CB3E563B8 /* bitchatTests_iOS */,
|
|
47FF23248747DD7CB666CB91 /* bitchatTests_macOS */,
|
|
AF077EA0474EDEDE2C72716C /* bitchat_iOS */,
|
|
0576A29205865664C0937536 /* bitchat_macOS */,
|
|
);
|
|
};
|
|
/* End PBXProject section */
|
|
|
|
/* Begin PBXResourcesBuildPhase section */
|
|
0214973A876129753D39EB47 /* Resources */ = {
|
|
isa = PBXResourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
7DD72D928FF9DD3CA81B46B0 /* Assets.xcassets in Resources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
CD6E8F32BC38357473954F97 /* Resources */ = {
|
|
isa = PBXResourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
BCCFEDC1EBE59323C3C470BF /* Assets.xcassets in Resources */,
|
|
E65BBB6544FE0159F3C6C3A8 /* LaunchScreen.storyboard in Resources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXResourcesBuildPhase section */
|
|
|
|
/* Begin PBXSourcesBuildPhase section */
|
|
0A08E70F08F55FD5BA8C7EF3 /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
9C7D287C8E67AAE576A5ECB7 /* ShareViewController.swift in Sources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
137ABE739BF20ACDDF8CC605 /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
AD11E46940D742AEAF547EB2 /* AppInfoView.swift in Sources */,
|
|
9B51E9B63A3EA59B1A7874BD /* BinaryEncodingUtils.swift in Sources */,
|
|
049BD3B42E51F319001A566B /* NostrTransport.swift in Sources */,
|
|
049BD3B52E51F319001A566B /* MessageRouter.swift in Sources */,
|
|
4B747085D07A1BCE0F5BA612 /* BinaryProtocol.swift in Sources */,
|
|
6E7761E21C99F28AE2F9BE5F /* BitchatApp.swift in Sources */,
|
|
84E3F9B64FB7FB4A140BD0A8 /* BitchatPeer.swift in Sources */,
|
|
923027D6F2F417AFA2488127 /* BitchatProtocol.swift in Sources */,
|
|
D450CF41F207BDE1A1AAA56E /* ChatViewModel.swift in Sources */,
|
|
B0CA7796B2B2AC2B33F84548 /* CompressionUtil.swift in Sources */,
|
|
92D34E7A07C990C8A815B0CE /* ContentView.swift in Sources */,
|
|
5C93B4FDD0C448C3EDDBF8AE /* FavoritesPersistenceService.swift in Sources */,
|
|
6C63FA98D59854C15C57B3D6 /* FingerprintView.swift in Sources */,
|
|
38EDDC049FD56B1BB1F14C91 /* IdentityModels.swift in Sources */,
|
|
7241FFD6CFFB875B864FA223 /* InputValidator.swift in Sources */,
|
|
FB8819B4C84FAFEF5C36B216 /* KeychainManager.swift in Sources */,
|
|
31D147471B9F4E2815352DDA /* LinkPreviewView.swift in Sources */,
|
|
501BC56B1A08C0327A09AAF1 /* NoiseEncryptionService.swift in Sources */,
|
|
AFF33EF44626EF0579D17EB1 /* NoiseHandshakeCoordinator.swift in Sources */,
|
|
8C1AB0F2D48207E0755DA91A /* NoiseProtocol.swift in Sources */,
|
|
049BD3AC2E51E38E001A566B /* PeerIDResolver.swift in Sources */,
|
|
D691938B4029A04CC905FDC8 /* NoiseSecurityConsiderations.swift in Sources */,
|
|
8A14ADADF5CD7A79919CB655 /* NoiseSession.swift in Sources */,
|
|
049BD39D2E51DBD9001A566B /* NostrEmbeddedBitChat.swift in Sources */,
|
|
049BD3992E506A12001A566B /* UnifiedPeerService.swift in Sources */,
|
|
C3B1226CD30C87501EF6F12F /* NostrIdentity.swift in Sources */,
|
|
FBC409E105493C491531B59A /* NostrProtocol.swift in Sources */,
|
|
049BD3A62E51DC0E001A566B /* MessageDeduplicator.swift in Sources */,
|
|
6A85FC357ACD85DBD9020845 /* NostrRelayManager.swift in Sources */,
|
|
749D8CF8A362B6CD0786782D /* NotificationService.swift in Sources */,
|
|
049BD3AF2E51ED60001A566B /* Transport.swift in Sources */,
|
|
E2DCF7817344F1CCDB8B7B2F /* SecureIdentityStateManager.swift in Sources */,
|
|
049BD3A02E51DBF4001A566B /* Packets.swift in Sources */,
|
|
049BD3A12E51DBF4001A566B /* PeerID.swift in Sources */,
|
|
049BD3942E4EC4F0001A566B /* PrivateChatManager.swift in Sources */,
|
|
049BD3952E4EC4F0001A566B /* AutocompleteService.swift in Sources */,
|
|
049BD3962E4EC4F0001A566B /* CommandProcessor.swift in Sources */,
|
|
D111988977C3BC246AB27FA4 /* SecureLogger.swift in Sources */,
|
|
8DE687D2EB5EB120868DBFB5 /* BLEService.swift in Sources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
4E49E34F00154C051AE90FED /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
ABAF130D88561F4A646F0430 /* AppInfoView.swift in Sources */,
|
|
AFB6AEFCABBE97441CB3102B /* BinaryEncodingUtils.swift in Sources */,
|
|
049BD3B22E51F319001A566B /* NostrTransport.swift in Sources */,
|
|
049BD3B32E51F319001A566B /* MessageRouter.swift in Sources */,
|
|
F455F011B3B648ADA233F998 /* BinaryProtocol.swift in Sources */,
|
|
10E68BB889356219189E38EC /* BitchatApp.swift in Sources */,
|
|
84D13329AB7EE1D65A37438A /* BitchatPeer.swift in Sources */,
|
|
6DE056E1EE9850E9FBF50157 /* BitchatProtocol.swift in Sources */,
|
|
7576A357B278E5733E9D9F33 /* ChatViewModel.swift in Sources */,
|
|
7DCA0DBCB8884E3B31C7BCE3 /* CompressionUtil.swift in Sources */,
|
|
1D9674FA5F998503831DC281 /* ContentView.swift in Sources */,
|
|
ACE2ED172C37F01561E50B71 /* FavoritesPersistenceService.swift in Sources */,
|
|
132DF1E24B4E9C7DCDAD4376 /* FingerprintView.swift in Sources */,
|
|
B909706CD38FC56C0C8EB7BF /* IdentityModels.swift in Sources */,
|
|
EF49C600C1E464710DD6CA29 /* InputValidator.swift in Sources */,
|
|
8F737CE0435792CC2AD65FCB /* KeychainManager.swift in Sources */,
|
|
7A5B1AB5642FEC168E917949 /* LinkPreviewView.swift in Sources */,
|
|
5EE49E150BBF0488E7473687 /* NoiseEncryptionService.swift in Sources */,
|
|
6D0D4A0B1D8B659DCBAE7C9C /* NoiseHandshakeCoordinator.swift in Sources */,
|
|
A7187D48B07C6857DE01D0ED /* NoiseProtocol.swift in Sources */,
|
|
049BD3AB2E51E38E001A566B /* PeerIDResolver.swift in Sources */,
|
|
9CCF09F7527EC681A13FC246 /* NoiseSecurityConsiderations.swift in Sources */,
|
|
92D1CF17DF88EA298F6E5E8E /* NoiseSession.swift in Sources */,
|
|
049BD39C2E51DBD9001A566B /* NostrEmbeddedBitChat.swift in Sources */,
|
|
049BD39A2E506A12001A566B /* UnifiedPeerService.swift in Sources */,
|
|
D782AB596DDB5C846554F7C3 /* NostrIdentity.swift in Sources */,
|
|
F06732B1719EE13C5D09CE77 /* NostrProtocol.swift in Sources */,
|
|
049BD3A52E51DC0E001A566B /* MessageDeduplicator.swift in Sources */,
|
|
BCD0EBACD82AF5E55C2CB2B9 /* NostrRelayManager.swift in Sources */,
|
|
61C81ED5F679D5E973EE0C07 /* NotificationService.swift in Sources */,
|
|
049BD3AE2E51ED60001A566B /* Transport.swift in Sources */,
|
|
68C4BE564735F6E7915274A2 /* SecureIdentityStateManager.swift in Sources */,
|
|
049BD3A22E51DBF4001A566B /* Packets.swift in Sources */,
|
|
049BD3A32E51DBF4001A566B /* PeerID.swift in Sources */,
|
|
049BD3902E4EC4F0001A566B /* PrivateChatManager.swift in Sources */,
|
|
049BD3912E4EC4F0001A566B /* AutocompleteService.swift in Sources */,
|
|
049BD3922E4EC4F0001A566B /* CommandProcessor.swift in Sources */,
|
|
EC5241969D2550B97629EBD0 /* SecureLogger.swift in Sources */,
|
|
C165DD35BB8E9C327A3C2DA4 /* BLEService.swift in Sources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
5C22AA7B9ACC5A861445C769 /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
AA6E067DB034FC0FA23C28A9 /* BinaryProtocolTests.swift in Sources */,
|
|
8F282E9CCA5AE1ECC001D2E4 /* IntegrationTests.swift in Sources */,
|
|
D727EA273CB214FC32612469 /* MockBluetoothMeshService.swift in Sources */,
|
|
6C803BF930E7E19BE6E99EAA /* MockBLEService.swift in Sources */,
|
|
765254F56997F01054699AC0 /* NoiseProtocolTests.swift in Sources */,
|
|
968181D255CA7A804340B4DA /* NostrProtocolTests.swift in Sources */,
|
|
ED83C7AC1E6BEF15389C0132 /* PrivateChatE2ETests.swift in Sources */,
|
|
A0A1C26EFBFDD5B8EFEEDE57 /* PublicChatE2ETests.swift in Sources */,
|
|
A2977428C1D9EF9944C4BFAF /* BLEServiceTests.swift in Sources */,
|
|
2EFCCAA297B16FA2B56747C7 /* TestConstants.swift in Sources */,
|
|
B45AD5BF95220A0289216D32 /* TestHelpers.swift in Sources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
865C8403EF02C089369A9FCB /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
0B6F25559A21F8C69C8357C6 /* BinaryProtocolTests.swift in Sources */,
|
|
686441ABC2AF83EE98E6ECF2 /* IntegrationTests.swift in Sources */,
|
|
8851F08D88C5B1DE7B9F55C6 /* MockBluetoothMeshService.swift in Sources */,
|
|
3849CA6D99B2D536636DF4A6 /* MockBLEService.swift in Sources */,
|
|
BC4DC75F4FB823FF40569676 /* NoiseProtocolTests.swift in Sources */,
|
|
EE8C3ECADAB3083A2687D50B /* NostrProtocolTests.swift in Sources */,
|
|
0AE840940F21AFC07C226636 /* PrivateChatE2ETests.swift in Sources */,
|
|
8CE446C9364F54DF89E7A364 /* PublicChatE2ETests.swift in Sources */,
|
|
BE729E149C98F775D9622D9C /* BLEServiceTests.swift in Sources */,
|
|
8D0196EAEE56973679F6A655 /* TestConstants.swift in Sources */,
|
|
37DDF3D09E2BAB92A5A8A9C1 /* TestHelpers.swift in Sources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXSourcesBuildPhase section */
|
|
|
|
/* Begin PBXTargetDependency section */
|
|
4AA8605DCAA64A45657EF0CA /* PBXTargetDependency */ = {
|
|
isa = PBXTargetDependency;
|
|
target = 0576A29205865664C0937536 /* bitchat_macOS */;
|
|
targetProxy = FF470234EF8C6BB8865B80B5 /* PBXContainerItemProxy */;
|
|
};
|
|
6EB655BA5DB11909C1DEC460 /* PBXTargetDependency */ = {
|
|
isa = PBXTargetDependency;
|
|
target = 57CA17A36A2532A6CFF367BB /* bitchatShareExtension */;
|
|
targetProxy = E35E7AF9854A2E72452DD34F /* PBXContainerItemProxy */;
|
|
};
|
|
D8C09F21DB7DC06E8E672C21 /* PBXTargetDependency */ = {
|
|
isa = PBXTargetDependency;
|
|
target = AF077EA0474EDEDE2C72716C /* bitchat_iOS */;
|
|
targetProxy = 96415D4F989854F908EAD303 /* PBXContainerItemProxy */;
|
|
};
|
|
/* End PBXTargetDependency section */
|
|
|
|
/* Begin XCBuildConfiguration section */
|
|
077A5203074247CF8F766E2F /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
CODE_SIGNING_ALLOWED = YES;
|
|
CODE_SIGNING_REQUIRED = YES;
|
|
CODE_SIGN_STYLE = Automatic;
|
|
INFOPLIST_FILE = bitchatTests/Info.plist;
|
|
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
"@loader_path/Frameworks",
|
|
);
|
|
PRODUCT_BUNDLE_IDENTIFIER = chat.bitchat.tests;
|
|
SDKROOT = iphoneos;
|
|
SWIFT_VERSION = 5.0;
|
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/bitchat.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/bitchat";
|
|
};
|
|
name = Debug;
|
|
};
|
|
0DACAA261446D178EDD30ECA /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
CODE_SIGNING_ALLOWED = YES;
|
|
CODE_SIGNING_REQUIRED = YES;
|
|
CODE_SIGN_STYLE = Automatic;
|
|
INFOPLIST_FILE = bitchatTests/Info.plist;
|
|
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
"@loader_path/Frameworks",
|
|
);
|
|
PRODUCT_BUNDLE_IDENTIFIER = chat.bitchat.tests;
|
|
SDKROOT = iphoneos;
|
|
SWIFT_VERSION = 5.0;
|
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/bitchat.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/bitchat";
|
|
};
|
|
name = Release;
|
|
};
|
|
147FDAE548082D5B921C6F0B /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
CODE_SIGNING_ALLOWED = YES;
|
|
CODE_SIGNING_REQUIRED = YES;
|
|
CODE_SIGN_STYLE = Automatic;
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
DEAD_CODE_STRIPPING = YES;
|
|
INFOPLIST_FILE = bitchatTests/Info.plist;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/../Frameworks",
|
|
"@loader_path/../Frameworks",
|
|
);
|
|
MACOSX_DEPLOYMENT_TARGET = 13.0;
|
|
PRODUCT_BUNDLE_IDENTIFIER = chat.bitchat.tests;
|
|
SDKROOT = macosx;
|
|
SWIFT_VERSION = 5.0;
|
|
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/bitchat.app/Contents/MacOS/bitchat";
|
|
};
|
|
name = Release;
|
|
};
|
|
3DCF45111852FB2AEBE05E31 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
CODE_SIGNING_ALLOWED = YES;
|
|
CODE_SIGNING_REQUIRED = YES;
|
|
CODE_SIGN_ALLOW_ENTITLEMENTS_MODIFICATION = YES;
|
|
CODE_SIGN_ENTITLEMENTS = bitchatShareExtension/bitchatShareExtension.entitlements;
|
|
CODE_SIGN_STYLE = Automatic;
|
|
INFOPLIST_FILE = bitchatShareExtension/Info.plist;
|
|
INFOPLIST_KEY_CFBundleDisplayName = bitchat;
|
|
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
"@executable_path/../../Frameworks",
|
|
);
|
|
MARKETING_VERSION = 1.2.1;
|
|
PRODUCT_BUNDLE_IDENTIFIER = chat.bitchat.ShareExtension;
|
|
SDKROOT = iphoneos;
|
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
SUPPORTS_MACCATALYST = NO;
|
|
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
SWIFT_VERSION = 5.0;
|
|
TARGETED_DEVICE_FAMILY = 1;
|
|
};
|
|
name = Release;
|
|
};
|
|
702E7395723CADA4B830F4A9 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
|
|
CODE_SIGNING_ALLOWED = YES;
|
|
CODE_SIGNING_REQUIRED = YES;
|
|
CODE_SIGN_ENTITLEMENTS = bitchat/bitchat.entitlements;
|
|
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
CODE_SIGN_STYLE = Automatic;
|
|
ENABLE_PREVIEWS = YES;
|
|
INFOPLIST_FILE = bitchat/Info.plist;
|
|
INFOPLIST_KEY_CFBundleDisplayName = bitchat;
|
|
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.social-networking";
|
|
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
);
|
|
MARKETING_VERSION = 1.2.1;
|
|
PRODUCT_BUNDLE_IDENTIFIER = chat.bitchat;
|
|
PRODUCT_NAME = bitchat;
|
|
SDKROOT = iphoneos;
|
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
SUPPORTS_MACCATALYST = NO;
|
|
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
SWIFT_VERSION = 5.0;
|
|
TARGETED_DEVICE_FAMILY = 1;
|
|
};
|
|
name = Debug;
|
|
};
|
|
7FA2BADBF3B325125030CAB1 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
CODE_SIGNING_ALLOWED = YES;
|
|
CODE_SIGNING_REQUIRED = YES;
|
|
CODE_SIGN_STYLE = Automatic;
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
DEAD_CODE_STRIPPING = YES;
|
|
INFOPLIST_FILE = bitchatTests/Info.plist;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/../Frameworks",
|
|
"@loader_path/../Frameworks",
|
|
);
|
|
MACOSX_DEPLOYMENT_TARGET = 13.0;
|
|
PRODUCT_BUNDLE_IDENTIFIER = chat.bitchat.tests;
|
|
SDKROOT = macosx;
|
|
SWIFT_VERSION = 5.0;
|
|
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/bitchat.app/Contents/MacOS/bitchat";
|
|
};
|
|
name = Debug;
|
|
};
|
|
B36671AEACCBF92BE10852E9 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
|
|
CODE_SIGNING_ALLOWED = YES;
|
|
CODE_SIGNING_REQUIRED = YES;
|
|
CODE_SIGN_ENTITLEMENTS = bitchat/bitchat.entitlements;
|
|
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
CODE_SIGN_STYLE = Automatic;
|
|
ENABLE_PREVIEWS = YES;
|
|
INFOPLIST_FILE = bitchat/Info.plist;
|
|
INFOPLIST_KEY_CFBundleDisplayName = bitchat;
|
|
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.social-networking";
|
|
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
);
|
|
MARKETING_VERSION = 1.2.1;
|
|
PRODUCT_BUNDLE_IDENTIFIER = chat.bitchat;
|
|
PRODUCT_NAME = bitchat;
|
|
SDKROOT = iphoneos;
|
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
SUPPORTS_MACCATALYST = NO;
|
|
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
SWIFT_VERSION = 5.0;
|
|
TARGETED_DEVICE_FAMILY = 1;
|
|
};
|
|
name = Release;
|
|
};
|
|
BB044400A0F06B93F22D0D55 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
|
|
CODE_SIGNING_ALLOWED = YES;
|
|
CODE_SIGNING_REQUIRED = YES;
|
|
CODE_SIGN_ENTITLEMENTS = "bitchat/bitchat-macOS.entitlements";
|
|
CODE_SIGN_STYLE = Automatic;
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
DEAD_CODE_STRIPPING = YES;
|
|
ENABLE_PREVIEWS = YES;
|
|
INFOPLIST_FILE = bitchat/Info.plist;
|
|
INFOPLIST_KEY_CFBundleDisplayName = bitchat;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/../Frameworks",
|
|
);
|
|
MACOSX_DEPLOYMENT_TARGET = 13.0;
|
|
MARKETING_VERSION = 1.2.1;
|
|
PRODUCT_BUNDLE_IDENTIFIER = chat.bitchat;
|
|
PRODUCT_NAME = bitchat;
|
|
REGISTER_APP_GROUPS = YES;
|
|
SDKROOT = macosx;
|
|
SWIFT_VERSION = 5.0;
|
|
};
|
|
name = Release;
|
|
};
|
|
BF0D85727BCB6E346962F419 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
CLANG_ANALYZER_NONNULL = YES;
|
|
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
CLANG_CXX_LIBRARY = "libc++";
|
|
CLANG_ENABLE_MODULES = YES;
|
|
CLANG_ENABLE_OBJC_ARC = YES;
|
|
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
CLANG_WARN_COMMA = YES;
|
|
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
CLANG_WARN_EMPTY_BODY = YES;
|
|
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
CLANG_WARN_INT_CONVERSION = YES;
|
|
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
COPY_PHASE_STRIP = NO;
|
|
CURRENT_PROJECT_VERSION = 1;
|
|
DEAD_CODE_STRIPPING = YES;
|
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
DEVELOPMENT_TEAM = L3N5LHJD5Y;
|
|
ENABLE_NS_ASSERTIONS = NO;
|
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
|
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
|
|
MACOSX_DEPLOYMENT_TARGET = 13.0;
|
|
MARKETING_VERSION = 1.0.0;
|
|
MTL_ENABLE_DEBUG_INFO = NO;
|
|
MTL_FAST_MATH = YES;
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
SWIFT_COMPILATION_MODE = wholemodule;
|
|
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
SWIFT_VERSION = 5.0;
|
|
};
|
|
name = Release;
|
|
};
|
|
CC79F65842D42034ACEE79B7 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
|
|
CODE_SIGNING_ALLOWED = YES;
|
|
CODE_SIGNING_REQUIRED = YES;
|
|
CODE_SIGN_ENTITLEMENTS = "bitchat/bitchat-macOS.entitlements";
|
|
CODE_SIGN_STYLE = Automatic;
|
|
COMBINE_HIDPI_IMAGES = YES;
|
|
DEAD_CODE_STRIPPING = YES;
|
|
ENABLE_PREVIEWS = YES;
|
|
INFOPLIST_FILE = bitchat/Info.plist;
|
|
INFOPLIST_KEY_CFBundleDisplayName = bitchat;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/../Frameworks",
|
|
);
|
|
MACOSX_DEPLOYMENT_TARGET = 13.0;
|
|
MARKETING_VERSION = 1.2.1;
|
|
PRODUCT_BUNDLE_IDENTIFIER = chat.bitchat;
|
|
PRODUCT_NAME = bitchat;
|
|
REGISTER_APP_GROUPS = YES;
|
|
SDKROOT = macosx;
|
|
SWIFT_VERSION = 5.0;
|
|
};
|
|
name = Debug;
|
|
};
|
|
D8C5BF109BB2630752185FA0 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
CLANG_ANALYZER_NONNULL = YES;
|
|
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
CLANG_CXX_LIBRARY = "libc++";
|
|
CLANG_ENABLE_MODULES = YES;
|
|
CLANG_ENABLE_OBJC_ARC = YES;
|
|
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
CLANG_WARN_COMMA = YES;
|
|
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
CLANG_WARN_EMPTY_BODY = YES;
|
|
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
CLANG_WARN_INT_CONVERSION = YES;
|
|
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
COPY_PHASE_STRIP = NO;
|
|
CURRENT_PROJECT_VERSION = 1;
|
|
DEAD_CODE_STRIPPING = YES;
|
|
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
DEVELOPMENT_TEAM = L3N5LHJD5Y;
|
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
ENABLE_TESTABILITY = YES;
|
|
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
|
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
GCC_DYNAMIC_NO_PIC = NO;
|
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
GCC_OPTIMIZATION_LEVEL = 0;
|
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
"$(inherited)",
|
|
"DEBUG=1",
|
|
);
|
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
|
|
MACOSX_DEPLOYMENT_TARGET = 13.0;
|
|
MARKETING_VERSION = 1.0.0;
|
|
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
MTL_FAST_MATH = YES;
|
|
ONLY_ACTIVE_ARCH = YES;
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
SWIFT_VERSION = 5.0;
|
|
};
|
|
name = Debug;
|
|
};
|
|
DAC5E82049F8A97360BE63D6 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
CODE_SIGNING_ALLOWED = YES;
|
|
CODE_SIGNING_REQUIRED = YES;
|
|
CODE_SIGN_ALLOW_ENTITLEMENTS_MODIFICATION = YES;
|
|
CODE_SIGN_ENTITLEMENTS = bitchatShareExtension/bitchatShareExtension.entitlements;
|
|
CODE_SIGN_STYLE = Automatic;
|
|
INFOPLIST_FILE = bitchatShareExtension/Info.plist;
|
|
INFOPLIST_KEY_CFBundleDisplayName = bitchat;
|
|
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
"@executable_path/../../Frameworks",
|
|
);
|
|
MARKETING_VERSION = 1.2.1;
|
|
PRODUCT_BUNDLE_IDENTIFIER = chat.bitchat.ShareExtension;
|
|
SDKROOT = iphoneos;
|
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
SUPPORTS_MACCATALYST = NO;
|
|
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
|
|
SWIFT_VERSION = 5.0;
|
|
TARGETED_DEVICE_FAMILY = 1;
|
|
};
|
|
name = Debug;
|
|
};
|
|
/* End XCBuildConfiguration section */
|
|
|
|
/* Begin XCConfigurationList section */
|
|
1C27B5BA3DB46DDF0DBFEF62 /* Build configuration list for PBXNativeTarget "bitchatTests_macOS" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
7FA2BADBF3B325125030CAB1 /* Debug */,
|
|
147FDAE548082D5B921C6F0B /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Debug;
|
|
};
|
|
38C4AF6313E5037F25CEF30B /* Build configuration list for PBXNativeTarget "bitchatTests_iOS" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
077A5203074247CF8F766E2F /* Debug */,
|
|
0DACAA261446D178EDD30ECA /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Debug;
|
|
};
|
|
3EA424CBD51200895D361189 /* Build configuration list for PBXProject "bitchat" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
D8C5BF109BB2630752185FA0 /* Debug */,
|
|
BF0D85727BCB6E346962F419 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Debug;
|
|
};
|
|
53EADEF7546F94DDF82271B9 /* Build configuration list for PBXNativeTarget "bitchat_iOS" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
702E7395723CADA4B830F4A9 /* Debug */,
|
|
B36671AEACCBF92BE10852E9 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Debug;
|
|
};
|
|
DA5644925338B8189B035657 /* Build configuration list for PBXNativeTarget "bitchat_macOS" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
CC79F65842D42034ACEE79B7 /* Debug */,
|
|
BB044400A0F06B93F22D0D55 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Debug;
|
|
};
|
|
E4EA6DC648DF55FF84032EB5 /* Build configuration list for PBXNativeTarget "bitchatShareExtension" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
DAC5E82049F8A97360BE63D6 /* Debug */,
|
|
3DCF45111852FB2AEBE05E31 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Debug;
|
|
};
|
|
/* End XCConfigurationList section */
|
|
|
|
/* Begin XCRemoteSwiftPackageReference section */
|
|
B8C407587481BBB190741C93 /* XCRemoteSwiftPackageReference "swift-secp256k1" */ = {
|
|
isa = XCRemoteSwiftPackageReference;
|
|
repositoryURL = "https://github.com/21-DOT-DEV/swift-secp256k1";
|
|
requirement = {
|
|
kind = upToNextMajorVersion;
|
|
minimumVersion = 0.21.1;
|
|
};
|
|
};
|
|
/* End XCRemoteSwiftPackageReference section */
|
|
|
|
/* Begin XCSwiftPackageProductDependency section */
|
|
4EB6BA1B8464F1EA38F4E286 /* P256K */ = {
|
|
isa = XCSwiftPackageProductDependency;
|
|
package = B8C407587481BBB190741C93 /* XCRemoteSwiftPackageReference "swift-secp256k1" */;
|
|
productName = P256K;
|
|
};
|
|
B1D9136AA0083366353BFA2F /* P256K */ = {
|
|
isa = XCSwiftPackageProductDependency;
|
|
package = B8C407587481BBB190741C93 /* XCRemoteSwiftPackageReference "swift-secp256k1" */;
|
|
productName = P256K;
|
|
};
|
|
/* End XCSwiftPackageProductDependency section */
|
|
};
|
|
rootObject = 475D96681D0EA0AE57A4E06E /* Project object */;
|
|
}
|