project.pbxproj 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 56;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 0B4630FFBC4EE87A6634E056 /* Pods_NexilisLite_NexilisLiteTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 10B08C755C0859F1ECA5CEBC /* Pods_NexilisLite_NexilisLiteTests.framework */; };
  10. 1241AEBC2D017E8C0088175A /* MasterKeyUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1241AEBB2D017E8C0088175A /* MasterKeyUtil.swift */; };
  11. 1241AEBD2D017E8C0088175A /* FileEncryption.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1241AEBA2D017E8C0088175A /* FileEncryption.swift */; };
  12. 12C36CEB2D0299630095BEC1 /* SecureFolderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12C36CEA2D02995F0095BEC1 /* SecureFolderView.swift */; };
  13. B71100C03F3EE76CC1FFC618 /* Pods_NexilisLite.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 56F0A46991FE6BE0FDE74132 /* Pods_NexilisLite.framework */; };
  14. CD1E6E6D2A0B7C3600BF871F /* NexilisLite.docc in Sources */ = {isa = PBXBuildFile; fileRef = CD1E6E6C2A0B7C3600BF871F /* NexilisLite.docc */; };
  15. CD1E6E732A0B7C3600BF871F /* NexilisLite.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CD1E6E682A0B7C3600BF871F /* NexilisLite.framework */; };
  16. CD1E6E782A0B7C3600BF871F /* NexilisLiteTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E6E772A0B7C3600BF871F /* NexilisLiteTests.swift */; };
  17. CD1E6E792A0B7C3600BF871F /* NexilisLite.h in Headers */ = {isa = PBXBuildFile; fileRef = CD1E6E6B2A0B7C3600BF871F /* NexilisLite.h */; settings = {ATTRIBUTES = (Public, ); }; };
  18. CD1E72062A0BA86100BF871F /* OutgoingThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E714F2A0BA86100BF871F /* OutgoingThread.swift */; };
  19. CD1E72072A0BA86100BF871F /* WhiteboardCanvas.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71502A0BA86100BF871F /* WhiteboardCanvas.swift */; };
  20. CD1E72082A0BA86100BF871F /* Units.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71512A0BA86100BF871F /* Units.swift */; };
  21. CD1E720A2A0BA86100BF871F /* APIS.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71532A0BA86100BF871F /* APIS.swift */; };
  22. CD1E720B2A0BA86100BF871F /* FloatingButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71552A0BA86100BF871F /* FloatingButton.swift */; };
  23. CD1E720C2A0BA86100BF871F /* Whiteboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71562A0BA86100BF871F /* Whiteboard.swift */; };
  24. CD1E720D2A0BA86100BF871F /* InquiryThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71572A0BA86100BF871F /* InquiryThread.swift */; };
  25. CD1E720E2A0BA86100BF871F /* Network.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71582A0BA86100BF871F /* Network.swift */; };
  26. CD1E720F2A0BA86100BF871F /* Download.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71592A0BA86100BF871F /* Download.swift */; };
  27. CD1E72102A0BA86100BF871F /* Extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715A2A0BA86100BF871F /* Extension.swift */; };
  28. CD1E72112A0BA86100BF871F /* WhiteboardReceiver.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715B2A0BA86100BF871F /* WhiteboardReceiver.swift */; };
  29. CD1E72122A0BA86100BF871F /* CoreMessage_TMessageKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715C2A0BA86100BF871F /* CoreMessage_TMessageKey.swift */; };
  30. CD1E72132A0BA86100BF871F /* Database.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715D2A0BA86100BF871F /* Database.swift */; };
  31. CD1E72142A0BA86100BF871F /* Model.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E715F2A0BA86100BF871F /* Model.swift */; };
  32. CD1E72152A0BA86100BF871F /* Chat.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71602A0BA86100BF871F /* Chat.swift */; };
  33. CD1E72162A0BA86100BF871F /* User.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71612A0BA86100BF871F /* User.swift */; };
  34. CD1E72172A0BA86100BF871F /* CategoryCC.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71622A0BA86100BF871F /* CategoryCC.swift */; };
  35. CD1E72182A0BA86100BF871F /* WorkingArea.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71632A0BA86100BF871F /* WorkingArea.swift */; };
  36. CD1E72192A0BA86100BF871F /* Group.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71642A0BA86100BF871F /* Group.swift */; };
  37. CD1E721A2A0BA86100BF871F /* NotifSound.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71652A0BA86100BF871F /* NotifSound.swift */; };
  38. CD1E721B2A0BA86100BF871F /* Nexilis.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71662A0BA86100BF871F /* Nexilis.swift */; };
  39. CD1E721C2A0BA86100BF871F /* ContactCallViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71692A0BA86100BF871F /* ContactCallViewController.swift */; };
  40. CD1E721D2A0BA86100BF871F /* WorkingAreaPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E716B2A0BA86100BF871F /* WorkingAreaPicker.swift */; };
  41. CD1E721E2A0BA86100BF871F /* BNIBookingWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E716C2A0BA86100BF871F /* BNIBookingWebView.swift */; };
  42. CD1E721F2A0BA86100BF871F /* EditorStarMessages.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E716E2A0BA86100BF871F /* EditorStarMessages.swift */; };
  43. CD1E72212A0BA86100BF871F /* EditorPersonal.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71702A0BA86100BF871F /* EditorPersonal.swift */; };
  44. CD1E72222A0BA86100BF871F /* FormEditor.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71712A0BA86100BF871F /* FormEditor.swift */; };
  45. CD1E72232A0BA86100BF871F /* EditorGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71722A0BA86100BF871F /* EditorGroup.swift */; };
  46. CD1E72242A0BA86100BF871F /* PreviewAttachmentImageVideo.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71732A0BA86100BF871F /* PreviewAttachmentImageVideo.swift */; };
  47. CD1E72252A0BA86100BF871F /* CustomTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71742A0BA86100BF871F /* CustomTextView.swift */; };
  48. CD1E72262A0BA86100BF871F /* QmeraGroupChooserViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71762A0BA86100BF871F /* QmeraGroupChooserViewController.swift */; };
  49. CD1E72272A0BA86100BF871F /* QmeraStreamingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71772A0BA86100BF871F /* QmeraStreamingViewController.swift */; };
  50. CD1E72282A0BA86100BF871F /* CreateViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71782A0BA86100BF871F /* CreateViewController.swift */; };
  51. CD1E72292A0BA86100BF871F /* QmeraUserChooserViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71792A0BA86100BF871F /* QmeraUserChooserViewController.swift */; };
  52. CD1E722A2A0BA86100BF871F /* StreamingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717A2A0BA86100BF871F /* StreamingViewController.swift */; };
  53. CD1E722B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift */; };
  54. CD1E722C2A0BA86100BF871F /* CallManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717D2A0BA86100BF871F /* CallManager.swift */; };
  55. CD1E722D2A0BA86100BF871F /* QmeraAudioConference.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717E2A0BA86100BF871F /* QmeraAudioConference.swift */; };
  56. CD1E722E2A0BA86100BF871F /* AudioViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E717F2A0BA86100BF871F /* AudioViewController.swift */; };
  57. CD1E722F2A0BA86100BF871F /* ProfileView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71802A0BA86100BF871F /* ProfileView.swift */; };
  58. CD1E72302A0BA86100BF871F /* CallProviderDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71812A0BA86100BF871F /* CallProviderDelegate.swift */; };
  59. CD1E72312A0BA86100BF871F /* QmeraAudioViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71822A0BA86100BF871F /* QmeraAudioViewController.swift */; };
  60. CD1E72322A0BA86100BF871F /* QmeraCallContactViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71832A0BA86100BF871F /* QmeraCallContactViewController.swift */; };
  61. CD1E72332A0BA86100BF871F /* WhiteboardViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71842A0BA86100BF871F /* WhiteboardViewController.swift */; };
  62. CD1E72342A0BA86100BF871F /* QmeraVideoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71852A0BA86100BF871F /* QmeraVideoViewController.swift */; };
  63. CD1E72352A0BA86100BF871F /* VideoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71862A0BA86100BF871F /* VideoViewController.swift */; };
  64. CD1E72362A0BA86100BF871F /* Call.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71872A0BA86100BF871F /* Call.swift */; };
  65. CD1E72372A0BA86100BF871F /* GroupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71882A0BA86100BF871F /* GroupView.swift */; };
  66. CD1E72382A0BA86100BF871F /* GroupCreateViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718A2A0BA86100BF871F /* GroupCreateViewController.swift */; };
  67. CD1E72392A0BA86100BF871F /* BroadcastMembersTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718B2A0BA86100BF871F /* BroadcastMembersTableViewCell.swift */; };
  68. CD1E723A2A0BA86100BF871F /* QRScannerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718C2A0BA86100BF871F /* QRScannerView.swift */; };
  69. CD1E723B2A0BA86100BF871F /* GroupDescViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718D2A0BA86100BF871F /* GroupDescViewController.swift */; };
  70. CD1E723C2A0BA86100BF871F /* HistoryBroadcastViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718E2A0BA86100BF871F /* HistoryBroadcastViewController.swift */; };
  71. CD1E723D2A0BA86100BF871F /* CheckConnection.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E718F2A0BA86100BF871F /* CheckConnection.swift */; };
  72. CD1E723E2A0BA86100BF871F /* SignUpSignIn.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71902A0BA86100BF871F /* SignUpSignIn.swift */; };
  73. CD1E723F2A0BA86100BF871F /* GroupDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71912A0BA86100BF871F /* GroupDetailViewController.swift */; };
  74. CD1E72402A0BA86100BF871F /* ChangeNamePassswordViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71922A0BA86100BF871F /* ChangeNamePassswordViewController.swift */; };
  75. CD1E72412A0BA86100BF871F /* ContactChatViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71932A0BA86100BF871F /* ContactChatViewController.swift */; };
  76. CD1E72422A0BA86100BF871F /* ChangeDeviceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71942A0BA86100BF871F /* ChangeDeviceViewController.swift */; };
  77. CD1E72432A0BA86100BF871F /* DocumentPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71952A0BA86100BF871F /* DocumentPicker.swift */; };
  78. CD1E72442A0BA86100BF871F /* ChangePasswordViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71962A0BA86100BF871F /* ChangePasswordViewController.swift */; };
  79. CD1E72452A0BA86100BF871F /* GroupNameViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71972A0BA86100BF871F /* GroupNameViewController.swift */; };
  80. CD1E72462A0BA86100BF871F /* GroupTopicViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71982A0BA86100BF871F /* GroupTopicViewController.swift */; };
  81. CD1E72472A0BA86100BF871F /* SettingTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71992A0BA86100BF871F /* SettingTableViewController.swift */; };
  82. CD1E72482A0BA86100BF871F /* BroadcastModeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719A2A0BA86100BF871F /* BroadcastModeViewController.swift */; };
  83. CD1E72492A0BA86100BF871F /* BackupRestoreOption.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719B2A0BA86100BF871F /* BackupRestoreOption.swift */; };
  84. CD1E724A2A0BA86100BF871F /* HistoryCCViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719C2A0BA86100BF871F /* HistoryCCViewController.swift */; };
  85. CD1E724B2A0BA86100BF871F /* ChangeNameTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719D2A0BA86100BF871F /* ChangeNameTableViewController.swift */; };
  86. CD1E724C2A0BA86100BF871F /* NotificationSound.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719E2A0BA86100BF871F /* NotificationSound.swift */; };
  87. CD1E724D2A0BA86100BF871F /* TypeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E719F2A0BA86100BF871F /* TypeViewController.swift */; };
  88. CD1E724E2A0BA86100BF871F /* VerifyEmail.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A02A0BA86100BF871F /* VerifyEmail.swift */; };
  89. CD1E724F2A0BA86100BF871F /* SetInternalCSAccount.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A12A0BA86100BF871F /* SetInternalCSAccount.swift */; };
  90. CD1E72502A0BA86100BF871F /* BroadcastVariantViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A22A0BA86100BF871F /* BroadcastVariantViewController.swift */; };
  91. CD1E72522A0BA86100BF871F /* ImageVideoPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A42A0BA86100BF871F /* ImageVideoPicker.swift */; };
  92. CD1E72532A0BA86100BF871F /* BackupRestoreView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A52A0BA86100BF871F /* BackupRestoreView.swift */; };
  93. CD1E72542A0BA86100BF871F /* ProfileViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A62A0BA86100BF871F /* ProfileViewController.swift */; };
  94. CD1E72552A0BA86100BF871F /* BroadcastMembersTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A72A0BA86100BF871F /* BroadcastMembersTableViewController.swift */; };
  95. CD1E72562A0BA86100BF871F /* BroadcastViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A82A0BA86100BF871F /* BroadcastViewController.swift */; };
  96. CD1E72572A0BA86100BF871F /* GroupMemberViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71A92A0BA86100BF871F /* GroupMemberViewController.swift */; };
  97. CD1E72582A0BA86100BF871F /* SetOfficerBNI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AA2A0BA86100BF871F /* SetOfficerBNI.swift */; };
  98. CD1E72592A0BA86100BF871F /* AddFriendTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AB2A0BA86100BF871F /* AddFriendTableViewController.swift */; };
  99. CD1E725A2A0BA86100BF871F /* ScannerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AC2A0BA86100BF871F /* ScannerViewController.swift */; };
  100. CD1E725B2A0BA86100BF871F /* AudienceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AD2A0BA86100BF871F /* AudienceViewController.swift */; };
  101. CD1E725C2A0BA86100BF871F /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AE2A0BA86100BF871F /* Utils.swift */; };
  102. CD1E725D2A0BA86100BF871F /* WhiteboardDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71AF2A0BA86100BF871F /* WhiteboardDelegate.swift */; };
  103. CD1E725E2A0BA86100BF871F /* TMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B02A0BA86100BF871F /* TMessage.swift */; };
  104. CD1E725F2A0BA86100BF871F /* CoreMessage_TMessageBank.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B12A0BA86100BF871F /* CoreMessage_TMessageBank.swift */; };
  105. CD1E72602A0BA86100BF871F /* Callback.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B22A0BA86100BF871F /* Callback.swift */; };
  106. CD1E72612A0BA86100BF871F /* CoreMessage_TMessageCode.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B32A0BA86100BF871F /* CoreMessage_TMessageCode.swift */; };
  107. CD1E72622A0BA86100BF871F /* IncomingThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B42A0BA86100BF871F /* IncomingThread.swift */; };
  108. CD1E72632A0BA86100BF871F /* CoreMessage_TMessageUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD1E71B52A0BA86100BF871F /* CoreMessage_TMessageUtil.swift */; };
  109. CD2585C42D59DA60002AB416 /* Dutifully.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585B72D59DA60002AB416 /* Dutifully.mp3 */; };
  110. CD2585C52D59DA60002AB416 /* Juntos.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BB2D59DA60002AB416 /* Juntos.mp3 */; };
  111. CD2585C62D59DA60002AB416 /* Light_Hearted.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BC2D59DA60002AB416 /* Light_Hearted.mp3 */; };
  112. CD2585C72D59DA60002AB416 /* Nexilis_Message.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BE2D59DA60002AB416 /* Nexilis_Message.mp3 */; };
  113. CD2585C82D59DA60002AB416 /* Out_of_Nowhere.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BF2D59DA60002AB416 /* Out_of_Nowhere.mp3 */; };
  114. CD2585C92D59DA60002AB416 /* Swift_gesture.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585C22D59DA60002AB416 /* Swift_gesture.mp3 */; };
  115. CD2585CA2D59DA60002AB416 /* Relax.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585C02D59DA60002AB416 /* Relax.mp3 */; };
  116. CD2585CB2D59DA60002AB416 /* Eventually.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585B92D59DA60002AB416 /* Eventually.mp3 */; };
  117. CD2585CC2D59DA60002AB416 /* Upset.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585C32D59DA60002AB416 /* Upset.mp3 */; };
  118. CD2585CD2D59DA60002AB416 /* Elegant.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585B82D59DA60002AB416 /* Elegant.mp3 */; };
  119. CD2585CE2D59DA60002AB416 /* Strong_Minded.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585C12D59DA60002AB416 /* Strong_Minded.mp3 */; };
  120. CD2585CF2D59DA60002AB416 /* Magic.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BD2D59DA60002AB416 /* Magic.mp3 */; };
  121. CD2585D02D59DA60002AB416 /* Hangover.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CD2585BA2D59DA60002AB416 /* Hangover.mp3 */; };
  122. CD2585D12D59DA73002AB416 /* pb_call_in.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CDE3BED62C86E3A000B0BF36 /* pb_call_in.mp3 */; };
  123. CD2585D22D59DA79002AB416 /* pb_call_out.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = CDE3BED72C86E3A000B0BF36 /* pb_call_out.mp3 */; };
  124. CD2B01212D43945500C11B20 /* pb_gpt_bot.gif in Resources */ = {isa = PBXBuildFile; fileRef = CD2B01202D43945500C11B20 /* pb_gpt_bot.gif */; };
  125. CD2B01242D43961E00C11B20 /* QRProfileController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD2B01222D43961E00C11B20 /* QRProfileController.swift */; };
  126. CD2B01252D43961E00C11B20 /* QRScannerController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD2B01232D43961E00C11B20 /* QRScannerController.swift */; };
  127. CD46A06B2A0CE307009E4C87 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = CD469FC82A0CE2DE009E4C87 /* Localizable.strings */; };
  128. CD46A06C2A0CE307009E4C87 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0172A0CE2DE009E4C87 /* Assets.xcassets */; };
  129. CD46A06D2A0CE307009E4C87 /* PreviewAttachmentImageVideo.xib in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0182A0CE2DE009E4C87 /* PreviewAttachmentImageVideo.xib */; };
  130. CD46A06E2A0CE307009E4C87 /* Palio.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = CD46A01A2A0CE2DE009E4C87 /* Palio.storyboard */; };
  131. CD46A06F2A0CE310009E4C87 /* NexilisLiteResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = CD469F502A0CC862009E4C87 /* NexilisLiteResources.bundle */; };
  132. CD46A0702A0CE320009E4C87 /* sticker_10000000_5.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCB2A0CE2DE009E4C87 /* sticker_10000000_5.png */; };
  133. CD46A0712A0CE320009E4C87 /* sticker_20000000_22.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCC2A0CE2DE009E4C87 /* sticker_20000000_22.png */; };
  134. CD46A0722A0CE320009E4C87 /* sticker_30000000_38.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCD2A0CE2DE009E4C87 /* sticker_30000000_38.png */; };
  135. CD46A0732A0CE320009E4C87 /* sticker_30000000_10.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCE2A0CE2DE009E4C87 /* sticker_30000000_10.png */; };
  136. CD46A0742A0CE320009E4C87 /* sticker_30000000_11.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FCF2A0CE2DE009E4C87 /* sticker_30000000_11.png */; };
  137. CD46A0752A0CE320009E4C87 /* sticker_30000000_39.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD02A0CE2DE009E4C87 /* sticker_30000000_39.png */; };
  138. CD46A0762A0CE320009E4C87 /* sticker_20000000_23.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD12A0CE2DE009E4C87 /* sticker_20000000_23.png */; };
  139. CD46A0772A0CE320009E4C87 /* sticker_10000000_4.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD22A0CE2DE009E4C87 /* sticker_10000000_4.png */; };
  140. CD46A0782A0CE320009E4C87 /* sticker_10000000_6.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD32A0CE2DE009E4C87 /* sticker_10000000_6.png */; };
  141. CD46A0792A0CE320009E4C87 /* sticker_20000000_21.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD42A0CE2DE009E4C87 /* sticker_20000000_21.png */; };
  142. CD46A07A2A0CE320009E4C87 /* sticker_30000000_13.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD52A0CE2DE009E4C87 /* sticker_30000000_13.png */; };
  143. CD46A07B2A0CE320009E4C87 /* sticker_30000000_9.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD62A0CE2DE009E4C87 /* sticker_30000000_9.png */; };
  144. CD46A07C2A0CE320009E4C87 /* sticker_30000000_8.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD72A0CE2DE009E4C87 /* sticker_30000000_8.png */; };
  145. CD46A07D2A0CE320009E4C87 /* sticker_30000000_12.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD82A0CE2DE009E4C87 /* sticker_30000000_12.png */; };
  146. CD46A07E2A0CE320009E4C87 /* sticker_20000000_20.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FD92A0CE2DE009E4C87 /* sticker_20000000_20.png */; };
  147. CD46A07F2A0CE320009E4C87 /* sticker_10000000_7.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDA2A0CE2DE009E4C87 /* sticker_10000000_7.png */; };
  148. CD46A0802A0CE320009E4C87 /* sticker_10000000_3.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDB2A0CE2DE009E4C87 /* sticker_10000000_3.png */; };
  149. CD46A0812A0CE320009E4C87 /* sticker_20000000_18.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDC2A0CE2DE009E4C87 /* sticker_20000000_18.png */; };
  150. CD46A0822A0CE320009E4C87 /* sticker_30000000_16.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDD2A0CE2DE009E4C87 /* sticker_30000000_16.png */; };
  151. CD46A0832A0CE320009E4C87 /* sticker_30000000_17.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDE2A0CE2DE009E4C87 /* sticker_30000000_17.png */; };
  152. CD46A0842A0CE320009E4C87 /* sticker_20000000_19.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FDF2A0CE2DE009E4C87 /* sticker_20000000_19.png */; };
  153. CD46A0852A0CE320009E4C87 /* sticker_10000000_2.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE02A0CE2DE009E4C87 /* sticker_10000000_2.png */; };
  154. CD46A0862A0CE320009E4C87 /* sticker_10000000_0.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE12A0CE2DE009E4C87 /* sticker_10000000_0.png */; };
  155. CD46A0872A0CE320009E4C87 /* sticker_20000000_8.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE22A0CE2DE009E4C87 /* sticker_20000000_8.png */; };
  156. CD46A0882A0CE320009E4C87 /* sticker_30000000_15.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE32A0CE2DE009E4C87 /* sticker_30000000_15.png */; };
  157. CD46A0892A0CE320009E4C87 /* sticker_30000000_29.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE42A0CE2DE009E4C87 /* sticker_30000000_29.png */; };
  158. CD46A08A2A0CE320009E4C87 /* sticker_30000000_28.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE52A0CE2DE009E4C87 /* sticker_30000000_28.png */; };
  159. CD46A08B2A0CE320009E4C87 /* sticker_30000000_14.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE62A0CE2DE009E4C87 /* sticker_30000000_14.png */; };
  160. CD46A08C2A0CE320009E4C87 /* sticker_20000000_9.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE72A0CE2DE009E4C87 /* sticker_20000000_9.png */; };
  161. CD46A08D2A0CE320009E4C87 /* sticker_10000000_1.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE82A0CE2DE009E4C87 /* sticker_10000000_1.png */; };
  162. CD46A08E2A0CE320009E4C87 /* sticker_20000000_17.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FE92A0CE2DE009E4C87 /* sticker_20000000_17.png */; };
  163. CD46A08F2A0CE320009E4C87 /* sticker_20000000_4.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEA2A0CE2DE009E4C87 /* sticker_20000000_4.png */; };
  164. CD46A0902A0CE320009E4C87 /* sticker_30000000_19.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEB2A0CE2DE009E4C87 /* sticker_30000000_19.png */; };
  165. CD46A0912A0CE320009E4C87 /* sticker_30000000_25.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEC2A0CE2DE009E4C87 /* sticker_30000000_25.png */; };
  166. CD46A0922A0CE320009E4C87 /* sticker_30000000_31.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FED2A0CE2DE009E4C87 /* sticker_30000000_31.png */; };
  167. CD46A0932A0CE320009E4C87 /* sticker_30000000_3.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEE2A0CE2DE009E4C87 /* sticker_30000000_3.png */; };
  168. CD46A0942A0CE320009E4C87 /* sticker_30000000_2.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FEF2A0CE2DE009E4C87 /* sticker_30000000_2.png */; };
  169. CD46A0952A0CE320009E4C87 /* sticker_30000000_30.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF02A0CE2DE009E4C87 /* sticker_30000000_30.png */; };
  170. CD46A0962A0CE320009E4C87 /* sticker_30000000_24.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF12A0CE2DE009E4C87 /* sticker_30000000_24.png */; };
  171. CD46A0972A0CE320009E4C87 /* sticker_30000000_18.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF22A0CE2DE009E4C87 /* sticker_30000000_18.png */; };
  172. CD46A0982A0CE320009E4C87 /* sticker_20000000_5.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF32A0CE2DE009E4C87 /* sticker_20000000_5.png */; };
  173. CD46A0992A0CE320009E4C87 /* sticker_20000000_16.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF42A0CE2DE009E4C87 /* sticker_20000000_16.png */; };
  174. CD46A09A2A0CE320009E4C87 /* sticker_10000000_11.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF52A0CE2DE009E4C87 /* sticker_10000000_11.png */; };
  175. CD46A09B2A0CE320009E4C87 /* sticker_20000000_14.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF62A0CE2DE009E4C87 /* sticker_20000000_14.png */; };
  176. CD46A09C2A0CE320009E4C87 /* sticker_20000000_7.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF72A0CE2DE009E4C87 /* sticker_20000000_7.png */; };
  177. CD46A09D2A0CE320009E4C87 /* sticker_30000000_32.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF82A0CE2DE009E4C87 /* sticker_30000000_32.png */; };
  178. CD46A09E2A0CE320009E4C87 /* sticker_30000000_26.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FF92A0CE2DE009E4C87 /* sticker_30000000_26.png */; };
  179. CD46A09F2A0CE320009E4C87 /* sticker_30000000_0.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFA2A0CE2DE009E4C87 /* sticker_30000000_0.png */; };
  180. CD46A0A02A0CE320009E4C87 /* sticker_30000000_1.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFB2A0CE2DE009E4C87 /* sticker_30000000_1.png */; };
  181. CD46A0A12A0CE320009E4C87 /* sticker_30000000_27.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFC2A0CE2DE009E4C87 /* sticker_30000000_27.png */; };
  182. CD46A0A22A0CE320009E4C87 /* sticker_30000000_33.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFD2A0CE2DE009E4C87 /* sticker_30000000_33.png */; };
  183. CD46A0A32A0CE320009E4C87 /* sticker_20000000_6.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFE2A0CE2DE009E4C87 /* sticker_20000000_6.png */; };
  184. CD46A0A42A0CE320009E4C87 /* sticker_20000000_15.png in Resources */ = {isa = PBXBuildFile; fileRef = CD469FFF2A0CE2DE009E4C87 /* sticker_20000000_15.png */; };
  185. CD46A0A52A0CE320009E4C87 /* sticker_10000000_10.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0002A0CE2DE009E4C87 /* sticker_10000000_10.png */; };
  186. CD46A0A62A0CE320009E4C87 /* sticker_20000000_2.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0012A0CE2DE009E4C87 /* sticker_20000000_2.png */; };
  187. CD46A0A72A0CE320009E4C87 /* sticker_20000000_11.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0022A0CE2DE009E4C87 /* sticker_20000000_11.png */; };
  188. CD46A0A82A0CE320009E4C87 /* sticker_30000000_37.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0032A0CE2DE009E4C87 /* sticker_30000000_37.png */; };
  189. CD46A0A92A0CE320009E4C87 /* sticker_30000000_23.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0042A0CE2DE009E4C87 /* sticker_30000000_23.png */; };
  190. CD46A0AA2A0CE320009E4C87 /* sticker_30000000_5.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0052A0CE2DE009E4C87 /* sticker_30000000_5.png */; };
  191. CD46A0AB2A0CE320009E4C87 /* sticker_30000000_4.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0062A0CE2DE009E4C87 /* sticker_30000000_4.png */; };
  192. CD46A0AC2A0CE320009E4C87 /* sticker_30000000_22.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0072A0CE2DE009E4C87 /* sticker_30000000_22.png */; };
  193. CD46A0AD2A0CE320009E4C87 /* sticker_30000000_36.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0082A0CE2DE009E4C87 /* sticker_30000000_36.png */; };
  194. CD46A0AE2A0CE320009E4C87 /* sticker_20000000_10.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0092A0CE2DE009E4C87 /* sticker_20000000_10.png */; };
  195. CD46A0AF2A0CE320009E4C87 /* sticker_20000000_3.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00A2A0CE2DE009E4C87 /* sticker_20000000_3.png */; };
  196. CD46A0B02A0CE320009E4C87 /* sticker_10000000_9.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00B2A0CE2DE009E4C87 /* sticker_10000000_9.png */; };
  197. CD46A0B12A0CE320009E4C87 /* sticker_20000000_1.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00C2A0CE2DE009E4C87 /* sticker_20000000_1.png */; };
  198. CD46A0B22A0CE320009E4C87 /* sticker_20000000_12.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00D2A0CE2DE009E4C87 /* sticker_20000000_12.png */; };
  199. CD46A0B32A0CE320009E4C87 /* sticker_30000000_20.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00E2A0CE2DE009E4C87 /* sticker_30000000_20.png */; };
  200. CD46A0B42A0CE320009E4C87 /* sticker_30000000_34.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A00F2A0CE2DE009E4C87 /* sticker_30000000_34.png */; };
  201. CD46A0B52A0CE320009E4C87 /* sticker_30000000_6.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0102A0CE2DE009E4C87 /* sticker_30000000_6.png */; };
  202. CD46A0B62A0CE320009E4C87 /* sticker_30000000_7.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0112A0CE2DE009E4C87 /* sticker_30000000_7.png */; };
  203. CD46A0B72A0CE320009E4C87 /* sticker_30000000_35.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0122A0CE2DE009E4C87 /* sticker_30000000_35.png */; };
  204. CD46A0B82A0CE320009E4C87 /* sticker_30000000_21.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0132A0CE2DE009E4C87 /* sticker_30000000_21.png */; };
  205. CD46A0B92A0CE320009E4C87 /* sticker_20000000_13.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0142A0CE2DE009E4C87 /* sticker_20000000_13.png */; };
  206. CD46A0BA2A0CE320009E4C87 /* sticker_20000000_0.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0152A0CE2DE009E4C87 /* sticker_20000000_0.png */; };
  207. CD46A0BB2A0CE320009E4C87 /* sticker_10000000_8.png in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0162A0CE2DE009E4C87 /* sticker_10000000_8.png */; };
  208. CD46A0BF2A0CE4FD009E4C87 /* NexilisLite.podspec in Resources */ = {isa = PBXBuildFile; fileRef = CD46A0BE2A0CE4FD009E4C87 /* NexilisLite.podspec */; };
  209. CD46A0C52A0D0D5D009E4C87 /* MyArchive.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD46A0C42A0D0D5D009E4C87 /* MyArchive.swift */; };
  210. CD5A73AE2A77642D000541A5 /* MessageInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD5A73AC2A77642D000541A5 /* MessageInfo.swift */; };
  211. CD5A73AF2A77642D000541A5 /* ListGroupImages.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD5A73AD2A77642D000541A5 /* ListGroupImages.swift */; };
  212. CD7054EA2AD39DE2003741BF /* ChatGPTBotView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD7054E92AD39DE2003741BF /* ChatGPTBotView.swift */; };
  213. CD9551592A664BDA00AF6476 /* Poppins-LightItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551402A664BD400AF6476 /* Poppins-LightItalic.otf */; };
  214. CD95515A2A664BDA00AF6476 /* Poppins-MediumItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513F2A664BD400AF6476 /* Poppins-MediumItalic.otf */; };
  215. CD95515B2A664BDA00AF6476 /* Poppins-Bold.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551412A664BD400AF6476 /* Poppins-Bold.otf */; };
  216. CD95515C2A664BDA00AF6476 /* Poppins-BlackItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551432A664BD400AF6476 /* Poppins-BlackItalic.otf */; };
  217. CD95515D2A664BDA00AF6476 /* Poppins-Regular.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551442A664BD400AF6476 /* Poppins-Regular.otf */; };
  218. CD95515E2A664BDA00AF6476 /* SIL Open Font License.txt in Resources */ = {isa = PBXBuildFile; fileRef = CD9551352A664BD400AF6476 /* SIL Open Font License.txt */; };
  219. CD95515F2A664BDB00AF6476 /* Poppins-SemiBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513C2A664BD400AF6476 /* Poppins-SemiBold.otf */; };
  220. CD9551602A664BDB00AF6476 /* Poppins-ExtraBoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551342A664BD400AF6476 /* Poppins-ExtraBoldItalic.otf */; };
  221. CD9551612A664BDB00AF6476 /* Poppins-Black.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551422A664BD400AF6476 /* Poppins-Black.otf */; };
  222. CD9551622A664BDB00AF6476 /* Poppins-ExtraLight.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551362A664BD400AF6476 /* Poppins-ExtraLight.otf */; };
  223. CD9551632A664BDB00AF6476 /* Poppins-Light.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551392A664BD400AF6476 /* Poppins-Light.otf */; };
  224. CD9551642A664BDB00AF6476 /* Poppins-Italic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513D2A664BD400AF6476 /* Poppins-Italic.otf */; };
  225. CD9551652A664BDB00AF6476 /* Poppins-Thin.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513E2A664BD400AF6476 /* Poppins-Thin.otf */; };
  226. CD9551662A664BDB00AF6476 /* Poppins-Medium.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513B2A664BD400AF6476 /* Poppins-Medium.otf */; };
  227. CD9551672A664BDB00AF6476 /* Poppins-ExtraBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551452A664BD400AF6476 /* Poppins-ExtraBold.otf */; };
  228. CD9551682A664BDB00AF6476 /* Poppins-ThinItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551372A664BD400AF6476 /* Poppins-ThinItalic.otf */; };
  229. CD9551692A664BDB00AF6476 /* Poppins-SemiBoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551332A664BD400AF6476 /* Poppins-SemiBoldItalic.otf */; };
  230. CD95516A2A664BDB00AF6476 /* Poppins-BoldItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD95513A2A664BD400AF6476 /* Poppins-BoldItalic.otf */; };
  231. CD95516B2A664BDB00AF6476 /* Poppins-ExtraLightItalic.otf in Resources */ = {isa = PBXBuildFile; fileRef = CD9551382A664BD400AF6476 /* Poppins-ExtraLightItalic.otf */; };
  232. CD9829B72A3C07CB009F6743 /* SeminarListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD9829B62A3C07CB009F6743 /* SeminarListViewController.swift */; };
  233. CDA461222AB99E09001CD010 /* ConfigureFloatingButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDA461212AB99E09001CD010 /* ConfigureFloatingButton.swift */; };
  234. CDB21B2E2BA9998400EC5280 /* pb_def_icon_mode2.gif in Resources */ = {isa = PBXBuildFile; fileRef = CDB21B2B2BA9998400EC5280 /* pb_def_icon_mode2.gif */; };
  235. CDB21B2F2BA9998400EC5280 /* pb_def_icon_mode4.gif in Resources */ = {isa = PBXBuildFile; fileRef = CDB21B2C2BA9998400EC5280 /* pb_def_icon_mode4.gif */; };
  236. CDDF46752A2DD81300049A19 /* CreateSeminarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDDF46732A2DD81300049A19 /* CreateSeminarViewController.swift */; };
  237. CDDF46762A2DD81300049A19 /* SeminarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDDF46742A2DD81300049A19 /* SeminarViewController.swift */; };
  238. CDDF467A2A2EF0A700049A19 /* ScreenSharingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDDF46792A2EF0A700049A19 /* ScreenSharingViewController.swift */; };
  239. CDE50D8F2D630C720094C30D /* pb_typing_chat.gif in Resources */ = {isa = PBXBuildFile; fileRef = CDE50D8E2D630C720094C30D /* pb_typing_chat.gif */; };
  240. /* End PBXBuildFile section */
  241. /* Begin PBXContainerItemProxy section */
  242. CD1E6E742A0B7C3600BF871F /* PBXContainerItemProxy */ = {
  243. isa = PBXContainerItemProxy;
  244. containerPortal = CD1E6E5F2A0B7C3600BF871F /* Project object */;
  245. proxyType = 1;
  246. remoteGlobalIDString = CD1E6E672A0B7C3600BF871F;
  247. remoteInfo = NexilisLite;
  248. };
  249. CD469FA42A0CC8D4009E4C87 /* PBXContainerItemProxy */ = {
  250. isa = PBXContainerItemProxy;
  251. containerPortal = CD1E6E5F2A0B7C3600BF871F /* Project object */;
  252. proxyType = 1;
  253. remoteGlobalIDString = CD469F4F2A0CC862009E4C87;
  254. remoteInfo = NexilisLiteResources;
  255. };
  256. /* End PBXContainerItemProxy section */
  257. /* Begin PBXCopyFilesBuildPhase section */
  258. CD469E162A0CA6C9009E4C87 /* Embed Frameworks */ = {
  259. isa = PBXCopyFilesBuildPhase;
  260. buildActionMask = 2147483647;
  261. dstPath = "";
  262. dstSubfolderSpec = 10;
  263. files = (
  264. );
  265. name = "Embed Frameworks";
  266. runOnlyForDeploymentPostprocessing = 0;
  267. };
  268. /* End PBXCopyFilesBuildPhase section */
  269. /* Begin PBXFileReference section */
  270. 10B08C755C0859F1ECA5CEBC /* Pods_NexilisLite_NexilisLiteTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_NexilisLite_NexilisLiteTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  271. 1241AEBA2D017E8C0088175A /* FileEncryption.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FileEncryption.swift; sourceTree = "<group>"; };
  272. 1241AEBB2D017E8C0088175A /* MasterKeyUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MasterKeyUtil.swift; sourceTree = "<group>"; };
  273. 12C36CEA2D02995F0095BEC1 /* SecureFolderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SecureFolderView.swift; sourceTree = "<group>"; };
  274. 56F0A46991FE6BE0FDE74132 /* Pods_NexilisLite.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_NexilisLite.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  275. 5AFDB202A2CA7FE864B0B1C2 /* Pods-NexilisLite-NexilisLiteTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NexilisLite-NexilisLiteTests.debug.xcconfig"; path = "Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests.debug.xcconfig"; sourceTree = "<group>"; };
  276. 894DDD36E2CE62952A3371C1 /* Pods-NexilisLite-NexilisLiteTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NexilisLite-NexilisLiteTests.release.xcconfig"; path = "Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests.release.xcconfig"; sourceTree = "<group>"; };
  277. CD1E6E682A0B7C3600BF871F /* NexilisLite.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = NexilisLite.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  278. CD1E6E6B2A0B7C3600BF871F /* NexilisLite.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NexilisLite.h; sourceTree = "<group>"; };
  279. CD1E6E6C2A0B7C3600BF871F /* NexilisLite.docc */ = {isa = PBXFileReference; lastKnownFileType = folder.documentationcatalog; path = NexilisLite.docc; sourceTree = "<group>"; };
  280. CD1E6E722A0B7C3600BF871F /* NexilisLiteTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NexilisLiteTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  281. CD1E6E772A0B7C3600BF871F /* NexilisLiteTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NexilisLiteTests.swift; sourceTree = "<group>"; };
  282. CD1E70CC2A0B815400BF871F /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  283. CD1E714F2A0BA86100BF871F /* OutgoingThread.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OutgoingThread.swift; sourceTree = "<group>"; };
  284. CD1E71502A0BA86100BF871F /* WhiteboardCanvas.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WhiteboardCanvas.swift; sourceTree = "<group>"; };
  285. CD1E71512A0BA86100BF871F /* Units.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Units.swift; sourceTree = "<group>"; };
  286. CD1E71532A0BA86100BF871F /* APIS.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = APIS.swift; sourceTree = "<group>"; };
  287. CD1E71552A0BA86100BF871F /* FloatingButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FloatingButton.swift; sourceTree = "<group>"; };
  288. CD1E71562A0BA86100BF871F /* Whiteboard.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Whiteboard.swift; sourceTree = "<group>"; };
  289. CD1E71572A0BA86100BF871F /* InquiryThread.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InquiryThread.swift; sourceTree = "<group>"; };
  290. CD1E71582A0BA86100BF871F /* Network.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Network.swift; sourceTree = "<group>"; };
  291. CD1E71592A0BA86100BF871F /* Download.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Download.swift; sourceTree = "<group>"; };
  292. CD1E715A2A0BA86100BF871F /* Extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Extension.swift; sourceTree = "<group>"; };
  293. CD1E715B2A0BA86100BF871F /* WhiteboardReceiver.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WhiteboardReceiver.swift; sourceTree = "<group>"; };
  294. CD1E715C2A0BA86100BF871F /* CoreMessage_TMessageKey.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CoreMessage_TMessageKey.swift; sourceTree = "<group>"; };
  295. CD1E715D2A0BA86100BF871F /* Database.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Database.swift; sourceTree = "<group>"; };
  296. CD1E715F2A0BA86100BF871F /* Model.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Model.swift; sourceTree = "<group>"; };
  297. CD1E71602A0BA86100BF871F /* Chat.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Chat.swift; sourceTree = "<group>"; };
  298. CD1E71612A0BA86100BF871F /* User.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = User.swift; sourceTree = "<group>"; };
  299. CD1E71622A0BA86100BF871F /* CategoryCC.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CategoryCC.swift; sourceTree = "<group>"; };
  300. CD1E71632A0BA86100BF871F /* WorkingArea.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WorkingArea.swift; sourceTree = "<group>"; };
  301. CD1E71642A0BA86100BF871F /* Group.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Group.swift; sourceTree = "<group>"; };
  302. CD1E71652A0BA86100BF871F /* NotifSound.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotifSound.swift; sourceTree = "<group>"; };
  303. CD1E71662A0BA86100BF871F /* Nexilis.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Nexilis.swift; sourceTree = "<group>"; };
  304. CD1E71692A0BA86100BF871F /* ContactCallViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ContactCallViewController.swift; sourceTree = "<group>"; };
  305. CD1E716B2A0BA86100BF871F /* WorkingAreaPicker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WorkingAreaPicker.swift; sourceTree = "<group>"; };
  306. CD1E716C2A0BA86100BF871F /* BNIBookingWebView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BNIBookingWebView.swift; sourceTree = "<group>"; };
  307. CD1E716E2A0BA86100BF871F /* EditorStarMessages.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EditorStarMessages.swift; sourceTree = "<group>"; };
  308. CD1E716F2A0BA86100BF871F /* PreviewAttachmentImageVideo.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PreviewAttachmentImageVideo.xib; sourceTree = "<group>"; };
  309. CD1E71702A0BA86100BF871F /* EditorPersonal.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EditorPersonal.swift; sourceTree = "<group>"; };
  310. CD1E71712A0BA86100BF871F /* FormEditor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FormEditor.swift; sourceTree = "<group>"; };
  311. CD1E71722A0BA86100BF871F /* EditorGroup.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EditorGroup.swift; sourceTree = "<group>"; };
  312. CD1E71732A0BA86100BF871F /* PreviewAttachmentImageVideo.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PreviewAttachmentImageVideo.swift; sourceTree = "<group>"; };
  313. CD1E71742A0BA86100BF871F /* CustomTextView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CustomTextView.swift; sourceTree = "<group>"; };
  314. CD1E71762A0BA86100BF871F /* QmeraGroupChooserViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraGroupChooserViewController.swift; sourceTree = "<group>"; };
  315. CD1E71772A0BA86100BF871F /* QmeraStreamingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraStreamingViewController.swift; sourceTree = "<group>"; };
  316. CD1E71782A0BA86100BF871F /* CreateViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CreateViewController.swift; sourceTree = "<group>"; };
  317. CD1E71792A0BA86100BF871F /* QmeraUserChooserViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraUserChooserViewController.swift; sourceTree = "<group>"; };
  318. CD1E717A2A0BA86100BF871F /* StreamingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StreamingViewController.swift; sourceTree = "<group>"; };
  319. CD1E717B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraCreateStreamingViewController.swift; sourceTree = "<group>"; };
  320. CD1E717D2A0BA86100BF871F /* CallManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallManager.swift; sourceTree = "<group>"; };
  321. CD1E717E2A0BA86100BF871F /* QmeraAudioConference.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraAudioConference.swift; sourceTree = "<group>"; };
  322. CD1E717F2A0BA86100BF871F /* AudioViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AudioViewController.swift; sourceTree = "<group>"; };
  323. CD1E71802A0BA86100BF871F /* ProfileView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProfileView.swift; sourceTree = "<group>"; };
  324. CD1E71812A0BA86100BF871F /* CallProviderDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CallProviderDelegate.swift; sourceTree = "<group>"; };
  325. CD1E71822A0BA86100BF871F /* QmeraAudioViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraAudioViewController.swift; sourceTree = "<group>"; };
  326. CD1E71832A0BA86100BF871F /* QmeraCallContactViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraCallContactViewController.swift; sourceTree = "<group>"; };
  327. CD1E71842A0BA86100BF871F /* WhiteboardViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WhiteboardViewController.swift; sourceTree = "<group>"; };
  328. CD1E71852A0BA86100BF871F /* QmeraVideoViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QmeraVideoViewController.swift; sourceTree = "<group>"; };
  329. CD1E71862A0BA86100BF871F /* VideoViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoViewController.swift; sourceTree = "<group>"; };
  330. CD1E71872A0BA86100BF871F /* Call.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Call.swift; sourceTree = "<group>"; };
  331. CD1E71882A0BA86100BF871F /* GroupView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupView.swift; sourceTree = "<group>"; };
  332. CD1E718A2A0BA86100BF871F /* GroupCreateViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupCreateViewController.swift; sourceTree = "<group>"; };
  333. CD1E718B2A0BA86100BF871F /* BroadcastMembersTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastMembersTableViewCell.swift; sourceTree = "<group>"; };
  334. CD1E718C2A0BA86100BF871F /* QRScannerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QRScannerView.swift; sourceTree = "<group>"; };
  335. CD1E718D2A0BA86100BF871F /* GroupDescViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupDescViewController.swift; sourceTree = "<group>"; };
  336. CD1E718E2A0BA86100BF871F /* HistoryBroadcastViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HistoryBroadcastViewController.swift; sourceTree = "<group>"; };
  337. CD1E718F2A0BA86100BF871F /* CheckConnection.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CheckConnection.swift; sourceTree = "<group>"; };
  338. CD1E71902A0BA86100BF871F /* SignUpSignIn.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SignUpSignIn.swift; sourceTree = "<group>"; };
  339. CD1E71912A0BA86100BF871F /* GroupDetailViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupDetailViewController.swift; sourceTree = "<group>"; };
  340. CD1E71922A0BA86100BF871F /* ChangeNamePassswordViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeNamePassswordViewController.swift; sourceTree = "<group>"; };
  341. CD1E71932A0BA86100BF871F /* ContactChatViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ContactChatViewController.swift; sourceTree = "<group>"; };
  342. CD1E71942A0BA86100BF871F /* ChangeDeviceViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeDeviceViewController.swift; sourceTree = "<group>"; };
  343. CD1E71952A0BA86100BF871F /* DocumentPicker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DocumentPicker.swift; sourceTree = "<group>"; };
  344. CD1E71962A0BA86100BF871F /* ChangePasswordViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangePasswordViewController.swift; sourceTree = "<group>"; };
  345. CD1E71972A0BA86100BF871F /* GroupNameViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupNameViewController.swift; sourceTree = "<group>"; };
  346. CD1E71982A0BA86100BF871F /* GroupTopicViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupTopicViewController.swift; sourceTree = "<group>"; };
  347. CD1E71992A0BA86100BF871F /* SettingTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingTableViewController.swift; sourceTree = "<group>"; };
  348. CD1E719A2A0BA86100BF871F /* BroadcastModeViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastModeViewController.swift; sourceTree = "<group>"; };
  349. CD1E719B2A0BA86100BF871F /* BackupRestoreOption.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BackupRestoreOption.swift; sourceTree = "<group>"; };
  350. CD1E719C2A0BA86100BF871F /* HistoryCCViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HistoryCCViewController.swift; sourceTree = "<group>"; };
  351. CD1E719D2A0BA86100BF871F /* ChangeNameTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChangeNameTableViewController.swift; sourceTree = "<group>"; };
  352. CD1E719E2A0BA86100BF871F /* NotificationSound.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationSound.swift; sourceTree = "<group>"; };
  353. CD1E719F2A0BA86100BF871F /* TypeViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TypeViewController.swift; sourceTree = "<group>"; };
  354. CD1E71A02A0BA86100BF871F /* VerifyEmail.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VerifyEmail.swift; sourceTree = "<group>"; };
  355. CD1E71A12A0BA86100BF871F /* SetInternalCSAccount.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SetInternalCSAccount.swift; sourceTree = "<group>"; };
  356. CD1E71A22A0BA86100BF871F /* BroadcastVariantViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastVariantViewController.swift; sourceTree = "<group>"; };
  357. CD1E71A42A0BA86100BF871F /* ImageVideoPicker.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageVideoPicker.swift; sourceTree = "<group>"; };
  358. CD1E71A52A0BA86100BF871F /* BackupRestoreView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BackupRestoreView.swift; sourceTree = "<group>"; };
  359. CD1E71A62A0BA86100BF871F /* ProfileViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProfileViewController.swift; sourceTree = "<group>"; };
  360. CD1E71A72A0BA86100BF871F /* BroadcastMembersTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastMembersTableViewController.swift; sourceTree = "<group>"; };
  361. CD1E71A82A0BA86100BF871F /* BroadcastViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BroadcastViewController.swift; sourceTree = "<group>"; };
  362. CD1E71A92A0BA86100BF871F /* GroupMemberViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GroupMemberViewController.swift; sourceTree = "<group>"; };
  363. CD1E71AA2A0BA86100BF871F /* SetOfficerBNI.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SetOfficerBNI.swift; sourceTree = "<group>"; };
  364. CD1E71AB2A0BA86100BF871F /* AddFriendTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AddFriendTableViewController.swift; sourceTree = "<group>"; };
  365. CD1E71AC2A0BA86100BF871F /* ScannerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScannerViewController.swift; sourceTree = "<group>"; };
  366. CD1E71AD2A0BA86100BF871F /* AudienceViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AudienceViewController.swift; sourceTree = "<group>"; };
  367. CD1E71AE2A0BA86100BF871F /* Utils.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Utils.swift; sourceTree = "<group>"; };
  368. CD1E71AF2A0BA86100BF871F /* WhiteboardDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WhiteboardDelegate.swift; sourceTree = "<group>"; };
  369. CD1E71B02A0BA86100BF871F /* TMessage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TMessage.swift; sourceTree = "<group>"; };
  370. CD1E71B12A0BA86100BF871F /* CoreMessage_TMessageBank.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CoreMessage_TMessageBank.swift; sourceTree = "<group>"; };
  371. CD1E71B22A0BA86100BF871F /* Callback.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Callback.swift; sourceTree = "<group>"; };
  372. CD1E71B32A0BA86100BF871F /* CoreMessage_TMessageCode.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CoreMessage_TMessageCode.swift; sourceTree = "<group>"; };
  373. CD1E71B42A0BA86100BF871F /* IncomingThread.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = IncomingThread.swift; sourceTree = "<group>"; };
  374. CD1E71B52A0BA86100BF871F /* CoreMessage_TMessageUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CoreMessage_TMessageUtil.swift; sourceTree = "<group>"; };
  375. CD1E790E2A0CA43600BF871F /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  376. CD1E790F2A0CA43600BF871F /* FMDB.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = FMDB.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  377. CD1E79102A0CA43600BF871F /* MarqueeLabel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = MarqueeLabel.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  378. CD1E79112A0CA43600BF871F /* NotificationBannerSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = NotificationBannerSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  379. CD1E79142A0CA43600BF871F /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  380. CD1E79152A0CA43600BF871F /* SnapKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = SnapKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  381. CD1E79162A0CA43600BF871F /* Toast_Swift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = Toast_Swift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  382. CD2585B72D59DA60002AB416 /* Dutifully.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Dutifully.mp3; sourceTree = "<group>"; };
  383. CD2585B82D59DA60002AB416 /* Elegant.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Elegant.mp3; sourceTree = "<group>"; };
  384. CD2585B92D59DA60002AB416 /* Eventually.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Eventually.mp3; sourceTree = "<group>"; };
  385. CD2585BA2D59DA60002AB416 /* Hangover.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Hangover.mp3; sourceTree = "<group>"; };
  386. CD2585BB2D59DA60002AB416 /* Juntos.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Juntos.mp3; sourceTree = "<group>"; };
  387. CD2585BC2D59DA60002AB416 /* Light_Hearted.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Light_Hearted.mp3; sourceTree = "<group>"; };
  388. CD2585BD2D59DA60002AB416 /* Magic.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Magic.mp3; sourceTree = "<group>"; };
  389. CD2585BE2D59DA60002AB416 /* Nexilis_Message.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Nexilis_Message.mp3; sourceTree = "<group>"; };
  390. CD2585BF2D59DA60002AB416 /* Out_of_Nowhere.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Out_of_Nowhere.mp3; sourceTree = "<group>"; };
  391. CD2585C02D59DA60002AB416 /* Relax.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Relax.mp3; sourceTree = "<group>"; };
  392. CD2585C12D59DA60002AB416 /* Strong_Minded.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Strong_Minded.mp3; sourceTree = "<group>"; };
  393. CD2585C22D59DA60002AB416 /* Swift_gesture.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Swift_gesture.mp3; sourceTree = "<group>"; };
  394. CD2585C32D59DA60002AB416 /* Upset.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = Upset.mp3; sourceTree = "<group>"; };
  395. CD2B01202D43945500C11B20 /* pb_gpt_bot.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = pb_gpt_bot.gif; sourceTree = "<group>"; };
  396. CD2B01222D43961E00C11B20 /* QRProfileController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRProfileController.swift; sourceTree = "<group>"; };
  397. CD2B01232D43961E00C11B20 /* QRScannerController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRScannerController.swift; sourceTree = "<group>"; };
  398. CD469F502A0CC862009E4C87 /* NexilisLiteResources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NexilisLiteResources.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
  399. CD469FC92A0CE2DE009E4C87 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  400. CD469FCB2A0CE2DE009E4C87 /* sticker_10000000_5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_5.png; sourceTree = "<group>"; };
  401. CD469FCC2A0CE2DE009E4C87 /* sticker_20000000_22.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_22.png; sourceTree = "<group>"; };
  402. CD469FCD2A0CE2DE009E4C87 /* sticker_30000000_38.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_38.png; sourceTree = "<group>"; };
  403. CD469FCE2A0CE2DE009E4C87 /* sticker_30000000_10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_10.png; sourceTree = "<group>"; };
  404. CD469FCF2A0CE2DE009E4C87 /* sticker_30000000_11.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_11.png; sourceTree = "<group>"; };
  405. CD469FD02A0CE2DE009E4C87 /* sticker_30000000_39.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_39.png; sourceTree = "<group>"; };
  406. CD469FD12A0CE2DE009E4C87 /* sticker_20000000_23.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_23.png; sourceTree = "<group>"; };
  407. CD469FD22A0CE2DE009E4C87 /* sticker_10000000_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_4.png; sourceTree = "<group>"; };
  408. CD469FD32A0CE2DE009E4C87 /* sticker_10000000_6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_6.png; sourceTree = "<group>"; };
  409. CD469FD42A0CE2DE009E4C87 /* sticker_20000000_21.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_21.png; sourceTree = "<group>"; };
  410. CD469FD52A0CE2DE009E4C87 /* sticker_30000000_13.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_13.png; sourceTree = "<group>"; };
  411. CD469FD62A0CE2DE009E4C87 /* sticker_30000000_9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_9.png; sourceTree = "<group>"; };
  412. CD469FD72A0CE2DE009E4C87 /* sticker_30000000_8.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_8.png; sourceTree = "<group>"; };
  413. CD469FD82A0CE2DE009E4C87 /* sticker_30000000_12.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_12.png; sourceTree = "<group>"; };
  414. CD469FD92A0CE2DE009E4C87 /* sticker_20000000_20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_20.png; sourceTree = "<group>"; };
  415. CD469FDA2A0CE2DE009E4C87 /* sticker_10000000_7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_7.png; sourceTree = "<group>"; };
  416. CD469FDB2A0CE2DE009E4C87 /* sticker_10000000_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_3.png; sourceTree = "<group>"; };
  417. CD469FDC2A0CE2DE009E4C87 /* sticker_20000000_18.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_18.png; sourceTree = "<group>"; };
  418. CD469FDD2A0CE2DE009E4C87 /* sticker_30000000_16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_16.png; sourceTree = "<group>"; };
  419. CD469FDE2A0CE2DE009E4C87 /* sticker_30000000_17.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_17.png; sourceTree = "<group>"; };
  420. CD469FDF2A0CE2DE009E4C87 /* sticker_20000000_19.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_19.png; sourceTree = "<group>"; };
  421. CD469FE02A0CE2DE009E4C87 /* sticker_10000000_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_2.png; sourceTree = "<group>"; };
  422. CD469FE12A0CE2DE009E4C87 /* sticker_10000000_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_0.png; sourceTree = "<group>"; };
  423. CD469FE22A0CE2DE009E4C87 /* sticker_20000000_8.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_8.png; sourceTree = "<group>"; };
  424. CD469FE32A0CE2DE009E4C87 /* sticker_30000000_15.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_15.png; sourceTree = "<group>"; };
  425. CD469FE42A0CE2DE009E4C87 /* sticker_30000000_29.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_29.png; sourceTree = "<group>"; };
  426. CD469FE52A0CE2DE009E4C87 /* sticker_30000000_28.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_28.png; sourceTree = "<group>"; };
  427. CD469FE62A0CE2DE009E4C87 /* sticker_30000000_14.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_14.png; sourceTree = "<group>"; };
  428. CD469FE72A0CE2DE009E4C87 /* sticker_20000000_9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_9.png; sourceTree = "<group>"; };
  429. CD469FE82A0CE2DE009E4C87 /* sticker_10000000_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_1.png; sourceTree = "<group>"; };
  430. CD469FE92A0CE2DE009E4C87 /* sticker_20000000_17.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_17.png; sourceTree = "<group>"; };
  431. CD469FEA2A0CE2DE009E4C87 /* sticker_20000000_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_4.png; sourceTree = "<group>"; };
  432. CD469FEB2A0CE2DE009E4C87 /* sticker_30000000_19.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_19.png; sourceTree = "<group>"; };
  433. CD469FEC2A0CE2DE009E4C87 /* sticker_30000000_25.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_25.png; sourceTree = "<group>"; };
  434. CD469FED2A0CE2DE009E4C87 /* sticker_30000000_31.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_31.png; sourceTree = "<group>"; };
  435. CD469FEE2A0CE2DE009E4C87 /* sticker_30000000_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_3.png; sourceTree = "<group>"; };
  436. CD469FEF2A0CE2DE009E4C87 /* sticker_30000000_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_2.png; sourceTree = "<group>"; };
  437. CD469FF02A0CE2DE009E4C87 /* sticker_30000000_30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_30.png; sourceTree = "<group>"; };
  438. CD469FF12A0CE2DE009E4C87 /* sticker_30000000_24.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_24.png; sourceTree = "<group>"; };
  439. CD469FF22A0CE2DE009E4C87 /* sticker_30000000_18.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_18.png; sourceTree = "<group>"; };
  440. CD469FF32A0CE2DE009E4C87 /* sticker_20000000_5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_5.png; sourceTree = "<group>"; };
  441. CD469FF42A0CE2DE009E4C87 /* sticker_20000000_16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_16.png; sourceTree = "<group>"; };
  442. CD469FF52A0CE2DE009E4C87 /* sticker_10000000_11.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_11.png; sourceTree = "<group>"; };
  443. CD469FF62A0CE2DE009E4C87 /* sticker_20000000_14.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_14.png; sourceTree = "<group>"; };
  444. CD469FF72A0CE2DE009E4C87 /* sticker_20000000_7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_7.png; sourceTree = "<group>"; };
  445. CD469FF82A0CE2DE009E4C87 /* sticker_30000000_32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_32.png; sourceTree = "<group>"; };
  446. CD469FF92A0CE2DE009E4C87 /* sticker_30000000_26.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_26.png; sourceTree = "<group>"; };
  447. CD469FFA2A0CE2DE009E4C87 /* sticker_30000000_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_0.png; sourceTree = "<group>"; };
  448. CD469FFB2A0CE2DE009E4C87 /* sticker_30000000_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_1.png; sourceTree = "<group>"; };
  449. CD469FFC2A0CE2DE009E4C87 /* sticker_30000000_27.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_27.png; sourceTree = "<group>"; };
  450. CD469FFD2A0CE2DE009E4C87 /* sticker_30000000_33.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_33.png; sourceTree = "<group>"; };
  451. CD469FFE2A0CE2DE009E4C87 /* sticker_20000000_6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_6.png; sourceTree = "<group>"; };
  452. CD469FFF2A0CE2DE009E4C87 /* sticker_20000000_15.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_15.png; sourceTree = "<group>"; };
  453. CD46A0002A0CE2DE009E4C87 /* sticker_10000000_10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_10.png; sourceTree = "<group>"; };
  454. CD46A0012A0CE2DE009E4C87 /* sticker_20000000_2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_2.png; sourceTree = "<group>"; };
  455. CD46A0022A0CE2DE009E4C87 /* sticker_20000000_11.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_11.png; sourceTree = "<group>"; };
  456. CD46A0032A0CE2DE009E4C87 /* sticker_30000000_37.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_37.png; sourceTree = "<group>"; };
  457. CD46A0042A0CE2DE009E4C87 /* sticker_30000000_23.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_23.png; sourceTree = "<group>"; };
  458. CD46A0052A0CE2DE009E4C87 /* sticker_30000000_5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_5.png; sourceTree = "<group>"; };
  459. CD46A0062A0CE2DE009E4C87 /* sticker_30000000_4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_4.png; sourceTree = "<group>"; };
  460. CD46A0072A0CE2DE009E4C87 /* sticker_30000000_22.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_22.png; sourceTree = "<group>"; };
  461. CD46A0082A0CE2DE009E4C87 /* sticker_30000000_36.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_36.png; sourceTree = "<group>"; };
  462. CD46A0092A0CE2DE009E4C87 /* sticker_20000000_10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_10.png; sourceTree = "<group>"; };
  463. CD46A00A2A0CE2DE009E4C87 /* sticker_20000000_3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_3.png; sourceTree = "<group>"; };
  464. CD46A00B2A0CE2DE009E4C87 /* sticker_10000000_9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_9.png; sourceTree = "<group>"; };
  465. CD46A00C2A0CE2DE009E4C87 /* sticker_20000000_1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_1.png; sourceTree = "<group>"; };
  466. CD46A00D2A0CE2DE009E4C87 /* sticker_20000000_12.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_12.png; sourceTree = "<group>"; };
  467. CD46A00E2A0CE2DE009E4C87 /* sticker_30000000_20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_20.png; sourceTree = "<group>"; };
  468. CD46A00F2A0CE2DE009E4C87 /* sticker_30000000_34.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_34.png; sourceTree = "<group>"; };
  469. CD46A0102A0CE2DE009E4C87 /* sticker_30000000_6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_6.png; sourceTree = "<group>"; };
  470. CD46A0112A0CE2DE009E4C87 /* sticker_30000000_7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_7.png; sourceTree = "<group>"; };
  471. CD46A0122A0CE2DE009E4C87 /* sticker_30000000_35.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_35.png; sourceTree = "<group>"; };
  472. CD46A0132A0CE2DE009E4C87 /* sticker_30000000_21.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_30000000_21.png; sourceTree = "<group>"; };
  473. CD46A0142A0CE2DE009E4C87 /* sticker_20000000_13.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_13.png; sourceTree = "<group>"; };
  474. CD46A0152A0CE2DE009E4C87 /* sticker_20000000_0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_20000000_0.png; sourceTree = "<group>"; };
  475. CD46A0162A0CE2DE009E4C87 /* sticker_10000000_8.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sticker_10000000_8.png; sourceTree = "<group>"; };
  476. CD46A0172A0CE2DE009E4C87 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  477. CD46A0182A0CE2DE009E4C87 /* PreviewAttachmentImageVideo.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PreviewAttachmentImageVideo.xib; sourceTree = "<group>"; };
  478. CD46A0192A0CE2DE009E4C87 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = "<group>"; };
  479. CD46A01A2A0CE2DE009E4C87 /* Palio.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Palio.storyboard; sourceTree = "<group>"; };
  480. CD46A0BE2A0CE4FD009E4C87 /* NexilisLite.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; path = NexilisLite.podspec; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  481. CD46A0C42A0D0D5D009E4C87 /* MyArchive.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MyArchive.swift; sourceTree = "<group>"; };
  482. CD5A73AC2A77642D000541A5 /* MessageInfo.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MessageInfo.swift; sourceTree = "<group>"; };
  483. CD5A73AD2A77642D000541A5 /* ListGroupImages.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ListGroupImages.swift; sourceTree = "<group>"; };
  484. CD7054E92AD39DE2003741BF /* ChatGPTBotView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ChatGPTBotView.swift; sourceTree = "<group>"; };
  485. CD9551332A664BD400AF6476 /* Poppins-SemiBoldItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-SemiBoldItalic.otf"; sourceTree = "<group>"; };
  486. CD9551342A664BD400AF6476 /* Poppins-ExtraBoldItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ExtraBoldItalic.otf"; sourceTree = "<group>"; };
  487. CD9551352A664BD400AF6476 /* SIL Open Font License.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "SIL Open Font License.txt"; sourceTree = "<group>"; };
  488. CD9551362A664BD400AF6476 /* Poppins-ExtraLight.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ExtraLight.otf"; sourceTree = "<group>"; };
  489. CD9551372A664BD400AF6476 /* Poppins-ThinItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ThinItalic.otf"; sourceTree = "<group>"; };
  490. CD9551382A664BD400AF6476 /* Poppins-ExtraLightItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ExtraLightItalic.otf"; sourceTree = "<group>"; };
  491. CD9551392A664BD400AF6476 /* Poppins-Light.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Light.otf"; sourceTree = "<group>"; };
  492. CD95513A2A664BD400AF6476 /* Poppins-BoldItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-BoldItalic.otf"; sourceTree = "<group>"; };
  493. CD95513B2A664BD400AF6476 /* Poppins-Medium.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Medium.otf"; sourceTree = "<group>"; };
  494. CD95513C2A664BD400AF6476 /* Poppins-SemiBold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-SemiBold.otf"; sourceTree = "<group>"; };
  495. CD95513D2A664BD400AF6476 /* Poppins-Italic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Italic.otf"; sourceTree = "<group>"; };
  496. CD95513E2A664BD400AF6476 /* Poppins-Thin.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Thin.otf"; sourceTree = "<group>"; };
  497. CD95513F2A664BD400AF6476 /* Poppins-MediumItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-MediumItalic.otf"; sourceTree = "<group>"; };
  498. CD9551402A664BD400AF6476 /* Poppins-LightItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-LightItalic.otf"; sourceTree = "<group>"; };
  499. CD9551412A664BD400AF6476 /* Poppins-Bold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Bold.otf"; sourceTree = "<group>"; };
  500. CD9551422A664BD400AF6476 /* Poppins-Black.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Black.otf"; sourceTree = "<group>"; };
  501. CD9551432A664BD400AF6476 /* Poppins-BlackItalic.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-BlackItalic.otf"; sourceTree = "<group>"; };
  502. CD9551442A664BD400AF6476 /* Poppins-Regular.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-Regular.otf"; sourceTree = "<group>"; };
  503. CD9551452A664BD400AF6476 /* Poppins-ExtraBold.otf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "Poppins-ExtraBold.otf"; sourceTree = "<group>"; };
  504. CD9829B62A3C07CB009F6743 /* SeminarListViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SeminarListViewController.swift; sourceTree = "<group>"; };
  505. CDA461212AB99E09001CD010 /* ConfigureFloatingButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ConfigureFloatingButton.swift; sourceTree = "<group>"; };
  506. CDB21B2B2BA9998400EC5280 /* pb_def_icon_mode2.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = pb_def_icon_mode2.gif; sourceTree = "<group>"; };
  507. CDB21B2C2BA9998400EC5280 /* pb_def_icon_mode4.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = pb_def_icon_mode4.gif; sourceTree = "<group>"; };
  508. CDDF46732A2DD81300049A19 /* CreateSeminarViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CreateSeminarViewController.swift; sourceTree = "<group>"; };
  509. CDDF46742A2DD81300049A19 /* SeminarViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SeminarViewController.swift; sourceTree = "<group>"; };
  510. CDDF46792A2EF0A700049A19 /* ScreenSharingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScreenSharingViewController.swift; sourceTree = "<group>"; };
  511. CDE3BED62C86E3A000B0BF36 /* pb_call_in.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = pb_call_in.mp3; sourceTree = "<group>"; };
  512. CDE3BED72C86E3A000B0BF36 /* pb_call_out.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = pb_call_out.mp3; sourceTree = "<group>"; };
  513. CDE50D8E2D630C720094C30D /* pb_typing_chat.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = pb_typing_chat.gif; sourceTree = "<group>"; };
  514. E274748B31FAA28D0788408F /* Pods-NexilisLite.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NexilisLite.debug.xcconfig"; path = "Target Support Files/Pods-NexilisLite/Pods-NexilisLite.debug.xcconfig"; sourceTree = "<group>"; };
  515. EAF4D32ECF6B438514088086 /* Pods-NexilisLite.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-NexilisLite.release.xcconfig"; path = "Target Support Files/Pods-NexilisLite/Pods-NexilisLite.release.xcconfig"; sourceTree = "<group>"; };
  516. /* End PBXFileReference section */
  517. /* Begin PBXFrameworksBuildPhase section */
  518. CD1E6E652A0B7C3600BF871F /* Frameworks */ = {
  519. isa = PBXFrameworksBuildPhase;
  520. buildActionMask = 2147483647;
  521. files = (
  522. B71100C03F3EE76CC1FFC618 /* Pods_NexilisLite.framework in Frameworks */,
  523. );
  524. runOnlyForDeploymentPostprocessing = 0;
  525. };
  526. CD1E6E6F2A0B7C3600BF871F /* Frameworks */ = {
  527. isa = PBXFrameworksBuildPhase;
  528. buildActionMask = 2147483647;
  529. files = (
  530. CD1E6E732A0B7C3600BF871F /* NexilisLite.framework in Frameworks */,
  531. 0B4630FFBC4EE87A6634E056 /* Pods_NexilisLite_NexilisLiteTests.framework in Frameworks */,
  532. );
  533. runOnlyForDeploymentPostprocessing = 0;
  534. };
  535. CD469F4D2A0CC862009E4C87 /* Frameworks */ = {
  536. isa = PBXFrameworksBuildPhase;
  537. buildActionMask = 2147483647;
  538. files = (
  539. );
  540. runOnlyForDeploymentPostprocessing = 0;
  541. };
  542. /* End PBXFrameworksBuildPhase section */
  543. /* Begin PBXGroup section */
  544. 5213F364DDF7BFF3DF845EA0 /* Frameworks */ = {
  545. isa = PBXGroup;
  546. children = (
  547. CD1E790E2A0CA43600BF871F /* Alamofire.framework */,
  548. CD1E790F2A0CA43600BF871F /* FMDB.framework */,
  549. CD1E79102A0CA43600BF871F /* MarqueeLabel.framework */,
  550. CD1E79112A0CA43600BF871F /* NotificationBannerSwift.framework */,
  551. CD1E79142A0CA43600BF871F /* SDWebImage.framework */,
  552. CD1E79152A0CA43600BF871F /* SnapKit.framework */,
  553. CD1E79162A0CA43600BF871F /* Toast_Swift.framework */,
  554. 56F0A46991FE6BE0FDE74132 /* Pods_NexilisLite.framework */,
  555. 10B08C755C0859F1ECA5CEBC /* Pods_NexilisLite_NexilisLiteTests.framework */,
  556. );
  557. name = Frameworks;
  558. sourceTree = "<group>";
  559. };
  560. 859CE12B7A54BE1FA9470B46 /* Pods */ = {
  561. isa = PBXGroup;
  562. children = (
  563. CD46A0BE2A0CE4FD009E4C87 /* NexilisLite.podspec */,
  564. E274748B31FAA28D0788408F /* Pods-NexilisLite.debug.xcconfig */,
  565. EAF4D32ECF6B438514088086 /* Pods-NexilisLite.release.xcconfig */,
  566. 5AFDB202A2CA7FE864B0B1C2 /* Pods-NexilisLite-NexilisLiteTests.debug.xcconfig */,
  567. 894DDD36E2CE62952A3371C1 /* Pods-NexilisLite-NexilisLiteTests.release.xcconfig */,
  568. );
  569. path = Pods;
  570. sourceTree = "<group>";
  571. };
  572. CD1E6E5E2A0B7C3600BF871F = {
  573. isa = PBXGroup;
  574. children = (
  575. CD1E6E6A2A0B7C3600BF871F /* NexilisLite */,
  576. CD1E6E762A0B7C3600BF871F /* NexilisLiteTests */,
  577. CD1E6E692A0B7C3600BF871F /* Products */,
  578. 859CE12B7A54BE1FA9470B46 /* Pods */,
  579. 5213F364DDF7BFF3DF845EA0 /* Frameworks */,
  580. );
  581. sourceTree = "<group>";
  582. };
  583. CD1E6E692A0B7C3600BF871F /* Products */ = {
  584. isa = PBXGroup;
  585. children = (
  586. CD1E6E682A0B7C3600BF871F /* NexilisLite.framework */,
  587. CD1E6E722A0B7C3600BF871F /* NexilisLiteTests.xctest */,
  588. CD469F502A0CC862009E4C87 /* NexilisLiteResources.bundle */,
  589. );
  590. name = Products;
  591. sourceTree = "<group>";
  592. };
  593. CD1E6E6A2A0B7C3600BF871F /* NexilisLite */ = {
  594. isa = PBXGroup;
  595. children = (
  596. CD469FC72A0CE2DE009E4C87 /* Resource */,
  597. CD1E714E2A0BA86100BF871F /* Source */,
  598. CD1E70CC2A0B815400BF871F /* Info.plist */,
  599. CD1E6E6B2A0B7C3600BF871F /* NexilisLite.h */,
  600. CD1E6E6C2A0B7C3600BF871F /* NexilisLite.docc */,
  601. );
  602. path = NexilisLite;
  603. sourceTree = "<group>";
  604. };
  605. CD1E6E762A0B7C3600BF871F /* NexilisLiteTests */ = {
  606. isa = PBXGroup;
  607. children = (
  608. CD1E6E772A0B7C3600BF871F /* NexilisLiteTests.swift */,
  609. );
  610. path = NexilisLiteTests;
  611. sourceTree = "<group>";
  612. };
  613. CD1E714E2A0BA86100BF871F /* Source */ = {
  614. isa = PBXGroup;
  615. children = (
  616. 1241AEBA2D017E8C0088175A /* FileEncryption.swift */,
  617. 1241AEBB2D017E8C0088175A /* MasterKeyUtil.swift */,
  618. CD1E71532A0BA86100BF871F /* APIS.swift */,
  619. CD1E71B22A0BA86100BF871F /* Callback.swift */,
  620. CD1E71B12A0BA86100BF871F /* CoreMessage_TMessageBank.swift */,
  621. CD1E71B32A0BA86100BF871F /* CoreMessage_TMessageCode.swift */,
  622. CD1E715C2A0BA86100BF871F /* CoreMessage_TMessageKey.swift */,
  623. CD1E71B52A0BA86100BF871F /* CoreMessage_TMessageUtil.swift */,
  624. CD1E715D2A0BA86100BF871F /* Database.swift */,
  625. CD1E71592A0BA86100BF871F /* Download.swift */,
  626. CD1E715A2A0BA86100BF871F /* Extension.swift */,
  627. CD1E71542A0BA86100BF871F /* FloatingButton */,
  628. CD1E71B42A0BA86100BF871F /* IncomingThread.swift */,
  629. CD1E71572A0BA86100BF871F /* InquiryThread.swift */,
  630. CD1E715E2A0BA86100BF871F /* Model */,
  631. CD46A0C42A0D0D5D009E4C87 /* MyArchive.swift */,
  632. CD1E71582A0BA86100BF871F /* Network.swift */,
  633. CD1E71662A0BA86100BF871F /* Nexilis.swift */,
  634. CD1E714F2A0BA86100BF871F /* OutgoingThread.swift */,
  635. CD1E71B02A0BA86100BF871F /* TMessage.swift */,
  636. CD1E71512A0BA86100BF871F /* Units.swift */,
  637. CD1E71AE2A0BA86100BF871F /* Utils.swift */,
  638. CD1E71672A0BA86100BF871F /* View */,
  639. CD1E71562A0BA86100BF871F /* Whiteboard.swift */,
  640. CD1E71502A0BA86100BF871F /* WhiteboardCanvas.swift */,
  641. CD1E71AF2A0BA86100BF871F /* WhiteboardDelegate.swift */,
  642. CD1E715B2A0BA86100BF871F /* WhiteboardReceiver.swift */,
  643. );
  644. path = Source;
  645. sourceTree = "<group>";
  646. };
  647. CD1E71542A0BA86100BF871F /* FloatingButton */ = {
  648. isa = PBXGroup;
  649. children = (
  650. CD1E71552A0BA86100BF871F /* FloatingButton.swift */,
  651. );
  652. path = FloatingButton;
  653. sourceTree = "<group>";
  654. };
  655. CD1E715E2A0BA86100BF871F /* Model */ = {
  656. isa = PBXGroup;
  657. children = (
  658. CD1E715F2A0BA86100BF871F /* Model.swift */,
  659. CD1E71602A0BA86100BF871F /* Chat.swift */,
  660. CD1E71612A0BA86100BF871F /* User.swift */,
  661. CD1E71622A0BA86100BF871F /* CategoryCC.swift */,
  662. CD1E71632A0BA86100BF871F /* WorkingArea.swift */,
  663. CD1E71642A0BA86100BF871F /* Group.swift */,
  664. CD1E71652A0BA86100BF871F /* NotifSound.swift */,
  665. );
  666. path = Model;
  667. sourceTree = "<group>";
  668. };
  669. CD1E71672A0BA86100BF871F /* View */ = {
  670. isa = PBXGroup;
  671. children = (
  672. CD1E71682A0BA86100BF871F /* Contact */,
  673. CD1E716A2A0BA86100BF871F /* BNIView */,
  674. CD1E716D2A0BA86100BF871F /* Chat */,
  675. CD1E71752A0BA86100BF871F /* Streaming */,
  676. CD1E717C2A0BA86100BF871F /* Call */,
  677. CD1E71892A0BA86100BF871F /* Control */,
  678. );
  679. path = View;
  680. sourceTree = "<group>";
  681. };
  682. CD1E71682A0BA86100BF871F /* Contact */ = {
  683. isa = PBXGroup;
  684. children = (
  685. CD1E71692A0BA86100BF871F /* ContactCallViewController.swift */,
  686. );
  687. path = Contact;
  688. sourceTree = "<group>";
  689. };
  690. CD1E716A2A0BA86100BF871F /* BNIView */ = {
  691. isa = PBXGroup;
  692. children = (
  693. CD1E716B2A0BA86100BF871F /* WorkingAreaPicker.swift */,
  694. CD1E716C2A0BA86100BF871F /* BNIBookingWebView.swift */,
  695. );
  696. path = BNIView;
  697. sourceTree = "<group>";
  698. };
  699. CD1E716D2A0BA86100BF871F /* Chat */ = {
  700. isa = PBXGroup;
  701. children = (
  702. 12C36CEA2D02995F0095BEC1 /* SecureFolderView.swift */,
  703. CD7054E92AD39DE2003741BF /* ChatGPTBotView.swift */,
  704. CD1E71742A0BA86100BF871F /* CustomTextView.swift */,
  705. CD1E71722A0BA86100BF871F /* EditorGroup.swift */,
  706. CD1E71702A0BA86100BF871F /* EditorPersonal.swift */,
  707. CD1E716E2A0BA86100BF871F /* EditorStarMessages.swift */,
  708. CD1E71712A0BA86100BF871F /* FormEditor.swift */,
  709. CD5A73AD2A77642D000541A5 /* ListGroupImages.swift */,
  710. CD5A73AC2A77642D000541A5 /* MessageInfo.swift */,
  711. CD1E71732A0BA86100BF871F /* PreviewAttachmentImageVideo.swift */,
  712. CD1E716F2A0BA86100BF871F /* PreviewAttachmentImageVideo.xib */,
  713. );
  714. path = Chat;
  715. sourceTree = "<group>";
  716. };
  717. CD1E71752A0BA86100BF871F /* Streaming */ = {
  718. isa = PBXGroup;
  719. children = (
  720. CD9829B62A3C07CB009F6743 /* SeminarListViewController.swift */,
  721. CDDF46732A2DD81300049A19 /* CreateSeminarViewController.swift */,
  722. CDDF46742A2DD81300049A19 /* SeminarViewController.swift */,
  723. CD1E71762A0BA86100BF871F /* QmeraGroupChooserViewController.swift */,
  724. CD1E71772A0BA86100BF871F /* QmeraStreamingViewController.swift */,
  725. CD1E71782A0BA86100BF871F /* CreateViewController.swift */,
  726. CD1E71792A0BA86100BF871F /* QmeraUserChooserViewController.swift */,
  727. CD1E717A2A0BA86100BF871F /* StreamingViewController.swift */,
  728. CD1E717B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift */,
  729. );
  730. path = Streaming;
  731. sourceTree = "<group>";
  732. };
  733. CD1E717C2A0BA86100BF871F /* Call */ = {
  734. isa = PBXGroup;
  735. children = (
  736. CD1E717F2A0BA86100BF871F /* AudioViewController.swift */,
  737. CD1E71872A0BA86100BF871F /* Call.swift */,
  738. CD1E717D2A0BA86100BF871F /* CallManager.swift */,
  739. CD1E71812A0BA86100BF871F /* CallProviderDelegate.swift */,
  740. CD1E71882A0BA86100BF871F /* GroupView.swift */,
  741. CD1E71802A0BA86100BF871F /* ProfileView.swift */,
  742. CD1E717E2A0BA86100BF871F /* QmeraAudioConference.swift */,
  743. CD1E71822A0BA86100BF871F /* QmeraAudioViewController.swift */,
  744. CD1E71832A0BA86100BF871F /* QmeraCallContactViewController.swift */,
  745. CD1E71852A0BA86100BF871F /* QmeraVideoViewController.swift */,
  746. CDDF46792A2EF0A700049A19 /* ScreenSharingViewController.swift */,
  747. CD1E71862A0BA86100BF871F /* VideoViewController.swift */,
  748. CD1E71842A0BA86100BF871F /* WhiteboardViewController.swift */,
  749. );
  750. path = Call;
  751. sourceTree = "<group>";
  752. };
  753. CD1E71892A0BA86100BF871F /* Control */ = {
  754. isa = PBXGroup;
  755. children = (
  756. CD1E71AB2A0BA86100BF871F /* AddFriendTableViewController.swift */,
  757. CD1E71AD2A0BA86100BF871F /* AudienceViewController.swift */,
  758. CD1E719B2A0BA86100BF871F /* BackupRestoreOption.swift */,
  759. CD1E71A52A0BA86100BF871F /* BackupRestoreView.swift */,
  760. CD1E718B2A0BA86100BF871F /* BroadcastMembersTableViewCell.swift */,
  761. CD1E71A72A0BA86100BF871F /* BroadcastMembersTableViewController.swift */,
  762. CD1E719A2A0BA86100BF871F /* BroadcastModeViewController.swift */,
  763. CD1E71A22A0BA86100BF871F /* BroadcastVariantViewController.swift */,
  764. CD1E71A82A0BA86100BF871F /* BroadcastViewController.swift */,
  765. CD1E71942A0BA86100BF871F /* ChangeDeviceViewController.swift */,
  766. CD1E71922A0BA86100BF871F /* ChangeNamePassswordViewController.swift */,
  767. CD1E719D2A0BA86100BF871F /* ChangeNameTableViewController.swift */,
  768. CD1E71962A0BA86100BF871F /* ChangePasswordViewController.swift */,
  769. CD1E718F2A0BA86100BF871F /* CheckConnection.swift */,
  770. CDA461212AB99E09001CD010 /* ConfigureFloatingButton.swift */,
  771. CD1E71932A0BA86100BF871F /* ContactChatViewController.swift */,
  772. CD1E71952A0BA86100BF871F /* DocumentPicker.swift */,
  773. CD1E718A2A0BA86100BF871F /* GroupCreateViewController.swift */,
  774. CD1E718D2A0BA86100BF871F /* GroupDescViewController.swift */,
  775. CD1E71912A0BA86100BF871F /* GroupDetailViewController.swift */,
  776. CD1E71A92A0BA86100BF871F /* GroupMemberViewController.swift */,
  777. CD1E71972A0BA86100BF871F /* GroupNameViewController.swift */,
  778. CD1E71982A0BA86100BF871F /* GroupTopicViewController.swift */,
  779. CD1E718E2A0BA86100BF871F /* HistoryBroadcastViewController.swift */,
  780. CD1E719C2A0BA86100BF871F /* HistoryCCViewController.swift */,
  781. CD1E71A42A0BA86100BF871F /* ImageVideoPicker.swift */,
  782. CD1E719E2A0BA86100BF871F /* NotificationSound.swift */,
  783. CD1E71A62A0BA86100BF871F /* ProfileViewController.swift */,
  784. CD2B01222D43961E00C11B20 /* QRProfileController.swift */,
  785. CD2B01232D43961E00C11B20 /* QRScannerController.swift */,
  786. CD1E718C2A0BA86100BF871F /* QRScannerView.swift */,
  787. CD1E71AC2A0BA86100BF871F /* ScannerViewController.swift */,
  788. CD1E71A12A0BA86100BF871F /* SetInternalCSAccount.swift */,
  789. CD1E71AA2A0BA86100BF871F /* SetOfficerBNI.swift */,
  790. CD1E71992A0BA86100BF871F /* SettingTableViewController.swift */,
  791. CD1E71902A0BA86100BF871F /* SignUpSignIn.swift */,
  792. CD1E719F2A0BA86100BF871F /* TypeViewController.swift */,
  793. CD1E71A02A0BA86100BF871F /* VerifyEmail.swift */,
  794. );
  795. path = Control;
  796. sourceTree = "<group>";
  797. };
  798. CD469FC72A0CE2DE009E4C87 /* Resource */ = {
  799. isa = PBXGroup;
  800. children = (
  801. CD46A0172A0CE2DE009E4C87 /* Assets.xcassets */,
  802. CD9551322A664BD400AF6476 /* fonts */,
  803. CDB21B2D2BA9998400EC5280 /* Gifs */,
  804. CD469FC82A0CE2DE009E4C87 /* Localizable.strings */,
  805. CD46A01A2A0CE2DE009E4C87 /* Palio.storyboard */,
  806. CD46A0182A0CE2DE009E4C87 /* PreviewAttachmentImageVideo.xib */,
  807. CDE3BED82C86E3A000B0BF36 /* Sound */,
  808. CD469FCA2A0CE2DE009E4C87 /* Stickers */,
  809. );
  810. path = Resource;
  811. sourceTree = "<group>";
  812. };
  813. CD469FCA2A0CE2DE009E4C87 /* Stickers */ = {
  814. isa = PBXGroup;
  815. children = (
  816. CD469FCB2A0CE2DE009E4C87 /* sticker_10000000_5.png */,
  817. CD469FCC2A0CE2DE009E4C87 /* sticker_20000000_22.png */,
  818. CD469FCD2A0CE2DE009E4C87 /* sticker_30000000_38.png */,
  819. CD469FCE2A0CE2DE009E4C87 /* sticker_30000000_10.png */,
  820. CD469FCF2A0CE2DE009E4C87 /* sticker_30000000_11.png */,
  821. CD469FD02A0CE2DE009E4C87 /* sticker_30000000_39.png */,
  822. CD469FD12A0CE2DE009E4C87 /* sticker_20000000_23.png */,
  823. CD469FD22A0CE2DE009E4C87 /* sticker_10000000_4.png */,
  824. CD469FD32A0CE2DE009E4C87 /* sticker_10000000_6.png */,
  825. CD469FD42A0CE2DE009E4C87 /* sticker_20000000_21.png */,
  826. CD469FD52A0CE2DE009E4C87 /* sticker_30000000_13.png */,
  827. CD469FD62A0CE2DE009E4C87 /* sticker_30000000_9.png */,
  828. CD469FD72A0CE2DE009E4C87 /* sticker_30000000_8.png */,
  829. CD469FD82A0CE2DE009E4C87 /* sticker_30000000_12.png */,
  830. CD469FD92A0CE2DE009E4C87 /* sticker_20000000_20.png */,
  831. CD469FDA2A0CE2DE009E4C87 /* sticker_10000000_7.png */,
  832. CD469FDB2A0CE2DE009E4C87 /* sticker_10000000_3.png */,
  833. CD469FDC2A0CE2DE009E4C87 /* sticker_20000000_18.png */,
  834. CD469FDD2A0CE2DE009E4C87 /* sticker_30000000_16.png */,
  835. CD469FDE2A0CE2DE009E4C87 /* sticker_30000000_17.png */,
  836. CD469FDF2A0CE2DE009E4C87 /* sticker_20000000_19.png */,
  837. CD469FE02A0CE2DE009E4C87 /* sticker_10000000_2.png */,
  838. CD469FE12A0CE2DE009E4C87 /* sticker_10000000_0.png */,
  839. CD469FE22A0CE2DE009E4C87 /* sticker_20000000_8.png */,
  840. CD469FE32A0CE2DE009E4C87 /* sticker_30000000_15.png */,
  841. CD469FE42A0CE2DE009E4C87 /* sticker_30000000_29.png */,
  842. CD469FE52A0CE2DE009E4C87 /* sticker_30000000_28.png */,
  843. CD469FE62A0CE2DE009E4C87 /* sticker_30000000_14.png */,
  844. CD469FE72A0CE2DE009E4C87 /* sticker_20000000_9.png */,
  845. CD469FE82A0CE2DE009E4C87 /* sticker_10000000_1.png */,
  846. CD469FE92A0CE2DE009E4C87 /* sticker_20000000_17.png */,
  847. CD469FEA2A0CE2DE009E4C87 /* sticker_20000000_4.png */,
  848. CD469FEB2A0CE2DE009E4C87 /* sticker_30000000_19.png */,
  849. CD469FEC2A0CE2DE009E4C87 /* sticker_30000000_25.png */,
  850. CD469FED2A0CE2DE009E4C87 /* sticker_30000000_31.png */,
  851. CD469FEE2A0CE2DE009E4C87 /* sticker_30000000_3.png */,
  852. CD469FEF2A0CE2DE009E4C87 /* sticker_30000000_2.png */,
  853. CD469FF02A0CE2DE009E4C87 /* sticker_30000000_30.png */,
  854. CD469FF12A0CE2DE009E4C87 /* sticker_30000000_24.png */,
  855. CD469FF22A0CE2DE009E4C87 /* sticker_30000000_18.png */,
  856. CD469FF32A0CE2DE009E4C87 /* sticker_20000000_5.png */,
  857. CD469FF42A0CE2DE009E4C87 /* sticker_20000000_16.png */,
  858. CD469FF52A0CE2DE009E4C87 /* sticker_10000000_11.png */,
  859. CD469FF62A0CE2DE009E4C87 /* sticker_20000000_14.png */,
  860. CD469FF72A0CE2DE009E4C87 /* sticker_20000000_7.png */,
  861. CD469FF82A0CE2DE009E4C87 /* sticker_30000000_32.png */,
  862. CD469FF92A0CE2DE009E4C87 /* sticker_30000000_26.png */,
  863. CD469FFA2A0CE2DE009E4C87 /* sticker_30000000_0.png */,
  864. CD469FFB2A0CE2DE009E4C87 /* sticker_30000000_1.png */,
  865. CD469FFC2A0CE2DE009E4C87 /* sticker_30000000_27.png */,
  866. CD469FFD2A0CE2DE009E4C87 /* sticker_30000000_33.png */,
  867. CD469FFE2A0CE2DE009E4C87 /* sticker_20000000_6.png */,
  868. CD469FFF2A0CE2DE009E4C87 /* sticker_20000000_15.png */,
  869. CD46A0002A0CE2DE009E4C87 /* sticker_10000000_10.png */,
  870. CD46A0012A0CE2DE009E4C87 /* sticker_20000000_2.png */,
  871. CD46A0022A0CE2DE009E4C87 /* sticker_20000000_11.png */,
  872. CD46A0032A0CE2DE009E4C87 /* sticker_30000000_37.png */,
  873. CD46A0042A0CE2DE009E4C87 /* sticker_30000000_23.png */,
  874. CD46A0052A0CE2DE009E4C87 /* sticker_30000000_5.png */,
  875. CD46A0062A0CE2DE009E4C87 /* sticker_30000000_4.png */,
  876. CD46A0072A0CE2DE009E4C87 /* sticker_30000000_22.png */,
  877. CD46A0082A0CE2DE009E4C87 /* sticker_30000000_36.png */,
  878. CD46A0092A0CE2DE009E4C87 /* sticker_20000000_10.png */,
  879. CD46A00A2A0CE2DE009E4C87 /* sticker_20000000_3.png */,
  880. CD46A00B2A0CE2DE009E4C87 /* sticker_10000000_9.png */,
  881. CD46A00C2A0CE2DE009E4C87 /* sticker_20000000_1.png */,
  882. CD46A00D2A0CE2DE009E4C87 /* sticker_20000000_12.png */,
  883. CD46A00E2A0CE2DE009E4C87 /* sticker_30000000_20.png */,
  884. CD46A00F2A0CE2DE009E4C87 /* sticker_30000000_34.png */,
  885. CD46A0102A0CE2DE009E4C87 /* sticker_30000000_6.png */,
  886. CD46A0112A0CE2DE009E4C87 /* sticker_30000000_7.png */,
  887. CD46A0122A0CE2DE009E4C87 /* sticker_30000000_35.png */,
  888. CD46A0132A0CE2DE009E4C87 /* sticker_30000000_21.png */,
  889. CD46A0142A0CE2DE009E4C87 /* sticker_20000000_13.png */,
  890. CD46A0152A0CE2DE009E4C87 /* sticker_20000000_0.png */,
  891. CD46A0162A0CE2DE009E4C87 /* sticker_10000000_8.png */,
  892. );
  893. path = Stickers;
  894. sourceTree = "<group>";
  895. };
  896. CD9551322A664BD400AF6476 /* fonts */ = {
  897. isa = PBXGroup;
  898. children = (
  899. CD9551332A664BD400AF6476 /* Poppins-SemiBoldItalic.otf */,
  900. CD9551342A664BD400AF6476 /* Poppins-ExtraBoldItalic.otf */,
  901. CD9551352A664BD400AF6476 /* SIL Open Font License.txt */,
  902. CD9551362A664BD400AF6476 /* Poppins-ExtraLight.otf */,
  903. CD9551372A664BD400AF6476 /* Poppins-ThinItalic.otf */,
  904. CD9551382A664BD400AF6476 /* Poppins-ExtraLightItalic.otf */,
  905. CD9551392A664BD400AF6476 /* Poppins-Light.otf */,
  906. CD95513A2A664BD400AF6476 /* Poppins-BoldItalic.otf */,
  907. CD95513B2A664BD400AF6476 /* Poppins-Medium.otf */,
  908. CD95513C2A664BD400AF6476 /* Poppins-SemiBold.otf */,
  909. CD95513D2A664BD400AF6476 /* Poppins-Italic.otf */,
  910. CD95513E2A664BD400AF6476 /* Poppins-Thin.otf */,
  911. CD95513F2A664BD400AF6476 /* Poppins-MediumItalic.otf */,
  912. CD9551402A664BD400AF6476 /* Poppins-LightItalic.otf */,
  913. CD9551412A664BD400AF6476 /* Poppins-Bold.otf */,
  914. CD9551422A664BD400AF6476 /* Poppins-Black.otf */,
  915. CD9551432A664BD400AF6476 /* Poppins-BlackItalic.otf */,
  916. CD9551442A664BD400AF6476 /* Poppins-Regular.otf */,
  917. CD9551452A664BD400AF6476 /* Poppins-ExtraBold.otf */,
  918. );
  919. path = fonts;
  920. sourceTree = "<group>";
  921. };
  922. CDB21B2D2BA9998400EC5280 /* Gifs */ = {
  923. isa = PBXGroup;
  924. children = (
  925. CDE50D8E2D630C720094C30D /* pb_typing_chat.gif */,
  926. CD2B01202D43945500C11B20 /* pb_gpt_bot.gif */,
  927. CDB21B2B2BA9998400EC5280 /* pb_def_icon_mode2.gif */,
  928. CDB21B2C2BA9998400EC5280 /* pb_def_icon_mode4.gif */,
  929. );
  930. path = Gifs;
  931. sourceTree = "<group>";
  932. };
  933. CDE3BED82C86E3A000B0BF36 /* Sound */ = {
  934. isa = PBXGroup;
  935. children = (
  936. CD2585B72D59DA60002AB416 /* Dutifully.mp3 */,
  937. CD2585B82D59DA60002AB416 /* Elegant.mp3 */,
  938. CD2585B92D59DA60002AB416 /* Eventually.mp3 */,
  939. CD2585BA2D59DA60002AB416 /* Hangover.mp3 */,
  940. CD2585BB2D59DA60002AB416 /* Juntos.mp3 */,
  941. CD2585BC2D59DA60002AB416 /* Light_Hearted.mp3 */,
  942. CD2585BD2D59DA60002AB416 /* Magic.mp3 */,
  943. CD2585BE2D59DA60002AB416 /* Nexilis_Message.mp3 */,
  944. CD2585BF2D59DA60002AB416 /* Out_of_Nowhere.mp3 */,
  945. CD2585C02D59DA60002AB416 /* Relax.mp3 */,
  946. CD2585C12D59DA60002AB416 /* Strong_Minded.mp3 */,
  947. CD2585C22D59DA60002AB416 /* Swift_gesture.mp3 */,
  948. CD2585C32D59DA60002AB416 /* Upset.mp3 */,
  949. CDE3BED62C86E3A000B0BF36 /* pb_call_in.mp3 */,
  950. CDE3BED72C86E3A000B0BF36 /* pb_call_out.mp3 */,
  951. );
  952. path = Sound;
  953. sourceTree = "<group>";
  954. };
  955. /* End PBXGroup section */
  956. /* Begin PBXHeadersBuildPhase section */
  957. CD1E6E632A0B7C3600BF871F /* Headers */ = {
  958. isa = PBXHeadersBuildPhase;
  959. buildActionMask = 2147483647;
  960. files = (
  961. CD1E6E792A0B7C3600BF871F /* NexilisLite.h in Headers */,
  962. );
  963. runOnlyForDeploymentPostprocessing = 0;
  964. };
  965. /* End PBXHeadersBuildPhase section */
  966. /* Begin PBXNativeTarget section */
  967. CD1E6E672A0B7C3600BF871F /* NexilisLite */ = {
  968. isa = PBXNativeTarget;
  969. buildConfigurationList = CD1E6E7C2A0B7C3600BF871F /* Build configuration list for PBXNativeTarget "NexilisLite" */;
  970. buildPhases = (
  971. D5714B5C7C2188E3F30C8D18 /* [CP] Check Pods Manifest.lock */,
  972. CD1E6E632A0B7C3600BF871F /* Headers */,
  973. CD1E6E642A0B7C3600BF871F /* Sources */,
  974. CD1E6E652A0B7C3600BF871F /* Frameworks */,
  975. CD1E6E662A0B7C3600BF871F /* Resources */,
  976. CD469E162A0CA6C9009E4C87 /* Embed Frameworks */,
  977. 7CCEC75AD028E23FE1A71007 /* [CP] Copy Pods Resources */,
  978. );
  979. buildRules = (
  980. );
  981. dependencies = (
  982. CD469FA52A0CC8D4009E4C87 /* PBXTargetDependency */,
  983. );
  984. name = NexilisLite;
  985. productName = NexilisLite;
  986. productReference = CD1E6E682A0B7C3600BF871F /* NexilisLite.framework */;
  987. productType = "com.apple.product-type.framework";
  988. };
  989. CD1E6E712A0B7C3600BF871F /* NexilisLiteTests */ = {
  990. isa = PBXNativeTarget;
  991. buildConfigurationList = CD1E6E7F2A0B7C3600BF871F /* Build configuration list for PBXNativeTarget "NexilisLiteTests" */;
  992. buildPhases = (
  993. 920648C482C549C5C20E8DA8 /* [CP] Check Pods Manifest.lock */,
  994. CD1E6E6E2A0B7C3600BF871F /* Sources */,
  995. CD1E6E6F2A0B7C3600BF871F /* Frameworks */,
  996. CD1E6E702A0B7C3600BF871F /* Resources */,
  997. 93390A28A1B01BF0BD271BC7 /* [CP] Embed Pods Frameworks */,
  998. 4AAA447F9F52E138B6E6AB65 /* [CP] Copy Pods Resources */,
  999. );
  1000. buildRules = (
  1001. );
  1002. dependencies = (
  1003. CD1E6E752A0B7C3600BF871F /* PBXTargetDependency */,
  1004. );
  1005. name = NexilisLiteTests;
  1006. productName = NexilisLiteTests;
  1007. productReference = CD1E6E722A0B7C3600BF871F /* NexilisLiteTests.xctest */;
  1008. productType = "com.apple.product-type.bundle.unit-test";
  1009. };
  1010. CD469F4F2A0CC862009E4C87 /* NexilisLiteResources */ = {
  1011. isa = PBXNativeTarget;
  1012. buildConfigurationList = CD469F512A0CC862009E4C87 /* Build configuration list for PBXNativeTarget "NexilisLiteResources" */;
  1013. buildPhases = (
  1014. CD469F4C2A0CC862009E4C87 /* Sources */,
  1015. CD469F4D2A0CC862009E4C87 /* Frameworks */,
  1016. CD469F4E2A0CC862009E4C87 /* Resources */,
  1017. );
  1018. buildRules = (
  1019. );
  1020. dependencies = (
  1021. );
  1022. name = NexilisLiteResources;
  1023. productName = NexilisLiteResources;
  1024. productReference = CD469F502A0CC862009E4C87 /* NexilisLiteResources.bundle */;
  1025. productType = "com.apple.product-type.bundle";
  1026. };
  1027. /* End PBXNativeTarget section */
  1028. /* Begin PBXProject section */
  1029. CD1E6E5F2A0B7C3600BF871F /* Project object */ = {
  1030. isa = PBXProject;
  1031. attributes = {
  1032. BuildIndependentTargetsInParallel = 1;
  1033. LastSwiftUpdateCheck = 1430;
  1034. LastUpgradeCheck = 1430;
  1035. TargetAttributes = {
  1036. CD1E6E672A0B7C3600BF871F = {
  1037. CreatedOnToolsVersion = 14.3;
  1038. };
  1039. CD1E6E712A0B7C3600BF871F = {
  1040. CreatedOnToolsVersion = 14.3;
  1041. };
  1042. CD469F4F2A0CC862009E4C87 = {
  1043. CreatedOnToolsVersion = 14.3;
  1044. };
  1045. };
  1046. };
  1047. buildConfigurationList = CD1E6E622A0B7C3600BF871F /* Build configuration list for PBXProject "NexilisLite" */;
  1048. compatibilityVersion = "Xcode 14.0";
  1049. developmentRegion = en;
  1050. hasScannedForEncodings = 0;
  1051. knownRegions = (
  1052. en,
  1053. Base,
  1054. id,
  1055. );
  1056. mainGroup = CD1E6E5E2A0B7C3600BF871F;
  1057. productRefGroup = CD1E6E692A0B7C3600BF871F /* Products */;
  1058. projectDirPath = "";
  1059. projectRoot = "";
  1060. targets = (
  1061. CD1E6E672A0B7C3600BF871F /* NexilisLite */,
  1062. CD1E6E712A0B7C3600BF871F /* NexilisLiteTests */,
  1063. CD469F4F2A0CC862009E4C87 /* NexilisLiteResources */,
  1064. );
  1065. };
  1066. /* End PBXProject section */
  1067. /* Begin PBXResourcesBuildPhase section */
  1068. CD1E6E662A0B7C3600BF871F /* Resources */ = {
  1069. isa = PBXResourcesBuildPhase;
  1070. buildActionMask = 2147483647;
  1071. files = (
  1072. CD46A06F2A0CE310009E4C87 /* NexilisLiteResources.bundle in Resources */,
  1073. CD46A06B2A0CE307009E4C87 /* Localizable.strings in Resources */,
  1074. CD46A06C2A0CE307009E4C87 /* Assets.xcassets in Resources */,
  1075. CD46A06D2A0CE307009E4C87 /* PreviewAttachmentImageVideo.xib in Resources */,
  1076. CD46A06E2A0CE307009E4C87 /* Palio.storyboard in Resources */,
  1077. CD46A0BF2A0CE4FD009E4C87 /* NexilisLite.podspec in Resources */,
  1078. );
  1079. runOnlyForDeploymentPostprocessing = 0;
  1080. };
  1081. CD1E6E702A0B7C3600BF871F /* Resources */ = {
  1082. isa = PBXResourcesBuildPhase;
  1083. buildActionMask = 2147483647;
  1084. files = (
  1085. );
  1086. runOnlyForDeploymentPostprocessing = 0;
  1087. };
  1088. CD469F4E2A0CC862009E4C87 /* Resources */ = {
  1089. isa = PBXResourcesBuildPhase;
  1090. buildActionMask = 2147483647;
  1091. files = (
  1092. CD2585D22D59DA79002AB416 /* pb_call_out.mp3 in Resources */,
  1093. CD46A0702A0CE320009E4C87 /* sticker_10000000_5.png in Resources */,
  1094. CD46A0712A0CE320009E4C87 /* sticker_20000000_22.png in Resources */,
  1095. CD2585C42D59DA60002AB416 /* Dutifully.mp3 in Resources */,
  1096. CD2585C52D59DA60002AB416 /* Juntos.mp3 in Resources */,
  1097. CD2585C62D59DA60002AB416 /* Light_Hearted.mp3 in Resources */,
  1098. CD2585C72D59DA60002AB416 /* Nexilis_Message.mp3 in Resources */,
  1099. CD2585C82D59DA60002AB416 /* Out_of_Nowhere.mp3 in Resources */,
  1100. CD2585C92D59DA60002AB416 /* Swift_gesture.mp3 in Resources */,
  1101. CD2585CA2D59DA60002AB416 /* Relax.mp3 in Resources */,
  1102. CD2585CB2D59DA60002AB416 /* Eventually.mp3 in Resources */,
  1103. CD2585CC2D59DA60002AB416 /* Upset.mp3 in Resources */,
  1104. CD2585CD2D59DA60002AB416 /* Elegant.mp3 in Resources */,
  1105. CD2585CE2D59DA60002AB416 /* Strong_Minded.mp3 in Resources */,
  1106. CD2585CF2D59DA60002AB416 /* Magic.mp3 in Resources */,
  1107. CD2585D02D59DA60002AB416 /* Hangover.mp3 in Resources */,
  1108. CD46A0722A0CE320009E4C87 /* sticker_30000000_38.png in Resources */,
  1109. CD46A0732A0CE320009E4C87 /* sticker_30000000_10.png in Resources */,
  1110. CD46A0742A0CE320009E4C87 /* sticker_30000000_11.png in Resources */,
  1111. CD46A0752A0CE320009E4C87 /* sticker_30000000_39.png in Resources */,
  1112. CD46A0762A0CE320009E4C87 /* sticker_20000000_23.png in Resources */,
  1113. CD95515C2A664BDA00AF6476 /* Poppins-BlackItalic.otf in Resources */,
  1114. CD46A0772A0CE320009E4C87 /* sticker_10000000_4.png in Resources */,
  1115. CD9551612A664BDB00AF6476 /* Poppins-Black.otf in Resources */,
  1116. CD46A0782A0CE320009E4C87 /* sticker_10000000_6.png in Resources */,
  1117. CD46A0792A0CE320009E4C87 /* sticker_20000000_21.png in Resources */,
  1118. CD46A07A2A0CE320009E4C87 /* sticker_30000000_13.png in Resources */,
  1119. CD46A07B2A0CE320009E4C87 /* sticker_30000000_9.png in Resources */,
  1120. CD46A07C2A0CE320009E4C87 /* sticker_30000000_8.png in Resources */,
  1121. CD46A07D2A0CE320009E4C87 /* sticker_30000000_12.png in Resources */,
  1122. CD46A07E2A0CE320009E4C87 /* sticker_20000000_20.png in Resources */,
  1123. CD95515B2A664BDA00AF6476 /* Poppins-Bold.otf in Resources */,
  1124. CD46A07F2A0CE320009E4C87 /* sticker_10000000_7.png in Resources */,
  1125. CD46A0802A0CE320009E4C87 /* sticker_10000000_3.png in Resources */,
  1126. CD95515E2A664BDA00AF6476 /* SIL Open Font License.txt in Resources */,
  1127. CD46A0812A0CE320009E4C87 /* sticker_20000000_18.png in Resources */,
  1128. CD46A0822A0CE320009E4C87 /* sticker_30000000_16.png in Resources */,
  1129. CD46A0832A0CE320009E4C87 /* sticker_30000000_17.png in Resources */,
  1130. CD46A0842A0CE320009E4C87 /* sticker_20000000_19.png in Resources */,
  1131. CD46A0852A0CE320009E4C87 /* sticker_10000000_2.png in Resources */,
  1132. CD46A0862A0CE320009E4C87 /* sticker_10000000_0.png in Resources */,
  1133. CD95516B2A664BDB00AF6476 /* Poppins-ExtraLightItalic.otf in Resources */,
  1134. CD46A0872A0CE320009E4C87 /* sticker_20000000_8.png in Resources */,
  1135. CD46A0882A0CE320009E4C87 /* sticker_30000000_15.png in Resources */,
  1136. CD46A0892A0CE320009E4C87 /* sticker_30000000_29.png in Resources */,
  1137. CD46A08A2A0CE320009E4C87 /* sticker_30000000_28.png in Resources */,
  1138. CD46A08B2A0CE320009E4C87 /* sticker_30000000_14.png in Resources */,
  1139. CD46A08C2A0CE320009E4C87 /* sticker_20000000_9.png in Resources */,
  1140. CD2B01212D43945500C11B20 /* pb_gpt_bot.gif in Resources */,
  1141. CD46A08D2A0CE320009E4C87 /* sticker_10000000_1.png in Resources */,
  1142. CD46A08E2A0CE320009E4C87 /* sticker_20000000_17.png in Resources */,
  1143. CD46A08F2A0CE320009E4C87 /* sticker_20000000_4.png in Resources */,
  1144. CD46A0902A0CE320009E4C87 /* sticker_30000000_19.png in Resources */,
  1145. CD46A0912A0CE320009E4C87 /* sticker_30000000_25.png in Resources */,
  1146. CD46A0922A0CE320009E4C87 /* sticker_30000000_31.png in Resources */,
  1147. CD46A0932A0CE320009E4C87 /* sticker_30000000_3.png in Resources */,
  1148. CD46A0942A0CE320009E4C87 /* sticker_30000000_2.png in Resources */,
  1149. CD9551622A664BDB00AF6476 /* Poppins-ExtraLight.otf in Resources */,
  1150. CD95516A2A664BDB00AF6476 /* Poppins-BoldItalic.otf in Resources */,
  1151. CD95515F2A664BDB00AF6476 /* Poppins-SemiBold.otf in Resources */,
  1152. CD46A0952A0CE320009E4C87 /* sticker_30000000_30.png in Resources */,
  1153. CD9551682A664BDB00AF6476 /* Poppins-ThinItalic.otf in Resources */,
  1154. CD9551662A664BDB00AF6476 /* Poppins-Medium.otf in Resources */,
  1155. CD46A0962A0CE320009E4C87 /* sticker_30000000_24.png in Resources */,
  1156. CD46A0972A0CE320009E4C87 /* sticker_30000000_18.png in Resources */,
  1157. CD46A0982A0CE320009E4C87 /* sticker_20000000_5.png in Resources */,
  1158. CD46A0992A0CE320009E4C87 /* sticker_20000000_16.png in Resources */,
  1159. CDE50D8F2D630C720094C30D /* pb_typing_chat.gif in Resources */,
  1160. CD95515A2A664BDA00AF6476 /* Poppins-MediumItalic.otf in Resources */,
  1161. CD46A09A2A0CE320009E4C87 /* sticker_10000000_11.png in Resources */,
  1162. CD46A09B2A0CE320009E4C87 /* sticker_20000000_14.png in Resources */,
  1163. CD46A09C2A0CE320009E4C87 /* sticker_20000000_7.png in Resources */,
  1164. CD46A09D2A0CE320009E4C87 /* sticker_30000000_32.png in Resources */,
  1165. CD9551672A664BDB00AF6476 /* Poppins-ExtraBold.otf in Resources */,
  1166. CD46A09E2A0CE320009E4C87 /* sticker_30000000_26.png in Resources */,
  1167. CD46A09F2A0CE320009E4C87 /* sticker_30000000_0.png in Resources */,
  1168. CD46A0A02A0CE320009E4C87 /* sticker_30000000_1.png in Resources */,
  1169. CD9551592A664BDA00AF6476 /* Poppins-LightItalic.otf in Resources */,
  1170. CD46A0A12A0CE320009E4C87 /* sticker_30000000_27.png in Resources */,
  1171. CD46A0A22A0CE320009E4C87 /* sticker_30000000_33.png in Resources */,
  1172. CD46A0A32A0CE320009E4C87 /* sticker_20000000_6.png in Resources */,
  1173. CD9551652A664BDB00AF6476 /* Poppins-Thin.otf in Resources */,
  1174. CD46A0A42A0CE320009E4C87 /* sticker_20000000_15.png in Resources */,
  1175. CD9551642A664BDB00AF6476 /* Poppins-Italic.otf in Resources */,
  1176. CD46A0A52A0CE320009E4C87 /* sticker_10000000_10.png in Resources */,
  1177. CD46A0A62A0CE320009E4C87 /* sticker_20000000_2.png in Resources */,
  1178. CD46A0A72A0CE320009E4C87 /* sticker_20000000_11.png in Resources */,
  1179. CD9551632A664BDB00AF6476 /* Poppins-Light.otf in Resources */,
  1180. CD95515D2A664BDA00AF6476 /* Poppins-Regular.otf in Resources */,
  1181. CD46A0A82A0CE320009E4C87 /* sticker_30000000_37.png in Resources */,
  1182. CD46A0A92A0CE320009E4C87 /* sticker_30000000_23.png in Resources */,
  1183. CD46A0AA2A0CE320009E4C87 /* sticker_30000000_5.png in Resources */,
  1184. CD46A0AB2A0CE320009E4C87 /* sticker_30000000_4.png in Resources */,
  1185. CDB21B2F2BA9998400EC5280 /* pb_def_icon_mode4.gif in Resources */,
  1186. CD46A0AC2A0CE320009E4C87 /* sticker_30000000_22.png in Resources */,
  1187. CD46A0AD2A0CE320009E4C87 /* sticker_30000000_36.png in Resources */,
  1188. CD46A0AE2A0CE320009E4C87 /* sticker_20000000_10.png in Resources */,
  1189. CD46A0AF2A0CE320009E4C87 /* sticker_20000000_3.png in Resources */,
  1190. CD46A0B02A0CE320009E4C87 /* sticker_10000000_9.png in Resources */,
  1191. CD46A0B12A0CE320009E4C87 /* sticker_20000000_1.png in Resources */,
  1192. CD46A0B22A0CE320009E4C87 /* sticker_20000000_12.png in Resources */,
  1193. CD46A0B32A0CE320009E4C87 /* sticker_30000000_20.png in Resources */,
  1194. CD9551602A664BDB00AF6476 /* Poppins-ExtraBoldItalic.otf in Resources */,
  1195. CD46A0B42A0CE320009E4C87 /* sticker_30000000_34.png in Resources */,
  1196. CDB21B2E2BA9998400EC5280 /* pb_def_icon_mode2.gif in Resources */,
  1197. CD46A0B52A0CE320009E4C87 /* sticker_30000000_6.png in Resources */,
  1198. CD46A0B62A0CE320009E4C87 /* sticker_30000000_7.png in Resources */,
  1199. CD46A0B72A0CE320009E4C87 /* sticker_30000000_35.png in Resources */,
  1200. CD9551692A664BDB00AF6476 /* Poppins-SemiBoldItalic.otf in Resources */,
  1201. CD46A0B82A0CE320009E4C87 /* sticker_30000000_21.png in Resources */,
  1202. CD46A0B92A0CE320009E4C87 /* sticker_20000000_13.png in Resources */,
  1203. CD46A0BA2A0CE320009E4C87 /* sticker_20000000_0.png in Resources */,
  1204. CD46A0BB2A0CE320009E4C87 /* sticker_10000000_8.png in Resources */,
  1205. CD2585D12D59DA73002AB416 /* pb_call_in.mp3 in Resources */,
  1206. );
  1207. runOnlyForDeploymentPostprocessing = 0;
  1208. };
  1209. /* End PBXResourcesBuildPhase section */
  1210. /* Begin PBXShellScriptBuildPhase section */
  1211. 4AAA447F9F52E138B6E6AB65 /* [CP] Copy Pods Resources */ = {
  1212. isa = PBXShellScriptBuildPhase;
  1213. buildActionMask = 2147483647;
  1214. files = (
  1215. );
  1216. inputFileListPaths = (
  1217. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-resources-${CONFIGURATION}-input-files.xcfilelist",
  1218. );
  1219. name = "[CP] Copy Pods Resources";
  1220. outputFileListPaths = (
  1221. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-resources-${CONFIGURATION}-output-files.xcfilelist",
  1222. );
  1223. runOnlyForDeploymentPostprocessing = 0;
  1224. shellPath = /bin/sh;
  1225. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-resources.sh\"\n";
  1226. showEnvVarsInLog = 0;
  1227. };
  1228. 7CCEC75AD028E23FE1A71007 /* [CP] Copy Pods Resources */ = {
  1229. isa = PBXShellScriptBuildPhase;
  1230. buildActionMask = 2147483647;
  1231. files = (
  1232. );
  1233. inputFileListPaths = (
  1234. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite/Pods-NexilisLite-resources-${CONFIGURATION}-input-files.xcfilelist",
  1235. );
  1236. name = "[CP] Copy Pods Resources";
  1237. outputFileListPaths = (
  1238. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite/Pods-NexilisLite-resources-${CONFIGURATION}-output-files.xcfilelist",
  1239. );
  1240. runOnlyForDeploymentPostprocessing = 0;
  1241. shellPath = /bin/sh;
  1242. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NexilisLite/Pods-NexilisLite-resources.sh\"\n";
  1243. showEnvVarsInLog = 0;
  1244. };
  1245. 920648C482C549C5C20E8DA8 /* [CP] Check Pods Manifest.lock */ = {
  1246. isa = PBXShellScriptBuildPhase;
  1247. buildActionMask = 2147483647;
  1248. files = (
  1249. );
  1250. inputFileListPaths = (
  1251. );
  1252. inputPaths = (
  1253. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1254. "${PODS_ROOT}/Manifest.lock",
  1255. );
  1256. name = "[CP] Check Pods Manifest.lock";
  1257. outputFileListPaths = (
  1258. );
  1259. outputPaths = (
  1260. "$(DERIVED_FILE_DIR)/Pods-NexilisLite-NexilisLiteTests-checkManifestLockResult.txt",
  1261. );
  1262. runOnlyForDeploymentPostprocessing = 0;
  1263. shellPath = /bin/sh;
  1264. 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";
  1265. showEnvVarsInLog = 0;
  1266. };
  1267. 93390A28A1B01BF0BD271BC7 /* [CP] Embed Pods Frameworks */ = {
  1268. isa = PBXShellScriptBuildPhase;
  1269. buildActionMask = 2147483647;
  1270. files = (
  1271. );
  1272. inputFileListPaths = (
  1273. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  1274. );
  1275. name = "[CP] Embed Pods Frameworks";
  1276. outputFileListPaths = (
  1277. "${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  1278. );
  1279. runOnlyForDeploymentPostprocessing = 0;
  1280. shellPath = /bin/sh;
  1281. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-NexilisLite-NexilisLiteTests/Pods-NexilisLite-NexilisLiteTests-frameworks.sh\"\n";
  1282. showEnvVarsInLog = 0;
  1283. };
  1284. D5714B5C7C2188E3F30C8D18 /* [CP] Check Pods Manifest.lock */ = {
  1285. isa = PBXShellScriptBuildPhase;
  1286. buildActionMask = 2147483647;
  1287. files = (
  1288. );
  1289. inputFileListPaths = (
  1290. );
  1291. inputPaths = (
  1292. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1293. "${PODS_ROOT}/Manifest.lock",
  1294. );
  1295. name = "[CP] Check Pods Manifest.lock";
  1296. outputFileListPaths = (
  1297. );
  1298. outputPaths = (
  1299. "$(DERIVED_FILE_DIR)/Pods-NexilisLite-checkManifestLockResult.txt",
  1300. );
  1301. runOnlyForDeploymentPostprocessing = 0;
  1302. shellPath = /bin/sh;
  1303. 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";
  1304. showEnvVarsInLog = 0;
  1305. };
  1306. /* End PBXShellScriptBuildPhase section */
  1307. /* Begin PBXSourcesBuildPhase section */
  1308. CD1E6E642A0B7C3600BF871F /* Sources */ = {
  1309. isa = PBXSourcesBuildPhase;
  1310. buildActionMask = 2147483647;
  1311. files = (
  1312. CD1E72272A0BA86100BF871F /* QmeraStreamingViewController.swift in Sources */,
  1313. CD1E72522A0BA86100BF871F /* ImageVideoPicker.swift in Sources */,
  1314. CD1E724E2A0BA86100BF871F /* VerifyEmail.swift in Sources */,
  1315. CDDF46762A2DD81300049A19 /* SeminarViewController.swift in Sources */,
  1316. CD1E721A2A0BA86100BF871F /* NotifSound.swift in Sources */,
  1317. CD1E724F2A0BA86100BF871F /* SetInternalCSAccount.swift in Sources */,
  1318. CDA461222AB99E09001CD010 /* ConfigureFloatingButton.swift in Sources */,
  1319. 12C36CEB2D0299630095BEC1 /* SecureFolderView.swift in Sources */,
  1320. CD1E721C2A0BA86100BF871F /* ContactCallViewController.swift in Sources */,
  1321. CD5A73AE2A77642D000541A5 /* MessageInfo.swift in Sources */,
  1322. CD1E723B2A0BA86100BF871F /* GroupDescViewController.swift in Sources */,
  1323. CD1E725C2A0BA86100BF871F /* Utils.swift in Sources */,
  1324. CD1E72232A0BA86100BF871F /* EditorGroup.swift in Sources */,
  1325. CD1E72452A0BA86100BF871F /* GroupNameViewController.swift in Sources */,
  1326. CD9829B72A3C07CB009F6743 /* SeminarListViewController.swift in Sources */,
  1327. CD1E72572A0BA86100BF871F /* GroupMemberViewController.swift in Sources */,
  1328. CD1E72582A0BA86100BF871F /* SetOfficerBNI.swift in Sources */,
  1329. CD1E72212A0BA86100BF871F /* EditorPersonal.swift in Sources */,
  1330. CD46A0C52A0D0D5D009E4C87 /* MyArchive.swift in Sources */,
  1331. CD1E72192A0BA86100BF871F /* Group.swift in Sources */,
  1332. CD1E722C2A0BA86100BF871F /* CallManager.swift in Sources */,
  1333. CD1E72322A0BA86100BF871F /* QmeraCallContactViewController.swift in Sources */,
  1334. CD1E72382A0BA86100BF871F /* GroupCreateViewController.swift in Sources */,
  1335. CD1E723E2A0BA86100BF871F /* SignUpSignIn.swift in Sources */,
  1336. CD1E724D2A0BA86100BF871F /* TypeViewController.swift in Sources */,
  1337. CD1E720E2A0BA86100BF871F /* Network.swift in Sources */,
  1338. CD1E723C2A0BA86100BF871F /* HistoryBroadcastViewController.swift in Sources */,
  1339. CD1E72112A0BA86100BF871F /* WhiteboardReceiver.swift in Sources */,
  1340. CD1E725F2A0BA86100BF871F /* CoreMessage_TMessageBank.swift in Sources */,
  1341. CD1E72222A0BA86100BF871F /* FormEditor.swift in Sources */,
  1342. 1241AEBC2D017E8C0088175A /* MasterKeyUtil.swift in Sources */,
  1343. 1241AEBD2D017E8C0088175A /* FileEncryption.swift in Sources */,
  1344. CD1E725A2A0BA86100BF871F /* ScannerViewController.swift in Sources */,
  1345. CD1E72462A0BA86100BF871F /* GroupTopicViewController.swift in Sources */,
  1346. CD1E72302A0BA86100BF871F /* CallProviderDelegate.swift in Sources */,
  1347. CD1E72472A0BA86100BF871F /* SettingTableViewController.swift in Sources */,
  1348. CD1E72172A0BA86100BF871F /* CategoryCC.swift in Sources */,
  1349. CD1E72552A0BA86100BF871F /* BroadcastMembersTableViewController.swift in Sources */,
  1350. CD1E72152A0BA86100BF871F /* Chat.swift in Sources */,
  1351. CD1E72502A0BA86100BF871F /* BroadcastVariantViewController.swift in Sources */,
  1352. CD1E72562A0BA86100BF871F /* BroadcastViewController.swift in Sources */,
  1353. CD2B01242D43961E00C11B20 /* QRProfileController.swift in Sources */,
  1354. CD2B01252D43961E00C11B20 /* QRScannerController.swift in Sources */,
  1355. CD1E72252A0BA86100BF871F /* CustomTextView.swift in Sources */,
  1356. CD1E72602A0BA86100BF871F /* Callback.swift in Sources */,
  1357. CD1E724A2A0BA86100BF871F /* HistoryCCViewController.swift in Sources */,
  1358. CD1E722A2A0BA86100BF871F /* StreamingViewController.swift in Sources */,
  1359. CD1E72132A0BA86100BF871F /* Database.swift in Sources */,
  1360. CD5A73AF2A77642D000541A5 /* ListGroupImages.swift in Sources */,
  1361. CD1E720F2A0BA86100BF871F /* Download.swift in Sources */,
  1362. CD1E725D2A0BA86100BF871F /* WhiteboardDelegate.swift in Sources */,
  1363. CD1E721B2A0BA86100BF871F /* Nexilis.swift in Sources */,
  1364. CD1E72102A0BA86100BF871F /* Extension.swift in Sources */,
  1365. CD1E724C2A0BA86100BF871F /* NotificationSound.swift in Sources */,
  1366. CDDF467A2A2EF0A700049A19 /* ScreenSharingViewController.swift in Sources */,
  1367. CD1E72402A0BA86100BF871F /* ChangeNamePassswordViewController.swift in Sources */,
  1368. CD1E722E2A0BA86100BF871F /* AudioViewController.swift in Sources */,
  1369. CD1E725E2A0BA86100BF871F /* TMessage.swift in Sources */,
  1370. CD1E72422A0BA86100BF871F /* ChangeDeviceViewController.swift in Sources */,
  1371. CD1E725B2A0BA86100BF871F /* AudienceViewController.swift in Sources */,
  1372. CD1E72532A0BA86100BF871F /* BackupRestoreView.swift in Sources */,
  1373. CD1E72342A0BA86100BF871F /* QmeraVideoViewController.swift in Sources */,
  1374. CD1E721D2A0BA86100BF871F /* WorkingAreaPicker.swift in Sources */,
  1375. CD1E72122A0BA86100BF871F /* CoreMessage_TMessageKey.swift in Sources */,
  1376. CDDF46752A2DD81300049A19 /* CreateSeminarViewController.swift in Sources */,
  1377. CD1E722D2A0BA86100BF871F /* QmeraAudioConference.swift in Sources */,
  1378. CD1E72432A0BA86100BF871F /* DocumentPicker.swift in Sources */,
  1379. CD1E72352A0BA86100BF871F /* VideoViewController.swift in Sources */,
  1380. CD1E722B2A0BA86100BF871F /* QmeraCreateStreamingViewController.swift in Sources */,
  1381. CD1E72612A0BA86100BF871F /* CoreMessage_TMessageCode.swift in Sources */,
  1382. CD1E72242A0BA86100BF871F /* PreviewAttachmentImageVideo.swift in Sources */,
  1383. CD1E72142A0BA86100BF871F /* Model.swift in Sources */,
  1384. CD1E723A2A0BA86100BF871F /* QRScannerView.swift in Sources */,
  1385. CD1E72392A0BA86100BF871F /* BroadcastMembersTableViewCell.swift in Sources */,
  1386. CD1E72182A0BA86100BF871F /* WorkingArea.swift in Sources */,
  1387. CD1E724B2A0BA86100BF871F /* ChangeNameTableViewController.swift in Sources */,
  1388. CD1E72592A0BA86100BF871F /* AddFriendTableViewController.swift in Sources */,
  1389. CD1E72332A0BA86100BF871F /* WhiteboardViewController.swift in Sources */,
  1390. CD1E72632A0BA86100BF871F /* CoreMessage_TMessageUtil.swift in Sources */,
  1391. CD1E6E6D2A0B7C3600BF871F /* NexilisLite.docc in Sources */,
  1392. CD1E72542A0BA86100BF871F /* ProfileViewController.swift in Sources */,
  1393. CD1E720B2A0BA86100BF871F /* FloatingButton.swift in Sources */,
  1394. CD1E72412A0BA86100BF871F /* ContactChatViewController.swift in Sources */,
  1395. CD1E72082A0BA86100BF871F /* Units.swift in Sources */,
  1396. CD1E720C2A0BA86100BF871F /* Whiteboard.swift in Sources */,
  1397. CD1E72312A0BA86100BF871F /* QmeraAudioViewController.swift in Sources */,
  1398. CD1E721F2A0BA86100BF871F /* EditorStarMessages.swift in Sources */,
  1399. CD1E72442A0BA86100BF871F /* ChangePasswordViewController.swift in Sources */,
  1400. CD1E72072A0BA86100BF871F /* WhiteboardCanvas.swift in Sources */,
  1401. CD1E721E2A0BA86100BF871F /* BNIBookingWebView.swift in Sources */,
  1402. CD1E72482A0BA86100BF871F /* BroadcastModeViewController.swift in Sources */,
  1403. CD1E72492A0BA86100BF871F /* BackupRestoreOption.swift in Sources */,
  1404. CD1E72362A0BA86100BF871F /* Call.swift in Sources */,
  1405. CD1E723D2A0BA86100BF871F /* CheckConnection.swift in Sources */,
  1406. CD1E72262A0BA86100BF871F /* QmeraGroupChooserViewController.swift in Sources */,
  1407. CD1E72372A0BA86100BF871F /* GroupView.swift in Sources */,
  1408. CD7054EA2AD39DE2003741BF /* ChatGPTBotView.swift in Sources */,
  1409. CD1E72622A0BA86100BF871F /* IncomingThread.swift in Sources */,
  1410. CD1E72292A0BA86100BF871F /* QmeraUserChooserViewController.swift in Sources */,
  1411. CD1E723F2A0BA86100BF871F /* GroupDetailViewController.swift in Sources */,
  1412. CD1E72282A0BA86100BF871F /* CreateViewController.swift in Sources */,
  1413. CD1E72162A0BA86100BF871F /* User.swift in Sources */,
  1414. CD1E720A2A0BA86100BF871F /* APIS.swift in Sources */,
  1415. CD1E72062A0BA86100BF871F /* OutgoingThread.swift in Sources */,
  1416. CD1E722F2A0BA86100BF871F /* ProfileView.swift in Sources */,
  1417. CD1E720D2A0BA86100BF871F /* InquiryThread.swift in Sources */,
  1418. );
  1419. runOnlyForDeploymentPostprocessing = 0;
  1420. };
  1421. CD1E6E6E2A0B7C3600BF871F /* Sources */ = {
  1422. isa = PBXSourcesBuildPhase;
  1423. buildActionMask = 2147483647;
  1424. files = (
  1425. CD1E6E782A0B7C3600BF871F /* NexilisLiteTests.swift in Sources */,
  1426. );
  1427. runOnlyForDeploymentPostprocessing = 0;
  1428. };
  1429. CD469F4C2A0CC862009E4C87 /* Sources */ = {
  1430. isa = PBXSourcesBuildPhase;
  1431. buildActionMask = 2147483647;
  1432. files = (
  1433. );
  1434. runOnlyForDeploymentPostprocessing = 0;
  1435. };
  1436. /* End PBXSourcesBuildPhase section */
  1437. /* Begin PBXTargetDependency section */
  1438. CD1E6E752A0B7C3600BF871F /* PBXTargetDependency */ = {
  1439. isa = PBXTargetDependency;
  1440. target = CD1E6E672A0B7C3600BF871F /* NexilisLite */;
  1441. targetProxy = CD1E6E742A0B7C3600BF871F /* PBXContainerItemProxy */;
  1442. };
  1443. CD469FA52A0CC8D4009E4C87 /* PBXTargetDependency */ = {
  1444. isa = PBXTargetDependency;
  1445. target = CD469F4F2A0CC862009E4C87 /* NexilisLiteResources */;
  1446. targetProxy = CD469FA42A0CC8D4009E4C87 /* PBXContainerItemProxy */;
  1447. };
  1448. /* End PBXTargetDependency section */
  1449. /* Begin PBXVariantGroup section */
  1450. CD469FC82A0CE2DE009E4C87 /* Localizable.strings */ = {
  1451. isa = PBXVariantGroup;
  1452. children = (
  1453. CD469FC92A0CE2DE009E4C87 /* en */,
  1454. CD46A0192A0CE2DE009E4C87 /* id */,
  1455. );
  1456. name = Localizable.strings;
  1457. sourceTree = "<group>";
  1458. };
  1459. /* End PBXVariantGroup section */
  1460. /* Begin XCBuildConfiguration section */
  1461. CD1E6E7A2A0B7C3600BF871F /* Debug */ = {
  1462. isa = XCBuildConfiguration;
  1463. buildSettings = {
  1464. ALWAYS_SEARCH_USER_PATHS = NO;
  1465. BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
  1466. CLANG_ANALYZER_NONNULL = YES;
  1467. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1468. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  1469. CLANG_ENABLE_MODULES = YES;
  1470. CLANG_ENABLE_OBJC_ARC = YES;
  1471. CLANG_ENABLE_OBJC_WEAK = YES;
  1472. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1473. CLANG_WARN_BOOL_CONVERSION = YES;
  1474. CLANG_WARN_COMMA = YES;
  1475. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1476. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1477. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1478. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1479. CLANG_WARN_EMPTY_BODY = YES;
  1480. CLANG_WARN_ENUM_CONVERSION = YES;
  1481. CLANG_WARN_INFINITE_RECURSION = YES;
  1482. CLANG_WARN_INT_CONVERSION = YES;
  1483. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1484. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1485. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1486. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1487. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1488. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1489. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1490. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1491. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1492. CLANG_WARN_UNREACHABLE_CODE = YES;
  1493. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1494. COPY_PHASE_STRIP = NO;
  1495. CURRENT_PROJECT_VERSION = 1;
  1496. DEBUG_INFORMATION_FORMAT = dwarf;
  1497. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1498. ENABLE_TESTABILITY = YES;
  1499. GCC_C_LANGUAGE_STANDARD = gnu11;
  1500. GCC_DYNAMIC_NO_PIC = NO;
  1501. GCC_NO_COMMON_BLOCKS = YES;
  1502. GCC_OPTIMIZATION_LEVEL = 0;
  1503. GCC_PREPROCESSOR_DEFINITIONS = (
  1504. "DEBUG=1",
  1505. "$(inherited)",
  1506. );
  1507. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1508. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1509. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1510. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1511. GCC_WARN_UNUSED_FUNCTION = YES;
  1512. GCC_WARN_UNUSED_VARIABLE = YES;
  1513. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1514. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  1515. MTL_FAST_MATH = YES;
  1516. ONLY_ACTIVE_ARCH = YES;
  1517. SDKROOT = iphoneos;
  1518. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  1519. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  1520. VERSIONING_SYSTEM = "apple-generic";
  1521. VERSION_INFO_PREFIX = "";
  1522. };
  1523. name = Debug;
  1524. };
  1525. CD1E6E7B2A0B7C3600BF871F /* Release */ = {
  1526. isa = XCBuildConfiguration;
  1527. buildSettings = {
  1528. ALWAYS_SEARCH_USER_PATHS = NO;
  1529. BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
  1530. CLANG_ANALYZER_NONNULL = YES;
  1531. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1532. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  1533. CLANG_ENABLE_MODULES = YES;
  1534. CLANG_ENABLE_OBJC_ARC = YES;
  1535. CLANG_ENABLE_OBJC_WEAK = YES;
  1536. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1537. CLANG_WARN_BOOL_CONVERSION = YES;
  1538. CLANG_WARN_COMMA = YES;
  1539. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1540. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1541. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1542. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1543. CLANG_WARN_EMPTY_BODY = YES;
  1544. CLANG_WARN_ENUM_CONVERSION = YES;
  1545. CLANG_WARN_INFINITE_RECURSION = YES;
  1546. CLANG_WARN_INT_CONVERSION = YES;
  1547. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1548. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1549. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1550. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1551. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1552. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1553. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1554. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1555. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1556. CLANG_WARN_UNREACHABLE_CODE = YES;
  1557. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1558. COPY_PHASE_STRIP = NO;
  1559. CURRENT_PROJECT_VERSION = 1;
  1560. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1561. ENABLE_NS_ASSERTIONS = NO;
  1562. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1563. GCC_C_LANGUAGE_STANDARD = gnu11;
  1564. GCC_NO_COMMON_BLOCKS = YES;
  1565. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1566. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1567. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1568. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1569. GCC_WARN_UNUSED_FUNCTION = YES;
  1570. GCC_WARN_UNUSED_VARIABLE = YES;
  1571. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1572. MTL_ENABLE_DEBUG_INFO = NO;
  1573. MTL_FAST_MATH = YES;
  1574. SDKROOT = iphoneos;
  1575. SWIFT_COMPILATION_MODE = wholemodule;
  1576. SWIFT_OPTIMIZATION_LEVEL = "-O";
  1577. VALIDATE_PRODUCT = YES;
  1578. VERSIONING_SYSTEM = "apple-generic";
  1579. VERSION_INFO_PREFIX = "";
  1580. };
  1581. name = Release;
  1582. };
  1583. CD1E6E7D2A0B7C3600BF871F /* Debug */ = {
  1584. isa = XCBuildConfiguration;
  1585. baseConfigurationReference = E274748B31FAA28D0788408F /* Pods-NexilisLite.debug.xcconfig */;
  1586. buildSettings = {
  1587. BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
  1588. CODE_SIGN_STYLE = Automatic;
  1589. CURRENT_PROJECT_VERSION = 1;
  1590. DEFINES_MODULE = YES;
  1591. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1592. DYLIB_COMPATIBILITY_VERSION = 1;
  1593. DYLIB_CURRENT_VERSION = 1;
  1594. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1595. ENABLE_MODULE_VERIFIER = YES;
  1596. FRAMEWORK_SEARCH_PATHS = (
  1597. "$(inherited)",
  1598. "$(PROJECT_DIR)",
  1599. );
  1600. GENERATE_INFOPLIST_FILE = YES;
  1601. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1602. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1603. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1604. LD_RUNPATH_SEARCH_PATHS = (
  1605. "$(inherited)",
  1606. "@executable_path/Frameworks",
  1607. "@loader_path/Frameworks",
  1608. );
  1609. MARKETING_VERSION = 1.0;
  1610. MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
  1611. MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20";
  1612. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLite;
  1613. PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  1614. SKIP_INSTALL = NO;
  1615. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  1616. SUPPORTS_MACCATALYST = NO;
  1617. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  1618. SWIFT_EMIT_LOC_STRINGS = YES;
  1619. SWIFT_VERSION = 5.0;
  1620. };
  1621. name = Debug;
  1622. };
  1623. CD1E6E7E2A0B7C3600BF871F /* Release */ = {
  1624. isa = XCBuildConfiguration;
  1625. baseConfigurationReference = EAF4D32ECF6B438514088086 /* Pods-NexilisLite.release.xcconfig */;
  1626. buildSettings = {
  1627. BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
  1628. CODE_SIGN_STYLE = Automatic;
  1629. CURRENT_PROJECT_VERSION = 1;
  1630. DEFINES_MODULE = YES;
  1631. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1632. DYLIB_COMPATIBILITY_VERSION = 1;
  1633. DYLIB_CURRENT_VERSION = 1;
  1634. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1635. ENABLE_MODULE_VERIFIER = YES;
  1636. FRAMEWORK_SEARCH_PATHS = (
  1637. "$(inherited)",
  1638. "$(PROJECT_DIR)",
  1639. );
  1640. GENERATE_INFOPLIST_FILE = YES;
  1641. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1642. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1643. IPHONEOS_DEPLOYMENT_TARGET = 14.0;
  1644. LD_RUNPATH_SEARCH_PATHS = (
  1645. "$(inherited)",
  1646. "@executable_path/Frameworks",
  1647. "@loader_path/Frameworks",
  1648. );
  1649. MARKETING_VERSION = 1.0;
  1650. MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
  1651. MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20";
  1652. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLite;
  1653. PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  1654. SKIP_INSTALL = NO;
  1655. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  1656. SUPPORTS_MACCATALYST = NO;
  1657. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  1658. SWIFT_EMIT_LOC_STRINGS = YES;
  1659. SWIFT_VERSION = 5.0;
  1660. };
  1661. name = Release;
  1662. };
  1663. CD1E6E802A0B7C3600BF871F /* Debug */ = {
  1664. isa = XCBuildConfiguration;
  1665. baseConfigurationReference = 5AFDB202A2CA7FE864B0B1C2 /* Pods-NexilisLite-NexilisLiteTests.debug.xcconfig */;
  1666. buildSettings = {
  1667. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
  1668. CODE_SIGN_STYLE = Automatic;
  1669. CURRENT_PROJECT_VERSION = 1;
  1670. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1671. GENERATE_INFOPLIST_FILE = YES;
  1672. MARKETING_VERSION = 1.0;
  1673. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLiteTests;
  1674. PRODUCT_NAME = "$(TARGET_NAME)";
  1675. SWIFT_EMIT_LOC_STRINGS = NO;
  1676. SWIFT_VERSION = 5.0;
  1677. TARGETED_DEVICE_FAMILY = "1,2";
  1678. };
  1679. name = Debug;
  1680. };
  1681. CD1E6E812A0B7C3600BF871F /* Release */ = {
  1682. isa = XCBuildConfiguration;
  1683. baseConfigurationReference = 894DDD36E2CE62952A3371C1 /* Pods-NexilisLite-NexilisLiteTests.release.xcconfig */;
  1684. buildSettings = {
  1685. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
  1686. CODE_SIGN_STYLE = Automatic;
  1687. CURRENT_PROJECT_VERSION = 1;
  1688. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1689. GENERATE_INFOPLIST_FILE = YES;
  1690. MARKETING_VERSION = 1.0;
  1691. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLiteTests;
  1692. PRODUCT_NAME = "$(TARGET_NAME)";
  1693. SWIFT_EMIT_LOC_STRINGS = NO;
  1694. SWIFT_VERSION = 5.0;
  1695. TARGETED_DEVICE_FAMILY = "1,2";
  1696. };
  1697. name = Release;
  1698. };
  1699. CD469F522A0CC862009E4C87 /* Debug */ = {
  1700. isa = XCBuildConfiguration;
  1701. buildSettings = {
  1702. CODE_SIGN_STYLE = Automatic;
  1703. COMBINE_HIDPI_IMAGES = YES;
  1704. CURRENT_PROJECT_VERSION = 1;
  1705. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1706. GENERATE_INFOPLIST_FILE = YES;
  1707. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1708. INFOPLIST_KEY_NSPrincipalClass = "";
  1709. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
  1710. MACOSX_DEPLOYMENT_TARGET = 13.3;
  1711. MARKETING_VERSION = 1.0;
  1712. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLiteResources;
  1713. PRODUCT_NAME = "$(TARGET_NAME)";
  1714. SDKROOT = macosx;
  1715. SKIP_INSTALL = YES;
  1716. SWIFT_EMIT_LOC_STRINGS = YES;
  1717. WRAPPER_EXTENSION = bundle;
  1718. };
  1719. name = Debug;
  1720. };
  1721. CD469F532A0CC862009E4C87 /* Release */ = {
  1722. isa = XCBuildConfiguration;
  1723. buildSettings = {
  1724. CODE_SIGN_STYLE = Automatic;
  1725. COMBINE_HIDPI_IMAGES = YES;
  1726. CURRENT_PROJECT_VERSION = 1;
  1727. DEVELOPMENT_TEAM = FR2C2CZUYZ;
  1728. GENERATE_INFOPLIST_FILE = YES;
  1729. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1730. INFOPLIST_KEY_NSPrincipalClass = "";
  1731. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
  1732. MACOSX_DEPLOYMENT_TARGET = 13.3;
  1733. MARKETING_VERSION = 1.0;
  1734. PRODUCT_BUNDLE_IDENTIFIER = io.nexilis.NexilisLiteResources;
  1735. PRODUCT_NAME = "$(TARGET_NAME)";
  1736. SDKROOT = macosx;
  1737. SKIP_INSTALL = YES;
  1738. SWIFT_EMIT_LOC_STRINGS = YES;
  1739. WRAPPER_EXTENSION = bundle;
  1740. };
  1741. name = Release;
  1742. };
  1743. /* End XCBuildConfiguration section */
  1744. /* Begin XCConfigurationList section */
  1745. CD1E6E622A0B7C3600BF871F /* Build configuration list for PBXProject "NexilisLite" */ = {
  1746. isa = XCConfigurationList;
  1747. buildConfigurations = (
  1748. CD1E6E7A2A0B7C3600BF871F /* Debug */,
  1749. CD1E6E7B2A0B7C3600BF871F /* Release */,
  1750. );
  1751. defaultConfigurationIsVisible = 0;
  1752. defaultConfigurationName = Release;
  1753. };
  1754. CD1E6E7C2A0B7C3600BF871F /* Build configuration list for PBXNativeTarget "NexilisLite" */ = {
  1755. isa = XCConfigurationList;
  1756. buildConfigurations = (
  1757. CD1E6E7D2A0B7C3600BF871F /* Debug */,
  1758. CD1E6E7E2A0B7C3600BF871F /* Release */,
  1759. );
  1760. defaultConfigurationIsVisible = 0;
  1761. defaultConfigurationName = Release;
  1762. };
  1763. CD1E6E7F2A0B7C3600BF871F /* Build configuration list for PBXNativeTarget "NexilisLiteTests" */ = {
  1764. isa = XCConfigurationList;
  1765. buildConfigurations = (
  1766. CD1E6E802A0B7C3600BF871F /* Debug */,
  1767. CD1E6E812A0B7C3600BF871F /* Release */,
  1768. );
  1769. defaultConfigurationIsVisible = 0;
  1770. defaultConfigurationName = Release;
  1771. };
  1772. CD469F512A0CC862009E4C87 /* Build configuration list for PBXNativeTarget "NexilisLiteResources" */ = {
  1773. isa = XCConfigurationList;
  1774. buildConfigurations = (
  1775. CD469F522A0CC862009E4C87 /* Debug */,
  1776. CD469F532A0CC862009E4C87 /* Release */,
  1777. );
  1778. defaultConfigurationIsVisible = 0;
  1779. defaultConfigurationName = Release;
  1780. };
  1781. /* End XCConfigurationList section */
  1782. };
  1783. rootObject = CD1E6E5F2A0B7C3600BF871F /* Project object */;
  1784. }