project.pbxproj 170 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXAggregateTarget section */
  9. A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */ = {
  10. isa = PBXAggregateTarget;
  11. buildConfigurationList = 2B5DF5A158B98A0290FB17E1E4E3E2B6 /* Build configuration list for PBXAggregateTarget "TensorFlowLite" */;
  12. buildPhases = (
  13. );
  14. dependencies = (
  15. );
  16. name = TensorFlowLite;
  17. };
  18. /* End PBXAggregateTarget section */
  19. /* Begin PBXBuildFile section */
  20. 0136F970555A2FE5E5BAEED511674D6A /* PCSTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 3383F6C3A5BD3B919BDA3BC6011E86E5 /* PCSTools.m */; };
  21. 023464FF5345321333136E9CF313741F /* QuitMultipleModeAlertViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BDAA4B378A2E594E02C3191126E989A7 /* QuitMultipleModeAlertViewController.m */; };
  22. 0239928A2EC82255C7AD2603A8A30F98 /* PhotoCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D7887C1F6773A568EBDB5D24DBBACBD /* PhotoCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
  23. 023CFE8053B14211C69D04718711DEFC /* CameraTextureRenderPass.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D3F36A7A2E0A0590FC794057DA03E5D /* CameraTextureRenderPass.m */; };
  24. 02B959FE26516AD48909BA09827C5514 /* ImageCacheLRU.h in Headers */ = {isa = PBXBuildFile; fileRef = 46C88FEA97AD035600FD104BF0FB899F /* ImageCacheLRU.h */; settings = {ATTRIBUTES = (Project, ); }; };
  25. 02EDD635504BF57114EE2902B28F0EB8 /* assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D1F049E526F5575B78C34D06EEEA8012 /* assets.xcassets */; };
  26. 045AAD1AB83E7F95858CB0B461BFBB90 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = AC59A703058154D497C84656B4AE034E /* MASUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; };
  27. 0521A183DF005CC0EA971A2FCC397194 /* PhotoListCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BAC658FD230DEDCE8BF7B9F3067EB41 /* PhotoListCellModel.m */; };
  28. 068F7D34728422B2B5C9C30E58BD7C52 /* CustomModalViewTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = F2786C10A3CE15B2B97D2165EF589A44 /* CustomModalViewTransition.m */; };
  29. 084FA057947FD4B8E5B4093B80B2310A /* YYTextTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 53DD05D7B6888C455D77CA8C05CEC207 /* YYTextTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; };
  30. 0AE23868BA6DA518A770964CFA58B2B6 /* YYTextRubyAnnotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 114501B95B52E239D7469CF4E409507E /* YYTextRubyAnnotation.m */; };
  31. 0E7B9B60DC5DA0C2A4034A2EA0B26677 /* LenzCachedResourceModel.h in Headers */ = {isa = PBXBuildFile; fileRef = AB4ED4E5A21F449AB237A6158DE5F976 /* LenzCachedResourceModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  32. 0F88A9F602D848578F98D16A0F11CC05 /* PhotoListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BB15112B40D29902BD44EB63437D817 /* PhotoListViewController.m */; };
  33. 1027F512D7E8132EA23712BA83A0E366 /* PaddingLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8F0CE63987748F5D5EBB7AC297EB37 /* PaddingLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  34. 11ADA2C64E2EFEA900C7C12FB8A176ED /* OperationNodeMovie.h in Headers */ = {isa = PBXBuildFile; fileRef = FCF39464DCA45BC7FE51A2F2EF530B78 /* OperationNodeMovie.h */; settings = {ATTRIBUTES = (Project, ); }; };
  35. 15CC219133439E79B63C325A48CB5230 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2002BF941497DCE4DC551650ED008F9E /* MASConstraintMaker.m */; };
  36. 15CC60CD2EF809BE1BBA97FEBDBE9605 /* PhotoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = D98C5C12F052EAD529EC9EEFE493EFAE /* PhotoCell.xib */; };
  37. 15CD333FB3CF3C9040F20AA320FD0DF3 /* YYTextUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = FAF7A7016021E626ECAEBF36DDB38433 /* YYTextUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; };
  38. 167CA5A8031385B0A81CCF7901765CC7 /* BaseViewTapGestureDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E324CBC5B1CD1D81F9DDBFE9466A1E97 /* BaseViewTapGestureDelegate.m */; };
  39. 18E22C2CA3EEA3529726DB78234102F5 /* TimerLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = C0931C591BE7B07CE458432E8414A12C /* TimerLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  40. 1AD187D9AC6E811D7CF9781BF8CFAEF6 /* ImageCacheLRU.m in Sources */ = {isa = PBXBuildFile; fileRef = EFA78D74D65C7A2CFC756FE18A5145D0 /* ImageCacheLRU.m */; };
  41. 1C13180EC4403658D9FE1363FD47B139 /* PreviewSingleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C7551E540F421DB883EC45F9B9FD999 /* PreviewSingleViewController.m */; };
  42. 1D8B5E19E2DDD85E6F6ABA76D980365B /* YYTextMagnifier.m in Sources */ = {isa = PBXBuildFile; fileRef = A4C18B2ED0CB87015BA0CC57B8C7157E /* YYTextMagnifier.m */; };
  43. 1E66E189DFFEA268D990FF1924E5F3AA /* UIImage+name.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3793D77A5DF02CCECD90108FEF8CA3 /* UIImage+name.h */; settings = {ATTRIBUTES = (Project, ); }; };
  44. 1ED3C161DBA972E683FA708F5062C208 /* OperationNodeMultiple.m in Sources */ = {isa = PBXBuildFile; fileRef = CD4D19A957FBFABB2144E0CA18C5EB84 /* OperationNodeMultiple.m */; };
  45. 208C68C1BB9548B7F43CF36DBB7CCD80 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = E9C8B1352CBA0FEBAD260A2E875DF2DE /* Localizable.strings */; };
  46. 25A56361BB8E7291B0E6C4D60F57D7FB /* PCSMotionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F4DA75E70A44BE70E7EE7A8E9E81CE80 /* PCSMotionManager.m */; };
  47. 2776881FEA95B4221D237348734861A5 /* PhotoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D62B02E7EF69B17AB7FAC2297364E42 /* PhotoCell.m */; };
  48. 27C458144190E14D027C6F53A23B28AF /* LenzHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 045C5643ECC38689ED9F9C8C770C5E31 /* LenzHeader.h */; settings = {ATTRIBUTES = (Project, ); }; };
  49. 2B68E6A0683A84B3271177B84E8B19F2 /* NSParagraphStyle+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = EADB3792F4D552050D74E9418727DB85 /* NSParagraphStyle+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  50. 2BF97781872D2E6ADADC8D01A0DB139E /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 00465AB67C1F1B380226E17A7CE23581 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  51. 2FD31708C0A9546EF4514AFCDDA48133 /* CollectionViewPlayerCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B346FFE2FB28E8567ED95CB456A2F8CF /* CollectionViewPlayerCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
  52. 300A8F2D4968EB49C0625E962866D325 /* SVRadialGradientLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ABCED1E73226E2ABC9BE8BE8D03BF0D /* SVRadialGradientLayer.h */; settings = {ATTRIBUTES = (Project, ); }; };
  53. 313057E0BBF20FEDA9AA0FFB3EED8C0D /* PaddingLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A400F0E8D0990EE2ECB8EF1C949F50A /* PaddingLabel.m */; };
  54. 31BADF35F4B73610453214D8CCA4CE96 /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 09C630CEDE852939E93E2C127B2582EC /* MASCompositeConstraint.m */; };
  55. 323CA95CD72A2E0207D256F1F69C5F3D /* OperationNodeSingle.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F37F3A6741614EF4393CEC045E9472B /* OperationNodeSingle.m */; };
  56. 336294A8C0A924407434D81A88A3B2E1 /* YYTextLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0994AB16F94688C044E520A3CD0008CC /* YYTextLayout.h */; settings = {ATTRIBUTES = (Project, ); }; };
  57. 33BE96B3EDF2887F4F5EFFCC0AAC4790 /* PhotoAlbumModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C4AEE6F3FAD0B04DCB1E1E351C3CF50 /* PhotoAlbumModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  58. 34D690A5A2F96C59C00CF90699D0E1E5 /* YYTextLine.h in Headers */ = {isa = PBXBuildFile; fileRef = 915DFC2B3727DF36D704655395005955 /* YYTextLine.h */; settings = {ATTRIBUTES = (Project, ); }; };
  59. 35125021A252681A4ACD6212651D3EED /* SVProgressAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 71A9C32F11A74240787A960ACBA0D696 /* SVProgressAnimatedView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  60. 36A335D72A32C8D373B244083634C298 /* AlbumCounterLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 185252B13C095F4158BB86519A54C9EA /* AlbumCounterLabel.m */; };
  61. 37287801A54A0A670972CF786BC1BBAE /* UIImage+ext.m in Sources */ = {isa = PBXBuildFile; fileRef = 813E120135C3E3B5C50FB70609B4A8D3 /* UIImage+ext.m */; };
  62. 39DD41B366B3CA5AA32AD1F346B9B2AB /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 236AF217BE16A74042B90DBB675F6FD0 /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  63. 3C0C1C4D82E74794045D34B2F336E55B /* PCSModeList.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DE30B6B31980946761C9D5293B4941D /* PCSModeList.m */; };
  64. 3E6ED86721A1F011A450B6E96F7ED43F /* LenzCameraNativeModuleForRN.h in Headers */ = {isa = PBXBuildFile; fileRef = 96A8580B6102817508C5CE6FCE48459B /* LenzCameraNativeModuleForRN.h */; settings = {ATTRIBUTES = (Project, ); }; };
  65. 3EAE03A9C0D44D7E3DE15E9D0D89C2DC /* YYTextSelectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 236BD5F0C68C18F6835B9292DCE7BB80 /* YYTextSelectionView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  66. 3EAF9A103C2C88DB15C08BEAC8A9CB97 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 66579CE2B50EB996A4F4583BBB52AAA3 /* MASViewAttribute.m */; };
  67. 408CDF664EB44439BA50971F116EEF58 /* LenzCameraSDK.h in Headers */ = {isa = PBXBuildFile; fileRef = AD277ABA97D5700D67AE4243F751B01F /* LenzCameraSDK.h */; settings = {ATTRIBUTES = (Project, ); }; };
  68. 40B7B47B7B502516A205297033B80D22 /* Localizable.strings in Sources */ = {isa = PBXBuildFile; fileRef = 3DEFF5635EA7D20945B2F48768B2AAA4 /* Localizable.strings */; };
  69. 4100628200520015C6FC3F6B53A53A53 /* QuitMultipleModeAlertViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 21B8E03137BCF9F54F9CFE4277F7BEB7 /* QuitMultipleModeAlertViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  70. 411EEB22AF92299394B87F74D88D1460 /* PhotoAlbumModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BDEA7527A5E638AC420DC55A43D729CD /* PhotoAlbumModel.m */; };
  71. 43FB1194BE4F7755647BE583FE9DE8C9 /* PCSSessionWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = A17498484830BD5638E4AAE372DA3F34 /* PCSSessionWrapper.m */; };
  72. 44167A79BC1130104702B0B2749C955E /* SVIndefiniteAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 833F599750CCF740A20A786D96528502 /* SVIndefiniteAnimatedView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  73. 4547326B38452A54A54B6BB4B10DE57E /* PhotoCollectionViewCell.xib in Sources */ = {isa = PBXBuildFile; fileRef = 24EDCA6C907B565CFCA6F153DACA1C08 /* PhotoCollectionViewCell.xib */; };
  74. 45A025C9E91F10658628F768D873642D /* AVCapturePhotoOutput+VersionAdaptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46C5B9E72B8C325BE99EEB55A9C80A7A /* AVCapturePhotoOutput+VersionAdaptor.m */; };
  75. 492AD3240A9A28893E6AE7C8AE30A525 /* OperationNodePanorama.m in Sources */ = {isa = PBXBuildFile; fileRef = 77429CB6A8EAF380C3CB43D3A6254D3D /* OperationNodePanorama.m */; };
  76. 4BC258EE7EC77815097A3E9E338B7280 /* UIColor+JKAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C7465AD2ADA3BF7068CBAADEC48297D2 /* UIColor+JKAdd.m */; };
  77. 4D8322EF82610B19CF14893F310DF415 /* CollectionViewPlayerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E967728499E5E889E7A7F07BE3FFBA2A /* CollectionViewPlayerCell.m */; };
  78. 4DC87D1E949CB1CC1987DC05ADEB580F /* NSString+Localization.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFF22F430B4A88773539F11E8E2B575 /* NSString+Localization.m */; };
  79. 4DD1CCE3EF0004A3A9BA7261F4C1759B /* VerticalButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 65E6552F443DE1F9C6A71EB124AE43D8 /* VerticalButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
  80. 4EC3293169F740693B5D0A371624A75D /* PhotoAlbumListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B92E667049899392FBCBA6FC12CEBDB /* PhotoAlbumListViewController.m */; };
  81. 5325B5D50750C2B516941C1BC1DAF84D /* PCSThemeColorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 644952EB048BC8BC0910BB01B0805C4B /* PCSThemeColorManager.m */; };
  82. 537F83DFFEFC2B468F094725820A3E3E /* UIPasteboard+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = BD9189EC71760D28C686D5F3ABB28539 /* UIPasteboard+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  83. 537FB6D4350E7E1901D5EB5F9D867936 /* MovieListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FB8EFDA0A02A82868E8E02DD5B6E34E /* MovieListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  84. 56B960051357AC8944C25E33654CC7CB /* SVRadialGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 384498CEF984C255A6393C0AF5889DC5 /* SVRadialGradientLayer.m */; };
  85. 573FF3E20326AF5E9D1AE2968368330A /* LenzCachedResourceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 48611A8832F58CED003645A0C8EDA810 /* LenzCachedResourceModel.m */; };
  86. 57E1CFE2A41A2A26C7775C286E643BBE /* YYTextParser.h in Headers */ = {isa = PBXBuildFile; fileRef = C2F62CD50BFD779B6EFD0D09FCAABDDE /* YYTextParser.h */; settings = {ATTRIBUTES = (Project, ); }; };
  87. 5804651E7179251151071800958B13C5 /* PCSRoundButton.h in Headers */ = {isa = PBXBuildFile; fileRef = D59D4935A4D2F844ABA539328825157E /* PCSRoundButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
  88. 5937D0B695127E5393DF3956E4BE1142 /* SDKParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 160B990996DD21D6E64E455E744557C6 /* SDKParameters.h */; settings = {ATTRIBUTES = (Project, ); }; };
  89. 59DF16BC09798FEFB776A5B17C2E3CCF /* YYLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = B3FABB1AB4EC151E5C9656A616F69499 /* YYLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  90. 5B04C33B5BB8BC512829FDD019856853 /* YYTextAsyncLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 13AA756254EF152781EA2DCEE497DA85 /* YYTextAsyncLayer.m */; };
  91. 5B8CB26922362364523F24D1E83764D1 /* YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = AB019ACB40EC1D9EA58DF5C2044FEDA4 /* YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  92. 5BF987096F7CA20815070D276A2EBC5E /* YYTextArchiver.h in Headers */ = {isa = PBXBuildFile; fileRef = D91B38E39EA044E85F6ACE52E9D773A9 /* YYTextArchiver.h */; settings = {ATTRIBUTES = (Project, ); }; };
  93. 5C0068B922F4D3BF2C88B58F408B290E /* PCSPreviewViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A8E2B95BAC7DAEE3F8A609F111031712 /* PCSPreviewViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  94. 5CFD26FA1D20A656E6E59D7FCB957036 /* OperationNodeSingle.h in Headers */ = {isa = PBXBuildFile; fileRef = 3769A2F99954C35CEF2D418F86780330 /* OperationNodeSingle.h */; settings = {ATTRIBUTES = (Project, ); }; };
  95. 5DC64232325DA5A4D21D97CC569CD758 /* PhotoCell.xib in Sources */ = {isa = PBXBuildFile; fileRef = D98C5C12F052EAD529EC9EEFE493EFAE /* PhotoCell.xib */; };
  96. 600CA65C8D86178DF521F4B01DBB84E0 /* MovieListCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = BAE523B549F9C5EA324F14DD4BBCB4EC /* MovieListCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  97. 61D5656846E4EFF9A3BBACEFEA2A9157 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 83DF0E9265D9C7C9A64D13D326C24C40 /* MASConstraint.m */; };
  98. 62D4C11F440C4A96585B6703AF77C5E1 /* lenz_stitcher.a in Sources */ = {isa = PBXBuildFile; fileRef = A316837B0A1BDA3FCB6907F49797C29F /* lenz_stitcher.a */; };
  99. 63BE63519B1690F0C066293683F854D6 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = ACC7C0BD6430C348FA88862F379F6DA2 /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  100. 65A7EEF17AF1C948906239F6A246E0FF /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E6AF7755455F924245F4D6A2C617747 /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  101. 67A58DFA526AC3A9A871F233A47DBFB8 /* AVCapturePhotoOutput+VersionAdaptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 459CD2883A08E917967B202825AE1427 /* AVCapturePhotoOutput+VersionAdaptor.h */; settings = {ATTRIBUTES = (Project, ); }; };
  102. 67E5943679E464CD2079A8AFAD0732D1 /* SVIndefiniteAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = FF30174D85BCC340875C99BBC74425FB /* SVIndefiniteAnimatedView.m */; };
  103. 683F5CAD9E088A9CBDA18B5D5A01007D /* cpp-headers.h in Headers */ = {isa = PBXBuildFile; fileRef = 807AC0FC0795E04889BB0E08A81E043D /* cpp-headers.h */; settings = {ATTRIBUTES = (Project, ); }; };
  104. 6868E309F99B12D1046CF67E5D4601D8 /* YYTextInput.m in Sources */ = {isa = PBXBuildFile; fileRef = 03580EB58D7084008ED15AFEFDDF44C5 /* YYTextInput.m */; };
  105. 692535448F10C176CBFBE177CE206EBF /* PCSSessionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 023CA2B4CB726176D7130B2CDD464FD7 /* PCSSessionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; };
  106. 69864DFE3EC290040D273D325FA0E089 /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CD9F5FAE8AA1C9DC33B67DCE4D06112 /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Project, ); }; };
  107. 6A162316CAEA8379A5DD1408C9F4C104 /* LenzCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA9F250AB98999CB591E8E8EBC94C04 /* LenzCommon.h */; settings = {ATTRIBUTES = (Project, ); }; };
  108. 6A93F1139D51CC7E5577AA5F665F7EDA /* LenzCameraSDK.m in Sources */ = {isa = PBXBuildFile; fileRef = E8E4DDD2282B9B833AC55ABFA624EA06 /* LenzCameraSDK.m */; };
  109. 6AB71F1AFAAEAEA715F98BA8CCC2FD31 /* PCSMotionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2C09018F6FBA2B178C18BE2A35BCC39 /* PCSMotionManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  110. 6D0B9203EC261F2DC6641C1592F967A4 /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 38BE671C7B48B2C725FE5EB9E63666BC /* Masonry.h */; settings = {ATTRIBUTES = (Project, ); }; };
  111. 6D7E6BFCE0A2280C205A4442664D3B8E /* YYTextDebugOption.m in Sources */ = {isa = PBXBuildFile; fileRef = 876E7EF23CC2D8D5153FB1D94CFF7622 /* YYTextDebugOption.m */; };
  112. 6E64879D6211004843DE58AC87B45C56 /* TensorFlowWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 825C6FB76FE50D59AB05CDE39C679926 /* TensorFlowWrapper.m */; };
  113. 6E92300E108061782377F38796508DBD /* TensorFlowWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = DF7346F194B062427E1A91DFFE462DC2 /* TensorFlowWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; };
  114. 6FE8C0F00B081D797EBA92E15F8A1EC4 /* YYTextWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19B60C5ED970E0BD7B87C59D44EF8103 /* YYTextWeakProxy.m */; };
  115. 70A62934BE85AEC19192F9A8BD0A66FA /* YYTextDebugOption.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E35876B9CD9492C56A9233E07CF9154 /* YYTextDebugOption.h */; settings = {ATTRIBUTES = (Project, ); }; };
  116. 718675C8D8CC9777C6870ADB7335DA31 /* PhotoAlbumListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E52E912FAFF28DB1D50022DCFE3D494A /* PhotoAlbumListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  117. 7224AF90E4AFF20058C3F84F1336B134 /* YYTextInput.h in Headers */ = {isa = PBXBuildFile; fileRef = CA7659E48BC55B78DC1D9038C1E715FA /* YYTextInput.h */; settings = {ATTRIBUTES = (Project, ); }; };
  118. 756D31CB09477B50D36204DFFB7EA42A /* YYTextKeyboardManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B8355626A66BC661E37E399FC319781 /* YYTextKeyboardManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  119. 75DF02B9DE4CEA66C4A8A0E3C29CAD2E /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 985EAF70F969BDAB6658282A9B5C28A8 /* ViewController+MASAdditions.m */; };
  120. 75F2C65AD171D1BFC9DD4D7AAAE3614B /* PCSThemeColorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F12F036B9077FA7440B2EC3BA01936F1 /* PCSThemeColorManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  121. 76C20AD4B92885154D87FC48AC21C0D5 /* PhotoCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 16A08F01E970853EA562E6581A05F96A /* PhotoCollectionViewCell.m */; };
  122. 77C5B6E02AF70E47D1E380BE5ADFE750 /* NSAttributedString+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = 21CABE754D79776A6CA0048575C17125 /* NSAttributedString+YYText.m */; };
  123. 7F80FA71C480E4AF23FF39A9E96D4652 /* YYLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = B2FC930665E4A7CF0D652608F4A5F036 /* YYLabel.m */; };
  124. 7F907ABC6FFC4E1B12ADA33F233AF492 /* UIView+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D753BEB00E24AD721F3C33B73FA7DFD /* UIView+YYText.m */; };
  125. 7FFCDBA1CB71D9C973C49B4A37EC5725 /* YYTextParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 059F71D6CF20450C126B81E72F666ADC /* YYTextParser.m */; };
  126. 8163209B85CD4577B385B5831F187207 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 04C0ECDA1655815A1B7E06604643BFF7 /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  127. 82F1FB2214D18D26A57EFBEC33FB1BA8 /* OperationNodeVideoBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 81138B07CE5075F5BB6EE8861507C864 /* OperationNodeVideoBase.h */; settings = {ATTRIBUTES = (Project, ); }; };
  128. 8452D2825DA153EF65ACA8A8E96BF70A /* CustomModalViewTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E265302DDF648C95DD5AD1BFA940D191 /* CustomModalViewTransition.h */; settings = {ATTRIBUTES = (Project, ); }; };
  129. 85EA2553FEB2D2FDBF124F6A77692798 /* YYTextArchiver.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BCE3AE0EB3099A374D3D8E3C8AAA770 /* YYTextArchiver.m */; };
  130. 89633F951D73A9C9E77A45DB6576B6FA /* PCSSDF-prefix-header.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EFC60452ECAED9A2848F17EFB6D745B /* PCSSDF-prefix-header.h */; settings = {ATTRIBUTES = (Project, ); }; };
  131. 89A624531B981F6165C799AF6A9FE2E7 /* YYTextAsyncLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = EA45FA6D756C56F8C345F42BD8FCB2E9 /* YYTextAsyncLayer.h */; settings = {ATTRIBUTES = (Project, ); }; };
  132. 8B22624C519A49650D314A3D4E21B8E3 /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 030858582360BFE22F7D95092D54F7BD /* Masonry-dummy.m */; };
  133. 8E35FC2D2C2230EFEB1620BFE18C7F86 /* MoviePlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CADF850FF74C89AEA926B09C0E07C8E6 /* MoviePlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  134. 8E53653E1B32D93DAEA0E4C486403383 /* CameraManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 484E9323B660E1E311FCC858BDAD79F6 /* CameraManager.m */; };
  135. 8E592EC028AE26B68DD719F05450A171 /* YYTextKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AEFB6FD0996C12C9C08BB4FFA1441657 /* YYTextKeyboardManager.m */; };
  136. 8EF89B26052CE66E8CF72814A1CED9DA /* CameraTextureRenderPass.h in Headers */ = {isa = PBXBuildFile; fileRef = B8ED74D62553DA243A77D1F0D1402416 /* CameraTextureRenderPass.h */; settings = {ATTRIBUTES = (Project, ); }; };
  137. 90E3BA5C23397CF975541DDA124722BA /* OperationNodeVideoBase.m in Sources */ = {isa = PBXBuildFile; fileRef = DD29E953FEFC5715DE8B2B1EC7C73649 /* OperationNodeVideoBase.m */; };
  138. 90F29372D5FD84D85705EDC32EAF1A02 /* MovieListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DDFA7461FD9FDB9F39907820FE50909 /* MovieListViewController.m */; };
  139. 9402D5AAA95193CE70739597D0BE622E /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 337DC53419566E7FC771DE62CF99F6B0 /* MASLayoutConstraint.m */; };
  140. 9500E3D014074F001470D6EBFF460231 /* SVProgressAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 696BD80AD2D0E598BC912C1C71E80704 /* SVProgressAnimatedView.m */; };
  141. 9835BD9F0CC98740477919085DCC81D6 /* YYTextRunDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD59CF8EEBEA3E243785662CA2FBAE7 /* YYTextRunDelegate.m */; };
  142. 988549A36C48743753DD4FB793E0D018 /* YYTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = E3A70E430A65EB9DAF0BD8994EC6F075 /* YYTextView.m */; };
  143. 9962BC0A854280021221A5D4F2917AE4 /* PCSModeList.h in Headers */ = {isa = PBXBuildFile; fileRef = D26B0FB3B3AA94572958C88C41C7FB55 /* PCSModeList.h */; settings = {ATTRIBUTES = (Project, ); }; };
  144. 99E33A9DD7BCA1FCBFEB5CC7C489874F /* PhotoListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B03D0A34A6C4C8370F9A917FCAE421 /* PhotoListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  145. 9AEF36993DA36EA384C2794F81127683 /* PanoramaOrientationView.m in Sources */ = {isa = PBXBuildFile; fileRef = F1F574562E83519685E1499FD4CCAD42 /* PanoramaOrientationView.m */; };
  146. 9B1E7AEF9F2A2445AB16F213DBE0C97C /* YYTextRubyAnnotation.h in Headers */ = {isa = PBXBuildFile; fileRef = 453FC4AC919A14E42EC7F7FDADFEF10C /* YYTextRubyAnnotation.h */; settings = {ATTRIBUTES = (Project, ); }; };
  147. 9C42AC82DD36B5A948D434BC68E5F705 /* YYTextAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B5C8B827F83A437B959D365EBCAD0FF /* YYTextAttribute.m */; };
  148. 9DD3CA64E5A33B53492C6DF08DFF93AA /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */; };
  149. 9FAE2FAF1B199BCFD85DD33C9446E3DD /* OperationNodeAIPanorama.h in Headers */ = {isa = PBXBuildFile; fileRef = 8841542C61D6B28DB383D3DEE9211CF3 /* OperationNodeAIPanorama.h */; settings = {ATTRIBUTES = (Project, ); }; };
  150. A24D51C9DDA7055D9207F4E1A4E8C8B3 /* PCSBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 834B84ECD3BF70F9EE566804C9D3ABFE /* PCSBaseViewController.m */; };
  151. A3EED5B675E5B70762DCEA4484D1DD32 /* DBManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 99D5C16FB2FC618D0F8D12FEF5F87EFE /* DBManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  152. A4047DDD5557F5D36C577F53FC37F589 /* UIButton+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = BA29EEF02EA6C6B11A4D3CE459AFEF1C /* UIButton+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; };
  153. A4A71AC95431D146A49F96DFC1098551 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5297FF5173925AD14037E2972FE1575C /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  154. A4EF72D5F92B9D1BFD38F94C0F9353AD /* NSParagraphStyle+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = 925A4C3E2A374C054C117E27C3C1D7D6 /* NSParagraphStyle+YYText.m */; };
  155. A4F5926C8B7C174795A4E712B40818BB /* PCSButton.h in Headers */ = {isa = PBXBuildFile; fileRef = F96AA13B316FCDDD05D7F5984FE83C2E /* PCSButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
  156. A4FB9BCC0BADD6545BCA0BC764F55B67 /* LenzDataManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AFEC1638AFA63E98315E7E877E9043D /* LenzDataManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  157. A56825C55CC43AC2164B448B6190F763 /* PanoramaOrientationView.h in Headers */ = {isa = PBXBuildFile; fileRef = D9F14E0DD1321D2339A05C60D9A95041 /* PanoramaOrientationView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  158. A6B33365753E3FB81C4D095217E27CDF /* YYTextMagnifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 230AB8ED6A299D9085C2F4F5ECD912A7 /* YYTextMagnifier.h */; settings = {ATTRIBUTES = (Project, ); }; };
  159. A76A5E421BC75DA3FF37ECA7D8C15776 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5679E1BE40D48781EB2D80BD9125159B /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Project, ); }; };
  160. A8584851C94F7410D7C91165CBE35D20 /* YYTextEffectWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F7C7E00CA6BCEC8469AD7C9F112200C /* YYTextEffectWindow.m */; };
  161. A92AA1B9BB6390AB86B6413B3A8A88CC /* MovieListCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = ED574C07AC0262FD70066041F90EFFFD /* MovieListCellModel.m */; };
  162. AB1C71721E3F29910AEF8BB9DF228954 /* YYTextContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = E83DD7792E6E4BD1EE4F7A59F21187FD /* YYTextContainerView.m */; };
  163. AC6B9EF28746B8901142DD8419FF44E0 /* PCSTools.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DEA2C1DC9C31B89E9B8385317563A70 /* PCSTools.h */; settings = {ATTRIBUTES = (Project, ); }; };
  164. ACA6E96B3FC57BC074B759897E0FC15D /* TimerLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 10ED3E885569F0ADA5C6D3DFF0824810 /* TimerLabel.m */; };
  165. AD0ED8A23D28A11012C13397BA1D09A7 /* SVProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 150A3C4B092EFF5C5CDA39529434886D /* SVProgressHUD-dummy.m */; };
  166. AFCF29097B8EA55F399208D7642298F3 /* PanoramaGuideView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C4CBCA4D29B03564BBDBC5F5C01D93C /* PanoramaGuideView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  167. B118B5AB61E2169C00C6001185FE03FE /* moire_mobilenetv2_79.tflite in Resources */ = {isa = PBXBuildFile; fileRef = 2136F17FD7A18281A6A63BACBB7B5DA2 /* moire_mobilenetv2_79.tflite */; };
  168. B38297872C05EF7F3335A262EEC3FB1D /* PCSBaseViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E175FD1A53388F3D8247FA6961EA7668 /* PCSBaseViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  169. B3FFCFD840E2AEE76BAC47A84F274B28 /* SDKParameters.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BA156318A4E03F2312B912BD01AC303 /* SDKParameters.m */; };
  170. B4D60EAEA2512C44C72FD54441C6C15C /* YYTextAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 5100BB2C21C348957D675E5E8E8AFC23 /* YYTextAttribute.h */; settings = {ATTRIBUTES = (Project, ); }; };
  171. B5DEC04ABA0617E937918AF345E611EA /* UIButton+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = FCE2E9F70149411A7CEAB3500B27728E /* UIButton+Layout.m */; };
  172. B620BC317F7569737F8464565713133B /* YYTextTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 567009CE78A0EAB5467FAB5FBFF54EF1 /* YYTextTransaction.m */; };
  173. B64E0B389A85E1625E23E3AA98DC0005 /* PhotoCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 24EDCA6C907B565CFCA6F153DACA1C08 /* PhotoCollectionViewCell.xib */; };
  174. B7C5DD68F83710CB71471C8BFA4C0EBB /* YYTextRunDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 185CAD498BBA3913B8BE4A56E086F406 /* YYTextRunDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
  175. BD9B5FBD5EFDB50E07624E153C262283 /* VC.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5D0C3D7BE987A431121D400E808D3A5B /* VC.storyboard */; };
  176. BF498FA11AE3EACC30C4B8E5CCFDAB90 /* PCSButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 8111B32B635DCD399351FDD47A65EFB1 /* PCSButton.m */; };
  177. C000CDC3A8FF69AABFF235DAC9269EAF /* Renderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1940AFAFFCD2AD451F5C94F7120F4529 /* Renderer.m */; };
  178. C0B940B2CDE1CB5CEF3752720BCF4314 /* UIColor+JKAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F5CFD310DE3E3F4309E4692E5FDC2CC /* UIColor+JKAdd.h */; settings = {ATTRIBUTES = (Project, ); }; };
  179. C4C8590716111199B7AED48DF3FD1165 /* YYTextWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DCA23D47376CDDDCB02F34624EC3328 /* YYTextWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; };
  180. C688AA37EE739D61560E2B86D64ACC51 /* UIPasteboard+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = E1A4A10D45532A36D91AB25E923BCE55 /* UIPasteboard+YYText.m */; };
  181. C690F7D6ACD090EC597507C9BF8C96D3 /* Shaders.metal in Sources */ = {isa = PBXBuildFile; fileRef = F586AE2DD1FB03ED19CD3340751A6076 /* Shaders.metal */; };
  182. C7D18935F2CFB0B0525CAEFC4610C6AE /* UIView+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = 60D974875E35028BFB587AC3574BEC00 /* UIView+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  183. C89F708DF6D8456EBE5DA2D2E291BC8A /* PanoramaGuideView.m in Sources */ = {isa = PBXBuildFile; fileRef = 642B6533196B118EC2A42532AAB9F790 /* PanoramaGuideView.m */; };
  184. C8EEE774E035293D0326E733FBCB8EC8 /* YYTextLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 44661AF21CDB4677BF788BD75ACB86E8 /* YYTextLayout.m */; };
  185. C966139CE4D69A2E221EFFC1E475BA70 /* PCSRoundButton.m in Sources */ = {isa = PBXBuildFile; fileRef = BEF78E2843E079623DF49791E96D80C7 /* PCSRoundButton.m */; };
  186. C9D2A74D78D033FB1869E3E2C474A853 /* PhotoCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B7AB4AC08440486709D731A76D4922B1 /* PhotoCollectionViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
  187. CA98C2A3810D3F5C4E6D4B7BA03E1E62 /* YYTextSelectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 75C28A6CE6DD09D0C90B842258501DCE /* YYTextSelectionView.m */; };
  188. D0240C120E93A9A3EF0AF8D977F4B9F7 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = FD729596A07430FFF4D8DBD49F18B935 /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  189. D0DC343DF898D9DA5386B2364B92110E /* AlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = B25E0B74E5939E2E46DA3E98F4247061 /* AlertView.m */; };
  190. D37E7CD8B01422BC301EE7B1D8525260 /* UIImage+ext.h in Headers */ = {isa = PBXBuildFile; fileRef = 35712E9585B95297D6815A5724533055 /* UIImage+ext.h */; settings = {ATTRIBUTES = (Project, ); }; };
  191. D3D875F034EA672BEFA8CAE5E50C1D68 /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = F399DC89064A26DEE47CA1B9B31C3F60 /* MASViewConstraint.m */; };
  192. D60F1EAD0E09B0ED80A7E9631E8B13E0 /* YYTextContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F0D684B0FCFC439535A5896507EB868 /* YYTextContainerView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  193. D74BEE5DE0586E6AA1B341A75F5384CF /* SVProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E22208BA1E8475055B90D807D8461DB /* SVProgressHUD.h */; settings = {ATTRIBUTES = (Project, ); }; };
  194. D8739CDE4FB8D28DE29E3B8C2B1C64BC /* CameraManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA5F0F34AD32861B4BC13AED5EE46AA1 /* CameraManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  195. D87CEA68717BA52E529D717C9DFB975D /* OperationNodeProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 92503338E6D82D9E44D6E98E78516315 /* OperationNodeProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; };
  196. D8D33FC10F5A2BF9DB0339F2A8FCE329 /* LenzDataManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C3579EEF69634228A8DE81F027DAB926 /* LenzDataManager.m */; };
  197. D9273A532E144D095BEA616052B474B9 /* OperationNodeMultiple.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C06388C4DC40676457C58BE9BB087CF /* OperationNodeMultiple.h */; settings = {ATTRIBUTES = (Project, ); }; };
  198. DA0C9838D939D960483A0D1EA4EE4FAF /* YYTextUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = E0BC2924B100AC445EEFFC7134D84951 /* YYTextUtilities.m */; };
  199. DA62FD788B98F91E03E3C4D7DFEFB329 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = A767AF5987619CA8337AB90476FC7A8B /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Project, ); }; };
  200. DAAC402C6E33313B45C8CF47004AD879 /* OperationNodeAIPanorama.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ACF3FDF300C843E85F806D911FBBD30 /* OperationNodeAIPanorama.m */; };
  201. DB28DEA5C89B3F178C446B9BF5562102 /* AlbumCounterLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B006FE08A4545A176E9415519C4812B /* AlbumCounterLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  202. DB4BA808523D6374E92D1E4223FF775D /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = CFD7DA366C309EF390A99E5C79028444 /* View+MASAdditions.m */; };
  203. DB7BC0757DFC6D9D66ACEFE8B218F6FC /* LenzSDKConstant.h in Headers */ = {isa = PBXBuildFile; fileRef = E13A7F3DB10BF5228E0EFAFA7E97E7A0 /* LenzSDKConstant.h */; settings = {ATTRIBUTES = (Project, ); }; };
  204. DC46ABD9C0AA1F6B23E8F10F4B03063D /* QuitMultipleModeAlertViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = A98A6874AF478874BC5AD38B0EEC575F /* QuitMultipleModeAlertViewController.xib */; };
  205. DCC02118BBA9787C005B87C69A9A84FB /* YYText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8874ECCD2F100A4073541AF616CD959 /* YYText-dummy.m */; };
  206. DD22269997F82307B4FFFD2E8A0DCEEE /* SVProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C54896DA6101D4274319E355FCC702C /* SVProgressHUD.m */; };
  207. DD251C162F5079C04ECA0EEEFC4FDF76 /* VerticalButton.m in Sources */ = {isa = PBXBuildFile; fileRef = ECF16AD4550E44A71FF0CCCFE0A2135B /* VerticalButton.m */; };
  208. DF11EEE36D8E8ECB8A102626EBAEB4D4 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F7B049C02D3205B3F0FC2A7C47FB8A /* MASConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  209. E16EEBCA03B54B544EDC39027C5BA0FC /* MoviePlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C1100ACDC0A5DDECABD3C889A867223 /* MoviePlayerViewController.m */; };
  210. E1EAA5CAA13B421FC1BFEE8A741D4189 /* YYTextEffectWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = BDDCB1C7F8328C04E5BD1FE3F2C25114 /* YYTextEffectWindow.h */; settings = {ATTRIBUTES = (Project, ); }; };
  211. E32AB08E07650090B804130EC48B9BB1 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA2651DCC2E01B791217BA3135411FB /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
  212. E37AE3A325DEFC71637496C52ACD1936 /* Renderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 76B07E03B78EEC0C08320D0078A920DF /* Renderer.h */; settings = {ATTRIBUTES = (Project, ); }; };
  213. E49B464C18CFCD4F3BB43A596712DA39 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E9260E3C367D8AF0C0D9E43A00ACE951 /* NSLayoutConstraint+MASDebugAdditions.m */; };
  214. E60485A5626CDB7B3AC9D1FA60544174 /* PhotoListCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8543A6A6CAF60FBCEEAF8BA85AD2BFEC /* PhotoListCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  215. E98435255607264A1544DD2689D8FF4E /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 75A1EF02C8646996F4BE7781491CFFA8 /* NSArray+MASAdditions.m */; };
  216. EA2B31A15E2FD0137B67863504E87A56 /* YYTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 26F858E75731812FA2CFFA0C6AC1A2A8 /* YYTextView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  217. EAAA980D69009418E76595C778E5AC74 /* UIView+JKAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 41170107A2FDBF1229F0526276F6ECF5 /* UIView+JKAdd.h */; settings = {ATTRIBUTES = (Project, ); }; };
  218. EAB02DF3E96F9785F41A5500AE9231CE /* BaseViewTapGestureDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7189B9B5B46972A794BBD7DA208D7B29 /* BaseViewTapGestureDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
  219. ECD1E36F2AEDFE68EAC886A26F2B845E /* LenzSDK-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C90D457F0567CE408A5CEABA3729CBAE /* LenzSDK-dummy.m */; };
  220. ECF173B98738BC2218D11D27EEDA565E /* YYTextLine.m in Sources */ = {isa = PBXBuildFile; fileRef = 17612549EC07EF4D5BA8AEA7628F954F /* YYTextLine.m */; };
  221. ED5D2756D90E118759B27B394E9BA40E /* PreviewSingleViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7612CDA74861A83401A33AFF22CBBE9D /* PreviewSingleViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  222. ED94ACCAACE2B5F792A1BE295099C1B1 /* UIImage+name.m in Sources */ = {isa = PBXBuildFile; fileRef = C32BA2A28074C92B04A25647565BDFF9 /* UIImage+name.m */; };
  223. EEF4EFB15583307EFE5315F41D0FCA63 /* cpp-headers.mm in Sources */ = {isa = PBXBuildFile; fileRef = EBB9426222A88CE22FFD44A6DC99F0E1 /* cpp-headers.mm */; };
  224. EF243CAD47B649A174FC48701A24BFAB /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = CCC2C690CC362F11F7628C08EB887F0D /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  225. F085F277FB366D548502D3F71267B7CF /* QuitMultipleModeAlertViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = A98A6874AF478874BC5AD38B0EEC575F /* QuitMultipleModeAlertViewController.xib */; };
  226. F0D66C62D35CAF4B84F0610BAB99E2F7 /* AlertView.h in Headers */ = {isa = PBXBuildFile; fileRef = DB1D86006E8DB29B9EC999D91F0E0F10 /* AlertView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  227. F1AD74AA99C7ADAFFBF6228E99F377E9 /* UIView+JKAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 19E6F84B2A0BD0B98160C9D203A66A14 /* UIView+JKAdd.m */; };
  228. F25B552B4ABDAA9110FDBFA050BDA5DC /* Localizable.strings in Sources */ = {isa = PBXBuildFile; fileRef = 98F6633F7645381FF0289CA10AC9802E /* Localizable.strings */; };
  229. F2A43A8784342F88513E78C7784ECE3A /* OperationNodePanorama.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FA033AD5AB0361B939E7C93DA61D4E7 /* OperationNodePanorama.h */; settings = {ATTRIBUTES = (Project, ); }; };
  230. F2C2F93768E230384361F403453A380D /* VC.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = 5D0C3D7BE987A431121D400E808D3A5B /* VC.storyboard */; };
  231. F39E7931365010946F6DBFB36B4B2EB5 /* OperationNodeMovie.m in Sources */ = {isa = PBXBuildFile; fileRef = 8792C14B698CBB0A6E3114CBD5FCC4E2 /* OperationNodeMovie.m */; };
  232. F5C006B2A7B0381FD2544A519A8BB653 /* NSString+Localization.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C6F483B5218380C5EBE42B16514E1F8 /* NSString+Localization.h */; settings = {ATTRIBUTES = (Project, ); }; };
  233. F5D086A3E8F39A21E5A535FD3EF1E033 /* DBManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 001A5F8370E76AE3CF69DE5CD54BCB78 /* DBManager.m */; };
  234. FBC8702390126618DAFEA0C34F0A633E /* NSAttributedString+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = D08085210D8BF3F57298C44F1A85B3AB /* NSAttributedString+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
  235. FE28B81832D825805108C9131B8310AA /* PCSPreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3007D1F66DCAE15BF3C90FF9AFB97502 /* PCSPreviewViewController.m */; };
  236. /* End PBXBuildFile section */
  237. /* Begin PBXContainerItemProxy section */
  238. 0F37F87CAD55CF1327916C0B41F8E6AA /* PBXContainerItemProxy */ = {
  239. isa = PBXContainerItemProxy;
  240. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  241. proxyType = 1;
  242. remoteGlobalIDString = 22955C745E4D0669DBEFF1F1997E3D7E;
  243. remoteInfo = LenzSDK;
  244. };
  245. 14BD6CB410BCEBF0C8F05A0834AAFBD5 /* PBXContainerItemProxy */ = {
  246. isa = PBXContainerItemProxy;
  247. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  248. proxyType = 1;
  249. remoteGlobalIDString = A2620F0B8F03AA967AF4B9A85EB8DF00;
  250. remoteInfo = TensorFlowLite;
  251. };
  252. 2679C7739BB2F01090AE1403DE32E0A7 /* PBXContainerItemProxy */ = {
  253. isa = PBXContainerItemProxy;
  254. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  255. proxyType = 1;
  256. remoteGlobalIDString = 6F5C17E80BD1B7F60A33F79692330A57;
  257. remoteInfo = YYText;
  258. };
  259. 61F0F3737B0825E57379D196F67AEAFF /* PBXContainerItemProxy */ = {
  260. isa = PBXContainerItemProxy;
  261. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  262. proxyType = 1;
  263. remoteGlobalIDString = 1C8D67D8B72D6BA42CCEDB648537A340;
  264. remoteInfo = SVProgressHUD;
  265. };
  266. 7EC7C279130D3AD630925C04F22E4664 /* PBXContainerItemProxy */ = {
  267. isa = PBXContainerItemProxy;
  268. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  269. proxyType = 1;
  270. remoteGlobalIDString = A2620F0B8F03AA967AF4B9A85EB8DF00;
  271. remoteInfo = TensorFlowLite;
  272. };
  273. 8D593E22E2C42DB887C2C0CFFFAAA437 /* PBXContainerItemProxy */ = {
  274. isa = PBXContainerItemProxy;
  275. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  276. proxyType = 1;
  277. remoteGlobalIDString = 1C8D67D8B72D6BA42CCEDB648537A340;
  278. remoteInfo = SVProgressHUD;
  279. };
  280. B30991FA22D816FB193BDB87DF6DAA14 /* PBXContainerItemProxy */ = {
  281. isa = PBXContainerItemProxy;
  282. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  283. proxyType = 1;
  284. remoteGlobalIDString = E7EBC84E7AFBA5D0740969B92CA58D87;
  285. remoteInfo = "LenzSDK-LenzCameraNativeModuleForRN";
  286. };
  287. C743F33DAD15DD387ADACA20236C5A46 /* PBXContainerItemProxy */ = {
  288. isa = PBXContainerItemProxy;
  289. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  290. proxyType = 1;
  291. remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;
  292. remoteInfo = Masonry;
  293. };
  294. DCA9FDEF49E484AF309EF97BFE437B29 /* PBXContainerItemProxy */ = {
  295. isa = PBXContainerItemProxy;
  296. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  297. proxyType = 1;
  298. remoteGlobalIDString = 6F5C17E80BD1B7F60A33F79692330A57;
  299. remoteInfo = YYText;
  300. };
  301. E8B3C1A00FD16172DADC67FCE11827D2 /* PBXContainerItemProxy */ = {
  302. isa = PBXContainerItemProxy;
  303. containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  304. proxyType = 1;
  305. remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;
  306. remoteInfo = Masonry;
  307. };
  308. /* End PBXContainerItemProxy section */
  309. /* Begin PBXFileReference section */
  310. 001A5F8370E76AE3CF69DE5CD54BCB78 /* DBManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DBManager.m; sourceTree = "<group>"; };
  311. 00465AB67C1F1B380226E17A7CE23581 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
  312. 023CA2B4CB726176D7130B2CDD464FD7 /* PCSSessionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSSessionWrapper.h; sourceTree = "<group>"; };
  313. 02C3FDB9B6055C3E98B71F9F40F293DB /* opencv2.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = opencv2.framework; sourceTree = "<group>"; };
  314. 030858582360BFE22F7D95092D54F7BD /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = "<group>"; };
  315. 03580EB58D7084008ED15AFEFDDF44C5 /* YYTextInput.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextInput.m; path = YYText/Component/YYTextInput.m; sourceTree = "<group>"; };
  316. 045C5643ECC38689ED9F9C8C770C5E31 /* LenzHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzHeader.h; sourceTree = "<group>"; };
  317. 04C0ECDA1655815A1B7E06604643BFF7 /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = "<group>"; };
  318. 059F71D6CF20450C126B81E72F666ADC /* YYTextParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextParser.m; path = YYText/String/YYTextParser.m; sourceTree = "<group>"; };
  319. 0994AB16F94688C044E520A3CD0008CC /* YYTextLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextLayout.h; path = YYText/Component/YYTextLayout.h; sourceTree = "<group>"; };
  320. 09C630CEDE852939E93E2C127B2582EC /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = "<group>"; };
  321. 0B92E667049899392FBCBA6FC12CEBDB /* PhotoAlbumListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoAlbumListViewController.m; sourceTree = "<group>"; };
  322. 0BA156318A4E03F2312B912BD01AC303 /* SDKParameters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SDKParameters.m; sourceTree = "<group>"; };
  323. 0BCE3AE0EB3099A374D3D8E3C8AAA770 /* YYTextArchiver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextArchiver.m; path = YYText/String/YYTextArchiver.m; sourceTree = "<group>"; };
  324. 0C06388C4DC40676457C58BE9BB087CF /* OperationNodeMultiple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeMultiple.h; sourceTree = "<group>"; };
  325. 0C2B063ACAB139531B3A172A1DC0FA50 /* SVProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-prefix.pch"; sourceTree = "<group>"; };
  326. 0D7887C1F6773A568EBDB5D24DBBACBD /* PhotoCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoCell.h; sourceTree = "<group>"; };
  327. 0F37F3A6741614EF4393CEC045E9472B /* OperationNodeSingle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeSingle.m; sourceTree = "<group>"; };
  328. 10ED3E885569F0ADA5C6D3DFF0824810 /* TimerLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TimerLabel.m; sourceTree = "<group>"; };
  329. 114501B95B52E239D7469CF4E409507E /* YYTextRubyAnnotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextRubyAnnotation.m; path = YYText/String/YYTextRubyAnnotation.m; sourceTree = "<group>"; };
  330. 13AA756254EF152781EA2DCEE497DA85 /* YYTextAsyncLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextAsyncLayer.m; path = YYText/Utility/YYTextAsyncLayer.m; sourceTree = "<group>"; };
  331. 150A3C4B092EFF5C5CDA39529434886D /* SVProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SVProgressHUD-dummy.m"; sourceTree = "<group>"; };
  332. 160B990996DD21D6E64E455E744557C6 /* SDKParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SDKParameters.h; sourceTree = "<group>"; };
  333. 16A08F01E970853EA562E6581A05F96A /* PhotoCollectionViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoCollectionViewCell.m; sourceTree = "<group>"; };
  334. 17612549EC07EF4D5BA8AEA7628F954F /* YYTextLine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextLine.m; path = YYText/Component/YYTextLine.m; sourceTree = "<group>"; };
  335. 185252B13C095F4158BB86519A54C9EA /* AlbumCounterLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AlbumCounterLabel.m; sourceTree = "<group>"; };
  336. 185CAD498BBA3913B8BE4A56E086F406 /* YYTextRunDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextRunDelegate.h; path = YYText/String/YYTextRunDelegate.h; sourceTree = "<group>"; };
  337. 1940AFAFFCD2AD451F5C94F7120F4529 /* Renderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Renderer.m; sourceTree = "<group>"; };
  338. 19B60C5ED970E0BD7B87C59D44EF8103 /* YYTextWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextWeakProxy.m; path = YYText/Utility/YYTextWeakProxy.m; sourceTree = "<group>"; };
  339. 19E6F84B2A0BD0B98160C9D203A66A14 /* UIView+JKAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+JKAdd.m"; sourceTree = "<group>"; };
  340. 1A3793D77A5DF02CCECD90108FEF8CA3 /* UIImage+name.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImage+name.h"; sourceTree = "<group>"; };
  341. 1A400F0E8D0990EE2ECB8EF1C949F50A /* PaddingLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PaddingLabel.m; sourceTree = "<group>"; };
  342. 1AC75595A616CB1A10F74F9B85C9A817 /* YYText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YYText-prefix.pch"; sourceTree = "<group>"; };
  343. 1AEB047D2DA8375A9CC2B2C6F33B36AB /* ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist"; sourceTree = "<group>"; };
  344. 1B006FE08A4545A176E9415519C4812B /* AlbumCounterLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AlbumCounterLabel.h; sourceTree = "<group>"; };
  345. 1B8355626A66BC661E37E399FC319781 /* YYTextKeyboardManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextKeyboardManager.h; path = YYText/Component/YYTextKeyboardManager.h; sourceTree = "<group>"; };
  346. 1E22208BA1E8475055B90D807D8461DB /* SVProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressHUD.h; path = SVProgressHUD/SVProgressHUD.h; sourceTree = "<group>"; };
  347. 1E6AF7755455F924245F4D6A2C617747 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
  348. 1F19139A77CA316ACCEF6D7B18F9414C /* Pods-LenzCameraNativeModuleForRN_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LenzCameraNativeModuleForRN_Example-resources.sh"; sourceTree = "<group>"; };
  349. 1FA033AD5AB0361B939E7C93DA61D4E7 /* OperationNodePanorama.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodePanorama.h; sourceTree = "<group>"; };
  350. 1FB8EFDA0A02A82868E8E02DD5B6E34E /* MovieListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MovieListViewController.h; sourceTree = "<group>"; };
  351. 1FFED36A657123030ABB700256D73F15 /* Masonry */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Masonry; path = libMasonry.a; sourceTree = BUILT_PRODUCTS_DIR; };
  352. 2002BF941497DCE4DC551650ED008F9E /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = "<group>"; };
  353. 2136F17FD7A18281A6A63BACBB7B5DA2 /* moire_mobilenetv2_79.tflite */ = {isa = PBXFileReference; includeInIndex = 1; path = moire_mobilenetv2_79.tflite; sourceTree = "<group>"; };
  354. 21B8E03137BCF9F54F9CFE4277F7BEB7 /* QuitMultipleModeAlertViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = QuitMultipleModeAlertViewController.h; sourceTree = "<group>"; };
  355. 21CABE754D79776A6CA0048575C17125 /* NSAttributedString+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+YYText.m"; path = "YYText/Utility/NSAttributedString+YYText.m"; sourceTree = "<group>"; };
  356. 230AB8ED6A299D9085C2F4F5ECD912A7 /* YYTextMagnifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextMagnifier.h; path = YYText/Component/YYTextMagnifier.h; sourceTree = "<group>"; };
  357. 236AF217BE16A74042B90DBB675F6FD0 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = "<group>"; };
  358. 236BD5F0C68C18F6835B9292DCE7BB80 /* YYTextSelectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextSelectionView.h; path = YYText/Component/YYTextSelectionView.h; sourceTree = "<group>"; };
  359. 23C222F8741C6545FA2E78D3B6885D45 /* TensorFlowLite.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TensorFlowLite.release.xcconfig; sourceTree = "<group>"; };
  360. 24EDCA6C907B565CFCA6F153DACA1C08 /* PhotoCollectionViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = PhotoCollectionViewCell.xib; sourceTree = "<group>"; };
  361. 26F858E75731812FA2CFFA0C6AC1A2A8 /* YYTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextView.h; path = YYText/YYTextView.h; sourceTree = "<group>"; };
  362. 2AFEC1638AFA63E98315E7E877E9043D /* LenzDataManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzDataManager.h; sourceTree = "<group>"; };
  363. 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-LenzCameraNativeModuleForRN_Example"; path = "libPods-LenzCameraNativeModuleForRN_Example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  364. 2D753BEB00E24AD721F3C33B73FA7DFD /* UIView+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+YYText.m"; path = "YYText/Utility/UIView+YYText.m"; sourceTree = "<group>"; };
  365. 2F5CFD310DE3E3F4309E4692E5FDC2CC /* UIColor+JKAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIColor+JKAdd.h"; sourceTree = "<group>"; };
  366. 3007D1F66DCAE15BF3C90FF9AFB97502 /* PCSPreviewViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSPreviewViewController.m; sourceTree = "<group>"; };
  367. 312CD5C33A8FBAF4812468B3F2EC2499 /* LenzTensorFlowSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = LenzTensorFlowSDK.framework; sourceTree = "<group>"; };
  368. 337DC53419566E7FC771DE62CF99F6B0 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = "<group>"; };
  369. 337FCC62499B3AEB5142B24F167EEF38 /* LenzSDK-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LenzSDK-prefix.pch"; sourceTree = "<group>"; };
  370. 3383F6C3A5BD3B919BDA3BC6011E86E5 /* PCSTools.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSTools.m; sourceTree = "<group>"; };
  371. 35712E9585B95297D6815A5724533055 /* UIImage+ext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImage+ext.h"; sourceTree = "<group>"; };
  372. 3769A2F99954C35CEF2D418F86780330 /* OperationNodeSingle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeSingle.h; sourceTree = "<group>"; };
  373. 384498CEF984C255A6393C0AF5889DC5 /* SVRadialGradientLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVRadialGradientLayer.m; path = SVProgressHUD/SVRadialGradientLayer.m; sourceTree = "<group>"; };
  374. 38BE671C7B48B2C725FE5EB9E63666BC /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = "<group>"; };
  375. 3B1C9EB4810F130F5B301709B86D03EB /* LenzSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LenzSDK.debug.xcconfig; sourceTree = "<group>"; };
  376. 3DCA23D47376CDDDCB02F34624EC3328 /* YYTextWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextWeakProxy.h; path = YYText/Utility/YYTextWeakProxy.h; sourceTree = "<group>"; };
  377. 3DEFF5635EA7D20945B2F48768B2AAA4 /* Localizable.strings */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.strings; name = Localizable.strings; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  378. 41170107A2FDBF1229F0526276F6ECF5 /* UIView+JKAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+JKAdd.h"; sourceTree = "<group>"; };
  379. 42AFC0AEF4E9BAFC0B7B3D707FFFA9EC /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = "<group>"; };
  380. 44661AF21CDB4677BF788BD75ACB86E8 /* YYTextLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextLayout.m; path = YYText/Component/YYTextLayout.m; sourceTree = "<group>"; };
  381. 453FC4AC919A14E42EC7F7FDADFEF10C /* YYTextRubyAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextRubyAnnotation.h; path = YYText/String/YYTextRubyAnnotation.h; sourceTree = "<group>"; };
  382. 459CD2883A08E917967B202825AE1427 /* AVCapturePhotoOutput+VersionAdaptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AVCapturePhotoOutput+VersionAdaptor.h"; sourceTree = "<group>"; };
  383. 46C5B9E72B8C325BE99EEB55A9C80A7A /* AVCapturePhotoOutput+VersionAdaptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AVCapturePhotoOutput+VersionAdaptor.m"; sourceTree = "<group>"; };
  384. 46C88FEA97AD035600FD104BF0FB899F /* ImageCacheLRU.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ImageCacheLRU.h; sourceTree = "<group>"; };
  385. 484E9323B660E1E311FCC858BDAD79F6 /* CameraManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CameraManager.m; sourceTree = "<group>"; };
  386. 48611A8832F58CED003645A0C8EDA810 /* LenzCachedResourceModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzCachedResourceModel.m; sourceTree = "<group>"; };
  387. 4BAC658FD230DEDCE8BF7B9F3067EB41 /* PhotoListCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoListCellModel.m; sourceTree = "<group>"; };
  388. 4BD59CF8EEBEA3E243785662CA2FBAE7 /* YYTextRunDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextRunDelegate.m; path = YYText/String/YYTextRunDelegate.m; sourceTree = "<group>"; };
  389. 4C7551E540F421DB883EC45F9B9FD999 /* PreviewSingleViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PreviewSingleViewController.m; sourceTree = "<group>"; };
  390. 4D3F36A7A2E0A0590FC794057DA03E5D /* CameraTextureRenderPass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CameraTextureRenderPass.m; sourceTree = "<group>"; };
  391. 4D8E2E45458645E409B65064F26BE9BC /* SVProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.release.xcconfig; sourceTree = "<group>"; };
  392. 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-LenzCameraNativeModuleForRN_Example-dummy.m"; sourceTree = "<group>"; };
  393. 4DDFA7461FD9FDB9F39907820FE50909 /* MovieListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MovieListViewController.m; sourceTree = "<group>"; };
  394. 4E35876B9CD9492C56A9233E07CF9154 /* YYTextDebugOption.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextDebugOption.h; path = YYText/Component/YYTextDebugOption.h; sourceTree = "<group>"; };
  395. 4E5519F8ACF06D3117C557AC71BBF11A /* YYText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YYText.debug.xcconfig; sourceTree = "<group>"; };
  396. 4F0D684B0FCFC439535A5896507EB868 /* YYTextContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextContainerView.h; path = YYText/Component/YYTextContainerView.h; sourceTree = "<group>"; };
  397. 5100BB2C21C348957D675E5E8E8AFC23 /* YYTextAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextAttribute.h; path = YYText/String/YYTextAttribute.h; sourceTree = "<group>"; };
  398. 526D175D837B13BAA60471FCE7F8F216 /* LenzSDK.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = LenzSDK.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  399. 5297FF5173925AD14037E2972FE1575C /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = "<group>"; };
  400. 53DD05D7B6888C455D77CA8C05CEC207 /* YYTextTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextTransaction.h; path = YYText/Utility/YYTextTransaction.h; sourceTree = "<group>"; };
  401. 567009CE78A0EAB5467FAB5FBFF54EF1 /* YYTextTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextTransaction.m; path = YYText/Utility/YYTextTransaction.m; sourceTree = "<group>"; };
  402. 5679E1BE40D48781EB2D80BD9125159B /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = "<group>"; };
  403. 5ACF3FDF300C843E85F806D911FBBD30 /* OperationNodeAIPanorama.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeAIPanorama.m; sourceTree = "<group>"; };
  404. 5C1100ACDC0A5DDECABD3C889A867223 /* MoviePlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MoviePlayerViewController.m; sourceTree = "<group>"; };
  405. 5C4AEE6F3FAD0B04DCB1E1E351C3CF50 /* PhotoAlbumModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoAlbumModel.h; sourceTree = "<group>"; };
  406. 5C8F0CE63987748F5D5EBB7AC297EB37 /* PaddingLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PaddingLabel.h; sourceTree = "<group>"; };
  407. 5D0C3D7BE987A431121D400E808D3A5B /* VC.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; path = VC.storyboard; sourceTree = "<group>"; };
  408. 6027CA9CC86B70D548CD92E2B7DA6152 /* LenzStitchSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = LenzStitchSDK.framework; sourceTree = "<group>"; };
  409. 60D974875E35028BFB587AC3574BEC00 /* UIView+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+YYText.h"; path = "YYText/Utility/UIView+YYText.h"; sourceTree = "<group>"; };
  410. 642B6533196B118EC2A42532AAB9F790 /* PanoramaGuideView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PanoramaGuideView.m; sourceTree = "<group>"; };
  411. 644952EB048BC8BC0910BB01B0805C4B /* PCSThemeColorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSThemeColorManager.m; sourceTree = "<group>"; };
  412. 64D23F96A249A835012EC76AACF02FA7 /* LenzSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LenzSDK.release.xcconfig; sourceTree = "<group>"; };
  413. 65E6552F443DE1F9C6A71EB124AE43D8 /* VerticalButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = VerticalButton.h; sourceTree = "<group>"; };
  414. 66579CE2B50EB996A4F4583BBB52AAA3 /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = "<group>"; };
  415. 696BD80AD2D0E598BC912C1C71E80704 /* SVProgressAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressAnimatedView.m; path = SVProgressHUD/SVProgressAnimatedView.m; sourceTree = "<group>"; };
  416. 6ABCED1E73226E2ABC9BE8BE8D03BF0D /* SVRadialGradientLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVRadialGradientLayer.h; path = SVProgressHUD/SVRadialGradientLayer.h; sourceTree = "<group>"; };
  417. 6B5C8B827F83A437B959D365EBCAD0FF /* YYTextAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextAttribute.m; path = YYText/String/YYTextAttribute.m; sourceTree = "<group>"; };
  418. 6D62B02E7EF69B17AB7FAC2297364E42 /* PhotoCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoCell.m; sourceTree = "<group>"; };
  419. 6DE30B6B31980946761C9D5293B4941D /* PCSModeList.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSModeList.m; sourceTree = "<group>"; };
  420. 6DEA2C1DC9C31B89E9B8385317563A70 /* PCSTools.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSTools.h; sourceTree = "<group>"; };
  421. 71762A728913EB440C97D3616D291AF3 /* YYText */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = YYText; path = libYYText.a; sourceTree = BUILT_PRODUCTS_DIR; };
  422. 7189B9B5B46972A794BBD7DA208D7B29 /* BaseViewTapGestureDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BaseViewTapGestureDelegate.h; sourceTree = "<group>"; };
  423. 71A9C32F11A74240787A960ACBA0D696 /* SVProgressAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressAnimatedView.h; path = SVProgressHUD/SVProgressAnimatedView.h; sourceTree = "<group>"; };
  424. 75A1EF02C8646996F4BE7781491CFFA8 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = "<group>"; };
  425. 75C28A6CE6DD09D0C90B842258501DCE /* YYTextSelectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextSelectionView.m; path = YYText/Component/YYTextSelectionView.m; sourceTree = "<group>"; };
  426. 7612CDA74861A83401A33AFF22CBBE9D /* PreviewSingleViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PreviewSingleViewController.h; sourceTree = "<group>"; };
  427. 76B07E03B78EEC0C08320D0078A920DF /* Renderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Renderer.h; sourceTree = "<group>"; };
  428. 77429CB6A8EAF380C3CB43D3A6254D3D /* OperationNodePanorama.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodePanorama.m; sourceTree = "<group>"; };
  429. 79B3ECE71D1D817E41F35D9B5EDD8823 /* SVProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.debug.xcconfig; sourceTree = "<group>"; };
  430. 7C6F483B5218380C5EBE42B16514E1F8 /* NSString+Localization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSString+Localization.h"; sourceTree = "<group>"; };
  431. 807AC0FC0795E04889BB0E08A81E043D /* cpp-headers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "cpp-headers.h"; sourceTree = "<group>"; };
  432. 8111B32B635DCD399351FDD47A65EFB1 /* PCSButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSButton.m; sourceTree = "<group>"; };
  433. 81138B07CE5075F5BB6EE8861507C864 /* OperationNodeVideoBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeVideoBase.h; sourceTree = "<group>"; };
  434. 813E120135C3E3B5C50FB70609B4A8D3 /* UIImage+ext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ext.m"; sourceTree = "<group>"; };
  435. 825C6FB76FE50D59AB05CDE39C679926 /* TensorFlowWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TensorFlowWrapper.m; sourceTree = "<group>"; };
  436. 833F599750CCF740A20A786D96528502 /* SVIndefiniteAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVIndefiniteAnimatedView.h; path = SVProgressHUD/SVIndefiniteAnimatedView.h; sourceTree = "<group>"; };
  437. 834B84ECD3BF70F9EE566804C9D3ABFE /* PCSBaseViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSBaseViewController.m; sourceTree = "<group>"; };
  438. 83DF0E9265D9C7C9A64D13D326C24C40 /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = "<group>"; };
  439. 8543A6A6CAF60FBCEEAF8BA85AD2BFEC /* PhotoListCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoListCellModel.h; sourceTree = "<group>"; };
  440. 876E7EF23CC2D8D5153FB1D94CFF7622 /* YYTextDebugOption.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextDebugOption.m; path = YYText/Component/YYTextDebugOption.m; sourceTree = "<group>"; };
  441. 8792C14B698CBB0A6E3114CBD5FCC4E2 /* OperationNodeMovie.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeMovie.m; sourceTree = "<group>"; };
  442. 8841542C61D6B28DB383D3DEE9211CF3 /* OperationNodeAIPanorama.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeAIPanorama.h; sourceTree = "<group>"; };
  443. 8B4DC4759B1098548FAA7403C6442854 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.plist"; sourceTree = "<group>"; };
  444. 8CD9F5FAE8AA1C9DC33B67DCE4D06112 /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = "<group>"; };
  445. 8EFC60452ECAED9A2848F17EFB6D745B /* PCSSDF-prefix-header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "PCSSDF-prefix-header.h"; path = "LenzCameraNativeModuleForRN/Classes/PCSSDF-prefix-header.h"; sourceTree = "<group>"; };
  446. 8F7C7E00CA6BCEC8469AD7C9F112200C /* YYTextEffectWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextEffectWindow.m; path = YYText/Component/YYTextEffectWindow.m; sourceTree = "<group>"; };
  447. 915DFC2B3727DF36D704655395005955 /* YYTextLine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextLine.h; path = YYText/Component/YYTextLine.h; sourceTree = "<group>"; };
  448. 91CF64F2FBA4596C564CC9365CC785DC /* tensorflow_lite.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = tensorflow_lite.framework; path = Frameworks/tensorflow_lite.framework; sourceTree = "<group>"; };
  449. 92503338E6D82D9E44D6E98E78516315 /* OperationNodeProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeProtocol.h; sourceTree = "<group>"; };
  450. 925A4C3E2A374C054C117E27C3C1D7D6 /* NSParagraphStyle+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSParagraphStyle+YYText.m"; path = "YYText/Utility/NSParagraphStyle+YYText.m"; sourceTree = "<group>"; };
  451. 96A8580B6102817508C5CE6FCE48459B /* LenzCameraNativeModuleForRN.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCameraNativeModuleForRN.h; sourceTree = "<group>"; };
  452. 985EAF70F969BDAB6658282A9B5C28A8 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = "<group>"; };
  453. 98F6633F7645381FF0289CA10AC9802E /* Localizable.strings */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.strings; name = Localizable.strings; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  454. 99D5C16FB2FC618D0F8D12FEF5F87EFE /* DBManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DBManager.h; sourceTree = "<group>"; };
  455. 9BB15112B40D29902BD44EB63437D817 /* PhotoListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoListViewController.m; sourceTree = "<group>"; };
  456. 9C4CBCA4D29B03564BBDBC5F5C01D93C /* PanoramaGuideView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PanoramaGuideView.h; sourceTree = "<group>"; };
  457. 9C54896DA6101D4274319E355FCC702C /* SVProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressHUD.m; path = SVProgressHUD/SVProgressHUD.m; sourceTree = "<group>"; };
  458. 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  459. A17498484830BD5638E4AAE372DA3F34 /* PCSSessionWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSSessionWrapper.m; sourceTree = "<group>"; };
  460. A2C09018F6FBA2B178C18BE2A35BCC39 /* PCSMotionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSMotionManager.h; sourceTree = "<group>"; };
  461. A316837B0A1BDA3FCB6907F49797C29F /* lenz_stitcher.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; path = lenz_stitcher.a; sourceTree = "<group>"; };
  462. A4C18B2ED0CB87015BA0CC57B8C7157E /* YYTextMagnifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextMagnifier.m; path = YYText/Component/YYTextMagnifier.m; sourceTree = "<group>"; };
  463. A767AF5987619CA8337AB90476FC7A8B /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = "<group>"; };
  464. A8E2B95BAC7DAEE3F8A609F111031712 /* PCSPreviewViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSPreviewViewController.h; sourceTree = "<group>"; };
  465. A8F7B049C02D3205B3F0FC2A7C47FB8A /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = "<group>"; };
  466. A98A6874AF478874BC5AD38B0EEC575F /* QuitMultipleModeAlertViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = QuitMultipleModeAlertViewController.xib; sourceTree = "<group>"; };
  467. AA5F0F34AD32861B4BC13AED5EE46AA1 /* CameraManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CameraManager.h; sourceTree = "<group>"; };
  468. AAA2651DCC2E01B791217BA3135411FB /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = "<group>"; };
  469. AB019ACB40EC1D9EA58DF5C2044FEDA4 /* YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYText.h; path = YYText/YYText.h; sourceTree = "<group>"; };
  470. AB4ED4E5A21F449AB237A6158DE5F976 /* LenzCachedResourceModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCachedResourceModel.h; sourceTree = "<group>"; };
  471. AC59A703058154D497C84656B4AE034E /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = "<group>"; };
  472. ACC7C0BD6430C348FA88862F379F6DA2 /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = "<group>"; };
  473. AD277ABA97D5700D67AE4243F751B01F /* LenzCameraSDK.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCameraSDK.h; sourceTree = "<group>"; };
  474. AE44E80EF6245FE2ED31EEB49A819226 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
  475. AEFB6FD0996C12C9C08BB4FFA1441657 /* YYTextKeyboardManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextKeyboardManager.m; path = YYText/Component/YYTextKeyboardManager.m; sourceTree = "<group>"; };
  476. B25E0B74E5939E2E46DA3E98F4247061 /* AlertView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AlertView.m; sourceTree = "<group>"; };
  477. B2FC930665E4A7CF0D652608F4A5F036 /* YYLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYLabel.m; path = YYText/YYLabel.m; sourceTree = "<group>"; };
  478. B346FFE2FB28E8567ED95CB456A2F8CF /* CollectionViewPlayerCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CollectionViewPlayerCell.h; sourceTree = "<group>"; };
  479. B3FABB1AB4EC151E5C9656A616F69499 /* YYLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYLabel.h; path = YYText/YYLabel.h; sourceTree = "<group>"; };
  480. B5B03D0A34A6C4C8370F9A917FCAE421 /* PhotoListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoListViewController.h; sourceTree = "<group>"; };
  481. B7AB4AC08440486709D731A76D4922B1 /* PhotoCollectionViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoCollectionViewCell.h; sourceTree = "<group>"; };
  482. B8874ECCD2F100A4073541AF616CD959 /* YYText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YYText-dummy.m"; sourceTree = "<group>"; };
  483. B8ED74D62553DA243A77D1F0D1402416 /* CameraTextureRenderPass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CameraTextureRenderPass.h; sourceTree = "<group>"; };
  484. BA29EEF02EA6C6B11A4D3CE459AFEF1C /* UIButton+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIButton+Layout.h"; sourceTree = "<group>"; };
  485. BAE523B549F9C5EA324F14DD4BBCB4EC /* MovieListCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MovieListCellModel.h; sourceTree = "<group>"; };
  486. BCFF22F430B4A88773539F11E8E2B575 /* NSString+Localization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSString+Localization.m"; sourceTree = "<group>"; };
  487. BD9189EC71760D28C686D5F3ABB28539 /* UIPasteboard+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIPasteboard+YYText.h"; path = "YYText/Utility/UIPasteboard+YYText.h"; sourceTree = "<group>"; };
  488. BDA9F250AB98999CB591E8E8EBC94C04 /* LenzCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCommon.h; sourceTree = "<group>"; };
  489. BDAA4B378A2E594E02C3191126E989A7 /* QuitMultipleModeAlertViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = QuitMultipleModeAlertViewController.m; sourceTree = "<group>"; };
  490. BDDCB1C7F8328C04E5BD1FE3F2C25114 /* YYTextEffectWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextEffectWindow.h; path = YYText/Component/YYTextEffectWindow.h; sourceTree = "<group>"; };
  491. BDEA7527A5E638AC420DC55A43D729CD /* PhotoAlbumModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoAlbumModel.m; sourceTree = "<group>"; };
  492. BEF78E2843E079623DF49791E96D80C7 /* PCSRoundButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSRoundButton.m; sourceTree = "<group>"; };
  493. C0931C591BE7B07CE458432E8414A12C /* TimerLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TimerLabel.h; sourceTree = "<group>"; };
  494. C2F62CD50BFD779B6EFD0D09FCAABDDE /* YYTextParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextParser.h; path = YYText/String/YYTextParser.h; sourceTree = "<group>"; };
  495. C32BA2A28074C92B04A25647565BDFF9 /* UIImage+name.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImage+name.m"; sourceTree = "<group>"; };
  496. C3579EEF69634228A8DE81F027DAB926 /* LenzDataManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzDataManager.m; sourceTree = "<group>"; };
  497. C7465AD2ADA3BF7068CBAADEC48297D2 /* UIColor+JKAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JKAdd.m"; sourceTree = "<group>"; };
  498. C7B681F2187F1F5A880627CAB69F5A7C /* YYText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YYText.release.xcconfig; sourceTree = "<group>"; };
  499. C90D457F0567CE408A5CEABA3729CBAE /* LenzSDK-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LenzSDK-dummy.m"; sourceTree = "<group>"; };
  500. CA7659E48BC55B78DC1D9038C1E715FA /* YYTextInput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextInput.h; path = YYText/Component/YYTextInput.h; sourceTree = "<group>"; };
  501. CADF850FF74C89AEA926B09C0E07C8E6 /* MoviePlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MoviePlayerViewController.h; sourceTree = "<group>"; };
  502. CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig"; sourceTree = "<group>"; };
  503. CC221CE8C66884BDEE6D35D15C1A72B3 /* TensorFlowLite.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TensorFlowLite.debug.xcconfig; sourceTree = "<group>"; };
  504. CCC2A2D9BE13B566A864D567615045F6 /* LenzSDK-LenzCameraNativeModuleForRN */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "LenzSDK-LenzCameraNativeModuleForRN"; path = LenzCameraNativeModuleForRN.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
  505. CCC2C690CC362F11F7628C08EB887F0D /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = "<group>"; };
  506. CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = LenzSDK; path = libLenzSDK.a; sourceTree = BUILT_PRODUCTS_DIR; };
  507. CD4D19A957FBFABB2144E0CA18C5EB84 /* OperationNodeMultiple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeMultiple.m; sourceTree = "<group>"; };
  508. CD502849161614DACCEE9E27B93550F2 /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = "<group>"; };
  509. CFD7DA366C309EF390A99E5C79028444 /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = "<group>"; };
  510. D08085210D8BF3F57298C44F1A85B3AB /* NSAttributedString+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+YYText.h"; path = "YYText/Utility/NSAttributedString+YYText.h"; sourceTree = "<group>"; };
  511. D1F049E526F5575B78C34D06EEEA8012 /* assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; path = assets.xcassets; sourceTree = "<group>"; };
  512. D26B0FB3B3AA94572958C88C41C7FB55 /* PCSModeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSModeList.h; sourceTree = "<group>"; };
  513. D59D4935A4D2F844ABA539328825157E /* PCSRoundButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSRoundButton.h; sourceTree = "<group>"; };
  514. D91B38E39EA044E85F6ACE52E9D773A9 /* YYTextArchiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextArchiver.h; path = YYText/String/YYTextArchiver.h; sourceTree = "<group>"; };
  515. D98C5C12F052EAD529EC9EEFE493EFAE /* PhotoCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = PhotoCell.xib; sourceTree = "<group>"; };
  516. D9F14E0DD1321D2339A05C60D9A95041 /* PanoramaOrientationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PanoramaOrientationView.h; sourceTree = "<group>"; };
  517. DAFD9603956A9F8C5BE7FAC749CCFF97 /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = "<group>"; };
  518. DB1D86006E8DB29B9EC999D91F0E0F10 /* AlertView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AlertView.h; sourceTree = "<group>"; };
  519. DD29E953FEFC5715DE8B2B1EC7C73649 /* OperationNodeVideoBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeVideoBase.m; sourceTree = "<group>"; };
  520. DF7346F194B062427E1A91DFFE462DC2 /* TensorFlowWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TensorFlowWrapper.h; sourceTree = "<group>"; };
  521. E0BC2924B100AC445EEFFC7134D84951 /* YYTextUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextUtilities.m; path = YYText/Utility/YYTextUtilities.m; sourceTree = "<group>"; };
  522. E13A7F3DB10BF5228E0EFAFA7E97E7A0 /* LenzSDKConstant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzSDKConstant.h; sourceTree = "<group>"; };
  523. E175FD1A53388F3D8247FA6961EA7668 /* PCSBaseViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSBaseViewController.h; sourceTree = "<group>"; };
  524. E1A4A10D45532A36D91AB25E923BCE55 /* UIPasteboard+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIPasteboard+YYText.m"; path = "YYText/Utility/UIPasteboard+YYText.m"; sourceTree = "<group>"; };
  525. E265302DDF648C95DD5AD1BFA940D191 /* CustomModalViewTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CustomModalViewTransition.h; sourceTree = "<group>"; };
  526. E324CBC5B1CD1D81F9DDBFE9466A1E97 /* BaseViewTapGestureDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BaseViewTapGestureDelegate.m; sourceTree = "<group>"; };
  527. E3A70E430A65EB9DAF0BD8994EC6F075 /* YYTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextView.m; path = YYText/YYTextView.m; sourceTree = "<group>"; };
  528. E52E912FAFF28DB1D50022DCFE3D494A /* PhotoAlbumListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoAlbumListViewController.h; sourceTree = "<group>"; };
  529. E83DD7792E6E4BD1EE4F7A59F21187FD /* YYTextContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextContainerView.m; path = YYText/Component/YYTextContainerView.m; sourceTree = "<group>"; };
  530. E8E4DDD2282B9B833AC55ABFA624EA06 /* LenzCameraSDK.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzCameraSDK.m; sourceTree = "<group>"; };
  531. E9260E3C367D8AF0C0D9E43A00ACE951 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = "<group>"; };
  532. E967728499E5E889E7A7F07BE3FFBA2A /* CollectionViewPlayerCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CollectionViewPlayerCell.m; sourceTree = "<group>"; };
  533. E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = SVProgressHUD; path = libSVProgressHUD.a; sourceTree = BUILT_PRODUCTS_DIR; };
  534. EA45FA6D756C56F8C345F42BD8FCB2E9 /* YYTextAsyncLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextAsyncLayer.h; path = YYText/Utility/YYTextAsyncLayer.h; sourceTree = "<group>"; };
  535. EADB3792F4D552050D74E9418727DB85 /* NSParagraphStyle+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSParagraphStyle+YYText.h"; path = "YYText/Utility/NSParagraphStyle+YYText.h"; sourceTree = "<group>"; };
  536. EBB9426222A88CE22FFD44A6DC99F0E1 /* cpp-headers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = "cpp-headers.mm"; sourceTree = "<group>"; };
  537. ECF16AD4550E44A71FF0CCCFE0A2135B /* VerticalButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = VerticalButton.m; sourceTree = "<group>"; };
  538. ED574C07AC0262FD70066041F90EFFFD /* MovieListCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MovieListCellModel.m; sourceTree = "<group>"; };
  539. EFA78D74D65C7A2CFC756FE18A5145D0 /* ImageCacheLRU.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ImageCacheLRU.m; sourceTree = "<group>"; };
  540. F12F036B9077FA7440B2EC3BA01936F1 /* PCSThemeColorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSThemeColorManager.h; sourceTree = "<group>"; };
  541. F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig"; sourceTree = "<group>"; };
  542. F1F574562E83519685E1499FD4CCAD42 /* PanoramaOrientationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PanoramaOrientationView.m; sourceTree = "<group>"; };
  543. F2786C10A3CE15B2B97D2165EF589A44 /* CustomModalViewTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CustomModalViewTransition.m; sourceTree = "<group>"; };
  544. F399DC89064A26DEE47CA1B9B31C3F60 /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = "<group>"; };
  545. F4DA75E70A44BE70E7EE7A8E9E81CE80 /* PCSMotionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSMotionManager.m; sourceTree = "<group>"; };
  546. F586AE2DD1FB03ED19CD3340751A6076 /* Shaders.metal */ = {isa = PBXFileReference; includeInIndex = 1; path = Shaders.metal; sourceTree = "<group>"; };
  547. F8E1D2BD0418FD754EEF58BE1B4D2571 /* SVProgressHUD.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = SVProgressHUD.bundle; path = SVProgressHUD/SVProgressHUD.bundle; sourceTree = "<group>"; };
  548. F96AA13B316FCDDD05D7F5984FE83C2E /* PCSButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSButton.h; sourceTree = "<group>"; };
  549. FAF7A7016021E626ECAEBF36DDB38433 /* YYTextUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextUtilities.h; path = YYText/Utility/YYTextUtilities.h; sourceTree = "<group>"; };
  550. FCE2E9F70149411A7CEAB3500B27728E /* UIButton+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Layout.m"; sourceTree = "<group>"; };
  551. FCF39464DCA45BC7FE51A2F2EF530B78 /* OperationNodeMovie.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeMovie.h; sourceTree = "<group>"; };
  552. FD729596A07430FFF4D8DBD49F18B935 /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
  553. FF30174D85BCC340875C99BBC74425FB /* SVIndefiniteAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVIndefiniteAnimatedView.m; path = SVProgressHUD/SVIndefiniteAnimatedView.m; sourceTree = "<group>"; };
  554. /* End PBXFileReference section */
  555. /* Begin PBXFrameworksBuildPhase section */
  556. 02B9D7251D15087A8DA31D60B13E16B2 /* Frameworks */ = {
  557. isa = PBXFrameworksBuildPhase;
  558. buildActionMask = 2147483647;
  559. files = (
  560. );
  561. runOnlyForDeploymentPostprocessing = 0;
  562. };
  563. 27DB505796AEFF6F325D0097670EBCF9 /* Frameworks */ = {
  564. isa = PBXFrameworksBuildPhase;
  565. buildActionMask = 2147483647;
  566. files = (
  567. );
  568. runOnlyForDeploymentPostprocessing = 0;
  569. };
  570. 5201A48FF16520DC6EC61F61532A5F51 /* Frameworks */ = {
  571. isa = PBXFrameworksBuildPhase;
  572. buildActionMask = 2147483647;
  573. files = (
  574. );
  575. runOnlyForDeploymentPostprocessing = 0;
  576. };
  577. 651767A35F3F5BB82162FF9DE4322858 /* Frameworks */ = {
  578. isa = PBXFrameworksBuildPhase;
  579. buildActionMask = 2147483647;
  580. files = (
  581. );
  582. runOnlyForDeploymentPostprocessing = 0;
  583. };
  584. 87A53D71436C043AD2044563DC983A70 /* Frameworks */ = {
  585. isa = PBXFrameworksBuildPhase;
  586. buildActionMask = 2147483647;
  587. files = (
  588. );
  589. runOnlyForDeploymentPostprocessing = 0;
  590. };
  591. D9FE46DE6C340903427F9319BEE22478 /* Frameworks */ = {
  592. isa = PBXFrameworksBuildPhase;
  593. buildActionMask = 2147483647;
  594. files = (
  595. );
  596. runOnlyForDeploymentPostprocessing = 0;
  597. };
  598. /* End PBXFrameworksBuildPhase section */
  599. /* Begin PBXGroup section */
  600. 042F0CE00372E08F37BF31F9D88FCECC /* Exts */ = {
  601. isa = PBXGroup;
  602. children = (
  603. 459CD2883A08E917967B202825AE1427 /* AVCapturePhotoOutput+VersionAdaptor.h */,
  604. 46C5B9E72B8C325BE99EEB55A9C80A7A /* AVCapturePhotoOutput+VersionAdaptor.m */,
  605. 7C6F483B5218380C5EBE42B16514E1F8 /* NSString+Localization.h */,
  606. BCFF22F430B4A88773539F11E8E2B575 /* NSString+Localization.m */,
  607. BA29EEF02EA6C6B11A4D3CE459AFEF1C /* UIButton+Layout.h */,
  608. FCE2E9F70149411A7CEAB3500B27728E /* UIButton+Layout.m */,
  609. 35712E9585B95297D6815A5724533055 /* UIImage+ext.h */,
  610. 813E120135C3E3B5C50FB70609B4A8D3 /* UIImage+ext.m */,
  611. );
  612. name = Exts;
  613. path = Exts;
  614. sourceTree = "<group>";
  615. };
  616. 09D862E8EA0E7C4B03AFDAEE8C998FB4 /* Pods */ = {
  617. isa = PBXGroup;
  618. children = (
  619. A6B68E38E6E27C8D043F0726831C896F /* Masonry */,
  620. 6702AC06FA62A5DC0829428B8BAA571C /* SVProgressHUD */,
  621. B40778DA0EE037F9C6046943956FB751 /* TensorFlowLite */,
  622. ECFE62178E5278BB33AD4A6865066C6B /* YYText */,
  623. );
  624. name = Pods;
  625. sourceTree = "<group>";
  626. };
  627. 13221BE1119559B70058B30A445AFD88 /* Pod */ = {
  628. isa = PBXGroup;
  629. children = (
  630. 526D175D837B13BAA60471FCE7F8F216 /* LenzSDK.podspec */,
  631. );
  632. name = Pod;
  633. sourceTree = "<group>";
  634. };
  635. 1731637964133344C91C981FFF1C0CD5 /* Cell */ = {
  636. isa = PBXGroup;
  637. children = (
  638. B346FFE2FB28E8567ED95CB456A2F8CF /* CollectionViewPlayerCell.h */,
  639. E967728499E5E889E7A7F07BE3FFBA2A /* CollectionViewPlayerCell.m */,
  640. BAE523B549F9C5EA324F14DD4BBCB4EC /* MovieListCellModel.h */,
  641. ED574C07AC0262FD70066041F90EFFFD /* MovieListCellModel.m */,
  642. B7AB4AC08440486709D731A76D4922B1 /* PhotoCollectionViewCell.h */,
  643. 16A08F01E970853EA562E6581A05F96A /* PhotoCollectionViewCell.m */,
  644. 24EDCA6C907B565CFCA6F153DACA1C08 /* PhotoCollectionViewCell.xib */,
  645. 8543A6A6CAF60FBCEEAF8BA85AD2BFEC /* PhotoListCellModel.h */,
  646. 4BAC658FD230DEDCE8BF7B9F3067EB41 /* PhotoListCellModel.m */,
  647. );
  648. name = Cell;
  649. path = Cell;
  650. sourceTree = "<group>";
  651. };
  652. 18AE7196AB2352532076A72EFF29249D /* PanoramaOrientaionView */ = {
  653. isa = PBXGroup;
  654. children = (
  655. D9F14E0DD1321D2339A05C60D9A95041 /* PanoramaOrientationView.h */,
  656. F1F574562E83519685E1499FD4CCAD42 /* PanoramaOrientationView.m */,
  657. );
  658. name = PanoramaOrientaionView;
  659. path = PanoramaOrientaionView;
  660. sourceTree = "<group>";
  661. };
  662. 1AFCEF380D2552F5D289C6E65713C028 /* lib */ = {
  663. isa = PBXGroup;
  664. children = (
  665. A316837B0A1BDA3FCB6907F49797C29F /* lenz_stitcher.a */,
  666. );
  667. name = lib;
  668. path = lib;
  669. sourceTree = "<group>";
  670. };
  671. 1E3BEACA729FCBE71CD3E568C3D60EAC /* Label */ = {
  672. isa = PBXGroup;
  673. children = (
  674. 1B006FE08A4545A176E9415519C4812B /* AlbumCounterLabel.h */,
  675. 185252B13C095F4158BB86519A54C9EA /* AlbumCounterLabel.m */,
  676. 5C8F0CE63987748F5D5EBB7AC297EB37 /* PaddingLabel.h */,
  677. 1A400F0E8D0990EE2ECB8EF1C949F50A /* PaddingLabel.m */,
  678. C0931C591BE7B07CE458432E8414A12C /* TimerLabel.h */,
  679. 10ED3E885569F0ADA5C6D3DFF0824810 /* TimerLabel.m */,
  680. );
  681. name = Label;
  682. path = Label;
  683. sourceTree = "<group>";
  684. };
  685. 218EEE1ACBE61B22A465592DD1CBF6E3 /* DBModels */ = {
  686. isa = PBXGroup;
  687. children = (
  688. AB4ED4E5A21F449AB237A6158DE5F976 /* LenzCachedResourceModel.h */,
  689. 48611A8832F58CED003645A0C8EDA810 /* LenzCachedResourceModel.m */,
  690. );
  691. name = DBModels;
  692. path = DBModels;
  693. sourceTree = "<group>";
  694. };
  695. 222BAAC3C262CFBF90008035A1C8A63D /* PCSMotionManager */ = {
  696. isa = PBXGroup;
  697. children = (
  698. A2C09018F6FBA2B178C18BE2A35BCC39 /* PCSMotionManager.h */,
  699. F4DA75E70A44BE70E7EE7A8E9E81CE80 /* PCSMotionManager.m */,
  700. );
  701. name = PCSMotionManager;
  702. path = PCSMotionManager;
  703. sourceTree = "<group>";
  704. };
  705. 22A2F23447316E0F37E27D61BE5C5E01 /* Transition */ = {
  706. isa = PBXGroup;
  707. children = (
  708. E265302DDF648C95DD5AD1BFA940D191 /* CustomModalViewTransition.h */,
  709. F2786C10A3CE15B2B97D2165EF589A44 /* CustomModalViewTransition.m */,
  710. );
  711. name = Transition;
  712. path = Transition;
  713. sourceTree = "<group>";
  714. };
  715. 25954DD21CA2A08A0C74C00755BC9EB5 /* inner */ = {
  716. isa = PBXGroup;
  717. children = (
  718. 807AC0FC0795E04889BB0E08A81E043D /* cpp-headers.h */,
  719. EBB9426222A88CE22FFD44A6DC99F0E1 /* cpp-headers.mm */,
  720. 045C5643ECC38689ED9F9C8C770C5E31 /* LenzHeader.h */,
  721. E9C8B1352CBA0FEBAD260A2E875DF2DE /* Localizable.strings */,
  722. 023CA2B4CB726176D7130B2CDD464FD7 /* PCSSessionWrapper.h */,
  723. A17498484830BD5638E4AAE372DA3F34 /* PCSSessionWrapper.m */,
  724. 6DEA2C1DC9C31B89E9B8385317563A70 /* PCSTools.h */,
  725. 3383F6C3A5BD3B919BDA3BC6011E86E5 /* PCSTools.m */,
  726. 0BA156318A4E03F2312B912BD01AC303 /* SDKParameters.m */,
  727. 5D0C3D7BE987A431121D400E808D3A5B /* VC.storyboard */,
  728. 289A15EC2EBE9D1936B7F004B4F6984D /* Alert */,
  729. B3C1F715CBE4FC8D1B13CFDFC9079EDA /* CameraManager */,
  730. 4A760BDBF587710BB05975DA8FBF431F /* DB */,
  731. 042F0CE00372E08F37BF31F9D88FCECC /* Exts */,
  732. 1AFCEF380D2552F5D289C6E65713C028 /* lib */,
  733. ED2982129D96B168906FA127CDDA8A19 /* LRU */,
  734. 6ADC6FFC2248F225BB6030B061BC2567 /* MoviePlayerViewController */,
  735. FAE32A9F9A63A7EC6A9543468D547202 /* OperationNode */,
  736. 32BD1404F13EBC473AB77AB2736A1B49 /* PCSBaseViewController */,
  737. BDCF1E19287526168423E40F7A3369FB /* PhotoListController */,
  738. 45A7456AAF09359472717BE611984F5F /* Renderer */,
  739. 92E03E2FA76E4741467E0D6B6F31117A /* TensorFlow */,
  740. 25EA2F1C1CD26C825EF91A6C0EFA2C8F /* UI */,
  741. );
  742. name = inner;
  743. path = LenzCameraNativeModuleForRN/Classes/inner;
  744. sourceTree = "<group>";
  745. };
  746. 25EA2F1C1CD26C825EF91A6C0EFA2C8F /* UI */ = {
  747. isa = PBXGroup;
  748. children = (
  749. F12F036B9077FA7440B2EC3BA01936F1 /* PCSThemeColorManager.h */,
  750. 644952EB048BC8BC0910BB01B0805C4B /* PCSThemeColorManager.m */,
  751. C737571C716B879FE88206DADF7F907E /* Button */,
  752. 810BEFD30FC5FCB7D9787144DC9CBC73 /* color */,
  753. 1E3BEACA729FCBE71CD3E568C3D60EAC /* Label */,
  754. C893C8A79647279A01A30C9362090B4F /* ModeListView */,
  755. E755EF95C935AE3D882286493470C1B4 /* PanoramaGuideView */,
  756. 18AE7196AB2352532076A72EFF29249D /* PanoramaOrientaionView */,
  757. 22A2F23447316E0F37E27D61BE5C5E01 /* Transition */,
  758. C9267AE22240B09992918B7703A8E80E /* UIView+tool */,
  759. );
  760. name = UI;
  761. path = UI;
  762. sourceTree = "<group>";
  763. };
  764. 289A15EC2EBE9D1936B7F004B4F6984D /* Alert */ = {
  765. isa = PBXGroup;
  766. children = (
  767. DB1D86006E8DB29B9EC999D91F0E0F10 /* AlertView.h */,
  768. B25E0B74E5939E2E46DA3E98F4247061 /* AlertView.m */,
  769. 21B8E03137BCF9F54F9CFE4277F7BEB7 /* QuitMultipleModeAlertViewController.h */,
  770. BDAA4B378A2E594E02C3191126E989A7 /* QuitMultipleModeAlertViewController.m */,
  771. A98A6874AF478874BC5AD38B0EEC575F /* QuitMultipleModeAlertViewController.xib */,
  772. );
  773. name = Alert;
  774. path = Alert;
  775. sourceTree = "<group>";
  776. };
  777. 2C872924427A13A04B486DAEA9D62FD1 /* Resources */ = {
  778. isa = PBXGroup;
  779. children = (
  780. F8E1D2BD0418FD754EEF58BE1B4D2571 /* SVProgressHUD.bundle */,
  781. );
  782. name = Resources;
  783. sourceTree = "<group>";
  784. };
  785. 32BD1404F13EBC473AB77AB2736A1B49 /* PCSBaseViewController */ = {
  786. isa = PBXGroup;
  787. children = (
  788. 834B84ECD3BF70F9EE566804C9D3ABFE /* PCSBaseViewController.m */,
  789. A8E2B95BAC7DAEE3F8A609F111031712 /* PCSPreviewViewController.h */,
  790. 3007D1F66DCAE15BF3C90FF9AFB97502 /* PCSPreviewViewController.m */,
  791. 70DA52D70BA3DF3FE4DCDBF44793E925 /* GestureHandler */,
  792. );
  793. name = PCSBaseViewController;
  794. path = PCSBaseViewController;
  795. sourceTree = "<group>";
  796. };
  797. 45A7456AAF09359472717BE611984F5F /* Renderer */ = {
  798. isa = PBXGroup;
  799. children = (
  800. B8ED74D62553DA243A77D1F0D1402416 /* CameraTextureRenderPass.h */,
  801. 4D3F36A7A2E0A0590FC794057DA03E5D /* CameraTextureRenderPass.m */,
  802. 76B07E03B78EEC0C08320D0078A920DF /* Renderer.h */,
  803. 1940AFAFFCD2AD451F5C94F7120F4529 /* Renderer.m */,
  804. A420D0E72CD7C41DD51B1B1CEB07BF47 /* Shaders */,
  805. );
  806. name = Renderer;
  807. path = Renderer;
  808. sourceTree = "<group>";
  809. };
  810. 4A760BDBF587710BB05975DA8FBF431F /* DB */ = {
  811. isa = PBXGroup;
  812. children = (
  813. 99D5C16FB2FC618D0F8D12FEF5F87EFE /* DBManager.h */,
  814. 001A5F8370E76AE3CF69DE5CD54BCB78 /* DBManager.m */,
  815. 2AFEC1638AFA63E98315E7E877E9043D /* LenzDataManager.h */,
  816. C3579EEF69634228A8DE81F027DAB926 /* LenzDataManager.m */,
  817. 218EEE1ACBE61B22A465592DD1CBF6E3 /* DBModels */,
  818. );
  819. name = DB;
  820. path = DB;
  821. sourceTree = "<group>";
  822. };
  823. 5C16A90ADF4B57DA7B3C6478488E42A5 /* Support Files */ = {
  824. isa = PBXGroup;
  825. children = (
  826. 030858582360BFE22F7D95092D54F7BD /* Masonry-dummy.m */,
  827. 42AFC0AEF4E9BAFC0B7B3D707FFFA9EC /* Masonry-prefix.pch */,
  828. CD502849161614DACCEE9E27B93550F2 /* Masonry.debug.xcconfig */,
  829. DAFD9603956A9F8C5BE7FAC749CCFF97 /* Masonry.release.xcconfig */,
  830. );
  831. name = "Support Files";
  832. path = "../Target Support Files/Masonry";
  833. sourceTree = "<group>";
  834. };
  835. 6702AC06FA62A5DC0829428B8BAA571C /* SVProgressHUD */ = {
  836. isa = PBXGroup;
  837. children = (
  838. 833F599750CCF740A20A786D96528502 /* SVIndefiniteAnimatedView.h */,
  839. FF30174D85BCC340875C99BBC74425FB /* SVIndefiniteAnimatedView.m */,
  840. 71A9C32F11A74240787A960ACBA0D696 /* SVProgressAnimatedView.h */,
  841. 696BD80AD2D0E598BC912C1C71E80704 /* SVProgressAnimatedView.m */,
  842. 1E22208BA1E8475055B90D807D8461DB /* SVProgressHUD.h */,
  843. 9C54896DA6101D4274319E355FCC702C /* SVProgressHUD.m */,
  844. 6ABCED1E73226E2ABC9BE8BE8D03BF0D /* SVRadialGradientLayer.h */,
  845. 384498CEF984C255A6393C0AF5889DC5 /* SVRadialGradientLayer.m */,
  846. 2C872924427A13A04B486DAEA9D62FD1 /* Resources */,
  847. E4DA4D425B00D273EE44FB33FC255002 /* Support Files */,
  848. );
  849. name = SVProgressHUD;
  850. path = SVProgressHUD;
  851. sourceTree = "<group>";
  852. };
  853. 6ADC6FFC2248F225BB6030B061BC2567 /* MoviePlayerViewController */ = {
  854. isa = PBXGroup;
  855. children = (
  856. CADF850FF74C89AEA926B09C0E07C8E6 /* MoviePlayerViewController.h */,
  857. 5C1100ACDC0A5DDECABD3C889A867223 /* MoviePlayerViewController.m */,
  858. );
  859. name = MoviePlayerViewController;
  860. path = MoviePlayerViewController;
  861. sourceTree = "<group>";
  862. };
  863. 70DA52D70BA3DF3FE4DCDBF44793E925 /* GestureHandler */ = {
  864. isa = PBXGroup;
  865. children = (
  866. 7189B9B5B46972A794BBD7DA208D7B29 /* BaseViewTapGestureDelegate.h */,
  867. E324CBC5B1CD1D81F9DDBFE9466A1E97 /* BaseViewTapGestureDelegate.m */,
  868. );
  869. name = GestureHandler;
  870. path = GestureHandler;
  871. sourceTree = "<group>";
  872. };
  873. 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */ = {
  874. isa = PBXGroup;
  875. children = (
  876. CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */,
  877. CCC2A2D9BE13B566A864D567615045F6 /* LenzSDK-LenzCameraNativeModuleForRN */,
  878. 1FFED36A657123030ABB700256D73F15 /* Masonry */,
  879. 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */,
  880. E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */,
  881. 71762A728913EB440C97D3616D291AF3 /* YYText */,
  882. );
  883. name = Products;
  884. sourceTree = "<group>";
  885. };
  886. 7ADD985782C977225309D47C5E6E121D /* CollectionViewCell */ = {
  887. isa = PBXGroup;
  888. children = (
  889. 5C4AEE6F3FAD0B04DCB1E1E351C3CF50 /* PhotoAlbumModel.h */,
  890. BDEA7527A5E638AC420DC55A43D729CD /* PhotoAlbumModel.m */,
  891. 0D7887C1F6773A568EBDB5D24DBBACBD /* PhotoCell.h */,
  892. 6D62B02E7EF69B17AB7FAC2297364E42 /* PhotoCell.m */,
  893. D98C5C12F052EAD529EC9EEFE493EFAE /* PhotoCell.xib */,
  894. );
  895. name = CollectionViewCell;
  896. path = CollectionViewCell;
  897. sourceTree = "<group>";
  898. };
  899. 810BEFD30FC5FCB7D9787144DC9CBC73 /* color */ = {
  900. isa = PBXGroup;
  901. children = (
  902. 2F5CFD310DE3E3F4309E4692E5FDC2CC /* UIColor+JKAdd.h */,
  903. C7465AD2ADA3BF7068CBAADEC48297D2 /* UIColor+JKAdd.m */,
  904. );
  905. name = color;
  906. path = color;
  907. sourceTree = "<group>";
  908. };
  909. 8FA76A2270D150C57C13ECEFD62CCFDF /* Support Files */ = {
  910. isa = PBXGroup;
  911. children = (
  912. CC221CE8C66884BDEE6D35D15C1A72B3 /* TensorFlowLite.debug.xcconfig */,
  913. 23C222F8741C6545FA2E78D3B6885D45 /* TensorFlowLite.release.xcconfig */,
  914. );
  915. name = "Support Files";
  916. path = "../Target Support Files/TensorFlowLite";
  917. sourceTree = "<group>";
  918. };
  919. 92E03E2FA76E4741467E0D6B6F31117A /* TensorFlow */ = {
  920. isa = PBXGroup;
  921. children = (
  922. DF7346F194B062427E1A91DFFE462DC2 /* TensorFlowWrapper.h */,
  923. 825C6FB76FE50D59AB05CDE39C679926 /* TensorFlowWrapper.m */,
  924. );
  925. name = TensorFlow;
  926. path = TensorFlow;
  927. sourceTree = "<group>";
  928. };
  929. 981BDF6654D112A42A9052EAD23D66C3 /* headers */ = {
  930. isa = PBXGroup;
  931. children = (
  932. 96A8580B6102817508C5CE6FCE48459B /* LenzCameraNativeModuleForRN.h */,
  933. AD277ABA97D5700D67AE4243F751B01F /* LenzCameraSDK.h */,
  934. E8E4DDD2282B9B833AC55ABFA624EA06 /* LenzCameraSDK.m */,
  935. E13A7F3DB10BF5228E0EFAFA7E97E7A0 /* LenzSDKConstant.h */,
  936. E175FD1A53388F3D8247FA6961EA7668 /* PCSBaseViewController.h */,
  937. 160B990996DD21D6E64E455E744557C6 /* SDKParameters.h */,
  938. );
  939. name = headers;
  940. path = LenzCameraNativeModuleForRN/Classes/headers;
  941. sourceTree = "<group>";
  942. };
  943. A420D0E72CD7C41DD51B1B1CEB07BF47 /* Shaders */ = {
  944. isa = PBXGroup;
  945. children = (
  946. BDA9F250AB98999CB591E8E8EBC94C04 /* LenzCommon.h */,
  947. F586AE2DD1FB03ED19CD3340751A6076 /* Shaders.metal */,
  948. );
  949. name = Shaders;
  950. path = Shaders;
  951. sourceTree = "<group>";
  952. };
  953. A690EA949F27E276C70C3169BD23C386 /* Support Files */ = {
  954. isa = PBXGroup;
  955. children = (
  956. C90D457F0567CE408A5CEABA3729CBAE /* LenzSDK-dummy.m */,
  957. 337FCC62499B3AEB5142B24F167EEF38 /* LenzSDK-prefix.pch */,
  958. 3B1C9EB4810F130F5B301709B86D03EB /* LenzSDK.debug.xcconfig */,
  959. 64D23F96A249A835012EC76AACF02FA7 /* LenzSDK.release.xcconfig */,
  960. 1AEB047D2DA8375A9CC2B2C6F33B36AB /* ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist */,
  961. );
  962. name = "Support Files";
  963. path = "Example/Pods/Target Support Files/LenzSDK";
  964. sourceTree = "<group>";
  965. };
  966. A6B68E38E6E27C8D043F0726831C896F /* Masonry */ = {
  967. isa = PBXGroup;
  968. children = (
  969. 236AF217BE16A74042B90DBB675F6FD0 /* MASCompositeConstraint.h */,
  970. 09C630CEDE852939E93E2C127B2582EC /* MASCompositeConstraint.m */,
  971. A8F7B049C02D3205B3F0FC2A7C47FB8A /* MASConstraint.h */,
  972. 83DF0E9265D9C7C9A64D13D326C24C40 /* MASConstraint.m */,
  973. 5679E1BE40D48781EB2D80BD9125159B /* MASConstraint+Private.h */,
  974. 8CD9F5FAE8AA1C9DC33B67DCE4D06112 /* MASConstraintMaker.h */,
  975. 2002BF941497DCE4DC551650ED008F9E /* MASConstraintMaker.m */,
  976. CCC2C690CC362F11F7628C08EB887F0D /* MASLayoutConstraint.h */,
  977. 337DC53419566E7FC771DE62CF99F6B0 /* MASLayoutConstraint.m */,
  978. 38BE671C7B48B2C725FE5EB9E63666BC /* Masonry.h */,
  979. AC59A703058154D497C84656B4AE034E /* MASUtilities.h */,
  980. A767AF5987619CA8337AB90476FC7A8B /* MASViewAttribute.h */,
  981. 66579CE2B50EB996A4F4583BBB52AAA3 /* MASViewAttribute.m */,
  982. ACC7C0BD6430C348FA88862F379F6DA2 /* MASViewConstraint.h */,
  983. F399DC89064A26DEE47CA1B9B31C3F60 /* MASViewConstraint.m */,
  984. AAA2651DCC2E01B791217BA3135411FB /* NSArray+MASAdditions.h */,
  985. 75A1EF02C8646996F4BE7781491CFFA8 /* NSArray+MASAdditions.m */,
  986. FD729596A07430FFF4D8DBD49F18B935 /* NSArray+MASShorthandAdditions.h */,
  987. 1E6AF7755455F924245F4D6A2C617747 /* NSLayoutConstraint+MASDebugAdditions.h */,
  988. E9260E3C367D8AF0C0D9E43A00ACE951 /* NSLayoutConstraint+MASDebugAdditions.m */,
  989. 04C0ECDA1655815A1B7E06604643BFF7 /* View+MASAdditions.h */,
  990. CFD7DA366C309EF390A99E5C79028444 /* View+MASAdditions.m */,
  991. 00465AB67C1F1B380226E17A7CE23581 /* View+MASShorthandAdditions.h */,
  992. 5297FF5173925AD14037E2972FE1575C /* ViewController+MASAdditions.h */,
  993. 985EAF70F969BDAB6658282A9B5C28A8 /* ViewController+MASAdditions.m */,
  994. 5C16A90ADF4B57DA7B3C6478488E42A5 /* Support Files */,
  995. );
  996. name = Masonry;
  997. path = Masonry;
  998. sourceTree = "<group>";
  999. };
  1000. B3C1F715CBE4FC8D1B13CFDFC9079EDA /* CameraManager */ = {
  1001. isa = PBXGroup;
  1002. children = (
  1003. AA5F0F34AD32861B4BC13AED5EE46AA1 /* CameraManager.h */,
  1004. 484E9323B660E1E311FCC858BDAD79F6 /* CameraManager.m */,
  1005. );
  1006. name = CameraManager;
  1007. path = CameraManager;
  1008. sourceTree = "<group>";
  1009. };
  1010. B40778DA0EE037F9C6046943956FB751 /* TensorFlowLite */ = {
  1011. isa = PBXGroup;
  1012. children = (
  1013. D12E4829C2EE389259BF9E03BFC03299 /* Frameworks */,
  1014. 8FA76A2270D150C57C13ECEFD62CCFDF /* Support Files */,
  1015. );
  1016. name = TensorFlowLite;
  1017. path = TensorFlowLite;
  1018. sourceTree = "<group>";
  1019. };
  1020. B77BEFA4F143EAEB178F917647E8AEAD /* Support Files */ = {
  1021. isa = PBXGroup;
  1022. children = (
  1023. B8874ECCD2F100A4073541AF616CD959 /* YYText-dummy.m */,
  1024. 1AC75595A616CB1A10F74F9B85C9A817 /* YYText-prefix.pch */,
  1025. 4E5519F8ACF06D3117C557AC71BBF11A /* YYText.debug.xcconfig */,
  1026. C7B681F2187F1F5A880627CAB69F5A7C /* YYText.release.xcconfig */,
  1027. );
  1028. name = "Support Files";
  1029. path = "../Target Support Files/YYText";
  1030. sourceTree = "<group>";
  1031. };
  1032. BDCF1E19287526168423E40F7A3369FB /* PhotoListController */ = {
  1033. isa = PBXGroup;
  1034. children = (
  1035. 1FB8EFDA0A02A82868E8E02DD5B6E34E /* MovieListViewController.h */,
  1036. 4DDFA7461FD9FDB9F39907820FE50909 /* MovieListViewController.m */,
  1037. E52E912FAFF28DB1D50022DCFE3D494A /* PhotoAlbumListViewController.h */,
  1038. 0B92E667049899392FBCBA6FC12CEBDB /* PhotoAlbumListViewController.m */,
  1039. B5B03D0A34A6C4C8370F9A917FCAE421 /* PhotoListViewController.h */,
  1040. 9BB15112B40D29902BD44EB63437D817 /* PhotoListViewController.m */,
  1041. 7612CDA74861A83401A33AFF22CBBE9D /* PreviewSingleViewController.h */,
  1042. 4C7551E540F421DB883EC45F9B9FD999 /* PreviewSingleViewController.m */,
  1043. 1731637964133344C91C981FFF1C0CD5 /* Cell */,
  1044. 7ADD985782C977225309D47C5E6E121D /* CollectionViewCell */,
  1045. );
  1046. name = PhotoListController;
  1047. path = PhotoListController;
  1048. sourceTree = "<group>";
  1049. };
  1050. C737571C716B879FE88206DADF7F907E /* Button */ = {
  1051. isa = PBXGroup;
  1052. children = (
  1053. F96AA13B316FCDDD05D7F5984FE83C2E /* PCSButton.h */,
  1054. 8111B32B635DCD399351FDD47A65EFB1 /* PCSButton.m */,
  1055. D59D4935A4D2F844ABA539328825157E /* PCSRoundButton.h */,
  1056. BEF78E2843E079623DF49791E96D80C7 /* PCSRoundButton.m */,
  1057. 65E6552F443DE1F9C6A71EB124AE43D8 /* VerticalButton.h */,
  1058. ECF16AD4550E44A71FF0CCCFE0A2135B /* VerticalButton.m */,
  1059. );
  1060. name = Button;
  1061. path = Button;
  1062. sourceTree = "<group>";
  1063. };
  1064. C893C8A79647279A01A30C9362090B4F /* ModeListView */ = {
  1065. isa = PBXGroup;
  1066. children = (
  1067. D26B0FB3B3AA94572958C88C41C7FB55 /* PCSModeList.h */,
  1068. 6DE30B6B31980946761C9D5293B4941D /* PCSModeList.m */,
  1069. );
  1070. name = ModeListView;
  1071. path = ModeListView;
  1072. sourceTree = "<group>";
  1073. };
  1074. C8A5046F3BCC31D5327B6E6695FC9698 /* LenzSDK */ = {
  1075. isa = PBXGroup;
  1076. children = (
  1077. 8EFC60452ECAED9A2848F17EFB6D745B /* PCSSDF-prefix-header.h */,
  1078. EF3D74546A4C9189C77D2536D060CF87 /* Assets */,
  1079. E676DAE6C40D5F826D7D17999E0E15D2 /* Frameworks */,
  1080. 981BDF6654D112A42A9052EAD23D66C3 /* headers */,
  1081. 25954DD21CA2A08A0C74C00755BC9EB5 /* inner */,
  1082. 13221BE1119559B70058B30A445AFD88 /* Pod */,
  1083. A690EA949F27E276C70C3169BD23C386 /* Support Files */,
  1084. );
  1085. name = LenzSDK;
  1086. path = ../..;
  1087. sourceTree = "<group>";
  1088. };
  1089. C9267AE22240B09992918B7703A8E80E /* UIView+tool */ = {
  1090. isa = PBXGroup;
  1091. children = (
  1092. 1A3793D77A5DF02CCECD90108FEF8CA3 /* UIImage+name.h */,
  1093. C32BA2A28074C92B04A25647565BDFF9 /* UIImage+name.m */,
  1094. 41170107A2FDBF1229F0526276F6ECF5 /* UIView+JKAdd.h */,
  1095. 19E6F84B2A0BD0B98160C9D203A66A14 /* UIView+JKAdd.m */,
  1096. );
  1097. name = "UIView+tool";
  1098. path = "UIView+tool";
  1099. sourceTree = "<group>";
  1100. };
  1101. CF1408CF629C7361332E53B88F7BD30C = {
  1102. isa = PBXGroup;
  1103. children = (
  1104. 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
  1105. DC9ACD8048F536C0F69FB51EBDCE5884 /* Development Pods */,
  1106. D89477F20FB1DE18A04690586D7808C4 /* Frameworks */,
  1107. 09D862E8EA0E7C4B03AFDAEE8C998FB4 /* Pods */,
  1108. 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */,
  1109. E3490A6C63045E74D3E12B26073DA3D7 /* Targets Support Files */,
  1110. );
  1111. sourceTree = "<group>";
  1112. };
  1113. D12E4829C2EE389259BF9E03BFC03299 /* Frameworks */ = {
  1114. isa = PBXGroup;
  1115. children = (
  1116. 91CF64F2FBA4596C564CC9365CC785DC /* tensorflow_lite.framework */,
  1117. );
  1118. name = Frameworks;
  1119. sourceTree = "<group>";
  1120. };
  1121. D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = {
  1122. isa = PBXGroup;
  1123. children = (
  1124. );
  1125. name = Frameworks;
  1126. sourceTree = "<group>";
  1127. };
  1128. DC9ACD8048F536C0F69FB51EBDCE5884 /* Development Pods */ = {
  1129. isa = PBXGroup;
  1130. children = (
  1131. C8A5046F3BCC31D5327B6E6695FC9698 /* LenzSDK */,
  1132. );
  1133. name = "Development Pods";
  1134. sourceTree = "<group>";
  1135. };
  1136. E3490A6C63045E74D3E12B26073DA3D7 /* Targets Support Files */ = {
  1137. isa = PBXGroup;
  1138. children = (
  1139. FEEB9A876329C1C8B00204A34D3109C6 /* Pods-LenzCameraNativeModuleForRN_Example */,
  1140. );
  1141. name = "Targets Support Files";
  1142. sourceTree = "<group>";
  1143. };
  1144. E4DA4D425B00D273EE44FB33FC255002 /* Support Files */ = {
  1145. isa = PBXGroup;
  1146. children = (
  1147. 150A3C4B092EFF5C5CDA39529434886D /* SVProgressHUD-dummy.m */,
  1148. 0C2B063ACAB139531B3A172A1DC0FA50 /* SVProgressHUD-prefix.pch */,
  1149. 79B3ECE71D1D817E41F35D9B5EDD8823 /* SVProgressHUD.debug.xcconfig */,
  1150. 4D8E2E45458645E409B65064F26BE9BC /* SVProgressHUD.release.xcconfig */,
  1151. );
  1152. name = "Support Files";
  1153. path = "../Target Support Files/SVProgressHUD";
  1154. sourceTree = "<group>";
  1155. };
  1156. E676DAE6C40D5F826D7D17999E0E15D2 /* Frameworks */ = {
  1157. isa = PBXGroup;
  1158. children = (
  1159. 6027CA9CC86B70D548CD92E2B7DA6152 /* LenzStitchSDK.framework */,
  1160. 312CD5C33A8FBAF4812468B3F2EC2499 /* LenzTensorFlowSDK.framework */,
  1161. 02C3FDB9B6055C3E98B71F9F40F293DB /* opencv2.framework */,
  1162. );
  1163. name = Frameworks;
  1164. sourceTree = "<group>";
  1165. };
  1166. E755EF95C935AE3D882286493470C1B4 /* PanoramaGuideView */ = {
  1167. isa = PBXGroup;
  1168. children = (
  1169. 9C4CBCA4D29B03564BBDBC5F5C01D93C /* PanoramaGuideView.h */,
  1170. 642B6533196B118EC2A42532AAB9F790 /* PanoramaGuideView.m */,
  1171. );
  1172. name = PanoramaGuideView;
  1173. path = PanoramaGuideView;
  1174. sourceTree = "<group>";
  1175. };
  1176. ECFE62178E5278BB33AD4A6865066C6B /* YYText */ = {
  1177. isa = PBXGroup;
  1178. children = (
  1179. D08085210D8BF3F57298C44F1A85B3AB /* NSAttributedString+YYText.h */,
  1180. 21CABE754D79776A6CA0048575C17125 /* NSAttributedString+YYText.m */,
  1181. EADB3792F4D552050D74E9418727DB85 /* NSParagraphStyle+YYText.h */,
  1182. 925A4C3E2A374C054C117E27C3C1D7D6 /* NSParagraphStyle+YYText.m */,
  1183. BD9189EC71760D28C686D5F3ABB28539 /* UIPasteboard+YYText.h */,
  1184. E1A4A10D45532A36D91AB25E923BCE55 /* UIPasteboard+YYText.m */,
  1185. 60D974875E35028BFB587AC3574BEC00 /* UIView+YYText.h */,
  1186. 2D753BEB00E24AD721F3C33B73FA7DFD /* UIView+YYText.m */,
  1187. B3FABB1AB4EC151E5C9656A616F69499 /* YYLabel.h */,
  1188. B2FC930665E4A7CF0D652608F4A5F036 /* YYLabel.m */,
  1189. AB019ACB40EC1D9EA58DF5C2044FEDA4 /* YYText.h */,
  1190. D91B38E39EA044E85F6ACE52E9D773A9 /* YYTextArchiver.h */,
  1191. 0BCE3AE0EB3099A374D3D8E3C8AAA770 /* YYTextArchiver.m */,
  1192. EA45FA6D756C56F8C345F42BD8FCB2E9 /* YYTextAsyncLayer.h */,
  1193. 13AA756254EF152781EA2DCEE497DA85 /* YYTextAsyncLayer.m */,
  1194. 5100BB2C21C348957D675E5E8E8AFC23 /* YYTextAttribute.h */,
  1195. 6B5C8B827F83A437B959D365EBCAD0FF /* YYTextAttribute.m */,
  1196. 4F0D684B0FCFC439535A5896507EB868 /* YYTextContainerView.h */,
  1197. E83DD7792E6E4BD1EE4F7A59F21187FD /* YYTextContainerView.m */,
  1198. 4E35876B9CD9492C56A9233E07CF9154 /* YYTextDebugOption.h */,
  1199. 876E7EF23CC2D8D5153FB1D94CFF7622 /* YYTextDebugOption.m */,
  1200. BDDCB1C7F8328C04E5BD1FE3F2C25114 /* YYTextEffectWindow.h */,
  1201. 8F7C7E00CA6BCEC8469AD7C9F112200C /* YYTextEffectWindow.m */,
  1202. CA7659E48BC55B78DC1D9038C1E715FA /* YYTextInput.h */,
  1203. 03580EB58D7084008ED15AFEFDDF44C5 /* YYTextInput.m */,
  1204. 1B8355626A66BC661E37E399FC319781 /* YYTextKeyboardManager.h */,
  1205. AEFB6FD0996C12C9C08BB4FFA1441657 /* YYTextKeyboardManager.m */,
  1206. 0994AB16F94688C044E520A3CD0008CC /* YYTextLayout.h */,
  1207. 44661AF21CDB4677BF788BD75ACB86E8 /* YYTextLayout.m */,
  1208. 915DFC2B3727DF36D704655395005955 /* YYTextLine.h */,
  1209. 17612549EC07EF4D5BA8AEA7628F954F /* YYTextLine.m */,
  1210. 230AB8ED6A299D9085C2F4F5ECD912A7 /* YYTextMagnifier.h */,
  1211. A4C18B2ED0CB87015BA0CC57B8C7157E /* YYTextMagnifier.m */,
  1212. C2F62CD50BFD779B6EFD0D09FCAABDDE /* YYTextParser.h */,
  1213. 059F71D6CF20450C126B81E72F666ADC /* YYTextParser.m */,
  1214. 453FC4AC919A14E42EC7F7FDADFEF10C /* YYTextRubyAnnotation.h */,
  1215. 114501B95B52E239D7469CF4E409507E /* YYTextRubyAnnotation.m */,
  1216. 185CAD498BBA3913B8BE4A56E086F406 /* YYTextRunDelegate.h */,
  1217. 4BD59CF8EEBEA3E243785662CA2FBAE7 /* YYTextRunDelegate.m */,
  1218. 236BD5F0C68C18F6835B9292DCE7BB80 /* YYTextSelectionView.h */,
  1219. 75C28A6CE6DD09D0C90B842258501DCE /* YYTextSelectionView.m */,
  1220. 53DD05D7B6888C455D77CA8C05CEC207 /* YYTextTransaction.h */,
  1221. 567009CE78A0EAB5467FAB5FBFF54EF1 /* YYTextTransaction.m */,
  1222. FAF7A7016021E626ECAEBF36DDB38433 /* YYTextUtilities.h */,
  1223. E0BC2924B100AC445EEFFC7134D84951 /* YYTextUtilities.m */,
  1224. 26F858E75731812FA2CFFA0C6AC1A2A8 /* YYTextView.h */,
  1225. E3A70E430A65EB9DAF0BD8994EC6F075 /* YYTextView.m */,
  1226. 3DCA23D47376CDDDCB02F34624EC3328 /* YYTextWeakProxy.h */,
  1227. 19B60C5ED970E0BD7B87C59D44EF8103 /* YYTextWeakProxy.m */,
  1228. B77BEFA4F143EAEB178F917647E8AEAD /* Support Files */,
  1229. );
  1230. name = YYText;
  1231. path = YYText;
  1232. sourceTree = "<group>";
  1233. };
  1234. ED2982129D96B168906FA127CDDA8A19 /* LRU */ = {
  1235. isa = PBXGroup;
  1236. children = (
  1237. 46C88FEA97AD035600FD104BF0FB899F /* ImageCacheLRU.h */,
  1238. EFA78D74D65C7A2CFC756FE18A5145D0 /* ImageCacheLRU.m */,
  1239. );
  1240. name = LRU;
  1241. path = LRU;
  1242. sourceTree = "<group>";
  1243. };
  1244. EF3D74546A4C9189C77D2536D060CF87 /* Assets */ = {
  1245. isa = PBXGroup;
  1246. children = (
  1247. D1F049E526F5575B78C34D06EEEA8012 /* assets.xcassets */,
  1248. 2136F17FD7A18281A6A63BACBB7B5DA2 /* moire_mobilenetv2_79.tflite */,
  1249. );
  1250. name = Assets;
  1251. path = LenzCameraNativeModuleForRN/Assets;
  1252. sourceTree = "<group>";
  1253. };
  1254. FAE32A9F9A63A7EC6A9543468D547202 /* OperationNode */ = {
  1255. isa = PBXGroup;
  1256. children = (
  1257. 8841542C61D6B28DB383D3DEE9211CF3 /* OperationNodeAIPanorama.h */,
  1258. 5ACF3FDF300C843E85F806D911FBBD30 /* OperationNodeAIPanorama.m */,
  1259. FCF39464DCA45BC7FE51A2F2EF530B78 /* OperationNodeMovie.h */,
  1260. 8792C14B698CBB0A6E3114CBD5FCC4E2 /* OperationNodeMovie.m */,
  1261. 0C06388C4DC40676457C58BE9BB087CF /* OperationNodeMultiple.h */,
  1262. CD4D19A957FBFABB2144E0CA18C5EB84 /* OperationNodeMultiple.m */,
  1263. 1FA033AD5AB0361B939E7C93DA61D4E7 /* OperationNodePanorama.h */,
  1264. 77429CB6A8EAF380C3CB43D3A6254D3D /* OperationNodePanorama.m */,
  1265. 92503338E6D82D9E44D6E98E78516315 /* OperationNodeProtocol.h */,
  1266. 3769A2F99954C35CEF2D418F86780330 /* OperationNodeSingle.h */,
  1267. 0F37F3A6741614EF4393CEC045E9472B /* OperationNodeSingle.m */,
  1268. 81138B07CE5075F5BB6EE8861507C864 /* OperationNodeVideoBase.h */,
  1269. DD29E953FEFC5715DE8B2B1EC7C73649 /* OperationNodeVideoBase.m */,
  1270. 222BAAC3C262CFBF90008035A1C8A63D /* PCSMotionManager */,
  1271. );
  1272. name = OperationNode;
  1273. path = OperationNode;
  1274. sourceTree = "<group>";
  1275. };
  1276. FEEB9A876329C1C8B00204A34D3109C6 /* Pods-LenzCameraNativeModuleForRN_Example */ = {
  1277. isa = PBXGroup;
  1278. children = (
  1279. AE44E80EF6245FE2ED31EEB49A819226 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown */,
  1280. 8B4DC4759B1098548FAA7403C6442854 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.plist */,
  1281. 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */,
  1282. 1F19139A77CA316ACCEF6D7B18F9414C /* Pods-LenzCameraNativeModuleForRN_Example-resources.sh */,
  1283. CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */,
  1284. F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */,
  1285. );
  1286. name = "Pods-LenzCameraNativeModuleForRN_Example";
  1287. path = "Target Support Files/Pods-LenzCameraNativeModuleForRN_Example";
  1288. sourceTree = "<group>";
  1289. };
  1290. /* End PBXGroup section */
  1291. /* Begin PBXHeadersBuildPhase section */
  1292. 3427465FE64E78C9D8B0EF3B72D47634 /* Headers */ = {
  1293. isa = PBXHeadersBuildPhase;
  1294. buildActionMask = 2147483647;
  1295. files = (
  1296. );
  1297. runOnlyForDeploymentPostprocessing = 0;
  1298. };
  1299. 7E8376A64BDA994E29F90B4FC2B57648 /* Headers */ = {
  1300. isa = PBXHeadersBuildPhase;
  1301. buildActionMask = 2147483647;
  1302. files = (
  1303. DB28DEA5C89B3F178C446B9BF5562102 /* AlbumCounterLabel.h in Headers */,
  1304. F0D66C62D35CAF4B84F0610BAB99E2F7 /* AlertView.h in Headers */,
  1305. 67A58DFA526AC3A9A871F233A47DBFB8 /* AVCapturePhotoOutput+VersionAdaptor.h in Headers */,
  1306. EAB02DF3E96F9785F41A5500AE9231CE /* BaseViewTapGestureDelegate.h in Headers */,
  1307. D8739CDE4FB8D28DE29E3B8C2B1C64BC /* CameraManager.h in Headers */,
  1308. 8EF89B26052CE66E8CF72814A1CED9DA /* CameraTextureRenderPass.h in Headers */,
  1309. 2FD31708C0A9546EF4514AFCDDA48133 /* CollectionViewPlayerCell.h in Headers */,
  1310. 683F5CAD9E088A9CBDA18B5D5A01007D /* cpp-headers.h in Headers */,
  1311. 8452D2825DA153EF65ACA8A8E96BF70A /* CustomModalViewTransition.h in Headers */,
  1312. A3EED5B675E5B70762DCEA4484D1DD32 /* DBManager.h in Headers */,
  1313. 02B959FE26516AD48909BA09827C5514 /* ImageCacheLRU.h in Headers */,
  1314. 0E7B9B60DC5DA0C2A4034A2EA0B26677 /* LenzCachedResourceModel.h in Headers */,
  1315. 3E6ED86721A1F011A450B6E96F7ED43F /* LenzCameraNativeModuleForRN.h in Headers */,
  1316. 408CDF664EB44439BA50971F116EEF58 /* LenzCameraSDK.h in Headers */,
  1317. 6A162316CAEA8379A5DD1408C9F4C104 /* LenzCommon.h in Headers */,
  1318. A4FB9BCC0BADD6545BCA0BC764F55B67 /* LenzDataManager.h in Headers */,
  1319. 27C458144190E14D027C6F53A23B28AF /* LenzHeader.h in Headers */,
  1320. DB7BC0757DFC6D9D66ACEFE8B218F6FC /* LenzSDKConstant.h in Headers */,
  1321. 600CA65C8D86178DF521F4B01DBB84E0 /* MovieListCellModel.h in Headers */,
  1322. 537FB6D4350E7E1901D5EB5F9D867936 /* MovieListViewController.h in Headers */,
  1323. 8E35FC2D2C2230EFEB1620BFE18C7F86 /* MoviePlayerViewController.h in Headers */,
  1324. F5C006B2A7B0381FD2544A519A8BB653 /* NSString+Localization.h in Headers */,
  1325. 9FAE2FAF1B199BCFD85DD33C9446E3DD /* OperationNodeAIPanorama.h in Headers */,
  1326. 11ADA2C64E2EFEA900C7C12FB8A176ED /* OperationNodeMovie.h in Headers */,
  1327. D9273A532E144D095BEA616052B474B9 /* OperationNodeMultiple.h in Headers */,
  1328. F2A43A8784342F88513E78C7784ECE3A /* OperationNodePanorama.h in Headers */,
  1329. D87CEA68717BA52E529D717C9DFB975D /* OperationNodeProtocol.h in Headers */,
  1330. 5CFD26FA1D20A656E6E59D7FCB957036 /* OperationNodeSingle.h in Headers */,
  1331. 82F1FB2214D18D26A57EFBEC33FB1BA8 /* OperationNodeVideoBase.h in Headers */,
  1332. 1027F512D7E8132EA23712BA83A0E366 /* PaddingLabel.h in Headers */,
  1333. AFCF29097B8EA55F399208D7642298F3 /* PanoramaGuideView.h in Headers */,
  1334. A56825C55CC43AC2164B448B6190F763 /* PanoramaOrientationView.h in Headers */,
  1335. B38297872C05EF7F3335A262EEC3FB1D /* PCSBaseViewController.h in Headers */,
  1336. A4F5926C8B7C174795A4E712B40818BB /* PCSButton.h in Headers */,
  1337. 9962BC0A854280021221A5D4F2917AE4 /* PCSModeList.h in Headers */,
  1338. 6AB71F1AFAAEAEA715F98BA8CCC2FD31 /* PCSMotionManager.h in Headers */,
  1339. 5C0068B922F4D3BF2C88B58F408B290E /* PCSPreviewViewController.h in Headers */,
  1340. 5804651E7179251151071800958B13C5 /* PCSRoundButton.h in Headers */,
  1341. 89633F951D73A9C9E77A45DB6576B6FA /* PCSSDF-prefix-header.h in Headers */,
  1342. 692535448F10C176CBFBE177CE206EBF /* PCSSessionWrapper.h in Headers */,
  1343. 75F2C65AD171D1BFC9DD4D7AAAE3614B /* PCSThemeColorManager.h in Headers */,
  1344. AC6B9EF28746B8901142DD8419FF44E0 /* PCSTools.h in Headers */,
  1345. 718675C8D8CC9777C6870ADB7335DA31 /* PhotoAlbumListViewController.h in Headers */,
  1346. 33BE96B3EDF2887F4F5EFFCC0AAC4790 /* PhotoAlbumModel.h in Headers */,
  1347. 0239928A2EC82255C7AD2603A8A30F98 /* PhotoCell.h in Headers */,
  1348. C9D2A74D78D033FB1869E3E2C474A853 /* PhotoCollectionViewCell.h in Headers */,
  1349. E60485A5626CDB7B3AC9D1FA60544174 /* PhotoListCellModel.h in Headers */,
  1350. 99E33A9DD7BCA1FCBFEB5CC7C489874F /* PhotoListViewController.h in Headers */,
  1351. ED5D2756D90E118759B27B394E9BA40E /* PreviewSingleViewController.h in Headers */,
  1352. 4100628200520015C6FC3F6B53A53A53 /* QuitMultipleModeAlertViewController.h in Headers */,
  1353. E37AE3A325DEFC71637496C52ACD1936 /* Renderer.h in Headers */,
  1354. 5937D0B695127E5393DF3956E4BE1142 /* SDKParameters.h in Headers */,
  1355. 6E92300E108061782377F38796508DBD /* TensorFlowWrapper.h in Headers */,
  1356. 18E22C2CA3EEA3529726DB78234102F5 /* TimerLabel.h in Headers */,
  1357. A4047DDD5557F5D36C577F53FC37F589 /* UIButton+Layout.h in Headers */,
  1358. C0B940B2CDE1CB5CEF3752720BCF4314 /* UIColor+JKAdd.h in Headers */,
  1359. D37E7CD8B01422BC301EE7B1D8525260 /* UIImage+ext.h in Headers */,
  1360. 1E66E189DFFEA268D990FF1924E5F3AA /* UIImage+name.h in Headers */,
  1361. EAAA980D69009418E76595C778E5AC74 /* UIView+JKAdd.h in Headers */,
  1362. 4DD1CCE3EF0004A3A9BA7261F4C1759B /* VerticalButton.h in Headers */,
  1363. );
  1364. runOnlyForDeploymentPostprocessing = 0;
  1365. };
  1366. 81D6CCB2805BA3E7E24C05FAFAFFEBA7 /* Headers */ = {
  1367. isa = PBXHeadersBuildPhase;
  1368. buildActionMask = 2147483647;
  1369. files = (
  1370. 39DD41B366B3CA5AA32AD1F346B9B2AB /* MASCompositeConstraint.h in Headers */,
  1371. DF11EEE36D8E8ECB8A102626EBAEB4D4 /* MASConstraint.h in Headers */,
  1372. A76A5E421BC75DA3FF37ECA7D8C15776 /* MASConstraint+Private.h in Headers */,
  1373. 69864DFE3EC290040D273D325FA0E089 /* MASConstraintMaker.h in Headers */,
  1374. EF243CAD47B649A174FC48701A24BFAB /* MASLayoutConstraint.h in Headers */,
  1375. 6D0B9203EC261F2DC6641C1592F967A4 /* Masonry.h in Headers */,
  1376. 045AAD1AB83E7F95858CB0B461BFBB90 /* MASUtilities.h in Headers */,
  1377. DA62FD788B98F91E03E3C4D7DFEFB329 /* MASViewAttribute.h in Headers */,
  1378. 63BE63519B1690F0C066293683F854D6 /* MASViewConstraint.h in Headers */,
  1379. E32AB08E07650090B804130EC48B9BB1 /* NSArray+MASAdditions.h in Headers */,
  1380. D0240C120E93A9A3EF0AF8D977F4B9F7 /* NSArray+MASShorthandAdditions.h in Headers */,
  1381. 65A7EEF17AF1C948906239F6A246E0FF /* NSLayoutConstraint+MASDebugAdditions.h in Headers */,
  1382. 8163209B85CD4577B385B5831F187207 /* View+MASAdditions.h in Headers */,
  1383. 2BF97781872D2E6ADADC8D01A0DB139E /* View+MASShorthandAdditions.h in Headers */,
  1384. A4A71AC95431D146A49F96DFC1098551 /* ViewController+MASAdditions.h in Headers */,
  1385. );
  1386. runOnlyForDeploymentPostprocessing = 0;
  1387. };
  1388. 9BD1126D67D0B4FC2F181104FC562EEE /* Headers */ = {
  1389. isa = PBXHeadersBuildPhase;
  1390. buildActionMask = 2147483647;
  1391. files = (
  1392. 44167A79BC1130104702B0B2749C955E /* SVIndefiniteAnimatedView.h in Headers */,
  1393. 35125021A252681A4ACD6212651D3EED /* SVProgressAnimatedView.h in Headers */,
  1394. D74BEE5DE0586E6AA1B341A75F5384CF /* SVProgressHUD.h in Headers */,
  1395. 300A8F2D4968EB49C0625E962866D325 /* SVRadialGradientLayer.h in Headers */,
  1396. );
  1397. runOnlyForDeploymentPostprocessing = 0;
  1398. };
  1399. B72922862FFA564708648178544BF49D /* Headers */ = {
  1400. isa = PBXHeadersBuildPhase;
  1401. buildActionMask = 2147483647;
  1402. files = (
  1403. FBC8702390126618DAFEA0C34F0A633E /* NSAttributedString+YYText.h in Headers */,
  1404. 2B68E6A0683A84B3271177B84E8B19F2 /* NSParagraphStyle+YYText.h in Headers */,
  1405. 537F83DFFEFC2B468F094725820A3E3E /* UIPasteboard+YYText.h in Headers */,
  1406. C7D18935F2CFB0B0525CAEFC4610C6AE /* UIView+YYText.h in Headers */,
  1407. 59DF16BC09798FEFB776A5B17C2E3CCF /* YYLabel.h in Headers */,
  1408. 5B8CB26922362364523F24D1E83764D1 /* YYText.h in Headers */,
  1409. 5BF987096F7CA20815070D276A2EBC5E /* YYTextArchiver.h in Headers */,
  1410. 89A624531B981F6165C799AF6A9FE2E7 /* YYTextAsyncLayer.h in Headers */,
  1411. B4D60EAEA2512C44C72FD54441C6C15C /* YYTextAttribute.h in Headers */,
  1412. D60F1EAD0E09B0ED80A7E9631E8B13E0 /* YYTextContainerView.h in Headers */,
  1413. 70A62934BE85AEC19192F9A8BD0A66FA /* YYTextDebugOption.h in Headers */,
  1414. E1EAA5CAA13B421FC1BFEE8A741D4189 /* YYTextEffectWindow.h in Headers */,
  1415. 7224AF90E4AFF20058C3F84F1336B134 /* YYTextInput.h in Headers */,
  1416. 756D31CB09477B50D36204DFFB7EA42A /* YYTextKeyboardManager.h in Headers */,
  1417. 336294A8C0A924407434D81A88A3B2E1 /* YYTextLayout.h in Headers */,
  1418. 34D690A5A2F96C59C00CF90699D0E1E5 /* YYTextLine.h in Headers */,
  1419. A6B33365753E3FB81C4D095217E27CDF /* YYTextMagnifier.h in Headers */,
  1420. 57E1CFE2A41A2A26C7775C286E643BBE /* YYTextParser.h in Headers */,
  1421. 9B1E7AEF9F2A2445AB16F213DBE0C97C /* YYTextRubyAnnotation.h in Headers */,
  1422. B7C5DD68F83710CB71471C8BFA4C0EBB /* YYTextRunDelegate.h in Headers */,
  1423. 3EAE03A9C0D44D7E3DE15E9D0D89C2DC /* YYTextSelectionView.h in Headers */,
  1424. 084FA057947FD4B8E5B4093B80B2310A /* YYTextTransaction.h in Headers */,
  1425. 15CD333FB3CF3C9040F20AA320FD0DF3 /* YYTextUtilities.h in Headers */,
  1426. EA2B31A15E2FD0137B67863504E87A56 /* YYTextView.h in Headers */,
  1427. C4C8590716111199B7AED48DF3FD1165 /* YYTextWeakProxy.h in Headers */,
  1428. );
  1429. runOnlyForDeploymentPostprocessing = 0;
  1430. };
  1431. /* End PBXHeadersBuildPhase section */
  1432. /* Begin PBXNativeTarget section */
  1433. 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */ = {
  1434. isa = PBXNativeTarget;
  1435. buildConfigurationList = 9A8468B40FF59E48478E6AFED653CE11 /* Build configuration list for PBXNativeTarget "SVProgressHUD" */;
  1436. buildPhases = (
  1437. 9BD1126D67D0B4FC2F181104FC562EEE /* Headers */,
  1438. BD019BB611C8B9B82C80994B37E4B3DD /* Sources */,
  1439. 651767A35F3F5BB82162FF9DE4322858 /* Frameworks */,
  1440. );
  1441. buildRules = (
  1442. );
  1443. dependencies = (
  1444. );
  1445. name = SVProgressHUD;
  1446. productName = SVProgressHUD;
  1447. productReference = E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */;
  1448. productType = "com.apple.product-type.library.static";
  1449. };
  1450. 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */ = {
  1451. isa = PBXNativeTarget;
  1452. buildConfigurationList = 1E24F4F9E48DB17C24851841F290DF89 /* Build configuration list for PBXNativeTarget "LenzSDK" */;
  1453. buildPhases = (
  1454. 7E8376A64BDA994E29F90B4FC2B57648 /* Headers */,
  1455. 7FC63EF97360CFBF801C7F00FB9B0E91 /* Sources */,
  1456. D9FE46DE6C340903427F9319BEE22478 /* Frameworks */,
  1457. );
  1458. buildRules = (
  1459. );
  1460. dependencies = (
  1461. A13F83C5C7683DC4C956B2A14F1BFA81 /* PBXTargetDependency */,
  1462. 0178D6A39A7DD809A1545BE93BB9DAE0 /* PBXTargetDependency */,
  1463. 65DB1011938FFED747A2303B39D9C08E /* PBXTargetDependency */,
  1464. 5F3B482A916C6C4452ED74553BA9ECA6 /* PBXTargetDependency */,
  1465. 1616B5B5E51A8712E1685952A86F53D0 /* PBXTargetDependency */,
  1466. );
  1467. name = LenzSDK;
  1468. productName = LenzSDK;
  1469. productReference = CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */;
  1470. productType = "com.apple.product-type.library.static";
  1471. };
  1472. 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */ = {
  1473. isa = PBXNativeTarget;
  1474. buildConfigurationList = FFF7042CADCE0E5C50D90DAE995E60A0 /* Build configuration list for PBXNativeTarget "Masonry" */;
  1475. buildPhases = (
  1476. 81D6CCB2805BA3E7E24C05FAFAFFEBA7 /* Headers */,
  1477. CB57F945220DF39FCBD7F259360D44C7 /* Sources */,
  1478. 5201A48FF16520DC6EC61F61532A5F51 /* Frameworks */,
  1479. );
  1480. buildRules = (
  1481. );
  1482. dependencies = (
  1483. );
  1484. name = Masonry;
  1485. productName = Masonry;
  1486. productReference = 1FFED36A657123030ABB700256D73F15 /* Masonry */;
  1487. productType = "com.apple.product-type.library.static";
  1488. };
  1489. 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */ = {
  1490. isa = PBXNativeTarget;
  1491. buildConfigurationList = 335A5208C998FE0EE108BA2BCDCE3976 /* Build configuration list for PBXNativeTarget "YYText" */;
  1492. buildPhases = (
  1493. B72922862FFA564708648178544BF49D /* Headers */,
  1494. 46C6F4E21EDE19BE4C3C79D92818A44F /* Sources */,
  1495. 87A53D71436C043AD2044563DC983A70 /* Frameworks */,
  1496. );
  1497. buildRules = (
  1498. );
  1499. dependencies = (
  1500. );
  1501. name = YYText;
  1502. productName = YYText;
  1503. productReference = 71762A728913EB440C97D3616D291AF3 /* YYText */;
  1504. productType = "com.apple.product-type.library.static";
  1505. };
  1506. 8222597EFCE86FAF8329DCA378CDF036 /* Pods-LenzCameraNativeModuleForRN_Example */ = {
  1507. isa = PBXNativeTarget;
  1508. buildConfigurationList = F130161DB3EB0297431EDD1948002BB4 /* Build configuration list for PBXNativeTarget "Pods-LenzCameraNativeModuleForRN_Example" */;
  1509. buildPhases = (
  1510. 3427465FE64E78C9D8B0EF3B72D47634 /* Headers */,
  1511. F9F177129CE4EF8B949B85767F148550 /* Sources */,
  1512. 02B9D7251D15087A8DA31D60B13E16B2 /* Frameworks */,
  1513. );
  1514. buildRules = (
  1515. );
  1516. dependencies = (
  1517. E8AC02486D6553DAD01EFB51D089357B /* PBXTargetDependency */,
  1518. D8C75009202A16A0949BD2F842DDD804 /* PBXTargetDependency */,
  1519. 7B2588912B3738DA6CE7C7BEEA78C04B /* PBXTargetDependency */,
  1520. 511B0FF012B81BD9BAB5F8654F6AEC01 /* PBXTargetDependency */,
  1521. 40D0AF2BFD9BF150084146B2DF385740 /* PBXTargetDependency */,
  1522. );
  1523. name = "Pods-LenzCameraNativeModuleForRN_Example";
  1524. productName = "Pods-LenzCameraNativeModuleForRN_Example";
  1525. productReference = 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */;
  1526. productType = "com.apple.product-type.library.static";
  1527. };
  1528. E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */ = {
  1529. isa = PBXNativeTarget;
  1530. buildConfigurationList = FB3A69825693554754E78221C5470707 /* Build configuration list for PBXNativeTarget "LenzSDK-LenzCameraNativeModuleForRN" */;
  1531. buildPhases = (
  1532. DCD3D29BB46661564380EE9F97AA9E0B /* Sources */,
  1533. 27DB505796AEFF6F325D0097670EBCF9 /* Frameworks */,
  1534. 1FDB8C19932CFB576D07F38C589F9AB3 /* Resources */,
  1535. );
  1536. buildRules = (
  1537. );
  1538. dependencies = (
  1539. );
  1540. name = "LenzSDK-LenzCameraNativeModuleForRN";
  1541. productName = LenzCameraNativeModuleForRN;
  1542. productReference = CCC2A2D9BE13B566A864D567615045F6 /* LenzSDK-LenzCameraNativeModuleForRN */;
  1543. productType = "com.apple.product-type.bundle";
  1544. };
  1545. /* End PBXNativeTarget section */
  1546. /* Begin PBXProject section */
  1547. BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
  1548. isa = PBXProject;
  1549. attributes = {
  1550. LastSwiftUpdateCheck = 1300;
  1551. LastUpgradeCheck = 1300;
  1552. };
  1553. buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
  1554. compatibilityVersion = "Xcode 3.2";
  1555. developmentRegion = en;
  1556. hasScannedForEncodings = 0;
  1557. knownRegions = (
  1558. Base,
  1559. en,
  1560. "zh-Hans",
  1561. );
  1562. mainGroup = CF1408CF629C7361332E53B88F7BD30C;
  1563. productRefGroup = 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */;
  1564. projectDirPath = "";
  1565. projectRoot = "";
  1566. targets = (
  1567. 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */,
  1568. E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */,
  1569. 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */,
  1570. 8222597EFCE86FAF8329DCA378CDF036 /* Pods-LenzCameraNativeModuleForRN_Example */,
  1571. 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */,
  1572. A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */,
  1573. 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */,
  1574. );
  1575. };
  1576. /* End PBXProject section */
  1577. /* Begin PBXResourcesBuildPhase section */
  1578. 1FDB8C19932CFB576D07F38C589F9AB3 /* Resources */ = {
  1579. isa = PBXResourcesBuildPhase;
  1580. buildActionMask = 2147483647;
  1581. files = (
  1582. 02EDD635504BF57114EE2902B28F0EB8 /* assets.xcassets in Resources */,
  1583. 208C68C1BB9548B7F43CF36DBB7CCD80 /* Localizable.strings in Resources */,
  1584. B118B5AB61E2169C00C6001185FE03FE /* moire_mobilenetv2_79.tflite in Resources */,
  1585. 15CC60CD2EF809BE1BBA97FEBDBE9605 /* PhotoCell.xib in Resources */,
  1586. B64E0B389A85E1625E23E3AA98DC0005 /* PhotoCollectionViewCell.xib in Resources */,
  1587. DC46ABD9C0AA1F6B23E8F10F4B03063D /* QuitMultipleModeAlertViewController.xib in Resources */,
  1588. BD9B5FBD5EFDB50E07624E153C262283 /* VC.storyboard in Resources */,
  1589. );
  1590. runOnlyForDeploymentPostprocessing = 0;
  1591. };
  1592. /* End PBXResourcesBuildPhase section */
  1593. /* Begin PBXSourcesBuildPhase section */
  1594. 46C6F4E21EDE19BE4C3C79D92818A44F /* Sources */ = {
  1595. isa = PBXSourcesBuildPhase;
  1596. buildActionMask = 2147483647;
  1597. files = (
  1598. 77C5B6E02AF70E47D1E380BE5ADFE750 /* NSAttributedString+YYText.m in Sources */,
  1599. A4EF72D5F92B9D1BFD38F94C0F9353AD /* NSParagraphStyle+YYText.m in Sources */,
  1600. C688AA37EE739D61560E2B86D64ACC51 /* UIPasteboard+YYText.m in Sources */,
  1601. 7F907ABC6FFC4E1B12ADA33F233AF492 /* UIView+YYText.m in Sources */,
  1602. 7F80FA71C480E4AF23FF39A9E96D4652 /* YYLabel.m in Sources */,
  1603. DCC02118BBA9787C005B87C69A9A84FB /* YYText-dummy.m in Sources */,
  1604. 85EA2553FEB2D2FDBF124F6A77692798 /* YYTextArchiver.m in Sources */,
  1605. 5B04C33B5BB8BC512829FDD019856853 /* YYTextAsyncLayer.m in Sources */,
  1606. 9C42AC82DD36B5A948D434BC68E5F705 /* YYTextAttribute.m in Sources */,
  1607. AB1C71721E3F29910AEF8BB9DF228954 /* YYTextContainerView.m in Sources */,
  1608. 6D7E6BFCE0A2280C205A4442664D3B8E /* YYTextDebugOption.m in Sources */,
  1609. A8584851C94F7410D7C91165CBE35D20 /* YYTextEffectWindow.m in Sources */,
  1610. 6868E309F99B12D1046CF67E5D4601D8 /* YYTextInput.m in Sources */,
  1611. 8E592EC028AE26B68DD719F05450A171 /* YYTextKeyboardManager.m in Sources */,
  1612. C8EEE774E035293D0326E733FBCB8EC8 /* YYTextLayout.m in Sources */,
  1613. ECF173B98738BC2218D11D27EEDA565E /* YYTextLine.m in Sources */,
  1614. 1D8B5E19E2DDD85E6F6ABA76D980365B /* YYTextMagnifier.m in Sources */,
  1615. 7FFCDBA1CB71D9C973C49B4A37EC5725 /* YYTextParser.m in Sources */,
  1616. 0AE23868BA6DA518A770964CFA58B2B6 /* YYTextRubyAnnotation.m in Sources */,
  1617. 9835BD9F0CC98740477919085DCC81D6 /* YYTextRunDelegate.m in Sources */,
  1618. CA98C2A3810D3F5C4E6D4B7BA03E1E62 /* YYTextSelectionView.m in Sources */,
  1619. B620BC317F7569737F8464565713133B /* YYTextTransaction.m in Sources */,
  1620. DA0C9838D939D960483A0D1EA4EE4FAF /* YYTextUtilities.m in Sources */,
  1621. 988549A36C48743753DD4FB793E0D018 /* YYTextView.m in Sources */,
  1622. 6FE8C0F00B081D797EBA92E15F8A1EC4 /* YYTextWeakProxy.m in Sources */,
  1623. );
  1624. runOnlyForDeploymentPostprocessing = 0;
  1625. };
  1626. 7FC63EF97360CFBF801C7F00FB9B0E91 /* Sources */ = {
  1627. isa = PBXSourcesBuildPhase;
  1628. buildActionMask = 2147483647;
  1629. files = (
  1630. 36A335D72A32C8D373B244083634C298 /* AlbumCounterLabel.m in Sources */,
  1631. D0DC343DF898D9DA5386B2364B92110E /* AlertView.m in Sources */,
  1632. 45A025C9E91F10658628F768D873642D /* AVCapturePhotoOutput+VersionAdaptor.m in Sources */,
  1633. 167CA5A8031385B0A81CCF7901765CC7 /* BaseViewTapGestureDelegate.m in Sources */,
  1634. 8E53653E1B32D93DAEA0E4C486403383 /* CameraManager.m in Sources */,
  1635. 023CFE8053B14211C69D04718711DEFC /* CameraTextureRenderPass.m in Sources */,
  1636. 4D8322EF82610B19CF14893F310DF415 /* CollectionViewPlayerCell.m in Sources */,
  1637. EEF4EFB15583307EFE5315F41D0FCA63 /* cpp-headers.mm in Sources */,
  1638. 068F7D34728422B2B5C9C30E58BD7C52 /* CustomModalViewTransition.m in Sources */,
  1639. F5D086A3E8F39A21E5A535FD3EF1E033 /* DBManager.m in Sources */,
  1640. 1AD187D9AC6E811D7CF9781BF8CFAEF6 /* ImageCacheLRU.m in Sources */,
  1641. 62D4C11F440C4A96585B6703AF77C5E1 /* lenz_stitcher.a in Sources */,
  1642. 573FF3E20326AF5E9D1AE2968368330A /* LenzCachedResourceModel.m in Sources */,
  1643. 6A93F1139D51CC7E5577AA5F665F7EDA /* LenzCameraSDK.m in Sources */,
  1644. D8D33FC10F5A2BF9DB0339F2A8FCE329 /* LenzDataManager.m in Sources */,
  1645. ECD1E36F2AEDFE68EAC886A26F2B845E /* LenzSDK-dummy.m in Sources */,
  1646. 40B7B47B7B502516A205297033B80D22 /* Localizable.strings in Sources */,
  1647. F25B552B4ABDAA9110FDBFA050BDA5DC /* Localizable.strings in Sources */,
  1648. A92AA1B9BB6390AB86B6413B3A8A88CC /* MovieListCellModel.m in Sources */,
  1649. 90F29372D5FD84D85705EDC32EAF1A02 /* MovieListViewController.m in Sources */,
  1650. E16EEBCA03B54B544EDC39027C5BA0FC /* MoviePlayerViewController.m in Sources */,
  1651. 4DC87D1E949CB1CC1987DC05ADEB580F /* NSString+Localization.m in Sources */,
  1652. DAAC402C6E33313B45C8CF47004AD879 /* OperationNodeAIPanorama.m in Sources */,
  1653. F39E7931365010946F6DBFB36B4B2EB5 /* OperationNodeMovie.m in Sources */,
  1654. 1ED3C161DBA972E683FA708F5062C208 /* OperationNodeMultiple.m in Sources */,
  1655. 492AD3240A9A28893E6AE7C8AE30A525 /* OperationNodePanorama.m in Sources */,
  1656. 323CA95CD72A2E0207D256F1F69C5F3D /* OperationNodeSingle.m in Sources */,
  1657. 90E3BA5C23397CF975541DDA124722BA /* OperationNodeVideoBase.m in Sources */,
  1658. 313057E0BBF20FEDA9AA0FFB3EED8C0D /* PaddingLabel.m in Sources */,
  1659. C89F708DF6D8456EBE5DA2D2E291BC8A /* PanoramaGuideView.m in Sources */,
  1660. 9AEF36993DA36EA384C2794F81127683 /* PanoramaOrientationView.m in Sources */,
  1661. A24D51C9DDA7055D9207F4E1A4E8C8B3 /* PCSBaseViewController.m in Sources */,
  1662. BF498FA11AE3EACC30C4B8E5CCFDAB90 /* PCSButton.m in Sources */,
  1663. 3C0C1C4D82E74794045D34B2F336E55B /* PCSModeList.m in Sources */,
  1664. 25A56361BB8E7291B0E6C4D60F57D7FB /* PCSMotionManager.m in Sources */,
  1665. FE28B81832D825805108C9131B8310AA /* PCSPreviewViewController.m in Sources */,
  1666. C966139CE4D69A2E221EFFC1E475BA70 /* PCSRoundButton.m in Sources */,
  1667. 43FB1194BE4F7755647BE583FE9DE8C9 /* PCSSessionWrapper.m in Sources */,
  1668. 5325B5D50750C2B516941C1BC1DAF84D /* PCSThemeColorManager.m in Sources */,
  1669. 0136F970555A2FE5E5BAEED511674D6A /* PCSTools.m in Sources */,
  1670. 4EC3293169F740693B5D0A371624A75D /* PhotoAlbumListViewController.m in Sources */,
  1671. 411EEB22AF92299394B87F74D88D1460 /* PhotoAlbumModel.m in Sources */,
  1672. 2776881FEA95B4221D237348734861A5 /* PhotoCell.m in Sources */,
  1673. 5DC64232325DA5A4D21D97CC569CD758 /* PhotoCell.xib in Sources */,
  1674. 76C20AD4B92885154D87FC48AC21C0D5 /* PhotoCollectionViewCell.m in Sources */,
  1675. 4547326B38452A54A54B6BB4B10DE57E /* PhotoCollectionViewCell.xib in Sources */,
  1676. 0521A183DF005CC0EA971A2FCC397194 /* PhotoListCellModel.m in Sources */,
  1677. 0F88A9F602D848578F98D16A0F11CC05 /* PhotoListViewController.m in Sources */,
  1678. 1C13180EC4403658D9FE1363FD47B139 /* PreviewSingleViewController.m in Sources */,
  1679. 023464FF5345321333136E9CF313741F /* QuitMultipleModeAlertViewController.m in Sources */,
  1680. F085F277FB366D548502D3F71267B7CF /* QuitMultipleModeAlertViewController.xib in Sources */,
  1681. C000CDC3A8FF69AABFF235DAC9269EAF /* Renderer.m in Sources */,
  1682. B3FFCFD840E2AEE76BAC47A84F274B28 /* SDKParameters.m in Sources */,
  1683. C690F7D6ACD090EC597507C9BF8C96D3 /* Shaders.metal in Sources */,
  1684. 6E64879D6211004843DE58AC87B45C56 /* TensorFlowWrapper.m in Sources */,
  1685. ACA6E96B3FC57BC074B759897E0FC15D /* TimerLabel.m in Sources */,
  1686. B5DEC04ABA0617E937918AF345E611EA /* UIButton+Layout.m in Sources */,
  1687. 4BC258EE7EC77815097A3E9E338B7280 /* UIColor+JKAdd.m in Sources */,
  1688. 37287801A54A0A670972CF786BC1BBAE /* UIImage+ext.m in Sources */,
  1689. ED94ACCAACE2B5F792A1BE295099C1B1 /* UIImage+name.m in Sources */,
  1690. F1AD74AA99C7ADAFFBF6228E99F377E9 /* UIView+JKAdd.m in Sources */,
  1691. F2C2F93768E230384361F403453A380D /* VC.storyboard in Sources */,
  1692. DD251C162F5079C04ECA0EEEFC4FDF76 /* VerticalButton.m in Sources */,
  1693. );
  1694. runOnlyForDeploymentPostprocessing = 0;
  1695. };
  1696. BD019BB611C8B9B82C80994B37E4B3DD /* Sources */ = {
  1697. isa = PBXSourcesBuildPhase;
  1698. buildActionMask = 2147483647;
  1699. files = (
  1700. 67E5943679E464CD2079A8AFAD0732D1 /* SVIndefiniteAnimatedView.m in Sources */,
  1701. 9500E3D014074F001470D6EBFF460231 /* SVProgressAnimatedView.m in Sources */,
  1702. DD22269997F82307B4FFFD2E8A0DCEEE /* SVProgressHUD.m in Sources */,
  1703. AD0ED8A23D28A11012C13397BA1D09A7 /* SVProgressHUD-dummy.m in Sources */,
  1704. 56B960051357AC8944C25E33654CC7CB /* SVRadialGradientLayer.m in Sources */,
  1705. );
  1706. runOnlyForDeploymentPostprocessing = 0;
  1707. };
  1708. CB57F945220DF39FCBD7F259360D44C7 /* Sources */ = {
  1709. isa = PBXSourcesBuildPhase;
  1710. buildActionMask = 2147483647;
  1711. files = (
  1712. 31BADF35F4B73610453214D8CCA4CE96 /* MASCompositeConstraint.m in Sources */,
  1713. 61D5656846E4EFF9A3BBACEFEA2A9157 /* MASConstraint.m in Sources */,
  1714. 15CC219133439E79B63C325A48CB5230 /* MASConstraintMaker.m in Sources */,
  1715. 9402D5AAA95193CE70739597D0BE622E /* MASLayoutConstraint.m in Sources */,
  1716. 8B22624C519A49650D314A3D4E21B8E3 /* Masonry-dummy.m in Sources */,
  1717. 3EAF9A103C2C88DB15C08BEAC8A9CB97 /* MASViewAttribute.m in Sources */,
  1718. D3D875F034EA672BEFA8CAE5E50C1D68 /* MASViewConstraint.m in Sources */,
  1719. E98435255607264A1544DD2689D8FF4E /* NSArray+MASAdditions.m in Sources */,
  1720. E49B464C18CFCD4F3BB43A596712DA39 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
  1721. DB4BA808523D6374E92D1E4223FF775D /* View+MASAdditions.m in Sources */,
  1722. 75DF02B9DE4CEA66C4A8A0E3C29CAD2E /* ViewController+MASAdditions.m in Sources */,
  1723. );
  1724. runOnlyForDeploymentPostprocessing = 0;
  1725. };
  1726. DCD3D29BB46661564380EE9F97AA9E0B /* Sources */ = {
  1727. isa = PBXSourcesBuildPhase;
  1728. buildActionMask = 2147483647;
  1729. files = (
  1730. );
  1731. runOnlyForDeploymentPostprocessing = 0;
  1732. };
  1733. F9F177129CE4EF8B949B85767F148550 /* Sources */ = {
  1734. isa = PBXSourcesBuildPhase;
  1735. buildActionMask = 2147483647;
  1736. files = (
  1737. 9DD3CA64E5A33B53492C6DF08DFF93AA /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m in Sources */,
  1738. );
  1739. runOnlyForDeploymentPostprocessing = 0;
  1740. };
  1741. /* End PBXSourcesBuildPhase section */
  1742. /* Begin PBXTargetDependency section */
  1743. 0178D6A39A7DD809A1545BE93BB9DAE0 /* PBXTargetDependency */ = {
  1744. isa = PBXTargetDependency;
  1745. name = Masonry;
  1746. target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */;
  1747. targetProxy = C743F33DAD15DD387ADACA20236C5A46 /* PBXContainerItemProxy */;
  1748. };
  1749. 1616B5B5E51A8712E1685952A86F53D0 /* PBXTargetDependency */ = {
  1750. isa = PBXTargetDependency;
  1751. name = YYText;
  1752. target = 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */;
  1753. targetProxy = 2679C7739BB2F01090AE1403DE32E0A7 /* PBXContainerItemProxy */;
  1754. };
  1755. 40D0AF2BFD9BF150084146B2DF385740 /* PBXTargetDependency */ = {
  1756. isa = PBXTargetDependency;
  1757. name = YYText;
  1758. target = 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */;
  1759. targetProxy = DCA9FDEF49E484AF309EF97BFE437B29 /* PBXContainerItemProxy */;
  1760. };
  1761. 511B0FF012B81BD9BAB5F8654F6AEC01 /* PBXTargetDependency */ = {
  1762. isa = PBXTargetDependency;
  1763. name = TensorFlowLite;
  1764. target = A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */;
  1765. targetProxy = 7EC7C279130D3AD630925C04F22E4664 /* PBXContainerItemProxy */;
  1766. };
  1767. 5F3B482A916C6C4452ED74553BA9ECA6 /* PBXTargetDependency */ = {
  1768. isa = PBXTargetDependency;
  1769. name = TensorFlowLite;
  1770. target = A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */;
  1771. targetProxy = 14BD6CB410BCEBF0C8F05A0834AAFBD5 /* PBXContainerItemProxy */;
  1772. };
  1773. 65DB1011938FFED747A2303B39D9C08E /* PBXTargetDependency */ = {
  1774. isa = PBXTargetDependency;
  1775. name = SVProgressHUD;
  1776. target = 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */;
  1777. targetProxy = 8D593E22E2C42DB887C2C0CFFFAAA437 /* PBXContainerItemProxy */;
  1778. };
  1779. 7B2588912B3738DA6CE7C7BEEA78C04B /* PBXTargetDependency */ = {
  1780. isa = PBXTargetDependency;
  1781. name = SVProgressHUD;
  1782. target = 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */;
  1783. targetProxy = 61F0F3737B0825E57379D196F67AEAFF /* PBXContainerItemProxy */;
  1784. };
  1785. A13F83C5C7683DC4C956B2A14F1BFA81 /* PBXTargetDependency */ = {
  1786. isa = PBXTargetDependency;
  1787. name = "LenzSDK-LenzCameraNativeModuleForRN";
  1788. target = E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */;
  1789. targetProxy = B30991FA22D816FB193BDB87DF6DAA14 /* PBXContainerItemProxy */;
  1790. };
  1791. D8C75009202A16A0949BD2F842DDD804 /* PBXTargetDependency */ = {
  1792. isa = PBXTargetDependency;
  1793. name = Masonry;
  1794. target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */;
  1795. targetProxy = E8B3C1A00FD16172DADC67FCE11827D2 /* PBXContainerItemProxy */;
  1796. };
  1797. E8AC02486D6553DAD01EFB51D089357B /* PBXTargetDependency */ = {
  1798. isa = PBXTargetDependency;
  1799. name = LenzSDK;
  1800. target = 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */;
  1801. targetProxy = 0F37F87CAD55CF1327916C0B41F8E6AA /* PBXContainerItemProxy */;
  1802. };
  1803. /* End PBXTargetDependency section */
  1804. /* Begin PBXVariantGroup section */
  1805. E9C8B1352CBA0FEBAD260A2E875DF2DE /* Localizable.strings */ = {
  1806. isa = PBXVariantGroup;
  1807. children = (
  1808. 3DEFF5635EA7D20945B2F48768B2AAA4 /* Localizable.strings */,
  1809. 98F6633F7645381FF0289CA10AC9802E /* Localizable.strings */,
  1810. );
  1811. name = Localizable.strings;
  1812. path = .;
  1813. sourceTree = "<group>";
  1814. };
  1815. /* End PBXVariantGroup section */
  1816. /* Begin XCBuildConfiguration section */
  1817. 060ADF05F3AC6B20A7060BE19F3AF47C /* Debug */ = {
  1818. isa = XCBuildConfiguration;
  1819. baseConfigurationReference = 4E5519F8ACF06D3117C557AC71BBF11A /* YYText.debug.xcconfig */;
  1820. buildSettings = {
  1821. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  1822. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  1823. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  1824. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  1825. GCC_PREFIX_HEADER = "Target Support Files/YYText/YYText-prefix.pch";
  1826. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  1827. OTHER_LDFLAGS = "";
  1828. OTHER_LIBTOOLFLAGS = "";
  1829. PRIVATE_HEADERS_FOLDER_PATH = "";
  1830. PRODUCT_MODULE_NAME = YYText;
  1831. PRODUCT_NAME = YYText;
  1832. PUBLIC_HEADERS_FOLDER_PATH = "";
  1833. SDKROOT = iphoneos;
  1834. SKIP_INSTALL = YES;
  1835. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  1836. SWIFT_VERSION = 4.0;
  1837. TARGETED_DEVICE_FAMILY = "1,2";
  1838. };
  1839. name = Debug;
  1840. };
  1841. 1EF7B875868E2B612ABD983F1529A28A /* Release */ = {
  1842. isa = XCBuildConfiguration;
  1843. baseConfigurationReference = 64D23F96A249A835012EC76AACF02FA7 /* LenzSDK.release.xcconfig */;
  1844. buildSettings = {
  1845. CODE_SIGNING_ALLOWED = NO;
  1846. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/LenzSDK";
  1847. IBSC_MODULE = LenzSDK;
  1848. INFOPLIST_FILE = "Target Support Files/LenzSDK/ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist";
  1849. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  1850. PRODUCT_NAME = LenzCameraNativeModuleForRN;
  1851. SDKROOT = iphoneos;
  1852. SKIP_INSTALL = YES;
  1853. TARGETED_DEVICE_FAMILY = "1,2";
  1854. WRAPPER_EXTENSION = bundle;
  1855. };
  1856. name = Release;
  1857. };
  1858. 22751CA4D5F5EA874D88D774DC47B293 /* Release */ = {
  1859. isa = XCBuildConfiguration;
  1860. baseConfigurationReference = 23C222F8741C6545FA2E78D3B6885D45 /* TensorFlowLite.release.xcconfig */;
  1861. buildSettings = {
  1862. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  1863. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1864. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  1865. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1866. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1867. SDKROOT = iphoneos;
  1868. TARGETED_DEVICE_FAMILY = "1,2";
  1869. VALIDATE_PRODUCT = YES;
  1870. };
  1871. name = Release;
  1872. };
  1873. 2B9E26EAE2CD392AD762421F663075A1 /* Debug */ = {
  1874. isa = XCBuildConfiguration;
  1875. buildSettings = {
  1876. ALWAYS_SEARCH_USER_PATHS = NO;
  1877. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1878. CLANG_ANALYZER_NONNULL = YES;
  1879. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1880. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  1881. CLANG_CXX_LIBRARY = "libc++";
  1882. CLANG_ENABLE_MODULES = YES;
  1883. CLANG_ENABLE_OBJC_ARC = YES;
  1884. CLANG_ENABLE_OBJC_WEAK = YES;
  1885. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1886. CLANG_WARN_BOOL_CONVERSION = YES;
  1887. CLANG_WARN_COMMA = YES;
  1888. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1889. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1890. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1891. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1892. CLANG_WARN_EMPTY_BODY = YES;
  1893. CLANG_WARN_ENUM_CONVERSION = YES;
  1894. CLANG_WARN_INFINITE_RECURSION = YES;
  1895. CLANG_WARN_INT_CONVERSION = YES;
  1896. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1897. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1898. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1899. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1900. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1901. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1902. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1903. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1904. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1905. CLANG_WARN_UNREACHABLE_CODE = YES;
  1906. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1907. COPY_PHASE_STRIP = NO;
  1908. DEBUG_INFORMATION_FORMAT = dwarf;
  1909. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1910. ENABLE_TESTABILITY = YES;
  1911. GCC_C_LANGUAGE_STANDARD = gnu11;
  1912. GCC_DYNAMIC_NO_PIC = NO;
  1913. GCC_NO_COMMON_BLOCKS = YES;
  1914. GCC_OPTIMIZATION_LEVEL = 0;
  1915. GCC_PREPROCESSOR_DEFINITIONS = (
  1916. "POD_CONFIGURATION_DEBUG=1",
  1917. "DEBUG=1",
  1918. "$(inherited)",
  1919. );
  1920. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1921. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1922. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1923. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1924. GCC_WARN_UNUSED_FUNCTION = YES;
  1925. GCC_WARN_UNUSED_VARIABLE = YES;
  1926. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  1927. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  1928. MTL_FAST_MATH = YES;
  1929. ONLY_ACTIVE_ARCH = YES;
  1930. PRODUCT_NAME = "$(TARGET_NAME)";
  1931. STRIP_INSTALLED_PRODUCT = NO;
  1932. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  1933. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  1934. SWIFT_VERSION = 5.0;
  1935. SYMROOT = "${SRCROOT}/../build";
  1936. };
  1937. name = Debug;
  1938. };
  1939. 2C537242B3A9E34B11979C62F4EE260B /* Debug */ = {
  1940. isa = XCBuildConfiguration;
  1941. baseConfigurationReference = CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */;
  1942. buildSettings = {
  1943. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  1944. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  1945. CLANG_ENABLE_OBJC_WEAK = NO;
  1946. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  1947. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  1948. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  1949. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  1950. MACH_O_TYPE = staticlib;
  1951. OTHER_LDFLAGS = "";
  1952. OTHER_LIBTOOLFLAGS = "";
  1953. PODS_ROOT = "$(SRCROOT)";
  1954. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  1955. SDKROOT = iphoneos;
  1956. SKIP_INSTALL = YES;
  1957. TARGETED_DEVICE_FAMILY = "1,2";
  1958. };
  1959. name = Debug;
  1960. };
  1961. 498C8266B2CD2F57B69DA68C13DD7ED8 /* Debug */ = {
  1962. isa = XCBuildConfiguration;
  1963. baseConfigurationReference = 79B3ECE71D1D817E41F35D9B5EDD8823 /* SVProgressHUD.debug.xcconfig */;
  1964. buildSettings = {
  1965. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  1966. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  1967. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  1968. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  1969. GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch";
  1970. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1971. OTHER_LDFLAGS = "";
  1972. OTHER_LIBTOOLFLAGS = "";
  1973. PRIVATE_HEADERS_FOLDER_PATH = "";
  1974. PRODUCT_MODULE_NAME = SVProgressHUD;
  1975. PRODUCT_NAME = SVProgressHUD;
  1976. PUBLIC_HEADERS_FOLDER_PATH = "";
  1977. SDKROOT = iphoneos;
  1978. SKIP_INSTALL = YES;
  1979. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  1980. SWIFT_VERSION = 4.0;
  1981. TARGETED_DEVICE_FAMILY = "1,2";
  1982. };
  1983. name = Debug;
  1984. };
  1985. 4D6B04C7596C90BE778ECF14A59BA0AE /* Release */ = {
  1986. isa = XCBuildConfiguration;
  1987. baseConfigurationReference = DAFD9603956A9F8C5BE7FAC749CCFF97 /* Masonry.release.xcconfig */;
  1988. buildSettings = {
  1989. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  1990. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  1991. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  1992. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  1993. GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch";
  1994. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  1995. OTHER_LDFLAGS = "";
  1996. OTHER_LIBTOOLFLAGS = "";
  1997. PRIVATE_HEADERS_FOLDER_PATH = "";
  1998. PRODUCT_MODULE_NAME = Masonry;
  1999. PRODUCT_NAME = Masonry;
  2000. PUBLIC_HEADERS_FOLDER_PATH = "";
  2001. SDKROOT = iphoneos;
  2002. SKIP_INSTALL = YES;
  2003. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2004. SWIFT_VERSION = 4.0;
  2005. TARGETED_DEVICE_FAMILY = "1,2";
  2006. VALIDATE_PRODUCT = YES;
  2007. };
  2008. name = Release;
  2009. };
  2010. 54A4CF5894B87A4651FC81AA03A66DB5 /* Debug */ = {
  2011. isa = XCBuildConfiguration;
  2012. baseConfigurationReference = 3B1C9EB4810F130F5B301709B86D03EB /* LenzSDK.debug.xcconfig */;
  2013. buildSettings = {
  2014. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2015. CLANG_ENABLE_OBJC_WEAK = NO;
  2016. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2017. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2018. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2019. GCC_PREFIX_HEADER = "Target Support Files/LenzSDK/LenzSDK-prefix.pch";
  2020. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2021. OTHER_LDFLAGS = "";
  2022. OTHER_LIBTOOLFLAGS = "";
  2023. PRIVATE_HEADERS_FOLDER_PATH = "";
  2024. PRODUCT_MODULE_NAME = LenzSDK;
  2025. PRODUCT_NAME = LenzSDK;
  2026. PUBLIC_HEADERS_FOLDER_PATH = "";
  2027. SDKROOT = iphoneos;
  2028. SKIP_INSTALL = YES;
  2029. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2030. SWIFT_VERSION = 4.0;
  2031. TARGETED_DEVICE_FAMILY = "1,2";
  2032. };
  2033. name = Debug;
  2034. };
  2035. 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */ = {
  2036. isa = XCBuildConfiguration;
  2037. buildSettings = {
  2038. ALWAYS_SEARCH_USER_PATHS = NO;
  2039. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2040. CLANG_ANALYZER_NONNULL = YES;
  2041. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2042. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2043. CLANG_CXX_LIBRARY = "libc++";
  2044. CLANG_ENABLE_MODULES = YES;
  2045. CLANG_ENABLE_OBJC_ARC = YES;
  2046. CLANG_ENABLE_OBJC_WEAK = YES;
  2047. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2048. CLANG_WARN_BOOL_CONVERSION = YES;
  2049. CLANG_WARN_COMMA = YES;
  2050. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2051. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2052. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2053. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2054. CLANG_WARN_EMPTY_BODY = YES;
  2055. CLANG_WARN_ENUM_CONVERSION = YES;
  2056. CLANG_WARN_INFINITE_RECURSION = YES;
  2057. CLANG_WARN_INT_CONVERSION = YES;
  2058. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2059. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2060. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2061. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2062. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2063. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2064. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2065. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2066. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2067. CLANG_WARN_UNREACHABLE_CODE = YES;
  2068. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2069. COPY_PHASE_STRIP = NO;
  2070. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2071. ENABLE_NS_ASSERTIONS = NO;
  2072. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2073. GCC_C_LANGUAGE_STANDARD = gnu11;
  2074. GCC_NO_COMMON_BLOCKS = YES;
  2075. GCC_PREPROCESSOR_DEFINITIONS = (
  2076. "POD_CONFIGURATION_RELEASE=1",
  2077. "$(inherited)",
  2078. );
  2079. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2080. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2081. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2082. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2083. GCC_WARN_UNUSED_FUNCTION = YES;
  2084. GCC_WARN_UNUSED_VARIABLE = YES;
  2085. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2086. MTL_ENABLE_DEBUG_INFO = NO;
  2087. MTL_FAST_MATH = YES;
  2088. PRODUCT_NAME = "$(TARGET_NAME)";
  2089. STRIP_INSTALLED_PRODUCT = NO;
  2090. SWIFT_COMPILATION_MODE = wholemodule;
  2091. SWIFT_OPTIMIZATION_LEVEL = "-O";
  2092. SWIFT_VERSION = 5.0;
  2093. SYMROOT = "${SRCROOT}/../build";
  2094. };
  2095. name = Release;
  2096. };
  2097. 7B6DBD1EB71D867546168DC3CDC93FD7 /* Release */ = {
  2098. isa = XCBuildConfiguration;
  2099. baseConfigurationReference = F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */;
  2100. buildSettings = {
  2101. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2102. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2103. CLANG_ENABLE_OBJC_WEAK = NO;
  2104. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2105. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2106. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2107. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2108. MACH_O_TYPE = staticlib;
  2109. OTHER_LDFLAGS = "";
  2110. OTHER_LIBTOOLFLAGS = "";
  2111. PODS_ROOT = "$(SRCROOT)";
  2112. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  2113. SDKROOT = iphoneos;
  2114. SKIP_INSTALL = YES;
  2115. TARGETED_DEVICE_FAMILY = "1,2";
  2116. VALIDATE_PRODUCT = YES;
  2117. };
  2118. name = Release;
  2119. };
  2120. 83EC80AAF60C9C41381BFFCFDF9AADB1 /* Release */ = {
  2121. isa = XCBuildConfiguration;
  2122. baseConfigurationReference = 64D23F96A249A835012EC76AACF02FA7 /* LenzSDK.release.xcconfig */;
  2123. buildSettings = {
  2124. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2125. CLANG_ENABLE_OBJC_WEAK = NO;
  2126. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2127. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2128. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2129. GCC_PREFIX_HEADER = "Target Support Files/LenzSDK/LenzSDK-prefix.pch";
  2130. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2131. OTHER_LDFLAGS = "";
  2132. OTHER_LIBTOOLFLAGS = "";
  2133. PRIVATE_HEADERS_FOLDER_PATH = "";
  2134. PRODUCT_MODULE_NAME = LenzSDK;
  2135. PRODUCT_NAME = LenzSDK;
  2136. PUBLIC_HEADERS_FOLDER_PATH = "";
  2137. SDKROOT = iphoneos;
  2138. SKIP_INSTALL = YES;
  2139. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2140. SWIFT_VERSION = 4.0;
  2141. TARGETED_DEVICE_FAMILY = "1,2";
  2142. VALIDATE_PRODUCT = YES;
  2143. };
  2144. name = Release;
  2145. };
  2146. 8447775E67FEF1705195AFCA163FCF86 /* Release */ = {
  2147. isa = XCBuildConfiguration;
  2148. baseConfigurationReference = 4D8E2E45458645E409B65064F26BE9BC /* SVProgressHUD.release.xcconfig */;
  2149. buildSettings = {
  2150. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2151. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2152. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2153. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2154. GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch";
  2155. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2156. OTHER_LDFLAGS = "";
  2157. OTHER_LIBTOOLFLAGS = "";
  2158. PRIVATE_HEADERS_FOLDER_PATH = "";
  2159. PRODUCT_MODULE_NAME = SVProgressHUD;
  2160. PRODUCT_NAME = SVProgressHUD;
  2161. PUBLIC_HEADERS_FOLDER_PATH = "";
  2162. SDKROOT = iphoneos;
  2163. SKIP_INSTALL = YES;
  2164. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2165. SWIFT_VERSION = 4.0;
  2166. TARGETED_DEVICE_FAMILY = "1,2";
  2167. VALIDATE_PRODUCT = YES;
  2168. };
  2169. name = Release;
  2170. };
  2171. 845A02663F5E913FD92345B3E11D31A9 /* Release */ = {
  2172. isa = XCBuildConfiguration;
  2173. baseConfigurationReference = C7B681F2187F1F5A880627CAB69F5A7C /* YYText.release.xcconfig */;
  2174. buildSettings = {
  2175. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2176. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2177. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2178. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2179. GCC_PREFIX_HEADER = "Target Support Files/YYText/YYText-prefix.pch";
  2180. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2181. OTHER_LDFLAGS = "";
  2182. OTHER_LIBTOOLFLAGS = "";
  2183. PRIVATE_HEADERS_FOLDER_PATH = "";
  2184. PRODUCT_MODULE_NAME = YYText;
  2185. PRODUCT_NAME = YYText;
  2186. PUBLIC_HEADERS_FOLDER_PATH = "";
  2187. SDKROOT = iphoneos;
  2188. SKIP_INSTALL = YES;
  2189. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2190. SWIFT_VERSION = 4.0;
  2191. TARGETED_DEVICE_FAMILY = "1,2";
  2192. VALIDATE_PRODUCT = YES;
  2193. };
  2194. name = Release;
  2195. };
  2196. 9F428B3145F621C744039A454202471C /* Debug */ = {
  2197. isa = XCBuildConfiguration;
  2198. baseConfigurationReference = CC221CE8C66884BDEE6D35D15C1A72B3 /* TensorFlowLite.debug.xcconfig */;
  2199. buildSettings = {
  2200. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2201. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2202. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2203. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2204. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  2205. SDKROOT = iphoneos;
  2206. TARGETED_DEVICE_FAMILY = "1,2";
  2207. };
  2208. name = Debug;
  2209. };
  2210. AE83CB933C284831FD8577B004E7A541 /* Debug */ = {
  2211. isa = XCBuildConfiguration;
  2212. baseConfigurationReference = 3B1C9EB4810F130F5B301709B86D03EB /* LenzSDK.debug.xcconfig */;
  2213. buildSettings = {
  2214. CODE_SIGNING_ALLOWED = NO;
  2215. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/LenzSDK";
  2216. IBSC_MODULE = LenzSDK;
  2217. INFOPLIST_FILE = "Target Support Files/LenzSDK/ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist";
  2218. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  2219. PRODUCT_NAME = LenzCameraNativeModuleForRN;
  2220. SDKROOT = iphoneos;
  2221. SKIP_INSTALL = YES;
  2222. TARGETED_DEVICE_FAMILY = "1,2";
  2223. WRAPPER_EXTENSION = bundle;
  2224. };
  2225. name = Debug;
  2226. };
  2227. D2A7FE6749E44EC20C218B5321DF07D5 /* Debug */ = {
  2228. isa = XCBuildConfiguration;
  2229. baseConfigurationReference = CD502849161614DACCEE9E27B93550F2 /* Masonry.debug.xcconfig */;
  2230. buildSettings = {
  2231. ARCHS = "$(ARCHS_STANDARD_64_BIT)";
  2232. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2233. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2234. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2235. GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch";
  2236. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2237. OTHER_LDFLAGS = "";
  2238. OTHER_LIBTOOLFLAGS = "";
  2239. PRIVATE_HEADERS_FOLDER_PATH = "";
  2240. PRODUCT_MODULE_NAME = Masonry;
  2241. PRODUCT_NAME = Masonry;
  2242. PUBLIC_HEADERS_FOLDER_PATH = "";
  2243. SDKROOT = iphoneos;
  2244. SKIP_INSTALL = YES;
  2245. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2246. SWIFT_VERSION = 4.0;
  2247. TARGETED_DEVICE_FAMILY = "1,2";
  2248. };
  2249. name = Debug;
  2250. };
  2251. /* End XCBuildConfiguration section */
  2252. /* Begin XCConfigurationList section */
  2253. 1E24F4F9E48DB17C24851841F290DF89 /* Build configuration list for PBXNativeTarget "LenzSDK" */ = {
  2254. isa = XCConfigurationList;
  2255. buildConfigurations = (
  2256. 54A4CF5894B87A4651FC81AA03A66DB5 /* Debug */,
  2257. 83EC80AAF60C9C41381BFFCFDF9AADB1 /* Release */,
  2258. );
  2259. defaultConfigurationIsVisible = 0;
  2260. defaultConfigurationName = Release;
  2261. };
  2262. 2B5DF5A158B98A0290FB17E1E4E3E2B6 /* Build configuration list for PBXAggregateTarget "TensorFlowLite" */ = {
  2263. isa = XCConfigurationList;
  2264. buildConfigurations = (
  2265. 9F428B3145F621C744039A454202471C /* Debug */,
  2266. 22751CA4D5F5EA874D88D774DC47B293 /* Release */,
  2267. );
  2268. defaultConfigurationIsVisible = 0;
  2269. defaultConfigurationName = Release;
  2270. };
  2271. 335A5208C998FE0EE108BA2BCDCE3976 /* Build configuration list for PBXNativeTarget "YYText" */ = {
  2272. isa = XCConfigurationList;
  2273. buildConfigurations = (
  2274. 060ADF05F3AC6B20A7060BE19F3AF47C /* Debug */,
  2275. 845A02663F5E913FD92345B3E11D31A9 /* Release */,
  2276. );
  2277. defaultConfigurationIsVisible = 0;
  2278. defaultConfigurationName = Release;
  2279. };
  2280. 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
  2281. isa = XCConfigurationList;
  2282. buildConfigurations = (
  2283. 2B9E26EAE2CD392AD762421F663075A1 /* Debug */,
  2284. 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */,
  2285. );
  2286. defaultConfigurationIsVisible = 0;
  2287. defaultConfigurationName = Release;
  2288. };
  2289. 9A8468B40FF59E48478E6AFED653CE11 /* Build configuration list for PBXNativeTarget "SVProgressHUD" */ = {
  2290. isa = XCConfigurationList;
  2291. buildConfigurations = (
  2292. 498C8266B2CD2F57B69DA68C13DD7ED8 /* Debug */,
  2293. 8447775E67FEF1705195AFCA163FCF86 /* Release */,
  2294. );
  2295. defaultConfigurationIsVisible = 0;
  2296. defaultConfigurationName = Release;
  2297. };
  2298. F130161DB3EB0297431EDD1948002BB4 /* Build configuration list for PBXNativeTarget "Pods-LenzCameraNativeModuleForRN_Example" */ = {
  2299. isa = XCConfigurationList;
  2300. buildConfigurations = (
  2301. 2C537242B3A9E34B11979C62F4EE260B /* Debug */,
  2302. 7B6DBD1EB71D867546168DC3CDC93FD7 /* Release */,
  2303. );
  2304. defaultConfigurationIsVisible = 0;
  2305. defaultConfigurationName = Release;
  2306. };
  2307. FB3A69825693554754E78221C5470707 /* Build configuration list for PBXNativeTarget "LenzSDK-LenzCameraNativeModuleForRN" */ = {
  2308. isa = XCConfigurationList;
  2309. buildConfigurations = (
  2310. AE83CB933C284831FD8577B004E7A541 /* Debug */,
  2311. 1EF7B875868E2B612ABD983F1529A28A /* Release */,
  2312. );
  2313. defaultConfigurationIsVisible = 0;
  2314. defaultConfigurationName = Release;
  2315. };
  2316. FFF7042CADCE0E5C50D90DAE995E60A0 /* Build configuration list for PBXNativeTarget "Masonry" */ = {
  2317. isa = XCConfigurationList;
  2318. buildConfigurations = (
  2319. D2A7FE6749E44EC20C218B5321DF07D5 /* Debug */,
  2320. 4D6B04C7596C90BE778ECF14A59BA0AE /* Release */,
  2321. );
  2322. defaultConfigurationIsVisible = 0;
  2323. defaultConfigurationName = Release;
  2324. };
  2325. /* End XCConfigurationList section */
  2326. };
  2327. rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
  2328. }