123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
- /* Begin PBXAggregateTarget section */
- A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */ = {
- isa = PBXAggregateTarget;
- buildConfigurationList = 2B5DF5A158B98A0290FB17E1E4E3E2B6 /* Build configuration list for PBXAggregateTarget "TensorFlowLite" */;
- buildPhases = (
- );
- dependencies = (
- );
- name = TensorFlowLite;
- };
- /* End PBXAggregateTarget section */
- /* Begin PBXBuildFile section */
- 0136F970555A2FE5E5BAEED511674D6A /* PCSTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 3383F6C3A5BD3B919BDA3BC6011E86E5 /* PCSTools.m */; };
- 023464FF5345321333136E9CF313741F /* QuitMultipleModeAlertViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BDAA4B378A2E594E02C3191126E989A7 /* QuitMultipleModeAlertViewController.m */; };
- 0239928A2EC82255C7AD2603A8A30F98 /* PhotoCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D7887C1F6773A568EBDB5D24DBBACBD /* PhotoCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 023CFE8053B14211C69D04718711DEFC /* CameraTextureRenderPass.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D3F36A7A2E0A0590FC794057DA03E5D /* CameraTextureRenderPass.m */; };
- 02B959FE26516AD48909BA09827C5514 /* ImageCacheLRU.h in Headers */ = {isa = PBXBuildFile; fileRef = 46C88FEA97AD035600FD104BF0FB899F /* ImageCacheLRU.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 02EDD635504BF57114EE2902B28F0EB8 /* assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D1F049E526F5575B78C34D06EEEA8012 /* assets.xcassets */; };
- 045AAD1AB83E7F95858CB0B461BFBB90 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = AC59A703058154D497C84656B4AE034E /* MASUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 0521A183DF005CC0EA971A2FCC397194 /* PhotoListCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BAC658FD230DEDCE8BF7B9F3067EB41 /* PhotoListCellModel.m */; };
- 068F7D34728422B2B5C9C30E58BD7C52 /* CustomModalViewTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = F2786C10A3CE15B2B97D2165EF589A44 /* CustomModalViewTransition.m */; };
- 084FA057947FD4B8E5B4093B80B2310A /* YYTextTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = 53DD05D7B6888C455D77CA8C05CEC207 /* YYTextTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 0AE23868BA6DA518A770964CFA58B2B6 /* YYTextRubyAnnotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 114501B95B52E239D7469CF4E409507E /* YYTextRubyAnnotation.m */; };
- 0E7B9B60DC5DA0C2A4034A2EA0B26677 /* LenzCachedResourceModel.h in Headers */ = {isa = PBXBuildFile; fileRef = AB4ED4E5A21F449AB237A6158DE5F976 /* LenzCachedResourceModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 0F88A9F602D848578F98D16A0F11CC05 /* PhotoListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BB15112B40D29902BD44EB63437D817 /* PhotoListViewController.m */; };
- 1027F512D7E8132EA23712BA83A0E366 /* PaddingLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8F0CE63987748F5D5EBB7AC297EB37 /* PaddingLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 11ADA2C64E2EFEA900C7C12FB8A176ED /* OperationNodeMovie.h in Headers */ = {isa = PBXBuildFile; fileRef = FCF39464DCA45BC7FE51A2F2EF530B78 /* OperationNodeMovie.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 15CC219133439E79B63C325A48CB5230 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2002BF941497DCE4DC551650ED008F9E /* MASConstraintMaker.m */; };
- 15CC60CD2EF809BE1BBA97FEBDBE9605 /* PhotoCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = D98C5C12F052EAD529EC9EEFE493EFAE /* PhotoCell.xib */; };
- 15CD333FB3CF3C9040F20AA320FD0DF3 /* YYTextUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = FAF7A7016021E626ECAEBF36DDB38433 /* YYTextUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 167CA5A8031385B0A81CCF7901765CC7 /* BaseViewTapGestureDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E324CBC5B1CD1D81F9DDBFE9466A1E97 /* BaseViewTapGestureDelegate.m */; };
- 18E22C2CA3EEA3529726DB78234102F5 /* TimerLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = C0931C591BE7B07CE458432E8414A12C /* TimerLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 1AD187D9AC6E811D7CF9781BF8CFAEF6 /* ImageCacheLRU.m in Sources */ = {isa = PBXBuildFile; fileRef = EFA78D74D65C7A2CFC756FE18A5145D0 /* ImageCacheLRU.m */; };
- 1C13180EC4403658D9FE1363FD47B139 /* PreviewSingleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C7551E540F421DB883EC45F9B9FD999 /* PreviewSingleViewController.m */; };
- 1D8B5E19E2DDD85E6F6ABA76D980365B /* YYTextMagnifier.m in Sources */ = {isa = PBXBuildFile; fileRef = A4C18B2ED0CB87015BA0CC57B8C7157E /* YYTextMagnifier.m */; };
- 1E66E189DFFEA268D990FF1924E5F3AA /* UIImage+name.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3793D77A5DF02CCECD90108FEF8CA3 /* UIImage+name.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 1ED3C161DBA972E683FA708F5062C208 /* OperationNodeMultiple.m in Sources */ = {isa = PBXBuildFile; fileRef = CD4D19A957FBFABB2144E0CA18C5EB84 /* OperationNodeMultiple.m */; };
- 208C68C1BB9548B7F43CF36DBB7CCD80 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = E9C8B1352CBA0FEBAD260A2E875DF2DE /* Localizable.strings */; };
- 25A56361BB8E7291B0E6C4D60F57D7FB /* PCSMotionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F4DA75E70A44BE70E7EE7A8E9E81CE80 /* PCSMotionManager.m */; };
- 2776881FEA95B4221D237348734861A5 /* PhotoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D62B02E7EF69B17AB7FAC2297364E42 /* PhotoCell.m */; };
- 27C458144190E14D027C6F53A23B28AF /* LenzHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 045C5643ECC38689ED9F9C8C770C5E31 /* LenzHeader.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 2B68E6A0683A84B3271177B84E8B19F2 /* NSParagraphStyle+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = EADB3792F4D552050D74E9418727DB85 /* NSParagraphStyle+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 2BF97781872D2E6ADADC8D01A0DB139E /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 00465AB67C1F1B380226E17A7CE23581 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 2FD31708C0A9546EF4514AFCDDA48133 /* CollectionViewPlayerCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B346FFE2FB28E8567ED95CB456A2F8CF /* CollectionViewPlayerCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 300A8F2D4968EB49C0625E962866D325 /* SVRadialGradientLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ABCED1E73226E2ABC9BE8BE8D03BF0D /* SVRadialGradientLayer.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 313057E0BBF20FEDA9AA0FFB3EED8C0D /* PaddingLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A400F0E8D0990EE2ECB8EF1C949F50A /* PaddingLabel.m */; };
- 31BADF35F4B73610453214D8CCA4CE96 /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 09C630CEDE852939E93E2C127B2582EC /* MASCompositeConstraint.m */; };
- 323CA95CD72A2E0207D256F1F69C5F3D /* OperationNodeSingle.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F37F3A6741614EF4393CEC045E9472B /* OperationNodeSingle.m */; };
- 336294A8C0A924407434D81A88A3B2E1 /* YYTextLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0994AB16F94688C044E520A3CD0008CC /* YYTextLayout.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 33BE96B3EDF2887F4F5EFFCC0AAC4790 /* PhotoAlbumModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C4AEE6F3FAD0B04DCB1E1E351C3CF50 /* PhotoAlbumModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 34D690A5A2F96C59C00CF90699D0E1E5 /* YYTextLine.h in Headers */ = {isa = PBXBuildFile; fileRef = 915DFC2B3727DF36D704655395005955 /* YYTextLine.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 35125021A252681A4ACD6212651D3EED /* SVProgressAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 71A9C32F11A74240787A960ACBA0D696 /* SVProgressAnimatedView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 36A335D72A32C8D373B244083634C298 /* AlbumCounterLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 185252B13C095F4158BB86519A54C9EA /* AlbumCounterLabel.m */; };
- 37287801A54A0A670972CF786BC1BBAE /* UIImage+ext.m in Sources */ = {isa = PBXBuildFile; fileRef = 813E120135C3E3B5C50FB70609B4A8D3 /* UIImage+ext.m */; };
- 39DD41B366B3CA5AA32AD1F346B9B2AB /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 236AF217BE16A74042B90DBB675F6FD0 /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 3C0C1C4D82E74794045D34B2F336E55B /* PCSModeList.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DE30B6B31980946761C9D5293B4941D /* PCSModeList.m */; };
- 3E6ED86721A1F011A450B6E96F7ED43F /* LenzCameraNativeModuleForRN.h in Headers */ = {isa = PBXBuildFile; fileRef = 96A8580B6102817508C5CE6FCE48459B /* LenzCameraNativeModuleForRN.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 3EAE03A9C0D44D7E3DE15E9D0D89C2DC /* YYTextSelectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 236BD5F0C68C18F6835B9292DCE7BB80 /* YYTextSelectionView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 3EAF9A103C2C88DB15C08BEAC8A9CB97 /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 66579CE2B50EB996A4F4583BBB52AAA3 /* MASViewAttribute.m */; };
- 408CDF664EB44439BA50971F116EEF58 /* LenzCameraSDK.h in Headers */ = {isa = PBXBuildFile; fileRef = AD277ABA97D5700D67AE4243F751B01F /* LenzCameraSDK.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 40B7B47B7B502516A205297033B80D22 /* Localizable.strings in Sources */ = {isa = PBXBuildFile; fileRef = 3DEFF5635EA7D20945B2F48768B2AAA4 /* Localizable.strings */; };
- 4100628200520015C6FC3F6B53A53A53 /* QuitMultipleModeAlertViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 21B8E03137BCF9F54F9CFE4277F7BEB7 /* QuitMultipleModeAlertViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 411EEB22AF92299394B87F74D88D1460 /* PhotoAlbumModel.m in Sources */ = {isa = PBXBuildFile; fileRef = BDEA7527A5E638AC420DC55A43D729CD /* PhotoAlbumModel.m */; };
- 43FB1194BE4F7755647BE583FE9DE8C9 /* PCSSessionWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = A17498484830BD5638E4AAE372DA3F34 /* PCSSessionWrapper.m */; };
- 44167A79BC1130104702B0B2749C955E /* SVIndefiniteAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 833F599750CCF740A20A786D96528502 /* SVIndefiniteAnimatedView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 4547326B38452A54A54B6BB4B10DE57E /* PhotoCollectionViewCell.xib in Sources */ = {isa = PBXBuildFile; fileRef = 24EDCA6C907B565CFCA6F153DACA1C08 /* PhotoCollectionViewCell.xib */; };
- 45A025C9E91F10658628F768D873642D /* AVCapturePhotoOutput+VersionAdaptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 46C5B9E72B8C325BE99EEB55A9C80A7A /* AVCapturePhotoOutput+VersionAdaptor.m */; };
- 492AD3240A9A28893E6AE7C8AE30A525 /* OperationNodePanorama.m in Sources */ = {isa = PBXBuildFile; fileRef = 77429CB6A8EAF380C3CB43D3A6254D3D /* OperationNodePanorama.m */; };
- 4BC258EE7EC77815097A3E9E338B7280 /* UIColor+JKAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = C7465AD2ADA3BF7068CBAADEC48297D2 /* UIColor+JKAdd.m */; };
- 4D8322EF82610B19CF14893F310DF415 /* CollectionViewPlayerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E967728499E5E889E7A7F07BE3FFBA2A /* CollectionViewPlayerCell.m */; };
- 4DC87D1E949CB1CC1987DC05ADEB580F /* NSString+Localization.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFF22F430B4A88773539F11E8E2B575 /* NSString+Localization.m */; };
- 4DD1CCE3EF0004A3A9BA7261F4C1759B /* VerticalButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 65E6552F443DE1F9C6A71EB124AE43D8 /* VerticalButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 4EC3293169F740693B5D0A371624A75D /* PhotoAlbumListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B92E667049899392FBCBA6FC12CEBDB /* PhotoAlbumListViewController.m */; };
- 5325B5D50750C2B516941C1BC1DAF84D /* PCSThemeColorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 644952EB048BC8BC0910BB01B0805C4B /* PCSThemeColorManager.m */; };
- 537F83DFFEFC2B468F094725820A3E3E /* UIPasteboard+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = BD9189EC71760D28C686D5F3ABB28539 /* UIPasteboard+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 537FB6D4350E7E1901D5EB5F9D867936 /* MovieListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FB8EFDA0A02A82868E8E02DD5B6E34E /* MovieListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 56B960051357AC8944C25E33654CC7CB /* SVRadialGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 384498CEF984C255A6393C0AF5889DC5 /* SVRadialGradientLayer.m */; };
- 573FF3E20326AF5E9D1AE2968368330A /* LenzCachedResourceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 48611A8832F58CED003645A0C8EDA810 /* LenzCachedResourceModel.m */; };
- 57E1CFE2A41A2A26C7775C286E643BBE /* YYTextParser.h in Headers */ = {isa = PBXBuildFile; fileRef = C2F62CD50BFD779B6EFD0D09FCAABDDE /* YYTextParser.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 5804651E7179251151071800958B13C5 /* PCSRoundButton.h in Headers */ = {isa = PBXBuildFile; fileRef = D59D4935A4D2F844ABA539328825157E /* PCSRoundButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 5937D0B695127E5393DF3956E4BE1142 /* SDKParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 160B990996DD21D6E64E455E744557C6 /* SDKParameters.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 59DF16BC09798FEFB776A5B17C2E3CCF /* YYLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = B3FABB1AB4EC151E5C9656A616F69499 /* YYLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 5B04C33B5BB8BC512829FDD019856853 /* YYTextAsyncLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 13AA756254EF152781EA2DCEE497DA85 /* YYTextAsyncLayer.m */; };
- 5B8CB26922362364523F24D1E83764D1 /* YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = AB019ACB40EC1D9EA58DF5C2044FEDA4 /* YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 5BF987096F7CA20815070D276A2EBC5E /* YYTextArchiver.h in Headers */ = {isa = PBXBuildFile; fileRef = D91B38E39EA044E85F6ACE52E9D773A9 /* YYTextArchiver.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 5C0068B922F4D3BF2C88B58F408B290E /* PCSPreviewViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A8E2B95BAC7DAEE3F8A609F111031712 /* PCSPreviewViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 5CFD26FA1D20A656E6E59D7FCB957036 /* OperationNodeSingle.h in Headers */ = {isa = PBXBuildFile; fileRef = 3769A2F99954C35CEF2D418F86780330 /* OperationNodeSingle.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 5DC64232325DA5A4D21D97CC569CD758 /* PhotoCell.xib in Sources */ = {isa = PBXBuildFile; fileRef = D98C5C12F052EAD529EC9EEFE493EFAE /* PhotoCell.xib */; };
- 600CA65C8D86178DF521F4B01DBB84E0 /* MovieListCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = BAE523B549F9C5EA324F14DD4BBCB4EC /* MovieListCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 61D5656846E4EFF9A3BBACEFEA2A9157 /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 83DF0E9265D9C7C9A64D13D326C24C40 /* MASConstraint.m */; };
- 62D4C11F440C4A96585B6703AF77C5E1 /* lenz_stitcher.a in Sources */ = {isa = PBXBuildFile; fileRef = A316837B0A1BDA3FCB6907F49797C29F /* lenz_stitcher.a */; };
- 63BE63519B1690F0C066293683F854D6 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = ACC7C0BD6430C348FA88862F379F6DA2 /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 65A7EEF17AF1C948906239F6A246E0FF /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E6AF7755455F924245F4D6A2C617747 /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 67A58DFA526AC3A9A871F233A47DBFB8 /* AVCapturePhotoOutput+VersionAdaptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 459CD2883A08E917967B202825AE1427 /* AVCapturePhotoOutput+VersionAdaptor.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 67E5943679E464CD2079A8AFAD0732D1 /* SVIndefiniteAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = FF30174D85BCC340875C99BBC74425FB /* SVIndefiniteAnimatedView.m */; };
- 683F5CAD9E088A9CBDA18B5D5A01007D /* cpp-headers.h in Headers */ = {isa = PBXBuildFile; fileRef = 807AC0FC0795E04889BB0E08A81E043D /* cpp-headers.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 6868E309F99B12D1046CF67E5D4601D8 /* YYTextInput.m in Sources */ = {isa = PBXBuildFile; fileRef = 03580EB58D7084008ED15AFEFDDF44C5 /* YYTextInput.m */; };
- 692535448F10C176CBFBE177CE206EBF /* PCSSessionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 023CA2B4CB726176D7130B2CDD464FD7 /* PCSSessionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 69864DFE3EC290040D273D325FA0E089 /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CD9F5FAE8AA1C9DC33B67DCE4D06112 /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 6A162316CAEA8379A5DD1408C9F4C104 /* LenzCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA9F250AB98999CB591E8E8EBC94C04 /* LenzCommon.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 6A93F1139D51CC7E5577AA5F665F7EDA /* LenzCameraSDK.m in Sources */ = {isa = PBXBuildFile; fileRef = E8E4DDD2282B9B833AC55ABFA624EA06 /* LenzCameraSDK.m */; };
- 6AB71F1AFAAEAEA715F98BA8CCC2FD31 /* PCSMotionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2C09018F6FBA2B178C18BE2A35BCC39 /* PCSMotionManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 6D0B9203EC261F2DC6641C1592F967A4 /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 38BE671C7B48B2C725FE5EB9E63666BC /* Masonry.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 6D7E6BFCE0A2280C205A4442664D3B8E /* YYTextDebugOption.m in Sources */ = {isa = PBXBuildFile; fileRef = 876E7EF23CC2D8D5153FB1D94CFF7622 /* YYTextDebugOption.m */; };
- 6E64879D6211004843DE58AC87B45C56 /* TensorFlowWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 825C6FB76FE50D59AB05CDE39C679926 /* TensorFlowWrapper.m */; };
- 6E92300E108061782377F38796508DBD /* TensorFlowWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = DF7346F194B062427E1A91DFFE462DC2 /* TensorFlowWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 6FE8C0F00B081D797EBA92E15F8A1EC4 /* YYTextWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 19B60C5ED970E0BD7B87C59D44EF8103 /* YYTextWeakProxy.m */; };
- 70A62934BE85AEC19192F9A8BD0A66FA /* YYTextDebugOption.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E35876B9CD9492C56A9233E07CF9154 /* YYTextDebugOption.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 718675C8D8CC9777C6870ADB7335DA31 /* PhotoAlbumListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E52E912FAFF28DB1D50022DCFE3D494A /* PhotoAlbumListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 7224AF90E4AFF20058C3F84F1336B134 /* YYTextInput.h in Headers */ = {isa = PBXBuildFile; fileRef = CA7659E48BC55B78DC1D9038C1E715FA /* YYTextInput.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 756D31CB09477B50D36204DFFB7EA42A /* YYTextKeyboardManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B8355626A66BC661E37E399FC319781 /* YYTextKeyboardManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 75DF02B9DE4CEA66C4A8A0E3C29CAD2E /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 985EAF70F969BDAB6658282A9B5C28A8 /* ViewController+MASAdditions.m */; };
- 75F2C65AD171D1BFC9DD4D7AAAE3614B /* PCSThemeColorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F12F036B9077FA7440B2EC3BA01936F1 /* PCSThemeColorManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 76C20AD4B92885154D87FC48AC21C0D5 /* PhotoCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 16A08F01E970853EA562E6581A05F96A /* PhotoCollectionViewCell.m */; };
- 77C5B6E02AF70E47D1E380BE5ADFE750 /* NSAttributedString+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = 21CABE754D79776A6CA0048575C17125 /* NSAttributedString+YYText.m */; };
- 7F80FA71C480E4AF23FF39A9E96D4652 /* YYLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = B2FC930665E4A7CF0D652608F4A5F036 /* YYLabel.m */; };
- 7F907ABC6FFC4E1B12ADA33F233AF492 /* UIView+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D753BEB00E24AD721F3C33B73FA7DFD /* UIView+YYText.m */; };
- 7FFCDBA1CB71D9C973C49B4A37EC5725 /* YYTextParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 059F71D6CF20450C126B81E72F666ADC /* YYTextParser.m */; };
- 8163209B85CD4577B385B5831F187207 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 04C0ECDA1655815A1B7E06604643BFF7 /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 82F1FB2214D18D26A57EFBEC33FB1BA8 /* OperationNodeVideoBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 81138B07CE5075F5BB6EE8861507C864 /* OperationNodeVideoBase.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 8452D2825DA153EF65ACA8A8E96BF70A /* CustomModalViewTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E265302DDF648C95DD5AD1BFA940D191 /* CustomModalViewTransition.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 85EA2553FEB2D2FDBF124F6A77692798 /* YYTextArchiver.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BCE3AE0EB3099A374D3D8E3C8AAA770 /* YYTextArchiver.m */; };
- 89633F951D73A9C9E77A45DB6576B6FA /* PCSSDF-prefix-header.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EFC60452ECAED9A2848F17EFB6D745B /* PCSSDF-prefix-header.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 89A624531B981F6165C799AF6A9FE2E7 /* YYTextAsyncLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = EA45FA6D756C56F8C345F42BD8FCB2E9 /* YYTextAsyncLayer.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 8B22624C519A49650D314A3D4E21B8E3 /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 030858582360BFE22F7D95092D54F7BD /* Masonry-dummy.m */; };
- 8E35FC2D2C2230EFEB1620BFE18C7F86 /* MoviePlayerViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CADF850FF74C89AEA926B09C0E07C8E6 /* MoviePlayerViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 8E53653E1B32D93DAEA0E4C486403383 /* CameraManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 484E9323B660E1E311FCC858BDAD79F6 /* CameraManager.m */; };
- 8E592EC028AE26B68DD719F05450A171 /* YYTextKeyboardManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AEFB6FD0996C12C9C08BB4FFA1441657 /* YYTextKeyboardManager.m */; };
- 8EF89B26052CE66E8CF72814A1CED9DA /* CameraTextureRenderPass.h in Headers */ = {isa = PBXBuildFile; fileRef = B8ED74D62553DA243A77D1F0D1402416 /* CameraTextureRenderPass.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 90E3BA5C23397CF975541DDA124722BA /* OperationNodeVideoBase.m in Sources */ = {isa = PBXBuildFile; fileRef = DD29E953FEFC5715DE8B2B1EC7C73649 /* OperationNodeVideoBase.m */; };
- 90F29372D5FD84D85705EDC32EAF1A02 /* MovieListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DDFA7461FD9FDB9F39907820FE50909 /* MovieListViewController.m */; };
- 9402D5AAA95193CE70739597D0BE622E /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 337DC53419566E7FC771DE62CF99F6B0 /* MASLayoutConstraint.m */; };
- 9500E3D014074F001470D6EBFF460231 /* SVProgressAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 696BD80AD2D0E598BC912C1C71E80704 /* SVProgressAnimatedView.m */; };
- 9835BD9F0CC98740477919085DCC81D6 /* YYTextRunDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD59CF8EEBEA3E243785662CA2FBAE7 /* YYTextRunDelegate.m */; };
- 988549A36C48743753DD4FB793E0D018 /* YYTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = E3A70E430A65EB9DAF0BD8994EC6F075 /* YYTextView.m */; };
- 9962BC0A854280021221A5D4F2917AE4 /* PCSModeList.h in Headers */ = {isa = PBXBuildFile; fileRef = D26B0FB3B3AA94572958C88C41C7FB55 /* PCSModeList.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 99E33A9DD7BCA1FCBFEB5CC7C489874F /* PhotoListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B03D0A34A6C4C8370F9A917FCAE421 /* PhotoListViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 9AEF36993DA36EA384C2794F81127683 /* PanoramaOrientationView.m in Sources */ = {isa = PBXBuildFile; fileRef = F1F574562E83519685E1499FD4CCAD42 /* PanoramaOrientationView.m */; };
- 9B1E7AEF9F2A2445AB16F213DBE0C97C /* YYTextRubyAnnotation.h in Headers */ = {isa = PBXBuildFile; fileRef = 453FC4AC919A14E42EC7F7FDADFEF10C /* YYTextRubyAnnotation.h */; settings = {ATTRIBUTES = (Project, ); }; };
- 9C42AC82DD36B5A948D434BC68E5F705 /* YYTextAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B5C8B827F83A437B959D365EBCAD0FF /* YYTextAttribute.m */; };
- 9DD3CA64E5A33B53492C6DF08DFF93AA /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */; };
- 9FAE2FAF1B199BCFD85DD33C9446E3DD /* OperationNodeAIPanorama.h in Headers */ = {isa = PBXBuildFile; fileRef = 8841542C61D6B28DB383D3DEE9211CF3 /* OperationNodeAIPanorama.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A24D51C9DDA7055D9207F4E1A4E8C8B3 /* PCSBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 834B84ECD3BF70F9EE566804C9D3ABFE /* PCSBaseViewController.m */; };
- A3EED5B675E5B70762DCEA4484D1DD32 /* DBManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 99D5C16FB2FC618D0F8D12FEF5F87EFE /* DBManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A4047DDD5557F5D36C577F53FC37F589 /* UIButton+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = BA29EEF02EA6C6B11A4D3CE459AFEF1C /* UIButton+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A4A71AC95431D146A49F96DFC1098551 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5297FF5173925AD14037E2972FE1575C /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A4EF72D5F92B9D1BFD38F94C0F9353AD /* NSParagraphStyle+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = 925A4C3E2A374C054C117E27C3C1D7D6 /* NSParagraphStyle+YYText.m */; };
- A4F5926C8B7C174795A4E712B40818BB /* PCSButton.h in Headers */ = {isa = PBXBuildFile; fileRef = F96AA13B316FCDDD05D7F5984FE83C2E /* PCSButton.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A4FB9BCC0BADD6545BCA0BC764F55B67 /* LenzDataManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AFEC1638AFA63E98315E7E877E9043D /* LenzDataManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A56825C55CC43AC2164B448B6190F763 /* PanoramaOrientationView.h in Headers */ = {isa = PBXBuildFile; fileRef = D9F14E0DD1321D2339A05C60D9A95041 /* PanoramaOrientationView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A6B33365753E3FB81C4D095217E27CDF /* YYTextMagnifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 230AB8ED6A299D9085C2F4F5ECD912A7 /* YYTextMagnifier.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A76A5E421BC75DA3FF37ECA7D8C15776 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 5679E1BE40D48781EB2D80BD9125159B /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Project, ); }; };
- A8584851C94F7410D7C91165CBE35D20 /* YYTextEffectWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F7C7E00CA6BCEC8469AD7C9F112200C /* YYTextEffectWindow.m */; };
- A92AA1B9BB6390AB86B6413B3A8A88CC /* MovieListCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = ED574C07AC0262FD70066041F90EFFFD /* MovieListCellModel.m */; };
- AB1C71721E3F29910AEF8BB9DF228954 /* YYTextContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = E83DD7792E6E4BD1EE4F7A59F21187FD /* YYTextContainerView.m */; };
- AC6B9EF28746B8901142DD8419FF44E0 /* PCSTools.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DEA2C1DC9C31B89E9B8385317563A70 /* PCSTools.h */; settings = {ATTRIBUTES = (Project, ); }; };
- ACA6E96B3FC57BC074B759897E0FC15D /* TimerLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 10ED3E885569F0ADA5C6D3DFF0824810 /* TimerLabel.m */; };
- AD0ED8A23D28A11012C13397BA1D09A7 /* SVProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 150A3C4B092EFF5C5CDA39529434886D /* SVProgressHUD-dummy.m */; };
- AFCF29097B8EA55F399208D7642298F3 /* PanoramaGuideView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C4CBCA4D29B03564BBDBC5F5C01D93C /* PanoramaGuideView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- B118B5AB61E2169C00C6001185FE03FE /* moire_mobilenetv2_79.tflite in Resources */ = {isa = PBXBuildFile; fileRef = 2136F17FD7A18281A6A63BACBB7B5DA2 /* moire_mobilenetv2_79.tflite */; };
- B38297872C05EF7F3335A262EEC3FB1D /* PCSBaseViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E175FD1A53388F3D8247FA6961EA7668 /* PCSBaseViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
- B3FFCFD840E2AEE76BAC47A84F274B28 /* SDKParameters.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BA156318A4E03F2312B912BD01AC303 /* SDKParameters.m */; };
- B4D60EAEA2512C44C72FD54441C6C15C /* YYTextAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 5100BB2C21C348957D675E5E8E8AFC23 /* YYTextAttribute.h */; settings = {ATTRIBUTES = (Project, ); }; };
- B5DEC04ABA0617E937918AF345E611EA /* UIButton+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = FCE2E9F70149411A7CEAB3500B27728E /* UIButton+Layout.m */; };
- B620BC317F7569737F8464565713133B /* YYTextTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 567009CE78A0EAB5467FAB5FBFF54EF1 /* YYTextTransaction.m */; };
- B64E0B389A85E1625E23E3AA98DC0005 /* PhotoCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 24EDCA6C907B565CFCA6F153DACA1C08 /* PhotoCollectionViewCell.xib */; };
- B7C5DD68F83710CB71471C8BFA4C0EBB /* YYTextRunDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 185CAD498BBA3913B8BE4A56E086F406 /* YYTextRunDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
- BD9B5FBD5EFDB50E07624E153C262283 /* VC.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5D0C3D7BE987A431121D400E808D3A5B /* VC.storyboard */; };
- BF498FA11AE3EACC30C4B8E5CCFDAB90 /* PCSButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 8111B32B635DCD399351FDD47A65EFB1 /* PCSButton.m */; };
- C000CDC3A8FF69AABFF235DAC9269EAF /* Renderer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1940AFAFFCD2AD451F5C94F7120F4529 /* Renderer.m */; };
- C0B940B2CDE1CB5CEF3752720BCF4314 /* UIColor+JKAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F5CFD310DE3E3F4309E4692E5FDC2CC /* UIColor+JKAdd.h */; settings = {ATTRIBUTES = (Project, ); }; };
- C4C8590716111199B7AED48DF3FD1165 /* YYTextWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DCA23D47376CDDDCB02F34624EC3328 /* YYTextWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; };
- C688AA37EE739D61560E2B86D64ACC51 /* UIPasteboard+YYText.m in Sources */ = {isa = PBXBuildFile; fileRef = E1A4A10D45532A36D91AB25E923BCE55 /* UIPasteboard+YYText.m */; };
- C690F7D6ACD090EC597507C9BF8C96D3 /* Shaders.metal in Sources */ = {isa = PBXBuildFile; fileRef = F586AE2DD1FB03ED19CD3340751A6076 /* Shaders.metal */; };
- C7D18935F2CFB0B0525CAEFC4610C6AE /* UIView+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = 60D974875E35028BFB587AC3574BEC00 /* UIView+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
- C89F708DF6D8456EBE5DA2D2E291BC8A /* PanoramaGuideView.m in Sources */ = {isa = PBXBuildFile; fileRef = 642B6533196B118EC2A42532AAB9F790 /* PanoramaGuideView.m */; };
- C8EEE774E035293D0326E733FBCB8EC8 /* YYTextLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 44661AF21CDB4677BF788BD75ACB86E8 /* YYTextLayout.m */; };
- C966139CE4D69A2E221EFFC1E475BA70 /* PCSRoundButton.m in Sources */ = {isa = PBXBuildFile; fileRef = BEF78E2843E079623DF49791E96D80C7 /* PCSRoundButton.m */; };
- C9D2A74D78D033FB1869E3E2C474A853 /* PhotoCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B7AB4AC08440486709D731A76D4922B1 /* PhotoCollectionViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
- CA98C2A3810D3F5C4E6D4B7BA03E1E62 /* YYTextSelectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 75C28A6CE6DD09D0C90B842258501DCE /* YYTextSelectionView.m */; };
- D0240C120E93A9A3EF0AF8D977F4B9F7 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = FD729596A07430FFF4D8DBD49F18B935 /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
- D0DC343DF898D9DA5386B2364B92110E /* AlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = B25E0B74E5939E2E46DA3E98F4247061 /* AlertView.m */; };
- D37E7CD8B01422BC301EE7B1D8525260 /* UIImage+ext.h in Headers */ = {isa = PBXBuildFile; fileRef = 35712E9585B95297D6815A5724533055 /* UIImage+ext.h */; settings = {ATTRIBUTES = (Project, ); }; };
- D3D875F034EA672BEFA8CAE5E50C1D68 /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = F399DC89064A26DEE47CA1B9B31C3F60 /* MASViewConstraint.m */; };
- D60F1EAD0E09B0ED80A7E9631E8B13E0 /* YYTextContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F0D684B0FCFC439535A5896507EB868 /* YYTextContainerView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- D74BEE5DE0586E6AA1B341A75F5384CF /* SVProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E22208BA1E8475055B90D807D8461DB /* SVProgressHUD.h */; settings = {ATTRIBUTES = (Project, ); }; };
- D8739CDE4FB8D28DE29E3B8C2B1C64BC /* CameraManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA5F0F34AD32861B4BC13AED5EE46AA1 /* CameraManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
- D87CEA68717BA52E529D717C9DFB975D /* OperationNodeProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 92503338E6D82D9E44D6E98E78516315 /* OperationNodeProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; };
- D8D33FC10F5A2BF9DB0339F2A8FCE329 /* LenzDataManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C3579EEF69634228A8DE81F027DAB926 /* LenzDataManager.m */; };
- D9273A532E144D095BEA616052B474B9 /* OperationNodeMultiple.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C06388C4DC40676457C58BE9BB087CF /* OperationNodeMultiple.h */; settings = {ATTRIBUTES = (Project, ); }; };
- DA0C9838D939D960483A0D1EA4EE4FAF /* YYTextUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = E0BC2924B100AC445EEFFC7134D84951 /* YYTextUtilities.m */; };
- DA62FD788B98F91E03E3C4D7DFEFB329 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = A767AF5987619CA8337AB90476FC7A8B /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Project, ); }; };
- DAAC402C6E33313B45C8CF47004AD879 /* OperationNodeAIPanorama.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ACF3FDF300C843E85F806D911FBBD30 /* OperationNodeAIPanorama.m */; };
- DB28DEA5C89B3F178C446B9BF5562102 /* AlbumCounterLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B006FE08A4545A176E9415519C4812B /* AlbumCounterLabel.h */; settings = {ATTRIBUTES = (Project, ); }; };
- DB4BA808523D6374E92D1E4223FF775D /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = CFD7DA366C309EF390A99E5C79028444 /* View+MASAdditions.m */; };
- DB7BC0757DFC6D9D66ACEFE8B218F6FC /* LenzSDKConstant.h in Headers */ = {isa = PBXBuildFile; fileRef = E13A7F3DB10BF5228E0EFAFA7E97E7A0 /* LenzSDKConstant.h */; settings = {ATTRIBUTES = (Project, ); }; };
- DC46ABD9C0AA1F6B23E8F10F4B03063D /* QuitMultipleModeAlertViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = A98A6874AF478874BC5AD38B0EEC575F /* QuitMultipleModeAlertViewController.xib */; };
- DCC02118BBA9787C005B87C69A9A84FB /* YYText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8874ECCD2F100A4073541AF616CD959 /* YYText-dummy.m */; };
- DD22269997F82307B4FFFD2E8A0DCEEE /* SVProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C54896DA6101D4274319E355FCC702C /* SVProgressHUD.m */; };
- DD251C162F5079C04ECA0EEEFC4FDF76 /* VerticalButton.m in Sources */ = {isa = PBXBuildFile; fileRef = ECF16AD4550E44A71FF0CCCFE0A2135B /* VerticalButton.m */; };
- DF11EEE36D8E8ECB8A102626EBAEB4D4 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F7B049C02D3205B3F0FC2A7C47FB8A /* MASConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
- E16EEBCA03B54B544EDC39027C5BA0FC /* MoviePlayerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C1100ACDC0A5DDECABD3C889A867223 /* MoviePlayerViewController.m */; };
- E1EAA5CAA13B421FC1BFEE8A741D4189 /* YYTextEffectWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = BDDCB1C7F8328C04E5BD1FE3F2C25114 /* YYTextEffectWindow.h */; settings = {ATTRIBUTES = (Project, ); }; };
- E32AB08E07650090B804130EC48B9BB1 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA2651DCC2E01B791217BA3135411FB /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Project, ); }; };
- E37AE3A325DEFC71637496C52ACD1936 /* Renderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 76B07E03B78EEC0C08320D0078A920DF /* Renderer.h */; settings = {ATTRIBUTES = (Project, ); }; };
- E49B464C18CFCD4F3BB43A596712DA39 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E9260E3C367D8AF0C0D9E43A00ACE951 /* NSLayoutConstraint+MASDebugAdditions.m */; };
- E60485A5626CDB7B3AC9D1FA60544174 /* PhotoListCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8543A6A6CAF60FBCEEAF8BA85AD2BFEC /* PhotoListCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
- E98435255607264A1544DD2689D8FF4E /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 75A1EF02C8646996F4BE7781491CFFA8 /* NSArray+MASAdditions.m */; };
- EA2B31A15E2FD0137B67863504E87A56 /* YYTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 26F858E75731812FA2CFFA0C6AC1A2A8 /* YYTextView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- EAAA980D69009418E76595C778E5AC74 /* UIView+JKAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 41170107A2FDBF1229F0526276F6ECF5 /* UIView+JKAdd.h */; settings = {ATTRIBUTES = (Project, ); }; };
- EAB02DF3E96F9785F41A5500AE9231CE /* BaseViewTapGestureDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7189B9B5B46972A794BBD7DA208D7B29 /* BaseViewTapGestureDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
- ECD1E36F2AEDFE68EAC886A26F2B845E /* LenzSDK-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C90D457F0567CE408A5CEABA3729CBAE /* LenzSDK-dummy.m */; };
- ECF173B98738BC2218D11D27EEDA565E /* YYTextLine.m in Sources */ = {isa = PBXBuildFile; fileRef = 17612549EC07EF4D5BA8AEA7628F954F /* YYTextLine.m */; };
- ED5D2756D90E118759B27B394E9BA40E /* PreviewSingleViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 7612CDA74861A83401A33AFF22CBBE9D /* PreviewSingleViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
- ED94ACCAACE2B5F792A1BE295099C1B1 /* UIImage+name.m in Sources */ = {isa = PBXBuildFile; fileRef = C32BA2A28074C92B04A25647565BDFF9 /* UIImage+name.m */; };
- EEF4EFB15583307EFE5315F41D0FCA63 /* cpp-headers.mm in Sources */ = {isa = PBXBuildFile; fileRef = EBB9426222A88CE22FFD44A6DC99F0E1 /* cpp-headers.mm */; };
- EF243CAD47B649A174FC48701A24BFAB /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = CCC2C690CC362F11F7628C08EB887F0D /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Project, ); }; };
- F085F277FB366D548502D3F71267B7CF /* QuitMultipleModeAlertViewController.xib in Sources */ = {isa = PBXBuildFile; fileRef = A98A6874AF478874BC5AD38B0EEC575F /* QuitMultipleModeAlertViewController.xib */; };
- F0D66C62D35CAF4B84F0610BAB99E2F7 /* AlertView.h in Headers */ = {isa = PBXBuildFile; fileRef = DB1D86006E8DB29B9EC999D91F0E0F10 /* AlertView.h */; settings = {ATTRIBUTES = (Project, ); }; };
- F1AD74AA99C7ADAFFBF6228E99F377E9 /* UIView+JKAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 19E6F84B2A0BD0B98160C9D203A66A14 /* UIView+JKAdd.m */; };
- F25B552B4ABDAA9110FDBFA050BDA5DC /* Localizable.strings in Sources */ = {isa = PBXBuildFile; fileRef = 98F6633F7645381FF0289CA10AC9802E /* Localizable.strings */; };
- F2A43A8784342F88513E78C7784ECE3A /* OperationNodePanorama.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FA033AD5AB0361B939E7C93DA61D4E7 /* OperationNodePanorama.h */; settings = {ATTRIBUTES = (Project, ); }; };
- F2C2F93768E230384361F403453A380D /* VC.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = 5D0C3D7BE987A431121D400E808D3A5B /* VC.storyboard */; };
- F39E7931365010946F6DBFB36B4B2EB5 /* OperationNodeMovie.m in Sources */ = {isa = PBXBuildFile; fileRef = 8792C14B698CBB0A6E3114CBD5FCC4E2 /* OperationNodeMovie.m */; };
- F5C006B2A7B0381FD2544A519A8BB653 /* NSString+Localization.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C6F483B5218380C5EBE42B16514E1F8 /* NSString+Localization.h */; settings = {ATTRIBUTES = (Project, ); }; };
- F5D086A3E8F39A21E5A535FD3EF1E033 /* DBManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 001A5F8370E76AE3CF69DE5CD54BCB78 /* DBManager.m */; };
- FBC8702390126618DAFEA0C34F0A633E /* NSAttributedString+YYText.h in Headers */ = {isa = PBXBuildFile; fileRef = D08085210D8BF3F57298C44F1A85B3AB /* NSAttributedString+YYText.h */; settings = {ATTRIBUTES = (Project, ); }; };
- FE28B81832D825805108C9131B8310AA /* PCSPreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3007D1F66DCAE15BF3C90FF9AFB97502 /* PCSPreviewViewController.m */; };
- /* End PBXBuildFile section */
- /* Begin PBXContainerItemProxy section */
- 0F37F87CAD55CF1327916C0B41F8E6AA /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 22955C745E4D0669DBEFF1F1997E3D7E;
- remoteInfo = LenzSDK;
- };
- 14BD6CB410BCEBF0C8F05A0834AAFBD5 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = A2620F0B8F03AA967AF4B9A85EB8DF00;
- remoteInfo = TensorFlowLite;
- };
- 2679C7739BB2F01090AE1403DE32E0A7 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 6F5C17E80BD1B7F60A33F79692330A57;
- remoteInfo = YYText;
- };
- 61F0F3737B0825E57379D196F67AEAFF /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 1C8D67D8B72D6BA42CCEDB648537A340;
- remoteInfo = SVProgressHUD;
- };
- 7EC7C279130D3AD630925C04F22E4664 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = A2620F0B8F03AA967AF4B9A85EB8DF00;
- remoteInfo = TensorFlowLite;
- };
- 8D593E22E2C42DB887C2C0CFFFAAA437 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 1C8D67D8B72D6BA42CCEDB648537A340;
- remoteInfo = SVProgressHUD;
- };
- B30991FA22D816FB193BDB87DF6DAA14 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = E7EBC84E7AFBA5D0740969B92CA58D87;
- remoteInfo = "LenzSDK-LenzCameraNativeModuleForRN";
- };
- C743F33DAD15DD387ADACA20236C5A46 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;
- remoteInfo = Masonry;
- };
- DCA9FDEF49E484AF309EF97BFE437B29 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 6F5C17E80BD1B7F60A33F79692330A57;
- remoteInfo = YYText;
- };
- E8B3C1A00FD16172DADC67FCE11827D2 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E;
- remoteInfo = Masonry;
- };
- /* End PBXContainerItemProxy section */
- /* Begin PBXFileReference section */
- 001A5F8370E76AE3CF69DE5CD54BCB78 /* DBManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DBManager.m; sourceTree = "<group>"; };
- 00465AB67C1F1B380226E17A7CE23581 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = "<group>"; };
- 023CA2B4CB726176D7130B2CDD464FD7 /* PCSSessionWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSSessionWrapper.h; sourceTree = "<group>"; };
- 02C3FDB9B6055C3E98B71F9F40F293DB /* opencv2.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = opencv2.framework; sourceTree = "<group>"; };
- 030858582360BFE22F7D95092D54F7BD /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = "<group>"; };
- 03580EB58D7084008ED15AFEFDDF44C5 /* YYTextInput.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextInput.m; path = YYText/Component/YYTextInput.m; sourceTree = "<group>"; };
- 045C5643ECC38689ED9F9C8C770C5E31 /* LenzHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzHeader.h; sourceTree = "<group>"; };
- 04C0ECDA1655815A1B7E06604643BFF7 /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = "<group>"; };
- 059F71D6CF20450C126B81E72F666ADC /* YYTextParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextParser.m; path = YYText/String/YYTextParser.m; sourceTree = "<group>"; };
- 0994AB16F94688C044E520A3CD0008CC /* YYTextLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextLayout.h; path = YYText/Component/YYTextLayout.h; sourceTree = "<group>"; };
- 09C630CEDE852939E93E2C127B2582EC /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = "<group>"; };
- 0B92E667049899392FBCBA6FC12CEBDB /* PhotoAlbumListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoAlbumListViewController.m; sourceTree = "<group>"; };
- 0BA156318A4E03F2312B912BD01AC303 /* SDKParameters.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SDKParameters.m; sourceTree = "<group>"; };
- 0BCE3AE0EB3099A374D3D8E3C8AAA770 /* YYTextArchiver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextArchiver.m; path = YYText/String/YYTextArchiver.m; sourceTree = "<group>"; };
- 0C06388C4DC40676457C58BE9BB087CF /* OperationNodeMultiple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeMultiple.h; sourceTree = "<group>"; };
- 0C2B063ACAB139531B3A172A1DC0FA50 /* SVProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-prefix.pch"; sourceTree = "<group>"; };
- 0D7887C1F6773A568EBDB5D24DBBACBD /* PhotoCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoCell.h; sourceTree = "<group>"; };
- 0F37F3A6741614EF4393CEC045E9472B /* OperationNodeSingle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeSingle.m; sourceTree = "<group>"; };
- 10ED3E885569F0ADA5C6D3DFF0824810 /* TimerLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TimerLabel.m; sourceTree = "<group>"; };
- 114501B95B52E239D7469CF4E409507E /* YYTextRubyAnnotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextRubyAnnotation.m; path = YYText/String/YYTextRubyAnnotation.m; sourceTree = "<group>"; };
- 13AA756254EF152781EA2DCEE497DA85 /* YYTextAsyncLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextAsyncLayer.m; path = YYText/Utility/YYTextAsyncLayer.m; sourceTree = "<group>"; };
- 150A3C4B092EFF5C5CDA39529434886D /* SVProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SVProgressHUD-dummy.m"; sourceTree = "<group>"; };
- 160B990996DD21D6E64E455E744557C6 /* SDKParameters.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SDKParameters.h; sourceTree = "<group>"; };
- 16A08F01E970853EA562E6581A05F96A /* PhotoCollectionViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoCollectionViewCell.m; sourceTree = "<group>"; };
- 17612549EC07EF4D5BA8AEA7628F954F /* YYTextLine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextLine.m; path = YYText/Component/YYTextLine.m; sourceTree = "<group>"; };
- 185252B13C095F4158BB86519A54C9EA /* AlbumCounterLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AlbumCounterLabel.m; sourceTree = "<group>"; };
- 185CAD498BBA3913B8BE4A56E086F406 /* YYTextRunDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextRunDelegate.h; path = YYText/String/YYTextRunDelegate.h; sourceTree = "<group>"; };
- 1940AFAFFCD2AD451F5C94F7120F4529 /* Renderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Renderer.m; sourceTree = "<group>"; };
- 19B60C5ED970E0BD7B87C59D44EF8103 /* YYTextWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextWeakProxy.m; path = YYText/Utility/YYTextWeakProxy.m; sourceTree = "<group>"; };
- 19E6F84B2A0BD0B98160C9D203A66A14 /* UIView+JKAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+JKAdd.m"; sourceTree = "<group>"; };
- 1A3793D77A5DF02CCECD90108FEF8CA3 /* UIImage+name.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImage+name.h"; sourceTree = "<group>"; };
- 1A400F0E8D0990EE2ECB8EF1C949F50A /* PaddingLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PaddingLabel.m; sourceTree = "<group>"; };
- 1AC75595A616CB1A10F74F9B85C9A817 /* YYText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "YYText-prefix.pch"; sourceTree = "<group>"; };
- 1AEB047D2DA8375A9CC2B2C6F33B36AB /* ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist"; sourceTree = "<group>"; };
- 1B006FE08A4545A176E9415519C4812B /* AlbumCounterLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AlbumCounterLabel.h; sourceTree = "<group>"; };
- 1B8355626A66BC661E37E399FC319781 /* YYTextKeyboardManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextKeyboardManager.h; path = YYText/Component/YYTextKeyboardManager.h; sourceTree = "<group>"; };
- 1E22208BA1E8475055B90D807D8461DB /* SVProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressHUD.h; path = SVProgressHUD/SVProgressHUD.h; sourceTree = "<group>"; };
- 1E6AF7755455F924245F4D6A2C617747 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = "<group>"; };
- 1F19139A77CA316ACCEF6D7B18F9414C /* Pods-LenzCameraNativeModuleForRN_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LenzCameraNativeModuleForRN_Example-resources.sh"; sourceTree = "<group>"; };
- 1FA033AD5AB0361B939E7C93DA61D4E7 /* OperationNodePanorama.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodePanorama.h; sourceTree = "<group>"; };
- 1FB8EFDA0A02A82868E8E02DD5B6E34E /* MovieListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MovieListViewController.h; sourceTree = "<group>"; };
- 1FFED36A657123030ABB700256D73F15 /* Masonry */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Masonry; path = libMasonry.a; sourceTree = BUILT_PRODUCTS_DIR; };
- 2002BF941497DCE4DC551650ED008F9E /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = "<group>"; };
- 2136F17FD7A18281A6A63BACBB7B5DA2 /* moire_mobilenetv2_79.tflite */ = {isa = PBXFileReference; includeInIndex = 1; path = moire_mobilenetv2_79.tflite; sourceTree = "<group>"; };
- 21B8E03137BCF9F54F9CFE4277F7BEB7 /* QuitMultipleModeAlertViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = QuitMultipleModeAlertViewController.h; sourceTree = "<group>"; };
- 21CABE754D79776A6CA0048575C17125 /* NSAttributedString+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+YYText.m"; path = "YYText/Utility/NSAttributedString+YYText.m"; sourceTree = "<group>"; };
- 230AB8ED6A299D9085C2F4F5ECD912A7 /* YYTextMagnifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextMagnifier.h; path = YYText/Component/YYTextMagnifier.h; sourceTree = "<group>"; };
- 236AF217BE16A74042B90DBB675F6FD0 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = "<group>"; };
- 236BD5F0C68C18F6835B9292DCE7BB80 /* YYTextSelectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextSelectionView.h; path = YYText/Component/YYTextSelectionView.h; sourceTree = "<group>"; };
- 23C222F8741C6545FA2E78D3B6885D45 /* TensorFlowLite.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TensorFlowLite.release.xcconfig; sourceTree = "<group>"; };
- 24EDCA6C907B565CFCA6F153DACA1C08 /* PhotoCollectionViewCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = PhotoCollectionViewCell.xib; sourceTree = "<group>"; };
- 26F858E75731812FA2CFFA0C6AC1A2A8 /* YYTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextView.h; path = YYText/YYTextView.h; sourceTree = "<group>"; };
- 2AFEC1638AFA63E98315E7E877E9043D /* LenzDataManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzDataManager.h; sourceTree = "<group>"; };
- 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-LenzCameraNativeModuleForRN_Example"; path = "libPods-LenzCameraNativeModuleForRN_Example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 2D753BEB00E24AD721F3C33B73FA7DFD /* UIView+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+YYText.m"; path = "YYText/Utility/UIView+YYText.m"; sourceTree = "<group>"; };
- 2F5CFD310DE3E3F4309E4692E5FDC2CC /* UIColor+JKAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIColor+JKAdd.h"; sourceTree = "<group>"; };
- 3007D1F66DCAE15BF3C90FF9AFB97502 /* PCSPreviewViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSPreviewViewController.m; sourceTree = "<group>"; };
- 312CD5C33A8FBAF4812468B3F2EC2499 /* LenzTensorFlowSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = LenzTensorFlowSDK.framework; sourceTree = "<group>"; };
- 337DC53419566E7FC771DE62CF99F6B0 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = "<group>"; };
- 337FCC62499B3AEB5142B24F167EEF38 /* LenzSDK-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LenzSDK-prefix.pch"; sourceTree = "<group>"; };
- 3383F6C3A5BD3B919BDA3BC6011E86E5 /* PCSTools.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSTools.m; sourceTree = "<group>"; };
- 35712E9585B95297D6815A5724533055 /* UIImage+ext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIImage+ext.h"; sourceTree = "<group>"; };
- 3769A2F99954C35CEF2D418F86780330 /* OperationNodeSingle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeSingle.h; sourceTree = "<group>"; };
- 384498CEF984C255A6393C0AF5889DC5 /* SVRadialGradientLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVRadialGradientLayer.m; path = SVProgressHUD/SVRadialGradientLayer.m; sourceTree = "<group>"; };
- 38BE671C7B48B2C725FE5EB9E63666BC /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = "<group>"; };
- 3B1C9EB4810F130F5B301709B86D03EB /* LenzSDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LenzSDK.debug.xcconfig; sourceTree = "<group>"; };
- 3DCA23D47376CDDDCB02F34624EC3328 /* YYTextWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextWeakProxy.h; path = YYText/Utility/YYTextWeakProxy.h; sourceTree = "<group>"; };
- 3DEFF5635EA7D20945B2F48768B2AAA4 /* Localizable.strings */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.strings; name = Localizable.strings; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
- 41170107A2FDBF1229F0526276F6ECF5 /* UIView+JKAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+JKAdd.h"; sourceTree = "<group>"; };
- 42AFC0AEF4E9BAFC0B7B3D707FFFA9EC /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = "<group>"; };
- 44661AF21CDB4677BF788BD75ACB86E8 /* YYTextLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextLayout.m; path = YYText/Component/YYTextLayout.m; sourceTree = "<group>"; };
- 453FC4AC919A14E42EC7F7FDADFEF10C /* YYTextRubyAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextRubyAnnotation.h; path = YYText/String/YYTextRubyAnnotation.h; sourceTree = "<group>"; };
- 459CD2883A08E917967B202825AE1427 /* AVCapturePhotoOutput+VersionAdaptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AVCapturePhotoOutput+VersionAdaptor.h"; sourceTree = "<group>"; };
- 46C5B9E72B8C325BE99EEB55A9C80A7A /* AVCapturePhotoOutput+VersionAdaptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AVCapturePhotoOutput+VersionAdaptor.m"; sourceTree = "<group>"; };
- 46C88FEA97AD035600FD104BF0FB899F /* ImageCacheLRU.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ImageCacheLRU.h; sourceTree = "<group>"; };
- 484E9323B660E1E311FCC858BDAD79F6 /* CameraManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CameraManager.m; sourceTree = "<group>"; };
- 48611A8832F58CED003645A0C8EDA810 /* LenzCachedResourceModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzCachedResourceModel.m; sourceTree = "<group>"; };
- 4BAC658FD230DEDCE8BF7B9F3067EB41 /* PhotoListCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoListCellModel.m; sourceTree = "<group>"; };
- 4BD59CF8EEBEA3E243785662CA2FBAE7 /* YYTextRunDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextRunDelegate.m; path = YYText/String/YYTextRunDelegate.m; sourceTree = "<group>"; };
- 4C7551E540F421DB883EC45F9B9FD999 /* PreviewSingleViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PreviewSingleViewController.m; sourceTree = "<group>"; };
- 4D3F36A7A2E0A0590FC794057DA03E5D /* CameraTextureRenderPass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CameraTextureRenderPass.m; sourceTree = "<group>"; };
- 4D8E2E45458645E409B65064F26BE9BC /* SVProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.release.xcconfig; sourceTree = "<group>"; };
- 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-LenzCameraNativeModuleForRN_Example-dummy.m"; sourceTree = "<group>"; };
- 4DDFA7461FD9FDB9F39907820FE50909 /* MovieListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MovieListViewController.m; sourceTree = "<group>"; };
- 4E35876B9CD9492C56A9233E07CF9154 /* YYTextDebugOption.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextDebugOption.h; path = YYText/Component/YYTextDebugOption.h; sourceTree = "<group>"; };
- 4E5519F8ACF06D3117C557AC71BBF11A /* YYText.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YYText.debug.xcconfig; sourceTree = "<group>"; };
- 4F0D684B0FCFC439535A5896507EB868 /* YYTextContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextContainerView.h; path = YYText/Component/YYTextContainerView.h; sourceTree = "<group>"; };
- 5100BB2C21C348957D675E5E8E8AFC23 /* YYTextAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextAttribute.h; path = YYText/String/YYTextAttribute.h; sourceTree = "<group>"; };
- 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; };
- 5297FF5173925AD14037E2972FE1575C /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = "<group>"; };
- 53DD05D7B6888C455D77CA8C05CEC207 /* YYTextTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextTransaction.h; path = YYText/Utility/YYTextTransaction.h; sourceTree = "<group>"; };
- 567009CE78A0EAB5467FAB5FBFF54EF1 /* YYTextTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextTransaction.m; path = YYText/Utility/YYTextTransaction.m; sourceTree = "<group>"; };
- 5679E1BE40D48781EB2D80BD9125159B /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = "<group>"; };
- 5ACF3FDF300C843E85F806D911FBBD30 /* OperationNodeAIPanorama.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeAIPanorama.m; sourceTree = "<group>"; };
- 5C1100ACDC0A5DDECABD3C889A867223 /* MoviePlayerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MoviePlayerViewController.m; sourceTree = "<group>"; };
- 5C4AEE6F3FAD0B04DCB1E1E351C3CF50 /* PhotoAlbumModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoAlbumModel.h; sourceTree = "<group>"; };
- 5C8F0CE63987748F5D5EBB7AC297EB37 /* PaddingLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PaddingLabel.h; sourceTree = "<group>"; };
- 5D0C3D7BE987A431121D400E808D3A5B /* VC.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; path = VC.storyboard; sourceTree = "<group>"; };
- 6027CA9CC86B70D548CD92E2B7DA6152 /* LenzStitchSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = LenzStitchSDK.framework; sourceTree = "<group>"; };
- 60D974875E35028BFB587AC3574BEC00 /* UIView+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+YYText.h"; path = "YYText/Utility/UIView+YYText.h"; sourceTree = "<group>"; };
- 642B6533196B118EC2A42532AAB9F790 /* PanoramaGuideView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PanoramaGuideView.m; sourceTree = "<group>"; };
- 644952EB048BC8BC0910BB01B0805C4B /* PCSThemeColorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSThemeColorManager.m; sourceTree = "<group>"; };
- 64D23F96A249A835012EC76AACF02FA7 /* LenzSDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LenzSDK.release.xcconfig; sourceTree = "<group>"; };
- 65E6552F443DE1F9C6A71EB124AE43D8 /* VerticalButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = VerticalButton.h; sourceTree = "<group>"; };
- 66579CE2B50EB996A4F4583BBB52AAA3 /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = "<group>"; };
- 696BD80AD2D0E598BC912C1C71E80704 /* SVProgressAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressAnimatedView.m; path = SVProgressHUD/SVProgressAnimatedView.m; sourceTree = "<group>"; };
- 6ABCED1E73226E2ABC9BE8BE8D03BF0D /* SVRadialGradientLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVRadialGradientLayer.h; path = SVProgressHUD/SVRadialGradientLayer.h; sourceTree = "<group>"; };
- 6B5C8B827F83A437B959D365EBCAD0FF /* YYTextAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextAttribute.m; path = YYText/String/YYTextAttribute.m; sourceTree = "<group>"; };
- 6D62B02E7EF69B17AB7FAC2297364E42 /* PhotoCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoCell.m; sourceTree = "<group>"; };
- 6DE30B6B31980946761C9D5293B4941D /* PCSModeList.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSModeList.m; sourceTree = "<group>"; };
- 6DEA2C1DC9C31B89E9B8385317563A70 /* PCSTools.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSTools.h; sourceTree = "<group>"; };
- 71762A728913EB440C97D3616D291AF3 /* YYText */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = YYText; path = libYYText.a; sourceTree = BUILT_PRODUCTS_DIR; };
- 7189B9B5B46972A794BBD7DA208D7B29 /* BaseViewTapGestureDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = BaseViewTapGestureDelegate.h; sourceTree = "<group>"; };
- 71A9C32F11A74240787A960ACBA0D696 /* SVProgressAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVProgressAnimatedView.h; path = SVProgressHUD/SVProgressAnimatedView.h; sourceTree = "<group>"; };
- 75A1EF02C8646996F4BE7781491CFFA8 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = "<group>"; };
- 75C28A6CE6DD09D0C90B842258501DCE /* YYTextSelectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextSelectionView.m; path = YYText/Component/YYTextSelectionView.m; sourceTree = "<group>"; };
- 7612CDA74861A83401A33AFF22CBBE9D /* PreviewSingleViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PreviewSingleViewController.h; sourceTree = "<group>"; };
- 76B07E03B78EEC0C08320D0078A920DF /* Renderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Renderer.h; sourceTree = "<group>"; };
- 77429CB6A8EAF380C3CB43D3A6254D3D /* OperationNodePanorama.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodePanorama.m; sourceTree = "<group>"; };
- 79B3ECE71D1D817E41F35D9B5EDD8823 /* SVProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SVProgressHUD.debug.xcconfig; sourceTree = "<group>"; };
- 7C6F483B5218380C5EBE42B16514E1F8 /* NSString+Localization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSString+Localization.h"; sourceTree = "<group>"; };
- 807AC0FC0795E04889BB0E08A81E043D /* cpp-headers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "cpp-headers.h"; sourceTree = "<group>"; };
- 8111B32B635DCD399351FDD47A65EFB1 /* PCSButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSButton.m; sourceTree = "<group>"; };
- 81138B07CE5075F5BB6EE8861507C864 /* OperationNodeVideoBase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeVideoBase.h; sourceTree = "<group>"; };
- 813E120135C3E3B5C50FB70609B4A8D3 /* UIImage+ext.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ext.m"; sourceTree = "<group>"; };
- 825C6FB76FE50D59AB05CDE39C679926 /* TensorFlowWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = TensorFlowWrapper.m; sourceTree = "<group>"; };
- 833F599750CCF740A20A786D96528502 /* SVIndefiniteAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SVIndefiniteAnimatedView.h; path = SVProgressHUD/SVIndefiniteAnimatedView.h; sourceTree = "<group>"; };
- 834B84ECD3BF70F9EE566804C9D3ABFE /* PCSBaseViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSBaseViewController.m; sourceTree = "<group>"; };
- 83DF0E9265D9C7C9A64D13D326C24C40 /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = "<group>"; };
- 8543A6A6CAF60FBCEEAF8BA85AD2BFEC /* PhotoListCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoListCellModel.h; sourceTree = "<group>"; };
- 876E7EF23CC2D8D5153FB1D94CFF7622 /* YYTextDebugOption.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextDebugOption.m; path = YYText/Component/YYTextDebugOption.m; sourceTree = "<group>"; };
- 8792C14B698CBB0A6E3114CBD5FCC4E2 /* OperationNodeMovie.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeMovie.m; sourceTree = "<group>"; };
- 8841542C61D6B28DB383D3DEE9211CF3 /* OperationNodeAIPanorama.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeAIPanorama.h; sourceTree = "<group>"; };
- 8B4DC4759B1098548FAA7403C6442854 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.plist"; sourceTree = "<group>"; };
- 8CD9F5FAE8AA1C9DC33B67DCE4D06112 /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = "<group>"; };
- 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>"; };
- 8F7C7E00CA6BCEC8469AD7C9F112200C /* YYTextEffectWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextEffectWindow.m; path = YYText/Component/YYTextEffectWindow.m; sourceTree = "<group>"; };
- 915DFC2B3727DF36D704655395005955 /* YYTextLine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextLine.h; path = YYText/Component/YYTextLine.h; sourceTree = "<group>"; };
- 91CF64F2FBA4596C564CC9365CC785DC /* tensorflow_lite.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = tensorflow_lite.framework; path = Frameworks/tensorflow_lite.framework; sourceTree = "<group>"; };
- 92503338E6D82D9E44D6E98E78516315 /* OperationNodeProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeProtocol.h; sourceTree = "<group>"; };
- 925A4C3E2A374C054C117E27C3C1D7D6 /* NSParagraphStyle+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSParagraphStyle+YYText.m"; path = "YYText/Utility/NSParagraphStyle+YYText.m"; sourceTree = "<group>"; };
- 96A8580B6102817508C5CE6FCE48459B /* LenzCameraNativeModuleForRN.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCameraNativeModuleForRN.h; sourceTree = "<group>"; };
- 985EAF70F969BDAB6658282A9B5C28A8 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = "<group>"; };
- 98F6633F7645381FF0289CA10AC9802E /* Localizable.strings */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.strings; name = Localizable.strings; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
- 99D5C16FB2FC618D0F8D12FEF5F87EFE /* DBManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DBManager.h; sourceTree = "<group>"; };
- 9BB15112B40D29902BD44EB63437D817 /* PhotoListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoListViewController.m; sourceTree = "<group>"; };
- 9C4CBCA4D29B03564BBDBC5F5C01D93C /* PanoramaGuideView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PanoramaGuideView.h; sourceTree = "<group>"; };
- 9C54896DA6101D4274319E355FCC702C /* SVProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVProgressHUD.m; path = SVProgressHUD/SVProgressHUD.m; sourceTree = "<group>"; };
- 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; };
- A17498484830BD5638E4AAE372DA3F34 /* PCSSessionWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSSessionWrapper.m; sourceTree = "<group>"; };
- A2C09018F6FBA2B178C18BE2A35BCC39 /* PCSMotionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSMotionManager.h; sourceTree = "<group>"; };
- A316837B0A1BDA3FCB6907F49797C29F /* lenz_stitcher.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; path = lenz_stitcher.a; sourceTree = "<group>"; };
- A4C18B2ED0CB87015BA0CC57B8C7157E /* YYTextMagnifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextMagnifier.m; path = YYText/Component/YYTextMagnifier.m; sourceTree = "<group>"; };
- A767AF5987619CA8337AB90476FC7A8B /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = "<group>"; };
- A8E2B95BAC7DAEE3F8A609F111031712 /* PCSPreviewViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSPreviewViewController.h; sourceTree = "<group>"; };
- A8F7B049C02D3205B3F0FC2A7C47FB8A /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = "<group>"; };
- A98A6874AF478874BC5AD38B0EEC575F /* QuitMultipleModeAlertViewController.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = QuitMultipleModeAlertViewController.xib; sourceTree = "<group>"; };
- AA5F0F34AD32861B4BC13AED5EE46AA1 /* CameraManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CameraManager.h; sourceTree = "<group>"; };
- AAA2651DCC2E01B791217BA3135411FB /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = "<group>"; };
- AB019ACB40EC1D9EA58DF5C2044FEDA4 /* YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYText.h; path = YYText/YYText.h; sourceTree = "<group>"; };
- AB4ED4E5A21F449AB237A6158DE5F976 /* LenzCachedResourceModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCachedResourceModel.h; sourceTree = "<group>"; };
- AC59A703058154D497C84656B4AE034E /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = "<group>"; };
- ACC7C0BD6430C348FA88862F379F6DA2 /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = "<group>"; };
- AD277ABA97D5700D67AE4243F751B01F /* LenzCameraSDK.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCameraSDK.h; sourceTree = "<group>"; };
- AE44E80EF6245FE2ED31EEB49A819226 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
- AEFB6FD0996C12C9C08BB4FFA1441657 /* YYTextKeyboardManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextKeyboardManager.m; path = YYText/Component/YYTextKeyboardManager.m; sourceTree = "<group>"; };
- B25E0B74E5939E2E46DA3E98F4247061 /* AlertView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = AlertView.m; sourceTree = "<group>"; };
- B2FC930665E4A7CF0D652608F4A5F036 /* YYLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYLabel.m; path = YYText/YYLabel.m; sourceTree = "<group>"; };
- B346FFE2FB28E8567ED95CB456A2F8CF /* CollectionViewPlayerCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CollectionViewPlayerCell.h; sourceTree = "<group>"; };
- B3FABB1AB4EC151E5C9656A616F69499 /* YYLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYLabel.h; path = YYText/YYLabel.h; sourceTree = "<group>"; };
- B5B03D0A34A6C4C8370F9A917FCAE421 /* PhotoListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoListViewController.h; sourceTree = "<group>"; };
- B7AB4AC08440486709D731A76D4922B1 /* PhotoCollectionViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoCollectionViewCell.h; sourceTree = "<group>"; };
- B8874ECCD2F100A4073541AF616CD959 /* YYText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "YYText-dummy.m"; sourceTree = "<group>"; };
- B8ED74D62553DA243A77D1F0D1402416 /* CameraTextureRenderPass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CameraTextureRenderPass.h; sourceTree = "<group>"; };
- BA29EEF02EA6C6B11A4D3CE459AFEF1C /* UIButton+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIButton+Layout.h"; sourceTree = "<group>"; };
- BAE523B549F9C5EA324F14DD4BBCB4EC /* MovieListCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MovieListCellModel.h; sourceTree = "<group>"; };
- BCFF22F430B4A88773539F11E8E2B575 /* NSString+Localization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSString+Localization.m"; sourceTree = "<group>"; };
- BD9189EC71760D28C686D5F3ABB28539 /* UIPasteboard+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIPasteboard+YYText.h"; path = "YYText/Utility/UIPasteboard+YYText.h"; sourceTree = "<group>"; };
- BDA9F250AB98999CB591E8E8EBC94C04 /* LenzCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzCommon.h; sourceTree = "<group>"; };
- BDAA4B378A2E594E02C3191126E989A7 /* QuitMultipleModeAlertViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = QuitMultipleModeAlertViewController.m; sourceTree = "<group>"; };
- BDDCB1C7F8328C04E5BD1FE3F2C25114 /* YYTextEffectWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextEffectWindow.h; path = YYText/Component/YYTextEffectWindow.h; sourceTree = "<group>"; };
- BDEA7527A5E638AC420DC55A43D729CD /* PhotoAlbumModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PhotoAlbumModel.m; sourceTree = "<group>"; };
- BEF78E2843E079623DF49791E96D80C7 /* PCSRoundButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSRoundButton.m; sourceTree = "<group>"; };
- C0931C591BE7B07CE458432E8414A12C /* TimerLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TimerLabel.h; sourceTree = "<group>"; };
- C2F62CD50BFD779B6EFD0D09FCAABDDE /* YYTextParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextParser.h; path = YYText/String/YYTextParser.h; sourceTree = "<group>"; };
- C32BA2A28074C92B04A25647565BDFF9 /* UIImage+name.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIImage+name.m"; sourceTree = "<group>"; };
- C3579EEF69634228A8DE81F027DAB926 /* LenzDataManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzDataManager.m; sourceTree = "<group>"; };
- C7465AD2ADA3BF7068CBAADEC48297D2 /* UIColor+JKAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JKAdd.m"; sourceTree = "<group>"; };
- C7B681F2187F1F5A880627CAB69F5A7C /* YYText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = YYText.release.xcconfig; sourceTree = "<group>"; };
- C90D457F0567CE408A5CEABA3729CBAE /* LenzSDK-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LenzSDK-dummy.m"; sourceTree = "<group>"; };
- CA7659E48BC55B78DC1D9038C1E715FA /* YYTextInput.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextInput.h; path = YYText/Component/YYTextInput.h; sourceTree = "<group>"; };
- CADF850FF74C89AEA926B09C0E07C8E6 /* MoviePlayerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MoviePlayerViewController.h; sourceTree = "<group>"; };
- CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig"; sourceTree = "<group>"; };
- CC221CE8C66884BDEE6D35D15C1A72B3 /* TensorFlowLite.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = TensorFlowLite.debug.xcconfig; sourceTree = "<group>"; };
- CCC2A2D9BE13B566A864D567615045F6 /* LenzSDK-LenzCameraNativeModuleForRN */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "LenzSDK-LenzCameraNativeModuleForRN"; path = LenzCameraNativeModuleForRN.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
- CCC2C690CC362F11F7628C08EB887F0D /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = "<group>"; };
- CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = LenzSDK; path = libLenzSDK.a; sourceTree = BUILT_PRODUCTS_DIR; };
- CD4D19A957FBFABB2144E0CA18C5EB84 /* OperationNodeMultiple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeMultiple.m; sourceTree = "<group>"; };
- CD502849161614DACCEE9E27B93550F2 /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = "<group>"; };
- CFD7DA366C309EF390A99E5C79028444 /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = "<group>"; };
- D08085210D8BF3F57298C44F1A85B3AB /* NSAttributedString+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+YYText.h"; path = "YYText/Utility/NSAttributedString+YYText.h"; sourceTree = "<group>"; };
- D1F049E526F5575B78C34D06EEEA8012 /* assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; path = assets.xcassets; sourceTree = "<group>"; };
- D26B0FB3B3AA94572958C88C41C7FB55 /* PCSModeList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSModeList.h; sourceTree = "<group>"; };
- D59D4935A4D2F844ABA539328825157E /* PCSRoundButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSRoundButton.h; sourceTree = "<group>"; };
- D91B38E39EA044E85F6ACE52E9D773A9 /* YYTextArchiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextArchiver.h; path = YYText/String/YYTextArchiver.h; sourceTree = "<group>"; };
- D98C5C12F052EAD529EC9EEFE493EFAE /* PhotoCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; path = PhotoCell.xib; sourceTree = "<group>"; };
- D9F14E0DD1321D2339A05C60D9A95041 /* PanoramaOrientationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PanoramaOrientationView.h; sourceTree = "<group>"; };
- DAFD9603956A9F8C5BE7FAC749CCFF97 /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = "<group>"; };
- DB1D86006E8DB29B9EC999D91F0E0F10 /* AlertView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = AlertView.h; sourceTree = "<group>"; };
- DD29E953FEFC5715DE8B2B1EC7C73649 /* OperationNodeVideoBase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = OperationNodeVideoBase.m; sourceTree = "<group>"; };
- DF7346F194B062427E1A91DFFE462DC2 /* TensorFlowWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TensorFlowWrapper.h; sourceTree = "<group>"; };
- E0BC2924B100AC445EEFFC7134D84951 /* YYTextUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextUtilities.m; path = YYText/Utility/YYTextUtilities.m; sourceTree = "<group>"; };
- E13A7F3DB10BF5228E0EFAFA7E97E7A0 /* LenzSDKConstant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = LenzSDKConstant.h; sourceTree = "<group>"; };
- E175FD1A53388F3D8247FA6961EA7668 /* PCSBaseViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSBaseViewController.h; sourceTree = "<group>"; };
- E1A4A10D45532A36D91AB25E923BCE55 /* UIPasteboard+YYText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIPasteboard+YYText.m"; path = "YYText/Utility/UIPasteboard+YYText.m"; sourceTree = "<group>"; };
- E265302DDF648C95DD5AD1BFA940D191 /* CustomModalViewTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CustomModalViewTransition.h; sourceTree = "<group>"; };
- E324CBC5B1CD1D81F9DDBFE9466A1E97 /* BaseViewTapGestureDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = BaseViewTapGestureDelegate.m; sourceTree = "<group>"; };
- E3A70E430A65EB9DAF0BD8994EC6F075 /* YYTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextView.m; path = YYText/YYTextView.m; sourceTree = "<group>"; };
- E52E912FAFF28DB1D50022DCFE3D494A /* PhotoAlbumListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PhotoAlbumListViewController.h; sourceTree = "<group>"; };
- E83DD7792E6E4BD1EE4F7A59F21187FD /* YYTextContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = YYTextContainerView.m; path = YYText/Component/YYTextContainerView.m; sourceTree = "<group>"; };
- E8E4DDD2282B9B833AC55ABFA624EA06 /* LenzCameraSDK.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = LenzCameraSDK.m; sourceTree = "<group>"; };
- E9260E3C367D8AF0C0D9E43A00ACE951 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = "<group>"; };
- E967728499E5E889E7A7F07BE3FFBA2A /* CollectionViewPlayerCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CollectionViewPlayerCell.m; sourceTree = "<group>"; };
- E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = SVProgressHUD; path = libSVProgressHUD.a; sourceTree = BUILT_PRODUCTS_DIR; };
- EA45FA6D756C56F8C345F42BD8FCB2E9 /* YYTextAsyncLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextAsyncLayer.h; path = YYText/Utility/YYTextAsyncLayer.h; sourceTree = "<group>"; };
- EADB3792F4D552050D74E9418727DB85 /* NSParagraphStyle+YYText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSParagraphStyle+YYText.h"; path = "YYText/Utility/NSParagraphStyle+YYText.h"; sourceTree = "<group>"; };
- EBB9426222A88CE22FFD44A6DC99F0E1 /* cpp-headers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = "cpp-headers.mm"; sourceTree = "<group>"; };
- ECF16AD4550E44A71FF0CCCFE0A2135B /* VerticalButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = VerticalButton.m; sourceTree = "<group>"; };
- ED574C07AC0262FD70066041F90EFFFD /* MovieListCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MovieListCellModel.m; sourceTree = "<group>"; };
- EFA78D74D65C7A2CFC756FE18A5145D0 /* ImageCacheLRU.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = ImageCacheLRU.m; sourceTree = "<group>"; };
- F12F036B9077FA7440B2EC3BA01936F1 /* PCSThemeColorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSThemeColorManager.h; sourceTree = "<group>"; };
- F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig"; sourceTree = "<group>"; };
- F1F574562E83519685E1499FD4CCAD42 /* PanoramaOrientationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PanoramaOrientationView.m; sourceTree = "<group>"; };
- F2786C10A3CE15B2B97D2165EF589A44 /* CustomModalViewTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = CustomModalViewTransition.m; sourceTree = "<group>"; };
- F399DC89064A26DEE47CA1B9B31C3F60 /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = "<group>"; };
- F4DA75E70A44BE70E7EE7A8E9E81CE80 /* PCSMotionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = PCSMotionManager.m; sourceTree = "<group>"; };
- F586AE2DD1FB03ED19CD3340751A6076 /* Shaders.metal */ = {isa = PBXFileReference; includeInIndex = 1; path = Shaders.metal; sourceTree = "<group>"; };
- F8E1D2BD0418FD754EEF58BE1B4D2571 /* SVProgressHUD.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = SVProgressHUD.bundle; path = SVProgressHUD/SVProgressHUD.bundle; sourceTree = "<group>"; };
- F96AA13B316FCDDD05D7F5984FE83C2E /* PCSButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = PCSButton.h; sourceTree = "<group>"; };
- FAF7A7016021E626ECAEBF36DDB38433 /* YYTextUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YYTextUtilities.h; path = YYText/Utility/YYTextUtilities.h; sourceTree = "<group>"; };
- FCE2E9F70149411A7CEAB3500B27728E /* UIButton+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Layout.m"; sourceTree = "<group>"; };
- FCF39464DCA45BC7FE51A2F2EF530B78 /* OperationNodeMovie.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = OperationNodeMovie.h; sourceTree = "<group>"; };
- FD729596A07430FFF4D8DBD49F18B935 /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = "<group>"; };
- FF30174D85BCC340875C99BBC74425FB /* SVIndefiniteAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SVIndefiniteAnimatedView.m; path = SVProgressHUD/SVIndefiniteAnimatedView.m; sourceTree = "<group>"; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- 02B9D7251D15087A8DA31D60B13E16B2 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 27DB505796AEFF6F325D0097670EBCF9 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 5201A48FF16520DC6EC61F61532A5F51 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 651767A35F3F5BB82162FF9DE4322858 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 87A53D71436C043AD2044563DC983A70 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- D9FE46DE6C340903427F9319BEE22478 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- 042F0CE00372E08F37BF31F9D88FCECC /* Exts */ = {
- isa = PBXGroup;
- children = (
- 459CD2883A08E917967B202825AE1427 /* AVCapturePhotoOutput+VersionAdaptor.h */,
- 46C5B9E72B8C325BE99EEB55A9C80A7A /* AVCapturePhotoOutput+VersionAdaptor.m */,
- 7C6F483B5218380C5EBE42B16514E1F8 /* NSString+Localization.h */,
- BCFF22F430B4A88773539F11E8E2B575 /* NSString+Localization.m */,
- BA29EEF02EA6C6B11A4D3CE459AFEF1C /* UIButton+Layout.h */,
- FCE2E9F70149411A7CEAB3500B27728E /* UIButton+Layout.m */,
- 35712E9585B95297D6815A5724533055 /* UIImage+ext.h */,
- 813E120135C3E3B5C50FB70609B4A8D3 /* UIImage+ext.m */,
- );
- name = Exts;
- path = Exts;
- sourceTree = "<group>";
- };
- 09D862E8EA0E7C4B03AFDAEE8C998FB4 /* Pods */ = {
- isa = PBXGroup;
- children = (
- A6B68E38E6E27C8D043F0726831C896F /* Masonry */,
- 6702AC06FA62A5DC0829428B8BAA571C /* SVProgressHUD */,
- B40778DA0EE037F9C6046943956FB751 /* TensorFlowLite */,
- ECFE62178E5278BB33AD4A6865066C6B /* YYText */,
- );
- name = Pods;
- sourceTree = "<group>";
- };
- 13221BE1119559B70058B30A445AFD88 /* Pod */ = {
- isa = PBXGroup;
- children = (
- 526D175D837B13BAA60471FCE7F8F216 /* LenzSDK.podspec */,
- );
- name = Pod;
- sourceTree = "<group>";
- };
- 1731637964133344C91C981FFF1C0CD5 /* Cell */ = {
- isa = PBXGroup;
- children = (
- B346FFE2FB28E8567ED95CB456A2F8CF /* CollectionViewPlayerCell.h */,
- E967728499E5E889E7A7F07BE3FFBA2A /* CollectionViewPlayerCell.m */,
- BAE523B549F9C5EA324F14DD4BBCB4EC /* MovieListCellModel.h */,
- ED574C07AC0262FD70066041F90EFFFD /* MovieListCellModel.m */,
- B7AB4AC08440486709D731A76D4922B1 /* PhotoCollectionViewCell.h */,
- 16A08F01E970853EA562E6581A05F96A /* PhotoCollectionViewCell.m */,
- 24EDCA6C907B565CFCA6F153DACA1C08 /* PhotoCollectionViewCell.xib */,
- 8543A6A6CAF60FBCEEAF8BA85AD2BFEC /* PhotoListCellModel.h */,
- 4BAC658FD230DEDCE8BF7B9F3067EB41 /* PhotoListCellModel.m */,
- );
- name = Cell;
- path = Cell;
- sourceTree = "<group>";
- };
- 18AE7196AB2352532076A72EFF29249D /* PanoramaOrientaionView */ = {
- isa = PBXGroup;
- children = (
- D9F14E0DD1321D2339A05C60D9A95041 /* PanoramaOrientationView.h */,
- F1F574562E83519685E1499FD4CCAD42 /* PanoramaOrientationView.m */,
- );
- name = PanoramaOrientaionView;
- path = PanoramaOrientaionView;
- sourceTree = "<group>";
- };
- 1AFCEF380D2552F5D289C6E65713C028 /* lib */ = {
- isa = PBXGroup;
- children = (
- A316837B0A1BDA3FCB6907F49797C29F /* lenz_stitcher.a */,
- );
- name = lib;
- path = lib;
- sourceTree = "<group>";
- };
- 1E3BEACA729FCBE71CD3E568C3D60EAC /* Label */ = {
- isa = PBXGroup;
- children = (
- 1B006FE08A4545A176E9415519C4812B /* AlbumCounterLabel.h */,
- 185252B13C095F4158BB86519A54C9EA /* AlbumCounterLabel.m */,
- 5C8F0CE63987748F5D5EBB7AC297EB37 /* PaddingLabel.h */,
- 1A400F0E8D0990EE2ECB8EF1C949F50A /* PaddingLabel.m */,
- C0931C591BE7B07CE458432E8414A12C /* TimerLabel.h */,
- 10ED3E885569F0ADA5C6D3DFF0824810 /* TimerLabel.m */,
- );
- name = Label;
- path = Label;
- sourceTree = "<group>";
- };
- 218EEE1ACBE61B22A465592DD1CBF6E3 /* DBModels */ = {
- isa = PBXGroup;
- children = (
- AB4ED4E5A21F449AB237A6158DE5F976 /* LenzCachedResourceModel.h */,
- 48611A8832F58CED003645A0C8EDA810 /* LenzCachedResourceModel.m */,
- );
- name = DBModels;
- path = DBModels;
- sourceTree = "<group>";
- };
- 222BAAC3C262CFBF90008035A1C8A63D /* PCSMotionManager */ = {
- isa = PBXGroup;
- children = (
- A2C09018F6FBA2B178C18BE2A35BCC39 /* PCSMotionManager.h */,
- F4DA75E70A44BE70E7EE7A8E9E81CE80 /* PCSMotionManager.m */,
- );
- name = PCSMotionManager;
- path = PCSMotionManager;
- sourceTree = "<group>";
- };
- 22A2F23447316E0F37E27D61BE5C5E01 /* Transition */ = {
- isa = PBXGroup;
- children = (
- E265302DDF648C95DD5AD1BFA940D191 /* CustomModalViewTransition.h */,
- F2786C10A3CE15B2B97D2165EF589A44 /* CustomModalViewTransition.m */,
- );
- name = Transition;
- path = Transition;
- sourceTree = "<group>";
- };
- 25954DD21CA2A08A0C74C00755BC9EB5 /* inner */ = {
- isa = PBXGroup;
- children = (
- 807AC0FC0795E04889BB0E08A81E043D /* cpp-headers.h */,
- EBB9426222A88CE22FFD44A6DC99F0E1 /* cpp-headers.mm */,
- 045C5643ECC38689ED9F9C8C770C5E31 /* LenzHeader.h */,
- E9C8B1352CBA0FEBAD260A2E875DF2DE /* Localizable.strings */,
- 023CA2B4CB726176D7130B2CDD464FD7 /* PCSSessionWrapper.h */,
- A17498484830BD5638E4AAE372DA3F34 /* PCSSessionWrapper.m */,
- 6DEA2C1DC9C31B89E9B8385317563A70 /* PCSTools.h */,
- 3383F6C3A5BD3B919BDA3BC6011E86E5 /* PCSTools.m */,
- 0BA156318A4E03F2312B912BD01AC303 /* SDKParameters.m */,
- 5D0C3D7BE987A431121D400E808D3A5B /* VC.storyboard */,
- 289A15EC2EBE9D1936B7F004B4F6984D /* Alert */,
- B3C1F715CBE4FC8D1B13CFDFC9079EDA /* CameraManager */,
- 4A760BDBF587710BB05975DA8FBF431F /* DB */,
- 042F0CE00372E08F37BF31F9D88FCECC /* Exts */,
- 1AFCEF380D2552F5D289C6E65713C028 /* lib */,
- ED2982129D96B168906FA127CDDA8A19 /* LRU */,
- 6ADC6FFC2248F225BB6030B061BC2567 /* MoviePlayerViewController */,
- FAE32A9F9A63A7EC6A9543468D547202 /* OperationNode */,
- 32BD1404F13EBC473AB77AB2736A1B49 /* PCSBaseViewController */,
- BDCF1E19287526168423E40F7A3369FB /* PhotoListController */,
- 45A7456AAF09359472717BE611984F5F /* Renderer */,
- 92E03E2FA76E4741467E0D6B6F31117A /* TensorFlow */,
- 25EA2F1C1CD26C825EF91A6C0EFA2C8F /* UI */,
- );
- name = inner;
- path = LenzCameraNativeModuleForRN/Classes/inner;
- sourceTree = "<group>";
- };
- 25EA2F1C1CD26C825EF91A6C0EFA2C8F /* UI */ = {
- isa = PBXGroup;
- children = (
- F12F036B9077FA7440B2EC3BA01936F1 /* PCSThemeColorManager.h */,
- 644952EB048BC8BC0910BB01B0805C4B /* PCSThemeColorManager.m */,
- C737571C716B879FE88206DADF7F907E /* Button */,
- 810BEFD30FC5FCB7D9787144DC9CBC73 /* color */,
- 1E3BEACA729FCBE71CD3E568C3D60EAC /* Label */,
- C893C8A79647279A01A30C9362090B4F /* ModeListView */,
- E755EF95C935AE3D882286493470C1B4 /* PanoramaGuideView */,
- 18AE7196AB2352532076A72EFF29249D /* PanoramaOrientaionView */,
- 22A2F23447316E0F37E27D61BE5C5E01 /* Transition */,
- C9267AE22240B09992918B7703A8E80E /* UIView+tool */,
- );
- name = UI;
- path = UI;
- sourceTree = "<group>";
- };
- 289A15EC2EBE9D1936B7F004B4F6984D /* Alert */ = {
- isa = PBXGroup;
- children = (
- DB1D86006E8DB29B9EC999D91F0E0F10 /* AlertView.h */,
- B25E0B74E5939E2E46DA3E98F4247061 /* AlertView.m */,
- 21B8E03137BCF9F54F9CFE4277F7BEB7 /* QuitMultipleModeAlertViewController.h */,
- BDAA4B378A2E594E02C3191126E989A7 /* QuitMultipleModeAlertViewController.m */,
- A98A6874AF478874BC5AD38B0EEC575F /* QuitMultipleModeAlertViewController.xib */,
- );
- name = Alert;
- path = Alert;
- sourceTree = "<group>";
- };
- 2C872924427A13A04B486DAEA9D62FD1 /* Resources */ = {
- isa = PBXGroup;
- children = (
- F8E1D2BD0418FD754EEF58BE1B4D2571 /* SVProgressHUD.bundle */,
- );
- name = Resources;
- sourceTree = "<group>";
- };
- 32BD1404F13EBC473AB77AB2736A1B49 /* PCSBaseViewController */ = {
- isa = PBXGroup;
- children = (
- 834B84ECD3BF70F9EE566804C9D3ABFE /* PCSBaseViewController.m */,
- A8E2B95BAC7DAEE3F8A609F111031712 /* PCSPreviewViewController.h */,
- 3007D1F66DCAE15BF3C90FF9AFB97502 /* PCSPreviewViewController.m */,
- 70DA52D70BA3DF3FE4DCDBF44793E925 /* GestureHandler */,
- );
- name = PCSBaseViewController;
- path = PCSBaseViewController;
- sourceTree = "<group>";
- };
- 45A7456AAF09359472717BE611984F5F /* Renderer */ = {
- isa = PBXGroup;
- children = (
- B8ED74D62553DA243A77D1F0D1402416 /* CameraTextureRenderPass.h */,
- 4D3F36A7A2E0A0590FC794057DA03E5D /* CameraTextureRenderPass.m */,
- 76B07E03B78EEC0C08320D0078A920DF /* Renderer.h */,
- 1940AFAFFCD2AD451F5C94F7120F4529 /* Renderer.m */,
- A420D0E72CD7C41DD51B1B1CEB07BF47 /* Shaders */,
- );
- name = Renderer;
- path = Renderer;
- sourceTree = "<group>";
- };
- 4A760BDBF587710BB05975DA8FBF431F /* DB */ = {
- isa = PBXGroup;
- children = (
- 99D5C16FB2FC618D0F8D12FEF5F87EFE /* DBManager.h */,
- 001A5F8370E76AE3CF69DE5CD54BCB78 /* DBManager.m */,
- 2AFEC1638AFA63E98315E7E877E9043D /* LenzDataManager.h */,
- C3579EEF69634228A8DE81F027DAB926 /* LenzDataManager.m */,
- 218EEE1ACBE61B22A465592DD1CBF6E3 /* DBModels */,
- );
- name = DB;
- path = DB;
- sourceTree = "<group>";
- };
- 5C16A90ADF4B57DA7B3C6478488E42A5 /* Support Files */ = {
- isa = PBXGroup;
- children = (
- 030858582360BFE22F7D95092D54F7BD /* Masonry-dummy.m */,
- 42AFC0AEF4E9BAFC0B7B3D707FFFA9EC /* Masonry-prefix.pch */,
- CD502849161614DACCEE9E27B93550F2 /* Masonry.debug.xcconfig */,
- DAFD9603956A9F8C5BE7FAC749CCFF97 /* Masonry.release.xcconfig */,
- );
- name = "Support Files";
- path = "../Target Support Files/Masonry";
- sourceTree = "<group>";
- };
- 6702AC06FA62A5DC0829428B8BAA571C /* SVProgressHUD */ = {
- isa = PBXGroup;
- children = (
- 833F599750CCF740A20A786D96528502 /* SVIndefiniteAnimatedView.h */,
- FF30174D85BCC340875C99BBC74425FB /* SVIndefiniteAnimatedView.m */,
- 71A9C32F11A74240787A960ACBA0D696 /* SVProgressAnimatedView.h */,
- 696BD80AD2D0E598BC912C1C71E80704 /* SVProgressAnimatedView.m */,
- 1E22208BA1E8475055B90D807D8461DB /* SVProgressHUD.h */,
- 9C54896DA6101D4274319E355FCC702C /* SVProgressHUD.m */,
- 6ABCED1E73226E2ABC9BE8BE8D03BF0D /* SVRadialGradientLayer.h */,
- 384498CEF984C255A6393C0AF5889DC5 /* SVRadialGradientLayer.m */,
- 2C872924427A13A04B486DAEA9D62FD1 /* Resources */,
- E4DA4D425B00D273EE44FB33FC255002 /* Support Files */,
- );
- name = SVProgressHUD;
- path = SVProgressHUD;
- sourceTree = "<group>";
- };
- 6ADC6FFC2248F225BB6030B061BC2567 /* MoviePlayerViewController */ = {
- isa = PBXGroup;
- children = (
- CADF850FF74C89AEA926B09C0E07C8E6 /* MoviePlayerViewController.h */,
- 5C1100ACDC0A5DDECABD3C889A867223 /* MoviePlayerViewController.m */,
- );
- name = MoviePlayerViewController;
- path = MoviePlayerViewController;
- sourceTree = "<group>";
- };
- 70DA52D70BA3DF3FE4DCDBF44793E925 /* GestureHandler */ = {
- isa = PBXGroup;
- children = (
- 7189B9B5B46972A794BBD7DA208D7B29 /* BaseViewTapGestureDelegate.h */,
- E324CBC5B1CD1D81F9DDBFE9466A1E97 /* BaseViewTapGestureDelegate.m */,
- );
- name = GestureHandler;
- path = GestureHandler;
- sourceTree = "<group>";
- };
- 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */ = {
- isa = PBXGroup;
- children = (
- CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */,
- CCC2A2D9BE13B566A864D567615045F6 /* LenzSDK-LenzCameraNativeModuleForRN */,
- 1FFED36A657123030ABB700256D73F15 /* Masonry */,
- 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */,
- E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */,
- 71762A728913EB440C97D3616D291AF3 /* YYText */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 7ADD985782C977225309D47C5E6E121D /* CollectionViewCell */ = {
- isa = PBXGroup;
- children = (
- 5C4AEE6F3FAD0B04DCB1E1E351C3CF50 /* PhotoAlbumModel.h */,
- BDEA7527A5E638AC420DC55A43D729CD /* PhotoAlbumModel.m */,
- 0D7887C1F6773A568EBDB5D24DBBACBD /* PhotoCell.h */,
- 6D62B02E7EF69B17AB7FAC2297364E42 /* PhotoCell.m */,
- D98C5C12F052EAD529EC9EEFE493EFAE /* PhotoCell.xib */,
- );
- name = CollectionViewCell;
- path = CollectionViewCell;
- sourceTree = "<group>";
- };
- 810BEFD30FC5FCB7D9787144DC9CBC73 /* color */ = {
- isa = PBXGroup;
- children = (
- 2F5CFD310DE3E3F4309E4692E5FDC2CC /* UIColor+JKAdd.h */,
- C7465AD2ADA3BF7068CBAADEC48297D2 /* UIColor+JKAdd.m */,
- );
- name = color;
- path = color;
- sourceTree = "<group>";
- };
- 8FA76A2270D150C57C13ECEFD62CCFDF /* Support Files */ = {
- isa = PBXGroup;
- children = (
- CC221CE8C66884BDEE6D35D15C1A72B3 /* TensorFlowLite.debug.xcconfig */,
- 23C222F8741C6545FA2E78D3B6885D45 /* TensorFlowLite.release.xcconfig */,
- );
- name = "Support Files";
- path = "../Target Support Files/TensorFlowLite";
- sourceTree = "<group>";
- };
- 92E03E2FA76E4741467E0D6B6F31117A /* TensorFlow */ = {
- isa = PBXGroup;
- children = (
- DF7346F194B062427E1A91DFFE462DC2 /* TensorFlowWrapper.h */,
- 825C6FB76FE50D59AB05CDE39C679926 /* TensorFlowWrapper.m */,
- );
- name = TensorFlow;
- path = TensorFlow;
- sourceTree = "<group>";
- };
- 981BDF6654D112A42A9052EAD23D66C3 /* headers */ = {
- isa = PBXGroup;
- children = (
- 96A8580B6102817508C5CE6FCE48459B /* LenzCameraNativeModuleForRN.h */,
- AD277ABA97D5700D67AE4243F751B01F /* LenzCameraSDK.h */,
- E8E4DDD2282B9B833AC55ABFA624EA06 /* LenzCameraSDK.m */,
- E13A7F3DB10BF5228E0EFAFA7E97E7A0 /* LenzSDKConstant.h */,
- E175FD1A53388F3D8247FA6961EA7668 /* PCSBaseViewController.h */,
- 160B990996DD21D6E64E455E744557C6 /* SDKParameters.h */,
- );
- name = headers;
- path = LenzCameraNativeModuleForRN/Classes/headers;
- sourceTree = "<group>";
- };
- A420D0E72CD7C41DD51B1B1CEB07BF47 /* Shaders */ = {
- isa = PBXGroup;
- children = (
- BDA9F250AB98999CB591E8E8EBC94C04 /* LenzCommon.h */,
- F586AE2DD1FB03ED19CD3340751A6076 /* Shaders.metal */,
- );
- name = Shaders;
- path = Shaders;
- sourceTree = "<group>";
- };
- A690EA949F27E276C70C3169BD23C386 /* Support Files */ = {
- isa = PBXGroup;
- children = (
- C90D457F0567CE408A5CEABA3729CBAE /* LenzSDK-dummy.m */,
- 337FCC62499B3AEB5142B24F167EEF38 /* LenzSDK-prefix.pch */,
- 3B1C9EB4810F130F5B301709B86D03EB /* LenzSDK.debug.xcconfig */,
- 64D23F96A249A835012EC76AACF02FA7 /* LenzSDK.release.xcconfig */,
- 1AEB047D2DA8375A9CC2B2C6F33B36AB /* ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist */,
- );
- name = "Support Files";
- path = "Example/Pods/Target Support Files/LenzSDK";
- sourceTree = "<group>";
- };
- A6B68E38E6E27C8D043F0726831C896F /* Masonry */ = {
- isa = PBXGroup;
- children = (
- 236AF217BE16A74042B90DBB675F6FD0 /* MASCompositeConstraint.h */,
- 09C630CEDE852939E93E2C127B2582EC /* MASCompositeConstraint.m */,
- A8F7B049C02D3205B3F0FC2A7C47FB8A /* MASConstraint.h */,
- 83DF0E9265D9C7C9A64D13D326C24C40 /* MASConstraint.m */,
- 5679E1BE40D48781EB2D80BD9125159B /* MASConstraint+Private.h */,
- 8CD9F5FAE8AA1C9DC33B67DCE4D06112 /* MASConstraintMaker.h */,
- 2002BF941497DCE4DC551650ED008F9E /* MASConstraintMaker.m */,
- CCC2C690CC362F11F7628C08EB887F0D /* MASLayoutConstraint.h */,
- 337DC53419566E7FC771DE62CF99F6B0 /* MASLayoutConstraint.m */,
- 38BE671C7B48B2C725FE5EB9E63666BC /* Masonry.h */,
- AC59A703058154D497C84656B4AE034E /* MASUtilities.h */,
- A767AF5987619CA8337AB90476FC7A8B /* MASViewAttribute.h */,
- 66579CE2B50EB996A4F4583BBB52AAA3 /* MASViewAttribute.m */,
- ACC7C0BD6430C348FA88862F379F6DA2 /* MASViewConstraint.h */,
- F399DC89064A26DEE47CA1B9B31C3F60 /* MASViewConstraint.m */,
- AAA2651DCC2E01B791217BA3135411FB /* NSArray+MASAdditions.h */,
- 75A1EF02C8646996F4BE7781491CFFA8 /* NSArray+MASAdditions.m */,
- FD729596A07430FFF4D8DBD49F18B935 /* NSArray+MASShorthandAdditions.h */,
- 1E6AF7755455F924245F4D6A2C617747 /* NSLayoutConstraint+MASDebugAdditions.h */,
- E9260E3C367D8AF0C0D9E43A00ACE951 /* NSLayoutConstraint+MASDebugAdditions.m */,
- 04C0ECDA1655815A1B7E06604643BFF7 /* View+MASAdditions.h */,
- CFD7DA366C309EF390A99E5C79028444 /* View+MASAdditions.m */,
- 00465AB67C1F1B380226E17A7CE23581 /* View+MASShorthandAdditions.h */,
- 5297FF5173925AD14037E2972FE1575C /* ViewController+MASAdditions.h */,
- 985EAF70F969BDAB6658282A9B5C28A8 /* ViewController+MASAdditions.m */,
- 5C16A90ADF4B57DA7B3C6478488E42A5 /* Support Files */,
- );
- name = Masonry;
- path = Masonry;
- sourceTree = "<group>";
- };
- B3C1F715CBE4FC8D1B13CFDFC9079EDA /* CameraManager */ = {
- isa = PBXGroup;
- children = (
- AA5F0F34AD32861B4BC13AED5EE46AA1 /* CameraManager.h */,
- 484E9323B660E1E311FCC858BDAD79F6 /* CameraManager.m */,
- );
- name = CameraManager;
- path = CameraManager;
- sourceTree = "<group>";
- };
- B40778DA0EE037F9C6046943956FB751 /* TensorFlowLite */ = {
- isa = PBXGroup;
- children = (
- D12E4829C2EE389259BF9E03BFC03299 /* Frameworks */,
- 8FA76A2270D150C57C13ECEFD62CCFDF /* Support Files */,
- );
- name = TensorFlowLite;
- path = TensorFlowLite;
- sourceTree = "<group>";
- };
- B77BEFA4F143EAEB178F917647E8AEAD /* Support Files */ = {
- isa = PBXGroup;
- children = (
- B8874ECCD2F100A4073541AF616CD959 /* YYText-dummy.m */,
- 1AC75595A616CB1A10F74F9B85C9A817 /* YYText-prefix.pch */,
- 4E5519F8ACF06D3117C557AC71BBF11A /* YYText.debug.xcconfig */,
- C7B681F2187F1F5A880627CAB69F5A7C /* YYText.release.xcconfig */,
- );
- name = "Support Files";
- path = "../Target Support Files/YYText";
- sourceTree = "<group>";
- };
- BDCF1E19287526168423E40F7A3369FB /* PhotoListController */ = {
- isa = PBXGroup;
- children = (
- 1FB8EFDA0A02A82868E8E02DD5B6E34E /* MovieListViewController.h */,
- 4DDFA7461FD9FDB9F39907820FE50909 /* MovieListViewController.m */,
- E52E912FAFF28DB1D50022DCFE3D494A /* PhotoAlbumListViewController.h */,
- 0B92E667049899392FBCBA6FC12CEBDB /* PhotoAlbumListViewController.m */,
- B5B03D0A34A6C4C8370F9A917FCAE421 /* PhotoListViewController.h */,
- 9BB15112B40D29902BD44EB63437D817 /* PhotoListViewController.m */,
- 7612CDA74861A83401A33AFF22CBBE9D /* PreviewSingleViewController.h */,
- 4C7551E540F421DB883EC45F9B9FD999 /* PreviewSingleViewController.m */,
- 1731637964133344C91C981FFF1C0CD5 /* Cell */,
- 7ADD985782C977225309D47C5E6E121D /* CollectionViewCell */,
- );
- name = PhotoListController;
- path = PhotoListController;
- sourceTree = "<group>";
- };
- C737571C716B879FE88206DADF7F907E /* Button */ = {
- isa = PBXGroup;
- children = (
- F96AA13B316FCDDD05D7F5984FE83C2E /* PCSButton.h */,
- 8111B32B635DCD399351FDD47A65EFB1 /* PCSButton.m */,
- D59D4935A4D2F844ABA539328825157E /* PCSRoundButton.h */,
- BEF78E2843E079623DF49791E96D80C7 /* PCSRoundButton.m */,
- 65E6552F443DE1F9C6A71EB124AE43D8 /* VerticalButton.h */,
- ECF16AD4550E44A71FF0CCCFE0A2135B /* VerticalButton.m */,
- );
- name = Button;
- path = Button;
- sourceTree = "<group>";
- };
- C893C8A79647279A01A30C9362090B4F /* ModeListView */ = {
- isa = PBXGroup;
- children = (
- D26B0FB3B3AA94572958C88C41C7FB55 /* PCSModeList.h */,
- 6DE30B6B31980946761C9D5293B4941D /* PCSModeList.m */,
- );
- name = ModeListView;
- path = ModeListView;
- sourceTree = "<group>";
- };
- C8A5046F3BCC31D5327B6E6695FC9698 /* LenzSDK */ = {
- isa = PBXGroup;
- children = (
- 8EFC60452ECAED9A2848F17EFB6D745B /* PCSSDF-prefix-header.h */,
- EF3D74546A4C9189C77D2536D060CF87 /* Assets */,
- E676DAE6C40D5F826D7D17999E0E15D2 /* Frameworks */,
- 981BDF6654D112A42A9052EAD23D66C3 /* headers */,
- 25954DD21CA2A08A0C74C00755BC9EB5 /* inner */,
- 13221BE1119559B70058B30A445AFD88 /* Pod */,
- A690EA949F27E276C70C3169BD23C386 /* Support Files */,
- );
- name = LenzSDK;
- path = ../..;
- sourceTree = "<group>";
- };
- C9267AE22240B09992918B7703A8E80E /* UIView+tool */ = {
- isa = PBXGroup;
- children = (
- 1A3793D77A5DF02CCECD90108FEF8CA3 /* UIImage+name.h */,
- C32BA2A28074C92B04A25647565BDFF9 /* UIImage+name.m */,
- 41170107A2FDBF1229F0526276F6ECF5 /* UIView+JKAdd.h */,
- 19E6F84B2A0BD0B98160C9D203A66A14 /* UIView+JKAdd.m */,
- );
- name = "UIView+tool";
- path = "UIView+tool";
- sourceTree = "<group>";
- };
- CF1408CF629C7361332E53B88F7BD30C = {
- isa = PBXGroup;
- children = (
- 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
- DC9ACD8048F536C0F69FB51EBDCE5884 /* Development Pods */,
- D89477F20FB1DE18A04690586D7808C4 /* Frameworks */,
- 09D862E8EA0E7C4B03AFDAEE8C998FB4 /* Pods */,
- 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */,
- E3490A6C63045E74D3E12B26073DA3D7 /* Targets Support Files */,
- );
- sourceTree = "<group>";
- };
- D12E4829C2EE389259BF9E03BFC03299 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 91CF64F2FBA4596C564CC9365CC785DC /* tensorflow_lite.framework */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- DC9ACD8048F536C0F69FB51EBDCE5884 /* Development Pods */ = {
- isa = PBXGroup;
- children = (
- C8A5046F3BCC31D5327B6E6695FC9698 /* LenzSDK */,
- );
- name = "Development Pods";
- sourceTree = "<group>";
- };
- E3490A6C63045E74D3E12B26073DA3D7 /* Targets Support Files */ = {
- isa = PBXGroup;
- children = (
- FEEB9A876329C1C8B00204A34D3109C6 /* Pods-LenzCameraNativeModuleForRN_Example */,
- );
- name = "Targets Support Files";
- sourceTree = "<group>";
- };
- E4DA4D425B00D273EE44FB33FC255002 /* Support Files */ = {
- isa = PBXGroup;
- children = (
- 150A3C4B092EFF5C5CDA39529434886D /* SVProgressHUD-dummy.m */,
- 0C2B063ACAB139531B3A172A1DC0FA50 /* SVProgressHUD-prefix.pch */,
- 79B3ECE71D1D817E41F35D9B5EDD8823 /* SVProgressHUD.debug.xcconfig */,
- 4D8E2E45458645E409B65064F26BE9BC /* SVProgressHUD.release.xcconfig */,
- );
- name = "Support Files";
- path = "../Target Support Files/SVProgressHUD";
- sourceTree = "<group>";
- };
- E676DAE6C40D5F826D7D17999E0E15D2 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 6027CA9CC86B70D548CD92E2B7DA6152 /* LenzStitchSDK.framework */,
- 312CD5C33A8FBAF4812468B3F2EC2499 /* LenzTensorFlowSDK.framework */,
- 02C3FDB9B6055C3E98B71F9F40F293DB /* opencv2.framework */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- E755EF95C935AE3D882286493470C1B4 /* PanoramaGuideView */ = {
- isa = PBXGroup;
- children = (
- 9C4CBCA4D29B03564BBDBC5F5C01D93C /* PanoramaGuideView.h */,
- 642B6533196B118EC2A42532AAB9F790 /* PanoramaGuideView.m */,
- );
- name = PanoramaGuideView;
- path = PanoramaGuideView;
- sourceTree = "<group>";
- };
- ECFE62178E5278BB33AD4A6865066C6B /* YYText */ = {
- isa = PBXGroup;
- children = (
- D08085210D8BF3F57298C44F1A85B3AB /* NSAttributedString+YYText.h */,
- 21CABE754D79776A6CA0048575C17125 /* NSAttributedString+YYText.m */,
- EADB3792F4D552050D74E9418727DB85 /* NSParagraphStyle+YYText.h */,
- 925A4C3E2A374C054C117E27C3C1D7D6 /* NSParagraphStyle+YYText.m */,
- BD9189EC71760D28C686D5F3ABB28539 /* UIPasteboard+YYText.h */,
- E1A4A10D45532A36D91AB25E923BCE55 /* UIPasteboard+YYText.m */,
- 60D974875E35028BFB587AC3574BEC00 /* UIView+YYText.h */,
- 2D753BEB00E24AD721F3C33B73FA7DFD /* UIView+YYText.m */,
- B3FABB1AB4EC151E5C9656A616F69499 /* YYLabel.h */,
- B2FC930665E4A7CF0D652608F4A5F036 /* YYLabel.m */,
- AB019ACB40EC1D9EA58DF5C2044FEDA4 /* YYText.h */,
- D91B38E39EA044E85F6ACE52E9D773A9 /* YYTextArchiver.h */,
- 0BCE3AE0EB3099A374D3D8E3C8AAA770 /* YYTextArchiver.m */,
- EA45FA6D756C56F8C345F42BD8FCB2E9 /* YYTextAsyncLayer.h */,
- 13AA756254EF152781EA2DCEE497DA85 /* YYTextAsyncLayer.m */,
- 5100BB2C21C348957D675E5E8E8AFC23 /* YYTextAttribute.h */,
- 6B5C8B827F83A437B959D365EBCAD0FF /* YYTextAttribute.m */,
- 4F0D684B0FCFC439535A5896507EB868 /* YYTextContainerView.h */,
- E83DD7792E6E4BD1EE4F7A59F21187FD /* YYTextContainerView.m */,
- 4E35876B9CD9492C56A9233E07CF9154 /* YYTextDebugOption.h */,
- 876E7EF23CC2D8D5153FB1D94CFF7622 /* YYTextDebugOption.m */,
- BDDCB1C7F8328C04E5BD1FE3F2C25114 /* YYTextEffectWindow.h */,
- 8F7C7E00CA6BCEC8469AD7C9F112200C /* YYTextEffectWindow.m */,
- CA7659E48BC55B78DC1D9038C1E715FA /* YYTextInput.h */,
- 03580EB58D7084008ED15AFEFDDF44C5 /* YYTextInput.m */,
- 1B8355626A66BC661E37E399FC319781 /* YYTextKeyboardManager.h */,
- AEFB6FD0996C12C9C08BB4FFA1441657 /* YYTextKeyboardManager.m */,
- 0994AB16F94688C044E520A3CD0008CC /* YYTextLayout.h */,
- 44661AF21CDB4677BF788BD75ACB86E8 /* YYTextLayout.m */,
- 915DFC2B3727DF36D704655395005955 /* YYTextLine.h */,
- 17612549EC07EF4D5BA8AEA7628F954F /* YYTextLine.m */,
- 230AB8ED6A299D9085C2F4F5ECD912A7 /* YYTextMagnifier.h */,
- A4C18B2ED0CB87015BA0CC57B8C7157E /* YYTextMagnifier.m */,
- C2F62CD50BFD779B6EFD0D09FCAABDDE /* YYTextParser.h */,
- 059F71D6CF20450C126B81E72F666ADC /* YYTextParser.m */,
- 453FC4AC919A14E42EC7F7FDADFEF10C /* YYTextRubyAnnotation.h */,
- 114501B95B52E239D7469CF4E409507E /* YYTextRubyAnnotation.m */,
- 185CAD498BBA3913B8BE4A56E086F406 /* YYTextRunDelegate.h */,
- 4BD59CF8EEBEA3E243785662CA2FBAE7 /* YYTextRunDelegate.m */,
- 236BD5F0C68C18F6835B9292DCE7BB80 /* YYTextSelectionView.h */,
- 75C28A6CE6DD09D0C90B842258501DCE /* YYTextSelectionView.m */,
- 53DD05D7B6888C455D77CA8C05CEC207 /* YYTextTransaction.h */,
- 567009CE78A0EAB5467FAB5FBFF54EF1 /* YYTextTransaction.m */,
- FAF7A7016021E626ECAEBF36DDB38433 /* YYTextUtilities.h */,
- E0BC2924B100AC445EEFFC7134D84951 /* YYTextUtilities.m */,
- 26F858E75731812FA2CFFA0C6AC1A2A8 /* YYTextView.h */,
- E3A70E430A65EB9DAF0BD8994EC6F075 /* YYTextView.m */,
- 3DCA23D47376CDDDCB02F34624EC3328 /* YYTextWeakProxy.h */,
- 19B60C5ED970E0BD7B87C59D44EF8103 /* YYTextWeakProxy.m */,
- B77BEFA4F143EAEB178F917647E8AEAD /* Support Files */,
- );
- name = YYText;
- path = YYText;
- sourceTree = "<group>";
- };
- ED2982129D96B168906FA127CDDA8A19 /* LRU */ = {
- isa = PBXGroup;
- children = (
- 46C88FEA97AD035600FD104BF0FB899F /* ImageCacheLRU.h */,
- EFA78D74D65C7A2CFC756FE18A5145D0 /* ImageCacheLRU.m */,
- );
- name = LRU;
- path = LRU;
- sourceTree = "<group>";
- };
- EF3D74546A4C9189C77D2536D060CF87 /* Assets */ = {
- isa = PBXGroup;
- children = (
- D1F049E526F5575B78C34D06EEEA8012 /* assets.xcassets */,
- 2136F17FD7A18281A6A63BACBB7B5DA2 /* moire_mobilenetv2_79.tflite */,
- );
- name = Assets;
- path = LenzCameraNativeModuleForRN/Assets;
- sourceTree = "<group>";
- };
- FAE32A9F9A63A7EC6A9543468D547202 /* OperationNode */ = {
- isa = PBXGroup;
- children = (
- 8841542C61D6B28DB383D3DEE9211CF3 /* OperationNodeAIPanorama.h */,
- 5ACF3FDF300C843E85F806D911FBBD30 /* OperationNodeAIPanorama.m */,
- FCF39464DCA45BC7FE51A2F2EF530B78 /* OperationNodeMovie.h */,
- 8792C14B698CBB0A6E3114CBD5FCC4E2 /* OperationNodeMovie.m */,
- 0C06388C4DC40676457C58BE9BB087CF /* OperationNodeMultiple.h */,
- CD4D19A957FBFABB2144E0CA18C5EB84 /* OperationNodeMultiple.m */,
- 1FA033AD5AB0361B939E7C93DA61D4E7 /* OperationNodePanorama.h */,
- 77429CB6A8EAF380C3CB43D3A6254D3D /* OperationNodePanorama.m */,
- 92503338E6D82D9E44D6E98E78516315 /* OperationNodeProtocol.h */,
- 3769A2F99954C35CEF2D418F86780330 /* OperationNodeSingle.h */,
- 0F37F3A6741614EF4393CEC045E9472B /* OperationNodeSingle.m */,
- 81138B07CE5075F5BB6EE8861507C864 /* OperationNodeVideoBase.h */,
- DD29E953FEFC5715DE8B2B1EC7C73649 /* OperationNodeVideoBase.m */,
- 222BAAC3C262CFBF90008035A1C8A63D /* PCSMotionManager */,
- );
- name = OperationNode;
- path = OperationNode;
- sourceTree = "<group>";
- };
- FEEB9A876329C1C8B00204A34D3109C6 /* Pods-LenzCameraNativeModuleForRN_Example */ = {
- isa = PBXGroup;
- children = (
- AE44E80EF6245FE2ED31EEB49A819226 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.markdown */,
- 8B4DC4759B1098548FAA7403C6442854 /* Pods-LenzCameraNativeModuleForRN_Example-acknowledgements.plist */,
- 4DAC96EA958C80B473A50698F178D1EF /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m */,
- 1F19139A77CA316ACCEF6D7B18F9414C /* Pods-LenzCameraNativeModuleForRN_Example-resources.sh */,
- CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */,
- F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */,
- );
- name = "Pods-LenzCameraNativeModuleForRN_Example";
- path = "Target Support Files/Pods-LenzCameraNativeModuleForRN_Example";
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXHeadersBuildPhase section */
- 3427465FE64E78C9D8B0EF3B72D47634 /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 7E8376A64BDA994E29F90B4FC2B57648 /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- DB28DEA5C89B3F178C446B9BF5562102 /* AlbumCounterLabel.h in Headers */,
- F0D66C62D35CAF4B84F0610BAB99E2F7 /* AlertView.h in Headers */,
- 67A58DFA526AC3A9A871F233A47DBFB8 /* AVCapturePhotoOutput+VersionAdaptor.h in Headers */,
- EAB02DF3E96F9785F41A5500AE9231CE /* BaseViewTapGestureDelegate.h in Headers */,
- D8739CDE4FB8D28DE29E3B8C2B1C64BC /* CameraManager.h in Headers */,
- 8EF89B26052CE66E8CF72814A1CED9DA /* CameraTextureRenderPass.h in Headers */,
- 2FD31708C0A9546EF4514AFCDDA48133 /* CollectionViewPlayerCell.h in Headers */,
- 683F5CAD9E088A9CBDA18B5D5A01007D /* cpp-headers.h in Headers */,
- 8452D2825DA153EF65ACA8A8E96BF70A /* CustomModalViewTransition.h in Headers */,
- A3EED5B675E5B70762DCEA4484D1DD32 /* DBManager.h in Headers */,
- 02B959FE26516AD48909BA09827C5514 /* ImageCacheLRU.h in Headers */,
- 0E7B9B60DC5DA0C2A4034A2EA0B26677 /* LenzCachedResourceModel.h in Headers */,
- 3E6ED86721A1F011A450B6E96F7ED43F /* LenzCameraNativeModuleForRN.h in Headers */,
- 408CDF664EB44439BA50971F116EEF58 /* LenzCameraSDK.h in Headers */,
- 6A162316CAEA8379A5DD1408C9F4C104 /* LenzCommon.h in Headers */,
- A4FB9BCC0BADD6545BCA0BC764F55B67 /* LenzDataManager.h in Headers */,
- 27C458144190E14D027C6F53A23B28AF /* LenzHeader.h in Headers */,
- DB7BC0757DFC6D9D66ACEFE8B218F6FC /* LenzSDKConstant.h in Headers */,
- 600CA65C8D86178DF521F4B01DBB84E0 /* MovieListCellModel.h in Headers */,
- 537FB6D4350E7E1901D5EB5F9D867936 /* MovieListViewController.h in Headers */,
- 8E35FC2D2C2230EFEB1620BFE18C7F86 /* MoviePlayerViewController.h in Headers */,
- F5C006B2A7B0381FD2544A519A8BB653 /* NSString+Localization.h in Headers */,
- 9FAE2FAF1B199BCFD85DD33C9446E3DD /* OperationNodeAIPanorama.h in Headers */,
- 11ADA2C64E2EFEA900C7C12FB8A176ED /* OperationNodeMovie.h in Headers */,
- D9273A532E144D095BEA616052B474B9 /* OperationNodeMultiple.h in Headers */,
- F2A43A8784342F88513E78C7784ECE3A /* OperationNodePanorama.h in Headers */,
- D87CEA68717BA52E529D717C9DFB975D /* OperationNodeProtocol.h in Headers */,
- 5CFD26FA1D20A656E6E59D7FCB957036 /* OperationNodeSingle.h in Headers */,
- 82F1FB2214D18D26A57EFBEC33FB1BA8 /* OperationNodeVideoBase.h in Headers */,
- 1027F512D7E8132EA23712BA83A0E366 /* PaddingLabel.h in Headers */,
- AFCF29097B8EA55F399208D7642298F3 /* PanoramaGuideView.h in Headers */,
- A56825C55CC43AC2164B448B6190F763 /* PanoramaOrientationView.h in Headers */,
- B38297872C05EF7F3335A262EEC3FB1D /* PCSBaseViewController.h in Headers */,
- A4F5926C8B7C174795A4E712B40818BB /* PCSButton.h in Headers */,
- 9962BC0A854280021221A5D4F2917AE4 /* PCSModeList.h in Headers */,
- 6AB71F1AFAAEAEA715F98BA8CCC2FD31 /* PCSMotionManager.h in Headers */,
- 5C0068B922F4D3BF2C88B58F408B290E /* PCSPreviewViewController.h in Headers */,
- 5804651E7179251151071800958B13C5 /* PCSRoundButton.h in Headers */,
- 89633F951D73A9C9E77A45DB6576B6FA /* PCSSDF-prefix-header.h in Headers */,
- 692535448F10C176CBFBE177CE206EBF /* PCSSessionWrapper.h in Headers */,
- 75F2C65AD171D1BFC9DD4D7AAAE3614B /* PCSThemeColorManager.h in Headers */,
- AC6B9EF28746B8901142DD8419FF44E0 /* PCSTools.h in Headers */,
- 718675C8D8CC9777C6870ADB7335DA31 /* PhotoAlbumListViewController.h in Headers */,
- 33BE96B3EDF2887F4F5EFFCC0AAC4790 /* PhotoAlbumModel.h in Headers */,
- 0239928A2EC82255C7AD2603A8A30F98 /* PhotoCell.h in Headers */,
- C9D2A74D78D033FB1869E3E2C474A853 /* PhotoCollectionViewCell.h in Headers */,
- E60485A5626CDB7B3AC9D1FA60544174 /* PhotoListCellModel.h in Headers */,
- 99E33A9DD7BCA1FCBFEB5CC7C489874F /* PhotoListViewController.h in Headers */,
- ED5D2756D90E118759B27B394E9BA40E /* PreviewSingleViewController.h in Headers */,
- 4100628200520015C6FC3F6B53A53A53 /* QuitMultipleModeAlertViewController.h in Headers */,
- E37AE3A325DEFC71637496C52ACD1936 /* Renderer.h in Headers */,
- 5937D0B695127E5393DF3956E4BE1142 /* SDKParameters.h in Headers */,
- 6E92300E108061782377F38796508DBD /* TensorFlowWrapper.h in Headers */,
- 18E22C2CA3EEA3529726DB78234102F5 /* TimerLabel.h in Headers */,
- A4047DDD5557F5D36C577F53FC37F589 /* UIButton+Layout.h in Headers */,
- C0B940B2CDE1CB5CEF3752720BCF4314 /* UIColor+JKAdd.h in Headers */,
- D37E7CD8B01422BC301EE7B1D8525260 /* UIImage+ext.h in Headers */,
- 1E66E189DFFEA268D990FF1924E5F3AA /* UIImage+name.h in Headers */,
- EAAA980D69009418E76595C778E5AC74 /* UIView+JKAdd.h in Headers */,
- 4DD1CCE3EF0004A3A9BA7261F4C1759B /* VerticalButton.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 81D6CCB2805BA3E7E24C05FAFAFFEBA7 /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 39DD41B366B3CA5AA32AD1F346B9B2AB /* MASCompositeConstraint.h in Headers */,
- DF11EEE36D8E8ECB8A102626EBAEB4D4 /* MASConstraint.h in Headers */,
- A76A5E421BC75DA3FF37ECA7D8C15776 /* MASConstraint+Private.h in Headers */,
- 69864DFE3EC290040D273D325FA0E089 /* MASConstraintMaker.h in Headers */,
- EF243CAD47B649A174FC48701A24BFAB /* MASLayoutConstraint.h in Headers */,
- 6D0B9203EC261F2DC6641C1592F967A4 /* Masonry.h in Headers */,
- 045AAD1AB83E7F95858CB0B461BFBB90 /* MASUtilities.h in Headers */,
- DA62FD788B98F91E03E3C4D7DFEFB329 /* MASViewAttribute.h in Headers */,
- 63BE63519B1690F0C066293683F854D6 /* MASViewConstraint.h in Headers */,
- E32AB08E07650090B804130EC48B9BB1 /* NSArray+MASAdditions.h in Headers */,
- D0240C120E93A9A3EF0AF8D977F4B9F7 /* NSArray+MASShorthandAdditions.h in Headers */,
- 65A7EEF17AF1C948906239F6A246E0FF /* NSLayoutConstraint+MASDebugAdditions.h in Headers */,
- 8163209B85CD4577B385B5831F187207 /* View+MASAdditions.h in Headers */,
- 2BF97781872D2E6ADADC8D01A0DB139E /* View+MASShorthandAdditions.h in Headers */,
- A4A71AC95431D146A49F96DFC1098551 /* ViewController+MASAdditions.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 9BD1126D67D0B4FC2F181104FC562EEE /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 44167A79BC1130104702B0B2749C955E /* SVIndefiniteAnimatedView.h in Headers */,
- 35125021A252681A4ACD6212651D3EED /* SVProgressAnimatedView.h in Headers */,
- D74BEE5DE0586E6AA1B341A75F5384CF /* SVProgressHUD.h in Headers */,
- 300A8F2D4968EB49C0625E962866D325 /* SVRadialGradientLayer.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- B72922862FFA564708648178544BF49D /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- FBC8702390126618DAFEA0C34F0A633E /* NSAttributedString+YYText.h in Headers */,
- 2B68E6A0683A84B3271177B84E8B19F2 /* NSParagraphStyle+YYText.h in Headers */,
- 537F83DFFEFC2B468F094725820A3E3E /* UIPasteboard+YYText.h in Headers */,
- C7D18935F2CFB0B0525CAEFC4610C6AE /* UIView+YYText.h in Headers */,
- 59DF16BC09798FEFB776A5B17C2E3CCF /* YYLabel.h in Headers */,
- 5B8CB26922362364523F24D1E83764D1 /* YYText.h in Headers */,
- 5BF987096F7CA20815070D276A2EBC5E /* YYTextArchiver.h in Headers */,
- 89A624531B981F6165C799AF6A9FE2E7 /* YYTextAsyncLayer.h in Headers */,
- B4D60EAEA2512C44C72FD54441C6C15C /* YYTextAttribute.h in Headers */,
- D60F1EAD0E09B0ED80A7E9631E8B13E0 /* YYTextContainerView.h in Headers */,
- 70A62934BE85AEC19192F9A8BD0A66FA /* YYTextDebugOption.h in Headers */,
- E1EAA5CAA13B421FC1BFEE8A741D4189 /* YYTextEffectWindow.h in Headers */,
- 7224AF90E4AFF20058C3F84F1336B134 /* YYTextInput.h in Headers */,
- 756D31CB09477B50D36204DFFB7EA42A /* YYTextKeyboardManager.h in Headers */,
- 336294A8C0A924407434D81A88A3B2E1 /* YYTextLayout.h in Headers */,
- 34D690A5A2F96C59C00CF90699D0E1E5 /* YYTextLine.h in Headers */,
- A6B33365753E3FB81C4D095217E27CDF /* YYTextMagnifier.h in Headers */,
- 57E1CFE2A41A2A26C7775C286E643BBE /* YYTextParser.h in Headers */,
- 9B1E7AEF9F2A2445AB16F213DBE0C97C /* YYTextRubyAnnotation.h in Headers */,
- B7C5DD68F83710CB71471C8BFA4C0EBB /* YYTextRunDelegate.h in Headers */,
- 3EAE03A9C0D44D7E3DE15E9D0D89C2DC /* YYTextSelectionView.h in Headers */,
- 084FA057947FD4B8E5B4093B80B2310A /* YYTextTransaction.h in Headers */,
- 15CD333FB3CF3C9040F20AA320FD0DF3 /* YYTextUtilities.h in Headers */,
- EA2B31A15E2FD0137B67863504E87A56 /* YYTextView.h in Headers */,
- C4C8590716111199B7AED48DF3FD1165 /* YYTextWeakProxy.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXHeadersBuildPhase section */
- /* Begin PBXNativeTarget section */
- 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 9A8468B40FF59E48478E6AFED653CE11 /* Build configuration list for PBXNativeTarget "SVProgressHUD" */;
- buildPhases = (
- 9BD1126D67D0B4FC2F181104FC562EEE /* Headers */,
- BD019BB611C8B9B82C80994B37E4B3DD /* Sources */,
- 651767A35F3F5BB82162FF9DE4322858 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = SVProgressHUD;
- productName = SVProgressHUD;
- productReference = E97D43C46A45EE515A4DA3AF94398441 /* SVProgressHUD */;
- productType = "com.apple.product-type.library.static";
- };
- 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 1E24F4F9E48DB17C24851841F290DF89 /* Build configuration list for PBXNativeTarget "LenzSDK" */;
- buildPhases = (
- 7E8376A64BDA994E29F90B4FC2B57648 /* Headers */,
- 7FC63EF97360CFBF801C7F00FB9B0E91 /* Sources */,
- D9FE46DE6C340903427F9319BEE22478 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- A13F83C5C7683DC4C956B2A14F1BFA81 /* PBXTargetDependency */,
- 0178D6A39A7DD809A1545BE93BB9DAE0 /* PBXTargetDependency */,
- 65DB1011938FFED747A2303B39D9C08E /* PBXTargetDependency */,
- 5F3B482A916C6C4452ED74553BA9ECA6 /* PBXTargetDependency */,
- 1616B5B5E51A8712E1685952A86F53D0 /* PBXTargetDependency */,
- );
- name = LenzSDK;
- productName = LenzSDK;
- productReference = CD3B4C37B809DF57B2C544D27037D4BE /* LenzSDK */;
- productType = "com.apple.product-type.library.static";
- };
- 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = FFF7042CADCE0E5C50D90DAE995E60A0 /* Build configuration list for PBXNativeTarget "Masonry" */;
- buildPhases = (
- 81D6CCB2805BA3E7E24C05FAFAFFEBA7 /* Headers */,
- CB57F945220DF39FCBD7F259360D44C7 /* Sources */,
- 5201A48FF16520DC6EC61F61532A5F51 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = Masonry;
- productName = Masonry;
- productReference = 1FFED36A657123030ABB700256D73F15 /* Masonry */;
- productType = "com.apple.product-type.library.static";
- };
- 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 335A5208C998FE0EE108BA2BCDCE3976 /* Build configuration list for PBXNativeTarget "YYText" */;
- buildPhases = (
- B72922862FFA564708648178544BF49D /* Headers */,
- 46C6F4E21EDE19BE4C3C79D92818A44F /* Sources */,
- 87A53D71436C043AD2044563DC983A70 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = YYText;
- productName = YYText;
- productReference = 71762A728913EB440C97D3616D291AF3 /* YYText */;
- productType = "com.apple.product-type.library.static";
- };
- 8222597EFCE86FAF8329DCA378CDF036 /* Pods-LenzCameraNativeModuleForRN_Example */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = F130161DB3EB0297431EDD1948002BB4 /* Build configuration list for PBXNativeTarget "Pods-LenzCameraNativeModuleForRN_Example" */;
- buildPhases = (
- 3427465FE64E78C9D8B0EF3B72D47634 /* Headers */,
- F9F177129CE4EF8B949B85767F148550 /* Sources */,
- 02B9D7251D15087A8DA31D60B13E16B2 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- E8AC02486D6553DAD01EFB51D089357B /* PBXTargetDependency */,
- D8C75009202A16A0949BD2F842DDD804 /* PBXTargetDependency */,
- 7B2588912B3738DA6CE7C7BEEA78C04B /* PBXTargetDependency */,
- 511B0FF012B81BD9BAB5F8654F6AEC01 /* PBXTargetDependency */,
- 40D0AF2BFD9BF150084146B2DF385740 /* PBXTargetDependency */,
- );
- name = "Pods-LenzCameraNativeModuleForRN_Example";
- productName = "Pods-LenzCameraNativeModuleForRN_Example";
- productReference = 2C8B54D8A8758C1B25EA98FE17EE7F55 /* Pods-LenzCameraNativeModuleForRN_Example */;
- productType = "com.apple.product-type.library.static";
- };
- E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = FB3A69825693554754E78221C5470707 /* Build configuration list for PBXNativeTarget "LenzSDK-LenzCameraNativeModuleForRN" */;
- buildPhases = (
- DCD3D29BB46661564380EE9F97AA9E0B /* Sources */,
- 27DB505796AEFF6F325D0097670EBCF9 /* Frameworks */,
- 1FDB8C19932CFB576D07F38C589F9AB3 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "LenzSDK-LenzCameraNativeModuleForRN";
- productName = LenzCameraNativeModuleForRN;
- productReference = CCC2A2D9BE13B566A864D567615045F6 /* LenzSDK-LenzCameraNativeModuleForRN */;
- productType = "com.apple.product-type.bundle";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastSwiftUpdateCheck = 1300;
- LastUpgradeCheck = 1300;
- };
- buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- Base,
- en,
- "zh-Hans",
- );
- mainGroup = CF1408CF629C7361332E53B88F7BD30C;
- productRefGroup = 77D60AD0AE70EA1A9220A07CAE7643F9 /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */,
- E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */,
- 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */,
- 8222597EFCE86FAF8329DCA378CDF036 /* Pods-LenzCameraNativeModuleForRN_Example */,
- 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */,
- A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */,
- 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXResourcesBuildPhase section */
- 1FDB8C19932CFB576D07F38C589F9AB3 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 02EDD635504BF57114EE2902B28F0EB8 /* assets.xcassets in Resources */,
- 208C68C1BB9548B7F43CF36DBB7CCD80 /* Localizable.strings in Resources */,
- B118B5AB61E2169C00C6001185FE03FE /* moire_mobilenetv2_79.tflite in Resources */,
- 15CC60CD2EF809BE1BBA97FEBDBE9605 /* PhotoCell.xib in Resources */,
- B64E0B389A85E1625E23E3AA98DC0005 /* PhotoCollectionViewCell.xib in Resources */,
- DC46ABD9C0AA1F6B23E8F10F4B03063D /* QuitMultipleModeAlertViewController.xib in Resources */,
- BD9B5FBD5EFDB50E07624E153C262283 /* VC.storyboard in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- 46C6F4E21EDE19BE4C3C79D92818A44F /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 77C5B6E02AF70E47D1E380BE5ADFE750 /* NSAttributedString+YYText.m in Sources */,
- A4EF72D5F92B9D1BFD38F94C0F9353AD /* NSParagraphStyle+YYText.m in Sources */,
- C688AA37EE739D61560E2B86D64ACC51 /* UIPasteboard+YYText.m in Sources */,
- 7F907ABC6FFC4E1B12ADA33F233AF492 /* UIView+YYText.m in Sources */,
- 7F80FA71C480E4AF23FF39A9E96D4652 /* YYLabel.m in Sources */,
- DCC02118BBA9787C005B87C69A9A84FB /* YYText-dummy.m in Sources */,
- 85EA2553FEB2D2FDBF124F6A77692798 /* YYTextArchiver.m in Sources */,
- 5B04C33B5BB8BC512829FDD019856853 /* YYTextAsyncLayer.m in Sources */,
- 9C42AC82DD36B5A948D434BC68E5F705 /* YYTextAttribute.m in Sources */,
- AB1C71721E3F29910AEF8BB9DF228954 /* YYTextContainerView.m in Sources */,
- 6D7E6BFCE0A2280C205A4442664D3B8E /* YYTextDebugOption.m in Sources */,
- A8584851C94F7410D7C91165CBE35D20 /* YYTextEffectWindow.m in Sources */,
- 6868E309F99B12D1046CF67E5D4601D8 /* YYTextInput.m in Sources */,
- 8E592EC028AE26B68DD719F05450A171 /* YYTextKeyboardManager.m in Sources */,
- C8EEE774E035293D0326E733FBCB8EC8 /* YYTextLayout.m in Sources */,
- ECF173B98738BC2218D11D27EEDA565E /* YYTextLine.m in Sources */,
- 1D8B5E19E2DDD85E6F6ABA76D980365B /* YYTextMagnifier.m in Sources */,
- 7FFCDBA1CB71D9C973C49B4A37EC5725 /* YYTextParser.m in Sources */,
- 0AE23868BA6DA518A770964CFA58B2B6 /* YYTextRubyAnnotation.m in Sources */,
- 9835BD9F0CC98740477919085DCC81D6 /* YYTextRunDelegate.m in Sources */,
- CA98C2A3810D3F5C4E6D4B7BA03E1E62 /* YYTextSelectionView.m in Sources */,
- B620BC317F7569737F8464565713133B /* YYTextTransaction.m in Sources */,
- DA0C9838D939D960483A0D1EA4EE4FAF /* YYTextUtilities.m in Sources */,
- 988549A36C48743753DD4FB793E0D018 /* YYTextView.m in Sources */,
- 6FE8C0F00B081D797EBA92E15F8A1EC4 /* YYTextWeakProxy.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 7FC63EF97360CFBF801C7F00FB9B0E91 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 36A335D72A32C8D373B244083634C298 /* AlbumCounterLabel.m in Sources */,
- D0DC343DF898D9DA5386B2364B92110E /* AlertView.m in Sources */,
- 45A025C9E91F10658628F768D873642D /* AVCapturePhotoOutput+VersionAdaptor.m in Sources */,
- 167CA5A8031385B0A81CCF7901765CC7 /* BaseViewTapGestureDelegate.m in Sources */,
- 8E53653E1B32D93DAEA0E4C486403383 /* CameraManager.m in Sources */,
- 023CFE8053B14211C69D04718711DEFC /* CameraTextureRenderPass.m in Sources */,
- 4D8322EF82610B19CF14893F310DF415 /* CollectionViewPlayerCell.m in Sources */,
- EEF4EFB15583307EFE5315F41D0FCA63 /* cpp-headers.mm in Sources */,
- 068F7D34728422B2B5C9C30E58BD7C52 /* CustomModalViewTransition.m in Sources */,
- F5D086A3E8F39A21E5A535FD3EF1E033 /* DBManager.m in Sources */,
- 1AD187D9AC6E811D7CF9781BF8CFAEF6 /* ImageCacheLRU.m in Sources */,
- 62D4C11F440C4A96585B6703AF77C5E1 /* lenz_stitcher.a in Sources */,
- 573FF3E20326AF5E9D1AE2968368330A /* LenzCachedResourceModel.m in Sources */,
- 6A93F1139D51CC7E5577AA5F665F7EDA /* LenzCameraSDK.m in Sources */,
- D8D33FC10F5A2BF9DB0339F2A8FCE329 /* LenzDataManager.m in Sources */,
- ECD1E36F2AEDFE68EAC886A26F2B845E /* LenzSDK-dummy.m in Sources */,
- 40B7B47B7B502516A205297033B80D22 /* Localizable.strings in Sources */,
- F25B552B4ABDAA9110FDBFA050BDA5DC /* Localizable.strings in Sources */,
- A92AA1B9BB6390AB86B6413B3A8A88CC /* MovieListCellModel.m in Sources */,
- 90F29372D5FD84D85705EDC32EAF1A02 /* MovieListViewController.m in Sources */,
- E16EEBCA03B54B544EDC39027C5BA0FC /* MoviePlayerViewController.m in Sources */,
- 4DC87D1E949CB1CC1987DC05ADEB580F /* NSString+Localization.m in Sources */,
- DAAC402C6E33313B45C8CF47004AD879 /* OperationNodeAIPanorama.m in Sources */,
- F39E7931365010946F6DBFB36B4B2EB5 /* OperationNodeMovie.m in Sources */,
- 1ED3C161DBA972E683FA708F5062C208 /* OperationNodeMultiple.m in Sources */,
- 492AD3240A9A28893E6AE7C8AE30A525 /* OperationNodePanorama.m in Sources */,
- 323CA95CD72A2E0207D256F1F69C5F3D /* OperationNodeSingle.m in Sources */,
- 90E3BA5C23397CF975541DDA124722BA /* OperationNodeVideoBase.m in Sources */,
- 313057E0BBF20FEDA9AA0FFB3EED8C0D /* PaddingLabel.m in Sources */,
- C89F708DF6D8456EBE5DA2D2E291BC8A /* PanoramaGuideView.m in Sources */,
- 9AEF36993DA36EA384C2794F81127683 /* PanoramaOrientationView.m in Sources */,
- A24D51C9DDA7055D9207F4E1A4E8C8B3 /* PCSBaseViewController.m in Sources */,
- BF498FA11AE3EACC30C4B8E5CCFDAB90 /* PCSButton.m in Sources */,
- 3C0C1C4D82E74794045D34B2F336E55B /* PCSModeList.m in Sources */,
- 25A56361BB8E7291B0E6C4D60F57D7FB /* PCSMotionManager.m in Sources */,
- FE28B81832D825805108C9131B8310AA /* PCSPreviewViewController.m in Sources */,
- C966139CE4D69A2E221EFFC1E475BA70 /* PCSRoundButton.m in Sources */,
- 43FB1194BE4F7755647BE583FE9DE8C9 /* PCSSessionWrapper.m in Sources */,
- 5325B5D50750C2B516941C1BC1DAF84D /* PCSThemeColorManager.m in Sources */,
- 0136F970555A2FE5E5BAEED511674D6A /* PCSTools.m in Sources */,
- 4EC3293169F740693B5D0A371624A75D /* PhotoAlbumListViewController.m in Sources */,
- 411EEB22AF92299394B87F74D88D1460 /* PhotoAlbumModel.m in Sources */,
- 2776881FEA95B4221D237348734861A5 /* PhotoCell.m in Sources */,
- 5DC64232325DA5A4D21D97CC569CD758 /* PhotoCell.xib in Sources */,
- 76C20AD4B92885154D87FC48AC21C0D5 /* PhotoCollectionViewCell.m in Sources */,
- 4547326B38452A54A54B6BB4B10DE57E /* PhotoCollectionViewCell.xib in Sources */,
- 0521A183DF005CC0EA971A2FCC397194 /* PhotoListCellModel.m in Sources */,
- 0F88A9F602D848578F98D16A0F11CC05 /* PhotoListViewController.m in Sources */,
- 1C13180EC4403658D9FE1363FD47B139 /* PreviewSingleViewController.m in Sources */,
- 023464FF5345321333136E9CF313741F /* QuitMultipleModeAlertViewController.m in Sources */,
- F085F277FB366D548502D3F71267B7CF /* QuitMultipleModeAlertViewController.xib in Sources */,
- C000CDC3A8FF69AABFF235DAC9269EAF /* Renderer.m in Sources */,
- B3FFCFD840E2AEE76BAC47A84F274B28 /* SDKParameters.m in Sources */,
- C690F7D6ACD090EC597507C9BF8C96D3 /* Shaders.metal in Sources */,
- 6E64879D6211004843DE58AC87B45C56 /* TensorFlowWrapper.m in Sources */,
- ACA6E96B3FC57BC074B759897E0FC15D /* TimerLabel.m in Sources */,
- B5DEC04ABA0617E937918AF345E611EA /* UIButton+Layout.m in Sources */,
- 4BC258EE7EC77815097A3E9E338B7280 /* UIColor+JKAdd.m in Sources */,
- 37287801A54A0A670972CF786BC1BBAE /* UIImage+ext.m in Sources */,
- ED94ACCAACE2B5F792A1BE295099C1B1 /* UIImage+name.m in Sources */,
- F1AD74AA99C7ADAFFBF6228E99F377E9 /* UIView+JKAdd.m in Sources */,
- F2C2F93768E230384361F403453A380D /* VC.storyboard in Sources */,
- DD251C162F5079C04ECA0EEEFC4FDF76 /* VerticalButton.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- BD019BB611C8B9B82C80994B37E4B3DD /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 67E5943679E464CD2079A8AFAD0732D1 /* SVIndefiniteAnimatedView.m in Sources */,
- 9500E3D014074F001470D6EBFF460231 /* SVProgressAnimatedView.m in Sources */,
- DD22269997F82307B4FFFD2E8A0DCEEE /* SVProgressHUD.m in Sources */,
- AD0ED8A23D28A11012C13397BA1D09A7 /* SVProgressHUD-dummy.m in Sources */,
- 56B960051357AC8944C25E33654CC7CB /* SVRadialGradientLayer.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- CB57F945220DF39FCBD7F259360D44C7 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 31BADF35F4B73610453214D8CCA4CE96 /* MASCompositeConstraint.m in Sources */,
- 61D5656846E4EFF9A3BBACEFEA2A9157 /* MASConstraint.m in Sources */,
- 15CC219133439E79B63C325A48CB5230 /* MASConstraintMaker.m in Sources */,
- 9402D5AAA95193CE70739597D0BE622E /* MASLayoutConstraint.m in Sources */,
- 8B22624C519A49650D314A3D4E21B8E3 /* Masonry-dummy.m in Sources */,
- 3EAF9A103C2C88DB15C08BEAC8A9CB97 /* MASViewAttribute.m in Sources */,
- D3D875F034EA672BEFA8CAE5E50C1D68 /* MASViewConstraint.m in Sources */,
- E98435255607264A1544DD2689D8FF4E /* NSArray+MASAdditions.m in Sources */,
- E49B464C18CFCD4F3BB43A596712DA39 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */,
- DB4BA808523D6374E92D1E4223FF775D /* View+MASAdditions.m in Sources */,
- 75DF02B9DE4CEA66C4A8A0E3C29CAD2E /* ViewController+MASAdditions.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- DCD3D29BB46661564380EE9F97AA9E0B /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- F9F177129CE4EF8B949B85767F148550 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 9DD3CA64E5A33B53492C6DF08DFF93AA /* Pods-LenzCameraNativeModuleForRN_Example-dummy.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXTargetDependency section */
- 0178D6A39A7DD809A1545BE93BB9DAE0 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- name = Masonry;
- target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */;
- targetProxy = C743F33DAD15DD387ADACA20236C5A46 /* PBXContainerItemProxy */;
- };
- 1616B5B5E51A8712E1685952A86F53D0 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- name = YYText;
- target = 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */;
- targetProxy = 2679C7739BB2F01090AE1403DE32E0A7 /* PBXContainerItemProxy */;
- };
- 40D0AF2BFD9BF150084146B2DF385740 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- name = YYText;
- target = 6F5C17E80BD1B7F60A33F79692330A57 /* YYText */;
- targetProxy = DCA9FDEF49E484AF309EF97BFE437B29 /* PBXContainerItemProxy */;
- };
- 511B0FF012B81BD9BAB5F8654F6AEC01 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- name = TensorFlowLite;
- target = A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */;
- targetProxy = 7EC7C279130D3AD630925C04F22E4664 /* PBXContainerItemProxy */;
- };
- 5F3B482A916C6C4452ED74553BA9ECA6 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- name = TensorFlowLite;
- target = A2620F0B8F03AA967AF4B9A85EB8DF00 /* TensorFlowLite */;
- targetProxy = 14BD6CB410BCEBF0C8F05A0834AAFBD5 /* PBXContainerItemProxy */;
- };
- 65DB1011938FFED747A2303B39D9C08E /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- name = SVProgressHUD;
- target = 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */;
- targetProxy = 8D593E22E2C42DB887C2C0CFFFAAA437 /* PBXContainerItemProxy */;
- };
- 7B2588912B3738DA6CE7C7BEEA78C04B /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- name = SVProgressHUD;
- target = 1C8D67D8B72D6BA42CCEDB648537A340 /* SVProgressHUD */;
- targetProxy = 61F0F3737B0825E57379D196F67AEAFF /* PBXContainerItemProxy */;
- };
- A13F83C5C7683DC4C956B2A14F1BFA81 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- name = "LenzSDK-LenzCameraNativeModuleForRN";
- target = E7EBC84E7AFBA5D0740969B92CA58D87 /* LenzSDK-LenzCameraNativeModuleForRN */;
- targetProxy = B30991FA22D816FB193BDB87DF6DAA14 /* PBXContainerItemProxy */;
- };
- D8C75009202A16A0949BD2F842DDD804 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- name = Masonry;
- target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */;
- targetProxy = E8B3C1A00FD16172DADC67FCE11827D2 /* PBXContainerItemProxy */;
- };
- E8AC02486D6553DAD01EFB51D089357B /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- name = LenzSDK;
- target = 22955C745E4D0669DBEFF1F1997E3D7E /* LenzSDK */;
- targetProxy = 0F37F87CAD55CF1327916C0B41F8E6AA /* PBXContainerItemProxy */;
- };
- /* End PBXTargetDependency section */
- /* Begin PBXVariantGroup section */
- E9C8B1352CBA0FEBAD260A2E875DF2DE /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 3DEFF5635EA7D20945B2F48768B2AAA4 /* Localizable.strings */,
- 98F6633F7645381FF0289CA10AC9802E /* Localizable.strings */,
- );
- name = Localizable.strings;
- path = .;
- sourceTree = "<group>";
- };
- /* End PBXVariantGroup section */
- /* Begin XCBuildConfiguration section */
- 060ADF05F3AC6B20A7060BE19F3AF47C /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 4E5519F8ACF06D3117C557AC71BBF11A /* YYText.debug.xcconfig */;
- buildSettings = {
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
- "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
- GCC_PREFIX_HEADER = "Target Support Files/YYText/YYText-prefix.pch";
- IPHONEOS_DEPLOYMENT_TARGET = 6.0;
- OTHER_LDFLAGS = "";
- OTHER_LIBTOOLFLAGS = "";
- PRIVATE_HEADERS_FOLDER_PATH = "";
- PRODUCT_MODULE_NAME = YYText;
- PRODUCT_NAME = YYText;
- PUBLIC_HEADERS_FOLDER_PATH = "";
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
- SWIFT_VERSION = 4.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 1EF7B875868E2B612ABD983F1529A28A /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 64D23F96A249A835012EC76AACF02FA7 /* LenzSDK.release.xcconfig */;
- buildSettings = {
- CODE_SIGNING_ALLOWED = NO;
- CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/LenzSDK";
- IBSC_MODULE = LenzSDK;
- INFOPLIST_FILE = "Target Support Files/LenzSDK/ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- PRODUCT_NAME = LenzCameraNativeModuleForRN;
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- TARGETED_DEVICE_FAMILY = "1,2";
- WRAPPER_EXTENSION = bundle;
- };
- name = Release;
- };
- 22751CA4D5F5EA874D88D774DC47B293 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 23C222F8741C6545FA2E78D3B6885D45 /* TensorFlowLite.release.xcconfig */;
- buildSettings = {
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 2B9E26EAE2CD392AD762421F663075A1 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "POD_CONFIGURATION_DEBUG=1",
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- ONLY_ACTIVE_ARCH = YES;
- PRODUCT_NAME = "$(TARGET_NAME)";
- STRIP_INSTALLED_PRODUCT = NO;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
- SWIFT_VERSION = 5.0;
- SYMROOT = "${SRCROOT}/../build";
- };
- name = Debug;
- };
- 2C537242B3A9E34B11979C62F4EE260B /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = CB2EE50749970B2B9265477CC624EAB9 /* Pods-LenzCameraNativeModuleForRN_Example.debug.xcconfig */;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
- CLANG_ENABLE_OBJC_WEAK = NO;
- "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- MACH_O_TYPE = staticlib;
- OTHER_LDFLAGS = "";
- OTHER_LIBTOOLFLAGS = "";
- PODS_ROOT = "$(SRCROOT)";
- PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 498C8266B2CD2F57B69DA68C13DD7ED8 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 79B3ECE71D1D817E41F35D9B5EDD8823 /* SVProgressHUD.debug.xcconfig */;
- buildSettings = {
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
- "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
- GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch";
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
- OTHER_LDFLAGS = "";
- OTHER_LIBTOOLFLAGS = "";
- PRIVATE_HEADERS_FOLDER_PATH = "";
- PRODUCT_MODULE_NAME = SVProgressHUD;
- PRODUCT_NAME = SVProgressHUD;
- PUBLIC_HEADERS_FOLDER_PATH = "";
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
- SWIFT_VERSION = 4.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 4D6B04C7596C90BE778ECF14A59BA0AE /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = DAFD9603956A9F8C5BE7FAC749CCFF97 /* Masonry.release.xcconfig */;
- buildSettings = {
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
- "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
- GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch";
- IPHONEOS_DEPLOYMENT_TARGET = 6.0;
- OTHER_LDFLAGS = "";
- OTHER_LIBTOOLFLAGS = "";
- PRIVATE_HEADERS_FOLDER_PATH = "";
- PRODUCT_MODULE_NAME = Masonry;
- PRODUCT_NAME = Masonry;
- PUBLIC_HEADERS_FOLDER_PATH = "";
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
- SWIFT_VERSION = 4.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 54A4CF5894B87A4651FC81AA03A66DB5 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 3B1C9EB4810F130F5B301709B86D03EB /* LenzSDK.debug.xcconfig */;
- buildSettings = {
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
- CLANG_ENABLE_OBJC_WEAK = NO;
- "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
- GCC_PREFIX_HEADER = "Target Support Files/LenzSDK/LenzSDK-prefix.pch";
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- OTHER_LDFLAGS = "";
- OTHER_LIBTOOLFLAGS = "";
- PRIVATE_HEADERS_FOLDER_PATH = "";
- PRODUCT_MODULE_NAME = LenzSDK;
- PRODUCT_NAME = LenzSDK;
- PUBLIC_HEADERS_FOLDER_PATH = "";
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
- SWIFT_VERSION = 4.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "POD_CONFIGURATION_RELEASE=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- MTL_ENABLE_DEBUG_INFO = NO;
- MTL_FAST_MATH = YES;
- PRODUCT_NAME = "$(TARGET_NAME)";
- STRIP_INSTALLED_PRODUCT = NO;
- SWIFT_COMPILATION_MODE = wholemodule;
- SWIFT_OPTIMIZATION_LEVEL = "-O";
- SWIFT_VERSION = 5.0;
- SYMROOT = "${SRCROOT}/../build";
- };
- name = Release;
- };
- 7B6DBD1EB71D867546168DC3CDC93FD7 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = F1EEED96730F70A01C583B6AC5DAAB88 /* Pods-LenzCameraNativeModuleForRN_Example.release.xcconfig */;
- buildSettings = {
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
- CLANG_ENABLE_OBJC_WEAK = NO;
- "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
- IPHONEOS_DEPLOYMENT_TARGET = 12.0;
- MACH_O_TYPE = staticlib;
- OTHER_LDFLAGS = "";
- OTHER_LIBTOOLFLAGS = "";
- PODS_ROOT = "$(SRCROOT)";
- PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 83EC80AAF60C9C41381BFFCFDF9AADB1 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 64D23F96A249A835012EC76AACF02FA7 /* LenzSDK.release.xcconfig */;
- buildSettings = {
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
- CLANG_ENABLE_OBJC_WEAK = NO;
- "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
- GCC_PREFIX_HEADER = "Target Support Files/LenzSDK/LenzSDK-prefix.pch";
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- OTHER_LDFLAGS = "";
- OTHER_LIBTOOLFLAGS = "";
- PRIVATE_HEADERS_FOLDER_PATH = "";
- PRODUCT_MODULE_NAME = LenzSDK;
- PRODUCT_NAME = LenzSDK;
- PUBLIC_HEADERS_FOLDER_PATH = "";
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
- SWIFT_VERSION = 4.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 8447775E67FEF1705195AFCA163FCF86 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 4D8E2E45458645E409B65064F26BE9BC /* SVProgressHUD.release.xcconfig */;
- buildSettings = {
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
- "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
- GCC_PREFIX_HEADER = "Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch";
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
- OTHER_LDFLAGS = "";
- OTHER_LIBTOOLFLAGS = "";
- PRIVATE_HEADERS_FOLDER_PATH = "";
- PRODUCT_MODULE_NAME = SVProgressHUD;
- PRODUCT_NAME = SVProgressHUD;
- PUBLIC_HEADERS_FOLDER_PATH = "";
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
- SWIFT_VERSION = 4.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 845A02663F5E913FD92345B3E11D31A9 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = C7B681F2187F1F5A880627CAB69F5A7C /* YYText.release.xcconfig */;
- buildSettings = {
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
- "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
- GCC_PREFIX_HEADER = "Target Support Files/YYText/YYText-prefix.pch";
- IPHONEOS_DEPLOYMENT_TARGET = 6.0;
- OTHER_LDFLAGS = "";
- OTHER_LIBTOOLFLAGS = "";
- PRIVATE_HEADERS_FOLDER_PATH = "";
- PRODUCT_MODULE_NAME = YYText;
- PRODUCT_NAME = YYText;
- PUBLIC_HEADERS_FOLDER_PATH = "";
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
- SWIFT_VERSION = 4.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 9F428B3145F621C744039A454202471C /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = CC221CE8C66884BDEE6D35D15C1A72B3 /* TensorFlowLite.debug.xcconfig */;
- buildSettings = {
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- AE83CB933C284831FD8577B004E7A541 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 3B1C9EB4810F130F5B301709B86D03EB /* LenzSDK.debug.xcconfig */;
- buildSettings = {
- CODE_SIGNING_ALLOWED = NO;
- CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/LenzSDK";
- IBSC_MODULE = LenzSDK;
- INFOPLIST_FILE = "Target Support Files/LenzSDK/ResourceBundle-LenzCameraNativeModuleForRN-LenzSDK-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- PRODUCT_NAME = LenzCameraNativeModuleForRN;
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- TARGETED_DEVICE_FAMILY = "1,2";
- WRAPPER_EXTENSION = bundle;
- };
- name = Debug;
- };
- D2A7FE6749E44EC20C218B5321DF07D5 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = CD502849161614DACCEE9E27B93550F2 /* Masonry.debug.xcconfig */;
- buildSettings = {
- ARCHS = "$(ARCHS_STANDARD_64_BIT)";
- "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
- "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
- GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch";
- IPHONEOS_DEPLOYMENT_TARGET = 6.0;
- OTHER_LDFLAGS = "";
- OTHER_LIBTOOLFLAGS = "";
- PRIVATE_HEADERS_FOLDER_PATH = "";
- PRODUCT_MODULE_NAME = Masonry;
- PRODUCT_NAME = Masonry;
- PUBLIC_HEADERS_FOLDER_PATH = "";
- SDKROOT = iphoneos;
- SKIP_INSTALL = YES;
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
- SWIFT_VERSION = 4.0;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- 1E24F4F9E48DB17C24851841F290DF89 /* Build configuration list for PBXNativeTarget "LenzSDK" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 54A4CF5894B87A4651FC81AA03A66DB5 /* Debug */,
- 83EC80AAF60C9C41381BFFCFDF9AADB1 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 2B5DF5A158B98A0290FB17E1E4E3E2B6 /* Build configuration list for PBXAggregateTarget "TensorFlowLite" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 9F428B3145F621C744039A454202471C /* Debug */,
- 22751CA4D5F5EA874D88D774DC47B293 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 335A5208C998FE0EE108BA2BCDCE3976 /* Build configuration list for PBXNativeTarget "YYText" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 060ADF05F3AC6B20A7060BE19F3AF47C /* Debug */,
- 845A02663F5E913FD92345B3E11D31A9 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 2B9E26EAE2CD392AD762421F663075A1 /* Debug */,
- 63FAF33E1C55B71A5F5A8B3CC8749F99 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 9A8468B40FF59E48478E6AFED653CE11 /* Build configuration list for PBXNativeTarget "SVProgressHUD" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 498C8266B2CD2F57B69DA68C13DD7ED8 /* Debug */,
- 8447775E67FEF1705195AFCA163FCF86 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- F130161DB3EB0297431EDD1948002BB4 /* Build configuration list for PBXNativeTarget "Pods-LenzCameraNativeModuleForRN_Example" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 2C537242B3A9E34B11979C62F4EE260B /* Debug */,
- 7B6DBD1EB71D867546168DC3CDC93FD7 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- FB3A69825693554754E78221C5470707 /* Build configuration list for PBXNativeTarget "LenzSDK-LenzCameraNativeModuleForRN" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- AE83CB933C284831FD8577B004E7A541 /* Debug */,
- 1EF7B875868E2B612ABD983F1529A28A /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- FFF7042CADCE0E5C50D90DAE995E60A0 /* Build configuration list for PBXNativeTarget "Masonry" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- D2A7FE6749E44EC20C218B5321DF07D5 /* Debug */,
- 4D6B04C7596C90BE778ECF14A59BA0AE /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- /* End XCConfigurationList section */
- };
- rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
- }
|