Brak opisu

project.pbxproj 256KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 00B5CF1B3E38A8C6C6F59BA23E5B35E3 /* OSSResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 6625048B41ADFA42580B2E161D63BBAE /* OSSResult.m */; };
  10. 01D50BCCFC4462B1B4DD43DAA76203CE /* OSSFileLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 75270900814CAE2BC925BD061B206D97 /* OSSFileLogger.m */; };
  11. 025874B8F87886E7A8AFB256A03D3B70 /* OSSCancellationToken.m in Sources */ = {isa = PBXBuildFile; fileRef = C4CAFE2537E40DA60C561A2D9E9FBB3A /* OSSCancellationToken.m */; };
  12. 0292A74D1EB165C713FD59D2C3497742 /* OSSURLRequestRetryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = AB686C1794EFB1B3F7E51EF84AA94EF9 /* OSSURLRequestRetryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; };
  13. 051A12A2F92A1DA659B73EDC68E3A527 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 9387DB241A95C5042B8DB31B544D38CD /* Compression.m */; };
  14. 0643DDB1D9C084040DDD7DDD0726371A /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = CDC4556F80B36F9016102E2D021EB034 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
  15. 0A5FEE160055004E22FA7388D92A8B8F /* NSMutableData+OSS_CRC.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3C95CA4C0E6DE50C0C6AF6236FC7A2 /* NSMutableData+OSS_CRC.h */; settings = {ATTRIBUTES = (Project, ); }; };
  16. 0BC179ED5646AD0493759FD6698BC897 /* OSSResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B470A5F040AD8DCCBF54DC3D0F25655 /* OSSResult.h */; settings = {ATTRIBUTES = (Project, ); }; };
  17. 0C3BDFD757E9B2E05E81C88E1A236254 /* OSSLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 149EBE92DDF7F8611EC571A22EB6EDB9 /* OSSLog.m */; };
  18. 0E6BF3172AB9BDB3AF1D16E79E8A6349 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 693EE3289645DBCEEACEFB31BB8D476F /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; };
  19. 104032AFF872D503ED32CB0729374FF0 /* OSSLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B447E79DD03778ABF1D7EA9F8972866 /* OSSLog.h */; settings = {ATTRIBUTES = (Project, ); }; };
  20. 139ED8CA4046C6FB0483C6BAF58BB623 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = C028F17C9B4C3A9F92A9C345ABC48905 /* de.lproj */; };
  21. 1E82C901BBEC8943ED051BC39D749B3E /* OSSReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 20B58B4DC0F6A44CAC3BDFED06E6D5A0 /* OSSReachabilityManager.m */; };
  22. 1E9596253C9E763258938C5BDE24EDF0 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = FA1CACEF8EF9F787794BDFF18CFE3D22 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  23. 20CB01154A3945B5508EABD459B42C74 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5081911AB41469623B368DEFBFBCF6D4 /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; };
  24. 2351BF64358FB0B6A738F1DD6F315ADC /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = A346F2E3F6F0B589B5446AD4B2922877 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  25. 2471ED20B9153392AE20562DFF1CFA85 /* AliyunOSSiOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 156BEB56BF4E8417067F3C40953E2C74 /* AliyunOSSiOS-dummy.m */; };
  26. 247F6E480DF74095CB5928A83F92927E /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = D1AED96B7525EE151D7FC21D86D388AC /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; };
  27. 27682991E7CB6BAB7829C4F00916A2C9 /* OSSUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0442CCBD9A33923BBFFAEB7F4BA76EDB /* OSSUtil.h */; settings = {ATTRIBUTES = (Project, ); }; };
  28. 2CA78E96B9A45C301BE07D1CA0E700D7 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BA22ACB3EAB31C6CA043989E332E8 /* QBVideoIconView.m */; };
  29. 2CFBEB5A5F84F3276C25036D1D299D09 /* OSSConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = A4AC4EBC026602AB12FFA9B5BF6F70F3 /* OSSConstants.m */; };
  30. 2E396B0C3A83820564776D69BE434306 /* OSSDeleteMultipleObjectsResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 59943D12FA5808B3622F72490026344A /* OSSDeleteMultipleObjectsResult.m */; };
  31. 329432914F62CE1D8A4C160650AA25DE /* OSSAllRequestNeededMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 20C3E53BD774F75F44D23D3F4CEDD700 /* OSSAllRequestNeededMessage.m */; };
  32. 32F8AE23C6B3A531A1CDB69D52AEAC1A /* OSSConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E6BBAF39E2CEC41967F067FCCB315A /* OSSConstants.h */; settings = {ATTRIBUTES = (Project, ); }; };
  33. 3664372C22E39881351D4665A6968FC3 /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = B685207AB5685EFD11EBC9985C991894 /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; };
  34. 386BE6016E8DDC0AB63FF8B7611C17C0 /* AliyunOSSiOS.h in Headers */ = {isa = PBXBuildFile; fileRef = BC1D553F17DFA56C20EC6A7B645A5243 /* AliyunOSSiOS.h */; settings = {ATTRIBUTES = (Project, ); }; };
  35. 397045986E56C244C3602EAC8060D894 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 802E950A71C5C949DE95B96DC7F5F434 /* ja.lproj */; };
  36. 3AE319195257E626BD3628F90423FBF9 /* OSSNSLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 39FA363425128A34986279DCAF4FF151 /* OSSNSLogger.h */; settings = {ATTRIBUTES = (Project, ); }; };
  37. 3B8E3321C1F50B9230D67EFD0A82BE63 /* OSSHttpResponseParser.h in Headers */ = {isa = PBXBuildFile; fileRef = E64DC664CE0CD82193073DC517EC30B4 /* OSSHttpResponseParser.h */; settings = {ATTRIBUTES = (Project, ); }; };
  38. 3ECC46B8C37146FCC7F2870F39C4173B /* OSSTaskCompletionSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D1D0EF2F003D2F439A0DE77BE52A9D7 /* OSSTaskCompletionSource.m */; };
  39. 3ED2002A8729BAD18CD6BA355CD7C459 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 29F9BE24CD800B313126E26E1BF0D8D6 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; };
  40. 3F590C94BC12AC5D6373706D4B165934 /* OSSReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DB80B4BA052F08242D7C6D004995C03 /* OSSReachabilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; };
  41. 3F922819CF8E1DE3E08BD028515C876F /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F405C9E2C8221A5D8C92D487C661179 /* RNImageCropPicker-dummy.m */; };
  42. 427BD089085B9F3DBF955B93D7D37A35 /* OSSInputStreamHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C968AD637CEA5129453BBF8537863306 /* OSSInputStreamHelper.h */; settings = {ATTRIBUTES = (Project, ); }; };
  43. 42E7253D8552BE8330F25728E386B80D /* OSSCocoaLumberjack.h in Headers */ = {isa = PBXBuildFile; fileRef = C960173BB267D1D0CEADD3F3717330BB /* OSSCocoaLumberjack.h */; settings = {ATTRIBUTES = (Project, ); }; };
  44. 437413838B2995CEA31EE38024004F89 /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 09855C26F77DB3BC73601FA931BD0EED /* RSKImageCropper-dummy.m */; };
  45. 45A268C68C567F0DFDF78F45E8C239B5 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FFC42B14517790DB9E932B69DDB685F /* QBAlbumCell.m */; };
  46. 49546F44C27B144F32A4B7D8DD79D1A6 /* OSSGetObjectACLResult.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC45B7C3A2F761B70356E6410FC53C4 /* OSSGetObjectACLResult.h */; settings = {ATTRIBUTES = (Project, ); }; };
  47. 49BDA5C5471A791B5237C6C9E31D061F /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 82DD472B9D6EF0492D48634D54DB0EC5 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; };
  48. 4AE35D9620618AB1D886F63C471AF816 /* OSSCancellationTokenRegistration.m in Sources */ = {isa = PBXBuildFile; fileRef = 49CB2D95B275EFE8CF26E90559F74CD3 /* OSSCancellationTokenRegistration.m */; };
  49. 4CEFB7719117B58E2F71CBF4930304D6 /* OSSCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = E6F242C7A496A2064E7723B6821B1EA0 /* OSSCompat.h */; settings = {ATTRIBUTES = (Project, ); }; };
  50. 4D40A68BCBFAA13952C04DA6B52DFC8E /* OSSClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D2A3F6B9CC2A681613EFA80F6100B0B /* OSSClient.h */; settings = {ATTRIBUTES = (Project, ); }; };
  51. 4DB36C598788ED5B064D71A74B42F0E3 /* aos_crc64.h in Headers */ = {isa = PBXBuildFile; fileRef = 44397AA4273251CD0D823CA069815C9E /* aos_crc64.h */; settings = {ATTRIBUTES = (Project, ); }; };
  52. 4E04F0928441406BE90035480B3A35D4 /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8863C53DD7F74C328FE08DEB71F1E193 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  53. 4F4C6D235741499D1974AE832196EDF3 /* OSSHttpdns.m in Sources */ = {isa = PBXBuildFile; fileRef = 6808B83C9DD722ABD6714FE3FDCF87E9 /* OSSHttpdns.m */; };
  54. 5286465E41A228BE43F1248E92FB4D6F /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = D98D1F81822AFE41A618031B4046D67D /* RSKImageScrollView.m */; };
  55. 546B015344D9994F7C07E5C5AA795004 /* OSSReachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 3286458CAE7809FAF7265C7864B6C8F5 /* OSSReachability.m */; };
  56. 55311EAD452D5A88D2810D35CBDD3D07 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DD35D6F83746B86FBF90B9D681D7466 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; };
  57. 56A0CB18F8F28104C3AD70160447937A /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = CC7C39729CD48410960F52BD19DDBD32 /* UIImage+RSKImageCropper.m */; };
  58. 56A3968C8B7A696F223DEDC00E5D733C /* OSSXMLDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 18AA7D895C561392007AB616D630679C /* OSSXMLDictionary.m */; };
  59. 56E16D049E36465C6C2EE93AE61772FD /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 628013D1CE1672529C2C3AD9A748CBFB /* QBAlbumsViewController.m */; };
  60. 5A13FF688D3BAB49ACE72B9B0AD6964E /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1D7E55958FBD04AC870B222B02C638D3 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
  61. 5AC20CE1F5AFB79637001E37928E208C /* OSSRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DA0EFDC6D617AE971EFCB3D2AB49B54 /* OSSRequest.h */; settings = {ATTRIBUTES = (Project, ); }; };
  62. 5B67F6E8A9D3F9E15AEA86C6FB50AE8C /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4EC2755B245D50460BE75E1BEBBF0E80 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
  63. 5C860203595F0B879CFA6D9E2B581881 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 134663A96482BCAFC4185081180FB2D1 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; };
  64. 5E16358822ECBB02B6A06672C550CFA6 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = F120D29E88B57871955AB98B98DD8F93 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; };
  65. 65FADCD255A52D62E8B816AA11839FC4 /* OSSCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 49014995AAE36D671C41657154D4CBFB /* OSSCompat.m */; };
  66. 6793CF7A9B546C2C1CB2EC0116DF58B5 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F792FDC7C0453D363F4EF3A2EBF0500 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; };
  67. 67C2FD15DF6ECB96A40E73901DB7D706 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7EC06121E71D5112070CB91D90F657CB /* UIKit.framework */; };
  68. 6915D98E08A1F855209AF5556DAB16A2 /* OSSNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EEBC68806A469365A7B348599FAC03A /* OSSNetworking.m */; };
  69. 69DEA25AB38CF12C44BAA8A71B0FBFB0 /* OSSCancellationTokenSource.m in Sources */ = {isa = PBXBuildFile; fileRef = AC134B9AA5DEB6C1AA74D4F07FCC5352 /* OSSCancellationTokenSource.m */; };
  70. 6ACBF424EADF8E761E0A2189C89D9182 /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 33D26D25A4B782CD69C48F782255A365 /* RSKInternalUtility.m */; };
  71. 6C9AF0F6F4C22F667401E08535CB8C78 /* OSSCancellationTokenRegistration.h in Headers */ = {isa = PBXBuildFile; fileRef = B4EE7BAC681A17F81228E966AAF6DEBF /* OSSCancellationTokenRegistration.h */; settings = {ATTRIBUTES = (Project, ); }; };
  72. 74B9FA62B235E2B0ED597542F79C8586 /* OSSAllRequestNeededMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = DC99D1D3F016EECC1D16D4B7C2E6F856 /* OSSAllRequestNeededMessage.h */; settings = {ATTRIBUTES = (Project, ); }; };
  73. 76D7CE0382D1E32DBA23517500500B19 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 159DA138B66F865808413F6EAC5B6D14 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
  74. 77157697273EFEBFB46ABF95BD39908E /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 319314FD20C2F54E0FA50B4EBD89E588 /* zh-Hans.lproj */; };
  75. 779E90F8D82C385DA474EE0FCEF5E816 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 84C9B8249B6CDC5D2606A617E94A2DDD /* QBImagePicker.storyboard */; };
  76. 77E0EA40853AD003C4990D0866FE19D2 /* OSSXMLDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 82873F6C751F6CD9DAE837118ABCB314 /* OSSXMLDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; };
  77. 7943D54963E61D7AC19F6FC3E80B394E /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59A2B84803990E7333B6E1BC30AD0FC6 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
  78. 7B38FF1CF4479FE02C4F7AC11380C7F1 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 8FE1D030403FC22A6D94F3476DA9FD8B /* CGGeometry+RSKImageCropper.m */; };
  79. 7BEE8B1382F47F22069DAE1A6B765A48 /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 02EAD2C92D477C0E24FE43BE56459806 /* UIApplication+RSKImageCropper.m */; };
  80. 83DE3E31083020AE6D994B9A97479D3C /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 49005B80FFF25F19462B6B107C627DA4 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  81. 8470FCB4D40915B1AFC26EA51AF44493 /* OSSDeleteMultipleObjectsRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = CF2C810E2874AE2D17B5677DDDE4756E /* OSSDeleteMultipleObjectsRequest.h */; settings = {ATTRIBUTES = (Project, ); }; };
  82. 84CC2786B36238BBD87EC5D33B62EC0A /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DDEA1FEFF2B8B43860BB1ECD00FEDAA7 /* CoreTelephony.framework */; };
  83. 861D2E8803D70E27105A4C9652B291A5 /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AE90D612267B391997A03165D275FA6 /* QBImagePickerController-dummy.m */; };
  84. 8822F5D535CF083D07E17C889F58BBE4 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B27EDED807AA88CD88B43ABCAB84E92 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; };
  85. 887DF3A24F23B056115D91091186934B /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 94EF82BFB19183B51ADBA52C8F90DEC0 /* QBCheckmarkView.m */; };
  86. 89A5648A82EFB2F275794CEA5340C66B /* OSSGetObjectACLResult.m in Sources */ = {isa = PBXBuildFile; fileRef = D1CC4753048ACCC6C0B4CAF3FDEF40D4 /* OSSGetObjectACLResult.m */; };
  87. 8B442F95BF59656B7CC3F00BAA3528FA /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = AF59993BD650051F4555F758C7DC51B6 /* QBAssetsViewController.m */; };
  88. 8C81743F49E6CF7454D9DB2323C3F20E /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 232E0BE7F4AA21903E8A579DE19C2FF7 /* QBAssetCell.m */; };
  89. 8DFEE697CE75E1D314BA09C6C37BE454 /* OSSNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 76642D0A4FFB3A07474C4E9B61D70577 /* OSSNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; };
  90. 8EA5ED5C1169B8E5F3EA20DAFB83F9A6 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 80B709051D73B905013A6DB0A6139363 /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  91. 9530A3297661EA656EB281C7C2689B33 /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 09CF10C60E922ED065C1B06223A82A09 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; };
  92. 97597EF6EE626FA07A2E9B1277E1E955 /* OSSGetObjectACLRequest.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C1B9CEBFAF536B0749DE84C7FACE2D0 /* OSSGetObjectACLRequest.h */; settings = {ATTRIBUTES = (Project, ); }; };
  93. 97FD5809D5AD53B30EE318EC9463B53F /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B5FC2F7234CF82C3CAFFE4001E843AE /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; };
  94. 986C2EABEFC1C5D787D6BB6577250EA8 /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3307577C0B517AC0468E6DD0F52DC2EF /* RSKImageCropViewController.m */; };
  95. 992E016DF0814A0D40FF438168E8782F /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4403912A1FDD7949142096E126009B20 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  96. 996C162E38BFC119562606DE70E57A69 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA3EC9663F86203344421F1E2A3E67F1 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
  97. 9CCC17EAD5A797FE622E02264F37B6EB /* OSSCancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BB319E884C3C3EF797F5CC394C81FB4 /* OSSCancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; };
  98. A166215F58E177106A6C099F0FB67474 /* OSSFileLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 710557384E4F1298D107A298A2A0EF00 /* OSSFileLogger.h */; settings = {ATTRIBUTES = (Project, ); }; };
  99. A1BC0220DD779DACAD2E2355494BE26F /* OSSInputStreamHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 169130DFA5E65398F8660DF23CF9D3B6 /* OSSInputStreamHelper.m */; };
  100. A1C615A6CB41369F38888CF1010FED58 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D2CF7F9C9ECCA003EAD9D8B4AF0EBDCD /* es.lproj */; };
  101. A3B46A090F6FD6D10AE5635C9E74536A /* OSSBolts.h in Headers */ = {isa = PBXBuildFile; fileRef = AA1EE86E2A81FC3E49D10AF571B74312 /* OSSBolts.h */; settings = {ATTRIBUTES = (Project, ); }; };
  102. A639612C4C6C386B7FF8ACFCA380A4BE /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BC3FE892D61657CF63A7ECCBA9B730 /* RSKTouchView.m */; };
  103. A6CBD9451D1864FC92F6C2A872DB5D86 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = C3EEDBC33777D38A88983ED0491499DB /* QBImagePickerController.m */; };
  104. A899258A6BBC967439455B9EFA3B694A /* OSSHttpdns.h in Headers */ = {isa = PBXBuildFile; fileRef = 33B2BE26D3BCFEB1AB81B0017B7493A6 /* OSSHttpdns.h */; settings = {ATTRIBUTES = (Project, ); }; };
  105. AA2BCFC5AF22E001377D8907AA9258D6 /* OSSUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C4D457BDDCB02E69C6D0973A0E29F29E /* OSSUtil.m */; };
  106. AA4A3AEEE570D627E2130CFD4899DA04 /* OSSDDLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 76DF7D46B27905D292B45F6733D2B943 /* OSSDDLog.m */; };
  107. B24238F7533B95DAC288231061188058 /* OSSGetObjectACLRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = AE65AB84E752AE7823B3C1254137AD9F /* OSSGetObjectACLRequest.m */; };
  108. B3D4F8F530AEC2B48EB104961F62592C /* OSSModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 35642BDA3EB570DD1D6B94ABA0C577E8 /* OSSModel.h */; settings = {ATTRIBUTES = (Project, ); }; };
  109. B52D890F0A58B4540DE9096D578DC4E7 /* OSSDeleteMultipleObjectsRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 9097AEBF5C431ADB54D61289CB890248 /* OSSDeleteMultipleObjectsRequest.m */; };
  110. B5C30831E9AA762079ADADFCA1B5ADAD /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 779BDACCB21940FF772AA97C1CEFA9A2 /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  111. B8C860016782328FDF405D3F59BF51D7 /* OSSIPv6Adapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 73016635C4DACB74652AC6E2E7E3E610 /* OSSIPv6Adapter.m */; };
  112. B8FD5B454E7AD84C72BE91B93A9C2BBA /* OSSHttpResponseParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 229E4C37472A1A920D17F1A388889BE4 /* OSSHttpResponseParser.m */; };
  113. B918EEB7D94791FB7E9B5CBB4F5E8B58 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 7463405892C8FD5084E714C3A539C432 /* UIImage+Resize.m */; };
  114. B9E4DD5495D283FAF25043DBBAAFE85A /* OSSDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 183D9BE18102386E1677F45BA8B01F21 /* OSSDefine.h */; settings = {ATTRIBUTES = (Project, ); }; };
  115. BAED4ACCE9175F2124E6476DB020DE28 /* OSSTaskCompletionSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 67369DE47BA41D02E412566651ED2791 /* OSSTaskCompletionSource.h */; settings = {ATTRIBUTES = (Project, ); }; };
  116. BAEE5396BEA886DE9BFC2A5320BF8DA7 /* OSSDeleteMultipleObjectsResult.h in Headers */ = {isa = PBXBuildFile; fileRef = CF49A6717CBDB20735198DB39022FF1A /* OSSDeleteMultipleObjectsResult.h */; settings = {ATTRIBUTES = (Project, ); }; };
  117. BCD27827E2932746CF4DED035577F561 /* OSSNetworkingRequestDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 45D911D2AB3ADD20E3A7EB167DF60C98 /* OSSNetworkingRequestDelegate.m */; };
  118. BDE827789ABA8DF79C42DCAFEB77A719 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 23727AFA7DB558F2AE901516F5DF2C97 /* en.lproj */; };
  119. BEF25194C491E8FEF027DA888EB52813 /* Pods-campus-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7775F14981B924D1AD2805BD29D4C889 /* Pods-campus-dummy.m */; };
  120. BF9149CDC27E5DA986A038A350D589C7 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 867417284E92452F249A2959EF63F197 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
  121. C14596BB842470BB8FFED4C2E4B32CA3 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A4C280C29CFDB777807F975160CE65F /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; };
  122. C1C3940848ED3A0B2BE221AF089AD9EA /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FBC99830BB92FD87D6C3BD485431BF3 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; };
  123. C2672B03E6033344BC13C61E6FEF50F1 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = DD37859BA28D192861671F73F05C4543 /* QBSlomoIconView.m */; };
  124. C58CD4E0B42A6952C3BA07F9AFFEBFBC /* OSSLogMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = E97C4B00B1FA67B77F67F28599A3DDFE /* OSSLogMacros.h */; settings = {ATTRIBUTES = (Project, ); }; };
  125. C6BAB28AC1EE717BE6EA3670132E1360 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F30E0B28C8184B57DB114CDFE02FE13 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; };
  126. C71B2ED3013D7B2236BC2B389F04B4AB /* OSSTask.h in Headers */ = {isa = PBXBuildFile; fileRef = BDC940AD0886B60FA724355AECDD50D2 /* OSSTask.h */; settings = {ATTRIBUTES = (Project, ); }; };
  127. C8D4BC222F2443279195AD57275B07A3 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = C87789F51180A5F13C4EA5BE0F363242 /* ImageCropPicker.m */; };
  128. CAD40DC46851BF803F76FCF758AF4B89 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9EADC27904C688775D8A39EC4054BBA5 /* QuartzCore.framework */; };
  129. CB55B0C21888BC0A4B4AEED221D4F81E /* OSSTask.m in Sources */ = {isa = PBXBuildFile; fileRef = D0AF023D7286A3BC4BB25B905BDC47B6 /* OSSTask.m */; };
  130. CE11516E556C1764CD13AF25A3044AB9 /* OSSCancellationTokenSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 17168ACC82A9C2B517B112BC8627FA4E /* OSSCancellationTokenSource.h */; settings = {ATTRIBUTES = (Project, ); }; };
  131. D0BC9CFCE05B22706CF08B46DF918BE9 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 396FFAB74CC72EE13B25EA02CD63B789 /* QBVideoIndicatorView.m */; };
  132. D135311CA3EB9469DE0C5AF3E9DCFF06 /* aos_crc64.c in Sources */ = {isa = PBXBuildFile; fileRef = 555DEA507E79E016A36DED6E8179CBB3 /* aos_crc64.c */; };
  133. D492A898DEEB47CD74B955A03A361D71 /* OSSReachability.h in Headers */ = {isa = PBXBuildFile; fileRef = BBDE07EA8B7DBDA94207A9DE32F16967 /* OSSReachability.h */; settings = {ATTRIBUTES = (Project, ); }; };
  134. DA2203248B29F57C3B29F9E8E55CE673 /* OSSDDLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DB64272716388987CDB639B896BD2F8 /* OSSDDLog.h */; settings = {ATTRIBUTES = (Project, ); }; };
  135. DD3452E5CFEFD1A52C88A01E7B17D4D9 /* OSSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = C35018A61D2ECF9ADD4AF0075634F03B /* OSSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; };
  136. DDC4020E8E7468EC553C10E2271B1468 /* OSSIPv6PrefixResolver.m in Sources */ = {isa = PBXBuildFile; fileRef = AD5F107AEACC35425F0081538F3D853A /* OSSIPv6PrefixResolver.m */; };
  137. DE22F985134D54D518AC0AB6E810159C /* OSSClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 37F592E833D0AE7ED8B1A62BC452A3C6 /* OSSClient.m */; };
  138. DF1A8A176DE15B50EFFD8AD6D3BE0510 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CB2F619C00CD45BA9266C37630E9996 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; };
  139. DF5C1ADFE3BE4D9C6FDADC7CCB609B54 /* OSSService.h in Headers */ = {isa = PBXBuildFile; fileRef = DF56251842DAFF30512A02304B7BDD03 /* OSSService.h */; settings = {ATTRIBUTES = (Project, ); }; };
  140. DFDEC739691825F5DEAE6AED6D7F7E7F /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = C1A3CD5CE60A7F95A39BD286474B9675 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; };
  141. E12234B9A7AE1FF5DAAE0EBD1CF0C73D /* OSSIPv6Adapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B7CD39E01CAE74ECEB601D43715A3B2 /* OSSIPv6Adapter.h */; settings = {ATTRIBUTES = (Project, ); }; };
  142. E2F4687DF33D0463980465B84DEE55B8 /* OSSNSLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 067029D4EA94FFF25DDEEE2D6EABA498 /* OSSNSLogger.m */; };
  143. E2F4CE7CFAFD0602FBB829C895C6FC72 /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C3202B333DEA15325C6A8E9178BF6A0 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; };
  144. E43CE15BBEAD9338647F0A77E06C0FCF /* OSSURLRequestRetryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DA666C810D8CDEA1821E175858AEF4E /* OSSURLRequestRetryHandler.m */; };
  145. E6BBC4420A278524992091E3FB67AEF1 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C61D91D63B6DA5C4820152D6D0C1B09A /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  146. E9DEE4EE90D092B8EA39C16E3288294C /* OSSExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D76658119C23E2C2B0C048D61216DF8 /* OSSExecutor.m */; };
  147. EF54FA419F42C0BF30DF43F66FE061A8 /* NSMutableData+OSS_CRC.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B89D3501A814D18B9E4210E0940DF59 /* NSMutableData+OSS_CRC.m */; };
  148. EFF1863D5A6F5C1DFE204A7A276DE10A /* OSSRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C92373E01D66AEB6AF5D6EE1F2B71D3 /* OSSRequest.m */; };
  149. F406B464F44EFEC2CEE02D51C9B2693E /* Photos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7360D1EFDF00F062D912679127DC65B8 /* Photos.framework */; };
  150. F4D2ED406DFCBFC554A7B61BC7741DF5 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AB5331EEC5F2A6B7E2D3B6FD3C1CA25 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; };
  151. F73A6C6D494294870BE9B949D53952A2 /* OSSBolts.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EB2E4AB2D749EB9D2A298D2065CB6CB /* OSSBolts.m */; };
  152. F7A67A707BB28CB1463DEBC581280A7F /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A687781243E532DA1A0B63F0B9527C92 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; };
  153. F917BC175DF5F07C61D1C65694C9ED62 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC29ABEDB7B1AAE7E2CA8BD40B1565A6 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; };
  154. F953C454BA7CBC8BC3604047D345834D /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 85D38E475D972A14A26A6DFADDAEA143 /* SystemConfiguration.framework */; };
  155. FA2BD11BF28E93AB80C8C8C8EC93447E /* OSSIPv6PrefixResolver.h in Headers */ = {isa = PBXBuildFile; fileRef = F01B3659F82AD446240A3C61A3C104B1 /* OSSIPv6PrefixResolver.h */; settings = {ATTRIBUTES = (Project, ); }; };
  156. FF4218DE25546156249A95EC63A62D09 /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B03FC1FB058D59E19D68DDEFB790A6A1 /* yoga-dummy.m */; };
  157. FF74F954C0939731C90C3AA9BD6FE6DB /* OSSNetworkingRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 600ECF741EDEC05467D808C41BE47651 /* OSSNetworkingRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; };
  158. FFD456DC43F6749B29BF6F58BCE87300 /* OSSModel.m in Sources */ = {isa = PBXBuildFile; fileRef = AF730652F68F9D18C9A8D379CE2CF329 /* OSSModel.m */; };
  159. /* End PBXBuildFile section */
  160. /* Begin PBXContainerItemProxy section */
  161. 17CD363B6B4AEAFE51E718689A29A745 /* PBXContainerItemProxy */ = {
  162. isa = PBXContainerItemProxy;
  163. containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  164. proxyType = 1;
  165. remoteGlobalIDString = EB57261C2CC2C315D06BF3274B5DEEEF;
  166. remoteInfo = RNImageCropPicker;
  167. };
  168. 180C8CBD30D8BF0E25538EE6BD4A0E70 /* PBXContainerItemProxy */ = {
  169. isa = PBXContainerItemProxy;
  170. containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  171. proxyType = 1;
  172. remoteGlobalIDString = 0000000032F0;
  173. remoteInfo = React;
  174. };
  175. 70B514BDD1364A940D68A5F618D1BC56 /* PBXContainerItemProxy */ = {
  176. isa = PBXContainerItemProxy;
  177. containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  178. proxyType = 1;
  179. remoteGlobalIDString = B07E186489297BE11C1C3D7F88843167;
  180. remoteInfo = AliyunOSSiOS;
  181. };
  182. 774345B46A57D47AD8302C21EAF416C2 /* PBXContainerItemProxy */ = {
  183. isa = PBXContainerItemProxy;
  184. containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  185. proxyType = 1;
  186. remoteGlobalIDString = 810A10C33065D8A85939E6D90BCAA7AD;
  187. remoteInfo = yoga;
  188. };
  189. 7E6847F3D8C9D5FC2A5FB6898B3BDABF /* PBXContainerItemProxy */ = {
  190. isa = PBXContainerItemProxy;
  191. containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  192. proxyType = 1;
  193. remoteGlobalIDString = 7389EF10935159BBFCA6974078C10763;
  194. remoteInfo = RSKImageCropper;
  195. };
  196. 8C0BFE98E2426C23C6E47DBEAFDF964E /* PBXContainerItemProxy */ = {
  197. isa = PBXContainerItemProxy;
  198. containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  199. proxyType = 1;
  200. remoteGlobalIDString = 7389EF10935159BBFCA6974078C10763;
  201. remoteInfo = RSKImageCropper;
  202. };
  203. B2D022011CE28509D1E41C55A4EC8D3B /* PBXContainerItemProxy */ = {
  204. isa = PBXContainerItemProxy;
  205. containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  206. proxyType = 1;
  207. remoteGlobalIDString = 810A10C33065D8A85939E6D90BCAA7AD;
  208. remoteInfo = yoga;
  209. };
  210. BE88B4E92772303B0DCAFBB53FE83517 /* PBXContainerItemProxy */ = {
  211. isa = PBXContainerItemProxy;
  212. containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  213. proxyType = 1;
  214. remoteGlobalIDString = 0000000032F0;
  215. remoteInfo = React;
  216. };
  217. C60A78EA35D25B77D948AE6A6B7129DF /* PBXContainerItemProxy */ = {
  218. isa = PBXContainerItemProxy;
  219. containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  220. proxyType = 1;
  221. remoteGlobalIDString = 9D5E7ED1EE6A039C6C45B9FF332D743B;
  222. remoteInfo = QBImagePickerController;
  223. };
  224. D0FB8C13CF9E739AFA6D4E1C98235746 /* PBXContainerItemProxy */ = {
  225. isa = PBXContainerItemProxy;
  226. containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  227. proxyType = 1;
  228. remoteGlobalIDString = 081A1D49B111AACC2E0AC579D38D7B50;
  229. remoteInfo = "QBImagePickerController-QBImagePicker";
  230. };
  231. D1F1007E2B6B6C660157E84F9D5EC231 /* PBXContainerItemProxy */ = {
  232. isa = PBXContainerItemProxy;
  233. containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  234. proxyType = 1;
  235. remoteGlobalIDString = 9D5E7ED1EE6A039C6C45B9FF332D743B;
  236. remoteInfo = QBImagePickerController;
  237. };
  238. /* End PBXContainerItemProxy section */
  239. /* Begin PBXFileReference section */
  240. 009A0410E93B4F4909D74C5D640A10BD /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = "<group>"; };
  241. 00A2606DB7FC6C4D2706433AEED43EBA /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = "<group>"; };
  242. 00CAD9508B127CA719D0FD50227993B4 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = "<group>"; };
  243. 01CE60DBB01A453EEA9A8567FF059C79 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = "<group>"; };
  244. 02B979CD2B38B5A1F8370A867FE88600 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = "<group>"; };
  245. 02EAD2C92D477C0E24FE43BE56459806 /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = "<group>"; };
  246. 033B7FD8616610B9B828F058087F87CB /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = "<group>"; };
  247. 0442CCBD9A33923BBFFAEB7F4BA76EDB /* OSSUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSUtil.h; path = AliyunOSSSDK/OSSUtil.h; sourceTree = "<group>"; };
  248. 0478941E26C55832414F3B5D4C0F1C69 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = "<group>"; };
  249. 04A0BEFB38D224068C592A359ADE5ECE /* RCTLocationObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocationObserver.h; path = Libraries/Geolocation/RCTLocationObserver.h; sourceTree = "<group>"; };
  250. 04B7E8A46C72FE2EB608B7DD615B0403 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLinkingManager.m; path = Libraries/LinkingIOS/RCTLinkingManager.m; sourceTree = "<group>"; };
  251. 04C883F6F85EA21D35288F3EA1EAC9E0 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = "<group>"; };
  252. 059DED4387CD5A8024BE60BA28403108 /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReact.a; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
  253. 060D5FD6CC264E5CA22C8D94A5B7D4D4 /* RCTNavigatorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNavigatorManager.m; sourceTree = "<group>"; };
  254. 061A8B30A8B17BAD95E8AE9C4DA3D1AB /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = "<group>"; };
  255. 067029D4EA94FFF25DDEEE2D6EABA498 /* OSSNSLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSNSLogger.m; path = AliyunOSSSDK/OSSFileLog/OSSNSLogger.m; sourceTree = "<group>"; };
  256. 07317AE8AFD3501B646AE3357528E7AB /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = "<group>"; };
  257. 082DCA10C0FF57CA34EC8D9402035492 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = "<group>"; };
  258. 084146C8D4F228FFBCDA0E5D4E8BE16B /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = "<group>"; };
  259. 09043A2A320380B2C3E35914F7917590 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = "<group>"; };
  260. 090DED66BADB7DDCA2008A4A0C1FD290 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = "<group>"; };
  261. 0936FE69DB1B93F5ED22F8A0DD6C42D4 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = "<group>"; };
  262. 0963166B1108E15365BDCC06B0E65EB4 /* RCTWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebViewManager.m; sourceTree = "<group>"; };
  263. 09855C26F77DB3BC73601FA931BD0EED /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = "<group>"; };
  264. 09B3C47CD26958315C91ED2680B5D005 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLocalAssetImageLoader.m; path = Libraries/Image/RCTLocalAssetImageLoader.m; sourceTree = "<group>"; };
  265. 09BA0DD7F7AC031ABB3849329F297DA9 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = "<group>"; };
  266. 09CF10C60E922ED065C1B06223A82A09 /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = "<group>"; };
  267. 0AE90D612267B391997A03165D275FA6 /* QBImagePickerController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "QBImagePickerController-dummy.m"; sourceTree = "<group>"; };
  268. 0B5D75568A91A85AA0BB464FAC6643D2 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = "<group>"; };
  269. 0B7CBD7775444CAC166684BDC19D811A /* RCTFabricSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFabricSurfaceHostingProxyRootView.mm; sourceTree = "<group>"; };
  270. 0BF925995E9D11D514CE25DC888F7257 /* AliyunOSSiOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AliyunOSSiOS-prefix.pch"; sourceTree = "<group>"; };
  271. 0C6C4BFFFFFBCF65A48266042CD1F319 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = "<group>"; };
  272. 0D6F58B897600E793A35ACA6AF96FDC3 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = "<group>"; };
  273. 0DB3FE2D342384AF975FFA669D280ECD /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = "<group>"; };
  274. 0DEE3EF297A4D4F7399C2668352687C7 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = "<group>"; };
  275. 0E08DFBFDEB51F891DE2D971E0CEAEFC /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = "<group>"; };
  276. 0E77887A006E9A36A6BAFA9023A11024 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = "<group>"; };
  277. 0E914B21415382808C7D16F9AF5C042E /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = "<group>"; };
  278. 0EEBC68806A469365A7B348599FAC03A /* OSSNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSNetworking.m; path = AliyunOSSSDK/OSSNetworking.m; sourceTree = "<group>"; };
  279. 0F026A4C90DCD5E1E04E56F7D7C37B84 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = "<group>"; };
  280. 1087DD2BF06703629195D79A025CB907 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = "<group>"; };
  281. 10F049F3C8EBFBA22529BF44E5926443 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = "<group>"; };
  282. 11247671B79898D768656A08B5B653A6 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = "<group>"; };
  283. 116B9BB6ACADAA5B79EED4A3ACC85E4C /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = "<group>"; };
  284. 11AE52812EFC44683F48635E6DDEDFEA /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = "<group>"; };
  285. 12037F1727CE450C932689A24AB4F843 /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; };
  286. 127E8CE25BA7322C2F53E6049A20C6F8 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = "<group>"; };
  287. 134663A96482BCAFC4185081180FB2D1 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = "<group>"; };
  288. 13FEDFCC8FE60BDFB558FB6B3044BD74 /* Pods-campus-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-campus-resources.sh"; sourceTree = "<group>"; };
  289. 140C08A04E2E4F9D217EF42E0359EEEE /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = "<group>"; };
  290. 149EBE92DDF7F8611EC571A22EB6EDB9 /* OSSLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSLog.m; path = AliyunOSSSDK/OSSLog.m; sourceTree = "<group>"; };
  291. 14B35B29219EFFB3C7A2F2CCD772CD3F /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = "<group>"; };
  292. 15303B26F97E16D54EA8B003BB92F6C9 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = "<group>"; };
  293. 156B81E87A6414F0914CE027ACF73012 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = "<group>"; };
  294. 156BEB56BF4E8417067F3C40953E2C74 /* AliyunOSSiOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AliyunOSSiOS-dummy.m"; sourceTree = "<group>"; };
  295. 159DA138B66F865808413F6EAC5B6D14 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = "<group>"; };
  296. 15EE28B14E0AF63CEF6513D5A9F1F903 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = "<group>"; };
  297. 15EF7D16F20A305DCB39251224D1B4A8 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = "<group>"; };
  298. 15F089FF279177CF03AB2BD15AB741D0 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; };
  299. 169130DFA5E65398F8660DF23CF9D3B6 /* OSSInputStreamHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSInputStreamHelper.m; path = AliyunOSSSDK/OSSInputStreamHelper.m; sourceTree = "<group>"; };
  300. 16B7C960A0D447E4ECE58CCB0B5EB98C /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = "<group>"; };
  301. 16E5826A2AE8B754C4328EF5F28C1E5E /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = "<group>"; };
  302. 17168ACC82A9C2B517B112BC8627FA4E /* OSSCancellationTokenSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSCancellationTokenSource.h; path = AliyunOSSSDK/OSSTask/OSSCancellationTokenSource.h; sourceTree = "<group>"; };
  303. 17B7CFE3572C70FB6ABA99D2ACFE2C47 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = "<group>"; };
  304. 17CB9D72D4309A1D42C7E8409E8C2E82 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = "<group>"; };
  305. 17D153557A8A2289105EA827E2CF2863 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = "<group>"; };
  306. 183D9BE18102386E1677F45BA8B01F21 /* OSSDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSDefine.h; path = AliyunOSSSDK/OSSDefine.h; sourceTree = "<group>"; };
  307. 18A2FAA2D1FB3AA939F340DD71827258 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVibration.m; path = Libraries/Vibration/RCTVibration.m; sourceTree = "<group>"; };
  308. 18AA7D895C561392007AB616D630679C /* OSSXMLDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSXMLDictionary.m; path = AliyunOSSSDK/OSSXMLDictionary.m; sourceTree = "<group>"; };
  309. 1986174594CF8C20D5EEA654BFD04624 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = "<group>"; };
  310. 19EA396CAD535EFE82932D9B71D83909 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAnimationUtils.m; path = Libraries/NativeAnimation/RCTAnimationUtils.m; sourceTree = "<group>"; };
  311. 1A17F72495A3A0CCB52E175E42D5F0EF /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = "<group>"; };
  312. 1A4592F33EB26E91F688066E6B7C4926 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = "<group>"; };
  313. 1B3EFD45F6B8C7228946C1CD763D57C0 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = "<group>"; };
  314. 1C35C51010A085FD24DD2192DD7EB3EA /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = "<group>"; };
  315. 1C520E0E7F0735D07BF9104208684B15 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = "<group>"; };
  316. 1CA510033F8F927C2AF57F1B6540A8B9 /* RCTFabricSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFabricSurface.mm; sourceTree = "<group>"; };
  317. 1CB844BEBECE083414F91E316093770C /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = "<group>"; };
  318. 1D637BD33481712A7D4F70348445E3DB /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = "<group>"; };
  319. 1D7E55958FBD04AC870B222B02C638D3 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = "<group>"; };
  320. 1DC6CDDA62BA164B2853F15012B49BB9 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = "<group>"; };
  321. 1E9176B6DA2F98F8D1862A00E8409CB5 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageUtils.m; path = Libraries/Image/RCTImageUtils.m; sourceTree = "<group>"; };
  322. 20872675C4FC3404DE4A8B156757011B /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = "<group>"; };
  323. 20A4CD3A879344977F67484C3BE2C3CB /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTTextAttributes.m; path = Libraries/Text/RCTTextAttributes.m; sourceTree = "<group>"; };
  324. 20B58B4DC0F6A44CAC3BDFED06E6D5A0 /* OSSReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSReachabilityManager.m; path = AliyunOSSSDK/OSSIPv6/OSSReachabilityManager.m; sourceTree = "<group>"; };
  325. 20BE6DB8F589F94E2A27F908C70CD139 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = "<group>"; };
  326. 20C3E53BD774F75F44D23D3F4CEDD700 /* OSSAllRequestNeededMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSAllRequestNeededMessage.m; path = AliyunOSSSDK/OSSAllRequestNeededMessage.m; sourceTree = "<group>"; };
  327. 2240E065DBDD5EDC56A8DD8796063147 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = "<group>"; };
  328. 2261A74598556CACD1A8E3A958F3E149 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = "<group>"; };
  329. 229E4C37472A1A920D17F1A388889BE4 /* OSSHttpResponseParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSHttpResponseParser.m; path = AliyunOSSSDK/OSSHttpResponseParser.m; sourceTree = "<group>"; };
  330. 232541DF26989FABA4D20D8C83D0C8B3 /* fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fishhook.c; path = Libraries/fishhook/fishhook.c; sourceTree = "<group>"; };
  331. 232E0BE7F4AA21903E8A579DE19C2FF7 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = QBImagePicker/QBAssetCell.m; sourceTree = "<group>"; };
  332. 23447A0E06AD162CBE347B17C18578FC /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = "<group>"; };
  333. 23727AFA7DB558F2AE901516F5DF2C97 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = QBImagePicker/en.lproj; sourceTree = "<group>"; };
  334. 23BC4D7A1D7F4205E8184364BD66F0DF /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = "<group>"; };
  335. 2440FC3A40404AE5D3E0712A9982B16C /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = "<group>"; };
  336. 25F2D8BF76E534B04B99623846395833 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = "<group>"; };
  337. 2661B2AB89F7E6C25BC490593FDC2227 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = "<group>"; };
  338. 2699EFD24BB27EC977E05038D6435AB3 /* RCTJSCErrorHandling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSCErrorHandling.h; sourceTree = "<group>"; };
  339. 26B93F8A0953C7BFD70CC03989C0F048 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = "<group>"; };
  340. 272A7E80D1031B24D4B339DF4766DF50 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = "<group>"; };
  341. 27B620C370B7657F4D9EC21FA34319E3 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = "<group>"; };
  342. 27D7436C8BDD17C801A949D038B4E7CA /* Pods-campus-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-campus-acknowledgements.markdown"; sourceTree = "<group>"; };
  343. 282563931F8D022039BF1CFBC3A43DBB /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; };
  344. 2837D05C57979E6515E666D2813A01D4 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = "<group>"; };
  345. 29E20E6DCD4F70F104F059C6435E10E1 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = "<group>"; };
  346. 29F9BE24CD800B313126E26E1BF0D8D6 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = "<group>"; };
  347. 2AB5331EEC5F2A6B7E2D3B6FD3C1CA25 /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = "<group>"; };
  348. 2B0D06E4B18C68F9AD168F6DEB98B6DE /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = "<group>"; };
  349. 2B1E1F4DE85BFB7876EC1B493044AB1B /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = "<group>"; };
  350. 2B5FC2F7234CF82C3CAFFE4001E843AE /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = "<group>"; };
  351. 2B89D3501A814D18B9E4210E0940DF59 /* NSMutableData+OSS_CRC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableData+OSS_CRC.m"; path = "AliyunOSSSDK/NSMutableData+OSS_CRC.m"; sourceTree = "<group>"; };
  352. 2BB97E2887CBC333B135EEF85E4064A3 /* RCTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPlatform.m; sourceTree = "<group>"; };
  353. 2CA68A9006E3293008E3D627D44309C4 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = "<group>"; };
  354. 2CBD9415A13EE9527056945EE823D64C /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = "<group>"; };
  355. 2D257D68E0A825339750B1F4D8D8D314 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = "<group>"; };
  356. 2DA666C810D8CDEA1821E175858AEF4E /* OSSURLRequestRetryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSURLRequestRetryHandler.m; path = AliyunOSSSDK/OSSURLRequestRetryHandler.m; sourceTree = "<group>"; };
  357. 2FB5C86E8AC783DE1CE36AD368261975 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = "<group>"; };
  358. 319314FD20C2F54E0FA50B4EBD89E588 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "QBImagePicker/zh-Hans.lproj"; sourceTree = "<group>"; };
  359. 31A85A70E4C5C21B3B19424D7486F1DA /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTGIFImageDecoder.m; path = Libraries/Image/RCTGIFImageDecoder.m; sourceTree = "<group>"; };
  360. 31AAC06E6EA15560D224C8E8C343C6DC /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = "<group>"; };
  361. 31B4D92547841E648AE1A139E483407D /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = "<group>"; };
  362. 323EE3DFE16334AE83E5BED3C4CF323C /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = "<group>"; };
  363. 3286458CAE7809FAF7265C7864B6C8F5 /* OSSReachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSReachability.m; path = AliyunOSSSDK/OSSFileLog/OSSReachability.m; sourceTree = "<group>"; };
  364. 32DB1855E86F9CF70032D8E70C74DDCB /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = "<group>"; };
  365. 3307577C0B517AC0468E6DD0F52DC2EF /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = "<group>"; };
  366. 33B2BE26D3BCFEB1AB81B0017B7493A6 /* OSSHttpdns.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSHttpdns.h; path = AliyunOSSSDK/OSSHttpdns.h; sourceTree = "<group>"; };
  367. 33D26D25A4B782CD69C48F782255A365 /* RSKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKInternalUtility.m; path = RSKImageCropper/RSKInternalUtility.m; sourceTree = "<group>"; };
  368. 33E3DAB010D36082B08B88816D2A1445 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = "<group>"; };
  369. 342915C9975D73BDEBEFF5E86E1D0078 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.h; sourceTree = "<group>"; };
  370. 34B4F3A9117A4C18BAC3D70A8AB3D86D /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = "<group>"; };
  371. 351AD25A579D961B93DB23A5E33A78B9 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = "<group>"; };
  372. 354FCB86B79A6C6A8CB9E204D653B484 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = "<group>"; };
  373. 35642BDA3EB570DD1D6B94ABA0C577E8 /* OSSModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSModel.h; path = AliyunOSSSDK/OSSModel.h; sourceTree = "<group>"; };
  374. 35E6BBAF39E2CEC41967F067FCCB315A /* OSSConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSConstants.h; path = AliyunOSSSDK/OSSConstants.h; sourceTree = "<group>"; };
  375. 364B0BDA68C051887A792537F0E0E066 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = "<group>"; };
  376. 36721D1423C0B28539E02C55FE0A632A /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = "<group>"; };
  377. 36B291F034D894DF186A927E520A4D13 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = "<group>"; };
  378. 37020B6C9F43BECB0016343CD435D065 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = "<group>"; };
  379. 37B8699EA175C8803138C490EB21EF9D /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageCache.m; path = Libraries/Image/RCTImageCache.m; sourceTree = "<group>"; };
  380. 37F592E833D0AE7ED8B1A62BC452A3C6 /* OSSClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSClient.m; path = AliyunOSSSDK/OSSClient.m; sourceTree = "<group>"; };
  381. 37FEDCC84B78AA1DB1C7DCB7A9F8A30A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; };
  382. 38C8335C86466C0EEE03706B1FE57998 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = "<group>"; };
  383. 396FFAB74CC72EE13B25EA02CD63B789 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = QBImagePicker/QBVideoIndicatorView.m; sourceTree = "<group>"; };
  384. 39FA363425128A34986279DCAF4FF151 /* OSSNSLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSNSLogger.h; path = AliyunOSSSDK/OSSFileLog/OSSNSLogger.h; sourceTree = "<group>"; };
  385. 3A11DDAB21290C1EDD8B073803409D39 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = "<group>"; };
  386. 3ADA6D4D116DA616475D70E47BA2FC60 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = "<group>"; };
  387. 3B656B6D4AA0E46B1563558C8C3165D6 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = "<group>"; };
  388. 3B751C2A346DAEBFF85FEC09318829E3 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = "<group>"; };
  389. 3B767BE627FDFEB2906B492784AB81B8 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = "<group>"; };
  390. 3BED229FEA8DE24618B84EC777DEC2A5 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = "<group>"; };
  391. 3C3196A64DCFB16734AB6DEDD3EE0E84 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = "<group>"; };
  392. 3C3202B333DEA15325C6A8E9178BF6A0 /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = "<group>"; };
  393. 3C57EE26857EFB518727B0875D53566B /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = "<group>"; };
  394. 3CC079C50D41EDB04DADC7E7A874DB36 /* RCTFabricPlatformUIOperationManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFabricPlatformUIOperationManager.mm; sourceTree = "<group>"; };
  395. 3D2A3F6B9CC2A681613EFA80F6100B0B /* OSSClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSClient.h; path = AliyunOSSSDK/OSSClient.h; sourceTree = "<group>"; };
  396. 3F111CB94203D67B0E4BB8706C1C79CE /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetworkTask.m; path = Libraries/Network/RCTNetworkTask.m; sourceTree = "<group>"; };
  397. 3F405C9E2C8221A5D8C92D487C661179 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = "<group>"; };
  398. 3FBC99830BB92FD87D6C3BD485431BF3 /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = "<group>"; };
  399. 4088B0EEEF5201D8D88B13DD26C24D74 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageShadowView.m; path = Libraries/Image/RCTImageShadowView.m; sourceTree = "<group>"; };
  400. 41428BDD775F59A8F18BF73FF771C909 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = "<group>"; };
  401. 4174D73964E876673FF5D535AA9F226A /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileReaderModule.m; path = Libraries/Blob/RCTFileReaderModule.m; sourceTree = "<group>"; };
  402. 4249827A3723D86E1007AEA7B66CB1E5 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = "<group>"; };
  403. 43087F0F08C53873DE485E60977C3A0A /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = "<group>"; };
  404. 4403912A1FDD7949142096E126009B20 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = QBImagePicker/QBVideoIndicatorView.h; sourceTree = "<group>"; };
  405. 44397AA4273251CD0D823CA069815C9E /* aos_crc64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = aos_crc64.h; path = AliyunOSSSDK/aos_crc64.h; sourceTree = "<group>"; };
  406. 4463CB761EC2E61E32AFD874C00D4D6D /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = "<group>"; };
  407. 446A12EE2B9B91EBABABA16826FD7BD0 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = "<group>"; };
  408. 44727B3F385B44EB9FE8DC0E4A99FC67 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = "<group>"; };
  409. 44764628DDD6B2AB78537D743786EC0F /* RCTFabricSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFabricSurface.h; sourceTree = "<group>"; };
  410. 4509AD2FFE3EDB8D61A81017F90E5D8D /* AliyunOSSiOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AliyunOSSiOS.xcconfig; sourceTree = "<group>"; };
  411. 4516D7F91C1232B1FE059EB521E4CCA8 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = "<group>"; };
  412. 4569D61B3BB0DD410EA6D57AADF6A459 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = "<group>"; };
  413. 45B1DABE586878C969224DE6350ABA1D /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = "<group>"; };
  414. 45D911D2AB3ADD20E3A7EB167DF60C98 /* OSSNetworkingRequestDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSNetworkingRequestDelegate.m; path = AliyunOSSSDK/OSSNetworkingRequestDelegate.m; sourceTree = "<group>"; };
  415. 46412583AA4241697200CD6B1F4F48C0 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = "<group>"; };
  416. 46F69977E444541C34115F3A40B6B762 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = "<group>"; };
  417. 478690E295B06A5C23565ABDF452A9E7 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = "<group>"; };
  418. 47914ED552840FE014DA589CC9638882 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = "<group>"; };
  419. 49005B80FFF25F19462B6B107C627DA4 /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = "<group>"; };
  420. 49014995AAE36D671C41657154D4CBFB /* OSSCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSCompat.m; path = AliyunOSSSDK/OSSCompat.m; sourceTree = "<group>"; };
  421. 49CB2D95B275EFE8CF26E90559F74CD3 /* OSSCancellationTokenRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSCancellationTokenRegistration.m; path = AliyunOSSSDK/OSSTask/OSSCancellationTokenRegistration.m; sourceTree = "<group>"; };
  422. 4A9216830061B006BDA91943953A6F6F /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = "<group>"; };
  423. 4AD0BB7F817E6543E53001AEA77ACD30 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = "<group>"; };
  424. 4B21E814411B10F507F698DE62B818AA /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = "<group>"; };
  425. 4B4401FD0F49CDC1DAA516D535D10001 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = "<group>"; };
  426. 4B7CD39E01CAE74ECEB601D43715A3B2 /* OSSIPv6Adapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSIPv6Adapter.h; path = AliyunOSSSDK/OSSIPv6/OSSIPv6Adapter.h; sourceTree = "<group>"; };
  427. 4BC45B7C3A2F761B70356E6410FC53C4 /* OSSGetObjectACLResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSGetObjectACLResult.h; path = AliyunOSSSDK/OSSGetObjectACLResult.h; sourceTree = "<group>"; };
  428. 4BC534504D5C67FF20EB82A53560B752 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = "<group>"; };
  429. 4C1B9CEBFAF536B0749DE84C7FACE2D0 /* OSSGetObjectACLRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSGetObjectACLRequest.h; path = AliyunOSSSDK/OSSGetObjectACLRequest.h; sourceTree = "<group>"; };
  430. 4C948AE6D294EA92E98DE4A9807E113B /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = "<group>"; };
  431. 4CF7790EBF90371838E28C795C7392B8 /* RCTFabricUIManagerWrapper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFabricUIManagerWrapper.mm; sourceTree = "<group>"; };
  432. 4D1AB78A9484240772AC1567C222CC22 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = "<group>"; };
  433. 4E3387AD51610AD131D8CBE9E7B14983 /* RCTTabBarItemManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBarItemManager.h; sourceTree = "<group>"; };
  434. 4EC2755B245D50460BE75E1BEBBF0E80 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = "<group>"; };
  435. 4F239D0DFAFC7442FE27754515928814 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = "<group>"; };
  436. 5014378B64FED6D727EFD96ABF01FB0E /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = "<group>"; };
  437. 5081911AB41469623B368DEFBFBCF6D4 /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = "<group>"; };
  438. 50BBD99140E2DE833881FADCE69025EE /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = "<group>"; };
  439. 50C192D917F15A804D024DD10C6BC3B0 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = "<group>"; };
  440. 50D693470EED13FEAF1AEEDFD38F1808 /* fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fishhook.h; path = Libraries/fishhook/fishhook.h; sourceTree = "<group>"; };
  441. 50EE0035FA8B708DAA4EADEA88A52306 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = "<group>"; };
  442. 516809299F6294F29C89A5440C692F5C /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = "<group>"; };
  443. 5241DFE5245094BB5A19085EFD8D084D /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = "<group>"; };
  444. 52587D238DE8644253C4E1CF64D51135 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = "<group>"; };
  445. 52A21A4ACFA1C65CCA81BE7F174F4C77 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = "<group>"; };
  446. 52AA9F9EE2E12C94D7A239FF15CF7B73 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = "<group>"; };
  447. 52E5C28BF53F0384745D5751851C22B1 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = "<group>"; };
  448. 53183A5FE0BC8472134D27009C6D52DE /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = "<group>"; };
  449. 537AB7F717FB45CC8AAEEEEBB2E252A5 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = "<group>"; };
  450. 5408CAE046D8319CB36F1F35E1BE1749 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = "<group>"; };
  451. 54A06EB01BC179351D286A29BD12DA57 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = "<group>"; };
  452. 55557289013981CE04D40E15A1F01A7A /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = "<group>"; };
  453. 555DEA507E79E016A36DED6E8179CBB3 /* aos_crc64.c */ = {isa = PBXFileReference; includeInIndex = 1; name = aos_crc64.c; path = AliyunOSSSDK/aos_crc64.c; sourceTree = "<group>"; };
  454. 5597481A09C92D5B5B46CF293F0EBF09 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = "<group>"; };
  455. 560A1D349B3E37DBCEB240C424143C0B /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageViewManager.m; path = Libraries/Image/RCTImageViewManager.m; sourceTree = "<group>"; };
  456. 564F8E1C269C7E751DC81ACDEA8A3881 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = "<group>"; };
  457. 571EE73435EEB01FBA0A255F8A928A8F /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = "<group>"; };
  458. 57A55396EC89B4C6F946EEBD3DEA0779 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = "<group>"; };
  459. 57E4E1FA958E9033D3E37E0CF04D3DDB /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = "<group>"; };
  460. 5819C86FC1DC8D6966A135FD2CF418EB /* RCTTabBar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBar.m; sourceTree = "<group>"; };
  461. 583AF5D2D5921A539C3E24565A2ED217 /* React-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-prefix.pch"; sourceTree = "<group>"; };
  462. 58F93C402111CCE82DBB22C36F105C35 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTNetworking.mm; path = Libraries/Network/RCTNetworking.mm; sourceTree = "<group>"; };
  463. 5950D5DB97B9C38F708666C67BC7E0E1 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = "<group>"; };
  464. 59943D12FA5808B3622F72490026344A /* OSSDeleteMultipleObjectsResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSDeleteMultipleObjectsResult.m; path = AliyunOSSSDK/OSSDeleteMultipleObjectsResult.m; sourceTree = "<group>"; };
  465. 59A2B84803990E7333B6E1BC30AD0FC6 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = "<group>"; };
  466. 5A81C7DCD6B6E972F6E038EA96054685 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = "<group>"; };
  467. 5AFCAF7540FAD59A92905A359B3E063B /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = "<group>"; };
  468. 5B470A5F040AD8DCCBF54DC3D0F25655 /* OSSResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSResult.h; path = AliyunOSSSDK/OSSResult.h; sourceTree = "<group>"; };
  469. 5B54AA3A9569146EC181682144DE987A /* RCTImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageLoader.m; path = Libraries/Image/RCTImageLoader.m; sourceTree = "<group>"; };
  470. 5B689BA5ACBB52DBA9D5CC2E54B9CFEA /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = "<group>"; };
  471. 5B982D54EF708DB48292CA3828DA0E6C /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = "<group>"; };
  472. 5BB69377F20CF9A544F18181E26246D5 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = "<group>"; };
  473. 5C383ADC81D09B3B13BE80FCBE6E858A /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = "<group>"; };
  474. 5CB2F619C00CD45BA9266C37630E9996 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = "<group>"; };
  475. 5DB80B4BA052F08242D7C6D004995C03 /* OSSReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSReachabilityManager.h; path = AliyunOSSSDK/OSSIPv6/OSSReachabilityManager.h; sourceTree = "<group>"; };
  476. 5E289BD0E063C7F39251230B08875BB6 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = "<group>"; };
  477. 5E37FF100FC0735C240F767C212D51B1 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = "<group>"; };
  478. 5F6E233C310519C4F64B04780970EE98 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = "<group>"; };
  479. 5FC89C44428F3DA47349728B93F0AC37 /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTBlobManager.mm; path = Libraries/Blob/RCTBlobManager.mm; sourceTree = "<group>"; };
  480. 600ECF741EDEC05467D808C41BE47651 /* OSSNetworkingRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSNetworkingRequestDelegate.h; path = AliyunOSSSDK/OSSNetworkingRequestDelegate.h; sourceTree = "<group>"; };
  481. 61A549821A326190FBE64D6A27C3D26B /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = "<group>"; };
  482. 628013D1CE1672529C2C3AD9A748CBFB /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = QBImagePicker/QBAlbumsViewController.m; sourceTree = "<group>"; };
  483. 62B855B393F054CAEC1F27937E5CF5C1 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = "<group>"; };
  484. 62E5930AEA2F9CDBFDAAF75979033814 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = "<group>"; };
  485. 65D73E92DA4865FC17567983D8F0D4F2 /* RCTJSCErrorHandling.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJSCErrorHandling.mm; sourceTree = "<group>"; };
  486. 6625048B41ADFA42580B2E161D63BBAE /* OSSResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSResult.m; path = AliyunOSSSDK/OSSResult.m; sourceTree = "<group>"; };
  487. 668CCE73341577C1234C48D44FC43BD0 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = "<group>"; };
  488. 67369DE47BA41D02E412566651ED2791 /* OSSTaskCompletionSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSTaskCompletionSource.h; path = AliyunOSSSDK/OSSTask/OSSTaskCompletionSource.h; sourceTree = "<group>"; };
  489. 6808B83C9DD722ABD6714FE3FDCF87E9 /* OSSHttpdns.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSHttpdns.m; path = AliyunOSSSDK/OSSHttpdns.m; sourceTree = "<group>"; };
  490. 6826952B02B2AD8BD04DCF68CDA6B302 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = "<group>"; };
  491. 6857B8017CA04ABC0043E2FC22E76BB8 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = "<group>"; };
  492. 693EE3289645DBCEEACEFB31BB8D476F /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = "<group>"; };
  493. 69532263F8E4D176B6AB4B7A1C3C9B7B /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = "<group>"; };
  494. 6A4C280C29CFDB777807F975160CE65F /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = "<group>"; };
  495. 6A54D5F9FFF5E29695B03BF03DE30993 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSettingsManager.m; path = Libraries/Settings/RCTSettingsManager.m; sourceTree = "<group>"; };
  496. 6A86FF65374A795A2724103696472B16 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = "<group>"; };
  497. 6B27EDED807AA88CD88B43ABCAB84E92 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = "<group>"; };
  498. 6B447E79DD03778ABF1D7EA9F8972866 /* OSSLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSLog.h; path = AliyunOSSSDK/OSSLog.h; sourceTree = "<group>"; };
  499. 6BB319E884C3C3EF797F5CC394C81FB4 /* OSSCancellationToken.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSCancellationToken.h; path = AliyunOSSSDK/OSSTask/OSSCancellationToken.h; sourceTree = "<group>"; };
  500. 6BC5173F58C9F32CBF48C2CEA3158358 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = "<group>"; };
  501. 6C92373E01D66AEB6AF5D6EE1F2B71D3 /* OSSRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSRequest.m; path = AliyunOSSSDK/OSSRequest.m; sourceTree = "<group>"; };
  502. 6CC96EB6CD876E57D4DA111BAF02F712 /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageEditingManager.m; path = Libraries/Image/RCTImageEditingManager.m; sourceTree = "<group>"; };
  503. 6D064BE400DE68930B3A792699A43343 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageStoreManager.m; path = Libraries/Image/RCTImageStoreManager.m; sourceTree = "<group>"; };
  504. 6D69E32DA88E72AF5775D69F580BA536 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = "<group>"; };
  505. 6D7854FBC0F389DD26B58AAB95C7722D /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  506. 6D82D49C70EFEFD8302AB8F372F43264 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = "<group>"; };
  507. 6E3D3C34E77A9840CC379495027A5204 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = "<group>"; };
  508. 6E8164D609B821E4AB968F0FC8384672 /* RCTFabricSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFabricSurfaceHostingProxyRootView.h; sourceTree = "<group>"; };
  509. 6F21DD3493F48EB02B1363F604F0CC2C /* Pods-campus-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-campus-acknowledgements.plist"; sourceTree = "<group>"; };
  510. 6FDA9D368D1BCD132D2F3F8F032CFA64 /* RCTTabBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBar.h; sourceTree = "<group>"; };
  511. 7026BA42886C8EA8AEE9DD33C0968CE1 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = "<group>"; };
  512. 70D4DB87F1D5A533B23191D5CD2EF5DC /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; };
  513. 710557384E4F1298D107A298A2A0EF00 /* OSSFileLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSFileLogger.h; path = AliyunOSSSDK/OSSFileLog/OSSFileLogger.h; sourceTree = "<group>"; };
  514. 7199B5EDD737C5DC56D608DE01620143 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = "<group>"; };
  515. 71BC3FE892D61657CF63A7ECCBA9B730 /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = "<group>"; };
  516. 7241CE247597E89E43AAA266F7FB7969 /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = "<group>"; };
  517. 72DA05505E1F9E7FD6D1016581202B58 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = "<group>"; };
  518. 73016635C4DACB74652AC6E2E7E3E610 /* OSSIPv6Adapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSIPv6Adapter.m; path = AliyunOSSSDK/OSSIPv6/OSSIPv6Adapter.m; sourceTree = "<group>"; };
  519. 733D6FE3ADE78A8A33DDBC27385641D6 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = "<group>"; };
  520. 73455BB9B2084729C95970F7BF8E91A3 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = "<group>"; };
  521. 7360D1EFDF00F062D912679127DC65B8 /* Photos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Photos.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/Photos.framework; sourceTree = DEVELOPER_DIR; };
  522. 7421A2B6273FDABDE404DBB0901AB299 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = "<group>"; };
  523. 7463405892C8FD5084E714C3A539C432 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = "<group>"; };
  524. 74B62B9DCAE940986BCC9E258B561FAB /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = "<group>"; };
  525. 75270900814CAE2BC925BD061B206D97 /* OSSFileLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSFileLogger.m; path = AliyunOSSSDK/OSSFileLog/OSSFileLogger.m; sourceTree = "<group>"; };
  526. 7579E9ADBD1A514F443AE6BA48E3672B /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = "<group>"; };
  527. 76642D0A4FFB3A07474C4E9B61D70577 /* OSSNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSNetworking.h; path = AliyunOSSSDK/OSSNetworking.h; sourceTree = "<group>"; };
  528. 76943C9E8060EEE1EB29400F985C73D5 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = "<group>"; };
  529. 76DF7D46B27905D292B45F6733D2B943 /* OSSDDLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSDDLog.m; path = AliyunOSSSDK/OSSFileLog/OSSDDLog.m; sourceTree = "<group>"; };
  530. 7775F14981B924D1AD2805BD29D4C889 /* Pods-campus-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-campus-dummy.m"; sourceTree = "<group>"; };
  531. 779BDACCB21940FF772AA97C1CEFA9A2 /* RSKImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageScrollView.h; path = RSKImageCropper/RSKImageScrollView.h; sourceTree = "<group>"; };
  532. 7800C5305964C2BE216D87CD6A67C61A /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = "<group>"; };
  533. 7804F34D75FEC515AD2BA20FBED2FAB4 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = "<group>"; };
  534. 79AB4F745E6B5830AC88EE2580F3700A /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = "<group>"; };
  535. 79F31CC1FDEA0A11ADCD09FD603D50BC /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = "<group>"; };
  536. 7A43FF6E32D57A36F9C2B4877575BCC9 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = "<group>"; };
  537. 7A6A02B4B26016EE9C85322D12B1E503 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = "<group>"; };
  538. 7B1116DFCBD67A1B6D128140CEE4DB95 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = "<group>"; };
  539. 7BAC3023ECD3377961E7F25C2B001C91 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = "<group>"; };
  540. 7BC2CF46E70373C5732C0CBB99E53FA5 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = "<group>"; };
  541. 7CA35E2C2B6B2A41D682A58F6D9C0786 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = "<group>"; };
  542. 7D120A7DB2896B3FBDA0A67178F11B13 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = "<group>"; };
  543. 7D1D0EF2F003D2F439A0DE77BE52A9D7 /* OSSTaskCompletionSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSTaskCompletionSource.m; path = AliyunOSSSDK/OSSTask/OSSTaskCompletionSource.m; sourceTree = "<group>"; };
  544. 7D26BE13B3A7E56279B7C780DDFA6BBA /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = "<group>"; };
  545. 7DD35D6F83746B86FBF90B9D681D7466 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = "<group>"; };
  546. 7E7846F31F788B6F2BADA4EF8245DC3F /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = "<group>"; };
  547. 7E88F74CFB788A378D8DC44311D94655 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = "<group>"; };
  548. 7EC06121E71D5112070CB91D90F657CB /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
  549. 7F0BEEFBC0A0F45D639F5E4D1CE731D5 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = "<group>"; };
  550. 7FF939317A68E4DF513B35E746D60775 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = "<group>"; };
  551. 7FFC42B14517790DB9E932B69DDB685F /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = QBImagePicker/QBAlbumCell.m; sourceTree = "<group>"; };
  552. 8002BD5AC9C1D422A90F424E2AD694A9 /* RCTNavigator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNavigator.m; sourceTree = "<group>"; };
  553. 802E950A71C5C949DE95B96DC7F5F434 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = QBImagePicker/ja.lproj; sourceTree = "<group>"; };
  554. 80AF3F41DDB436A3830838E8D5A88A6E /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = "<group>"; };
  555. 80B709051D73B905013A6DB0A6139363 /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = QBImagePicker/QBImagePickerController.h; sourceTree = "<group>"; };
  556. 814BFE517FAD9B8B2D9ED2EB4153D389 /* RCTFabricSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFabricSurfaceHostingView.h; sourceTree = "<group>"; };
  557. 81A1A1145581A194365212BFEBF217F2 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = "<group>"; };
  558. 81D056928657132DD80ABBD302BFD4AC /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = "<group>"; };
  559. 82873F6C751F6CD9DAE837118ABCB314 /* OSSXMLDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSXMLDictionary.h; path = AliyunOSSSDK/OSSXMLDictionary.h; sourceTree = "<group>"; };
  560. 82DD472B9D6EF0492D48634D54DB0EC5 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = "<group>"; };
  561. 8343E6AD794C5A6D60B39C288254BE63 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = "<group>"; };
  562. 84C9B8249B6CDC5D2606A617E94A2DDD /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = QBImagePicker/QBImagePicker.storyboard; sourceTree = "<group>"; };
  563. 856147CA65632428D6858F62660F1006 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = "<group>"; };
  564. 856187A4327925B586BBA67ECBF9C0C8 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = "<group>"; };
  565. 85D38E475D972A14A26A6DFADDAEA143 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/SystemConfiguration.framework; sourceTree = DEVELOPER_DIR; };
  566. 867417284E92452F249A2959EF63F197 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = "<group>"; };
  567. 876086374D7B7B4615BF5E1D78C8D6AC /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = "<group>"; };
  568. 879F2966D2EAECCA9BF547B2EC44AFC7 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = "<group>"; };
  569. 8863C53DD7F74C328FE08DEB71F1E193 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = QBImagePicker/QBVideoIconView.h; sourceTree = "<group>"; };
  570. 8880BD8B3F6582DA06C659AB2DB9F63F /* yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = yoga.xcconfig; sourceTree = "<group>"; };
  571. 898DEA65BA5BAD1D7A1DA57267EDEAF9 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = "<group>"; };
  572. 89F05D2D33EC3BDC134932AC52A25BED /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = "<group>"; };
  573. 89FDEA0130F36BA0BAE56A015485D174 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = "<group>"; };
  574. 8A0C3989DB408A67AD18F15086947794 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = "<group>"; };
  575. 8A935DECD301F7ECB1B31C697C568BA4 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = "<group>"; };
  576. 8BD11223DF357997737194F03E3C9E79 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = "<group>"; };
  577. 8C46240649DE02C733ABD9E0D6498ED1 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = "<group>"; };
  578. 8C67278DD52E01F18941D124BDED5A15 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = "<group>"; };
  579. 8D526EC93D916F509C6C1188E66AB807 /* RCTTabBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBarManager.m; sourceTree = "<group>"; };
  580. 8D7ED691D7B126B9530247926160B205 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = "<group>"; };
  581. 8DB64272716388987CDB639B896BD2F8 /* OSSDDLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSDDLog.h; path = AliyunOSSSDK/OSSFileLog/OSSDDLog.h; sourceTree = "<group>"; };
  582. 8DE6046DE1E4FCE16E263D82909B6519 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = "<group>"; };
  583. 8EA66310220CB4289B52245590622F97 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = "<group>"; };
  584. 8EC02A82F86E4A68E8B8BFBD955E85F9 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = "<group>"; };
  585. 8EEC2E4009CADDCCC3C8A9C088C06134 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = "<group>"; };
  586. 8F5C809791E13E330C25196F1A35A8C7 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = "<group>"; };
  587. 8F792FDC7C0453D363F4EF3A2EBF0500 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = "<group>"; };
  588. 8FE1D030403FC22A6D94F3476DA9FD8B /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = "<group>"; };
  589. 8FE705826A491E6BD632210ABCD0284A /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = "<group>"; };
  590. 9097AEBF5C431ADB54D61289CB890248 /* OSSDeleteMultipleObjectsRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSDeleteMultipleObjectsRequest.m; path = AliyunOSSSDK/OSSDeleteMultipleObjectsRequest.m; sourceTree = "<group>"; };
  591. 913B30494626AF43749AE23AB387AFA4 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = "<group>"; };
  592. 91903A5C0C3DF48F2F635B7C79CD7FDF /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = "<group>"; };
  593. 919DF760160520652988AE15CF6F875B /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = "<group>"; };
  594. 92120B2205D5B70DA7E60B10BD5F123A /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = "<group>"; };
  595. 9221B1E662C0050AE4D77888A15E4894 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileRequestHandler.m; path = Libraries/Network/RCTFileRequestHandler.m; sourceTree = "<group>"; };
  596. 92646F26321ECB9BC1D0B40375BC0BEA /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = "<group>"; };
  597. 93041BC02C7BEB6ABC1412449F469A15 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = "<group>"; };
  598. 9387DB241A95C5042B8DB31B544D38CD /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = "<group>"; };
  599. 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  600. 93D68777257CB2778FC3F986CDC57602 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = "<group>"; };
  601. 942C80221EA1D78C1B93281728700118 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = "<group>"; };
  602. 94EF82BFB19183B51ADBA52C8F90DEC0 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = QBImagePicker/QBCheckmarkView.m; sourceTree = "<group>"; };
  603. 96EA7D10443C3D96CE12A125AA00770E /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTDataRequestHandler.m; path = Libraries/Network/RCTDataRequestHandler.m; sourceTree = "<group>"; };
  604. 98893E81BC040B8A973B3F0CED862BCC /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = "<group>"; };
  605. 98E3E97C4BC636FEA661B971C6B74233 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = "<group>"; };
  606. 9A083228905E860DC9878E196F1E453C /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = "<group>"; };
  607. 9A7C25C1D1A00987A8EAC3B2B3EED6C9 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = "<group>"; };
  608. 9AA8879C1F12429D3B97C38C796BF9C4 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = "<group>"; };
  609. 9B0679AEE308211D30E5F2A3703C9009 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = "<group>"; };
  610. 9B263D6FC30AD8F205341BBF17BD3BA7 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = "<group>"; };
  611. 9C1DB78BEB79259351959944D1680A52 /* QBImagePickerController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = QBImagePickerController.xcconfig; sourceTree = "<group>"; };
  612. 9C8C3906F7B4C03D7048E783D71C3465 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = "<group>"; };
  613. 9D76658119C23E2C2B0C048D61216DF8 /* OSSExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSExecutor.m; path = AliyunOSSSDK/OSSTask/OSSExecutor.m; sourceTree = "<group>"; };
  614. 9D89C4377C66F4DBDF377BE9535A8AED /* Pods-campus.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-campus.debug.xcconfig"; sourceTree = "<group>"; };
  615. 9DA0EFDC6D617AE971EFCB3D2AB49B54 /* OSSRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSRequest.h; path = AliyunOSSSDK/OSSRequest.h; sourceTree = "<group>"; };
  616. 9DD35898AD8F1AB2178D89E843CE1DBC /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = "<group>"; };
  617. 9E725BA9392AE02041B9A019F52E159C /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = "<group>"; };
  618. 9EADC27904C688775D8A39EC4054BBA5 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; };
  619. 9EB2E4AB2D749EB9D2A298D2065CB6CB /* OSSBolts.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSBolts.m; path = AliyunOSSSDK/OSSTask/OSSBolts.m; sourceTree = "<group>"; };
  620. 9F30E0B28C8184B57DB114CDFE02FE13 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = QBImagePicker/QBCheckmarkView.h; sourceTree = "<group>"; };
  621. A01DDA915D6779C7233F223D4F2A8C6B /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = "<group>"; };
  622. A0ECD8724CF27DAF96B2EB1615A229AC /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = "<group>"; };
  623. A13BA22ACB3EAB31C6CA043989E332E8 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = QBImagePicker/QBVideoIconView.m; sourceTree = "<group>"; };
  624. A252ABD80F4A8A30497FC9BE635237C1 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = "<group>"; };
  625. A346F2E3F6F0B589B5446AD4B2922877 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = QBImagePicker/QBSlomoIconView.h; sourceTree = "<group>"; };
  626. A37B91CD753C24F4EBDFDDC472FBB366 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = "<group>"; };
  627. A43887C3AC81942AC8529F6DF5400772 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = "<group>"; };
  628. A4415E176E632D11297D82042235EB7E /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = "<group>"; };
  629. A46057E7975BDE7D54882AACF2DA5F86 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = "<group>"; };
  630. A4AC4EBC026602AB12FFA9B5BF6F70F3 /* OSSConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSConstants.m; path = AliyunOSSSDK/OSSConstants.m; sourceTree = "<group>"; };
  631. A4F02F9A4AE35DFBDB35382975959FBE /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = "<group>"; };
  632. A516CD8C8DAD2D00BC80F6DD4185BD04 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = "<group>"; };
  633. A548EFCBC070C0E7C49EB6833EC7C4D5 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = "<group>"; };
  634. A558761ECE13608037AEDFAA3A42CB86 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = "<group>"; };
  635. A5626A3FF63C2A1F6AA7CD9A4AD0BED5 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = "<group>"; };
  636. A56C2E1FCECCC873AB537B784E3B9104 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = "<group>"; };
  637. A5EA349B61B0C8FAC9B9BC611D68C37D /* libAliyunOSSiOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libAliyunOSSiOS.a; path = libAliyunOSSiOS.a; sourceTree = BUILT_PRODUCTS_DIR; };
  638. A5FA75B9BB312CB872B4D7B26F888975 /* RCTNavigator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNavigator.h; sourceTree = "<group>"; };
  639. A6766BB7A01E7B545B02D753C7B9A065 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = "<group>"; };
  640. A687781243E532DA1A0B63F0B9527C92 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = QBImagePicker/QBAssetsViewController.h; sourceTree = "<group>"; };
  641. A68C123A47DE2E753C244DF115937497 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = "<group>"; };
  642. A70A627D4186B61AD01245C918318508 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = "<group>"; };
  643. A7EBB3769F6977A8548B282F3E42A458 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = "<group>"; };
  644. A8933B98E8215B0A891A78B8F343B094 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = "<group>"; };
  645. A8C61983FFAB63EB5DB1A409A31B4B52 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = "<group>"; };
  646. A9D7316E1079E419016E998E0B68A57F /* QBImagePickerController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "QBImagePickerController-prefix.pch"; sourceTree = "<group>"; };
  647. AA06330FA204DC042171C78AE2464AEC /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = React.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  648. AA1EE86E2A81FC3E49D10AF571B74312 /* OSSBolts.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSBolts.h; path = AliyunOSSSDK/OSSTask/OSSBolts.h; sourceTree = "<group>"; };
  649. AA3EC9663F86203344421F1E2A3E67F1 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = "<group>"; };
  650. AA4DF7A6777907C5740051EA9F8B93B9 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = "<group>"; };
  651. AA71E086942CF24586A51CFF44EC7A4A /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = "<group>"; };
  652. AB686C1794EFB1B3F7E51EF84AA94EF9 /* OSSURLRequestRetryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSURLRequestRetryHandler.h; path = AliyunOSSSDK/OSSURLRequestRetryHandler.h; sourceTree = "<group>"; };
  653. ABA5A60151F0C619926144EBF3724695 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = "<group>"; };
  654. AC134B9AA5DEB6C1AA74D4F07FCC5352 /* OSSCancellationTokenSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSCancellationTokenSource.m; path = AliyunOSSSDK/OSSTask/OSSCancellationTokenSource.m; sourceTree = "<group>"; };
  655. ACD2D05C185F807702DF747A38DC887F /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = "<group>"; };
  656. AD5F107AEACC35425F0081538F3D853A /* OSSIPv6PrefixResolver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSIPv6PrefixResolver.m; path = AliyunOSSSDK/OSSIPv6/OSSIPv6PrefixResolver.m; sourceTree = "<group>"; };
  657. AE01C1873E504F07FDA4B215899EFA5B /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = "<group>"; };
  658. AE65AB84E752AE7823B3C1254137AD9F /* OSSGetObjectACLRequest.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSGetObjectACLRequest.m; path = AliyunOSSSDK/OSSGetObjectACLRequest.m; sourceTree = "<group>"; };
  659. AF59993BD650051F4555F758C7DC51B6 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = QBImagePicker/QBAssetsViewController.m; sourceTree = "<group>"; };
  660. AF730652F68F9D18C9A8D379CE2CF329 /* OSSModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSModel.m; path = AliyunOSSSDK/OSSModel.m; sourceTree = "<group>"; };
  661. B03FC1FB058D59E19D68DDEFB790A6A1 /* yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "yoga-dummy.m"; sourceTree = "<group>"; };
  662. B066F7C16F32F190953C3BE544AF46CA /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = "<group>"; };
  663. B082F018D3E3192C1C296DA014650467 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = "<group>"; };
  664. B12F93C8C9863D4203A0658A99494C85 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = "<group>"; };
  665. B1AD918D3D46E6DCD1FFEC49AC43DED1 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = "<group>"; };
  666. B2D44AA5F3341FD0715F453A4B42B5CD /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = "<group>"; };
  667. B332F7734884062604F85DFF248D0B39 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = "<group>"; };
  668. B363B064932A6A4E273F59039C0C3F66 /* RCTWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebView.h; sourceTree = "<group>"; };
  669. B3AE2E58E89D4C380F99BA73D891A878 /* Pods-campus.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-campus.release.xcconfig"; sourceTree = "<group>"; };
  670. B4270031DD411BD9BCBAF6543C6A281D /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = "<group>"; };
  671. B42F2C5DE78E1FD553A7DF8AE7FD3DE5 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = "<group>"; };
  672. B4AFDA3DCA0D4EDF01C23DCDDAF4BC30 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = "<group>"; };
  673. B4EE7BAC681A17F81228E966AAF6DEBF /* OSSCancellationTokenRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSCancellationTokenRegistration.h; path = AliyunOSSSDK/OSSTask/OSSCancellationTokenRegistration.h; sourceTree = "<group>"; };
  674. B5150110204A4AF7AFCD9751FA50B353 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = "<group>"; };
  675. B51F98A7236B71F9D9BDD75C6FDE223C /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = "<group>"; };
  676. B5AFA6B06A8188E72495AF44CDF06B31 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = "<group>"; };
  677. B685207AB5685EFD11EBC9985C991894 /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = "<group>"; };
  678. B6AB085961C9A0483C327AD6A654868D /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = "<group>"; };
  679. B6E8A3B0D9625EC0066DD52D73F89858 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = "<group>"; };
  680. B76EC0616AB13208EAC3C374A72CD988 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = "<group>"; };
  681. B80BEA0AF1E33D2EC5BD7E254B58EEB8 /* RCTFabricPlatformUIOperationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFabricPlatformUIOperationManager.h; sourceTree = "<group>"; };
  682. B8760107985C4D2AAD78C95731933CC0 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedNodesManager.m; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.m; sourceTree = "<group>"; };
  683. B8A453F7D40BA914E4CA24FDAF46B1FE /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = "<group>"; };
  684. BA023FD0F5662871629F1CA61BB57FC4 /* React-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-dummy.m"; sourceTree = "<group>"; };
  685. BA3944D4BA242DED5E0F76B635A350F9 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = "<group>"; };
  686. BA664AA37D5473CE4C27B54FD5B36DDD /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = "<group>"; };
  687. BAB2C202C48CAA74C9835C31D02E3E7B /* libPods-campus.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-campus.a"; path = "libPods-campus.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  688. BAFDFD42B9F0AAD9EE594D7A8BCC066B /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = "<group>"; };
  689. BB5ACC8301ADE46F71FE8E33B37CB6EA /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = "<group>"; };
  690. BBDE07EA8B7DBDA94207A9DE32F16967 /* OSSReachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSReachability.h; path = AliyunOSSSDK/OSSFileLog/OSSReachability.h; sourceTree = "<group>"; };
  691. BC1D553F17DFA56C20EC6A7B645A5243 /* AliyunOSSiOS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AliyunOSSiOS.h; path = "Supporting Files/AliyunOSSiOS.h"; sourceTree = "<group>"; };
  692. BCAA22EF387E143F4D4DBD690681DFA7 /* RCTTabBarItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBarItem.h; sourceTree = "<group>"; };
  693. BCE57E0A3F98E6839AC9EAF490641079 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = "<group>"; };
  694. BD0D7875E58E1012188A66FCA410686C /* RCTNavItemManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNavItemManager.h; sourceTree = "<group>"; };
  695. BD7948A1C6C79DFD23F15DFB3EC4A027 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = "<group>"; };
  696. BDA0C9A29256650E0507A9F79016ED2D /* RCTNavigatorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNavigatorManager.h; sourceTree = "<group>"; };
  697. BDC940AD0886B60FA724355AECDD50D2 /* OSSTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSTask.h; path = AliyunOSSSDK/OSSTask/OSSTask.h; sourceTree = "<group>"; };
  698. BEFF3198268D7A37F6A76FD0FB8EF34A /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = "<group>"; };
  699. C028F17C9B4C3A9F92A9C345ABC48905 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = QBImagePicker/de.lproj; sourceTree = "<group>"; };
  700. C0A60B94887C9179612825E430D34916 /* RCTNavItemManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNavItemManager.m; sourceTree = "<group>"; };
  701. C0C2597F10CB3DBDCE0AC755C73E484B /* RCTLocationObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLocationObserver.m; path = Libraries/Geolocation/RCTLocationObserver.m; sourceTree = "<group>"; };
  702. C0E96FF5C852E307A98CAE1799A57D28 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = "<group>"; };
  703. C18A0BF9A8A75BA011DB42A21BF8B1AE /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = "<group>"; };
  704. C1A3CD5CE60A7F95A39BD286474B9675 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = "<group>"; };
  705. C1D02A2A3183619EB7EB0B6FE11ED142 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = "<group>"; };
  706. C2499064E615BFC9B13F6AA4A1ED262A /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = "<group>"; };
  707. C2541CD3AA7CE1E3727B439440EBB75A /* RCTWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebView.m; sourceTree = "<group>"; };
  708. C2835F5DE320094513D127FA02AC9AB8 /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = "<group>"; };
  709. C35018A61D2ECF9ADD4AF0075634F03B /* OSSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSExecutor.h; path = AliyunOSSSDK/OSSTask/OSSExecutor.h; sourceTree = "<group>"; };
  710. C3C329A23E23CC17F4D9F870E3711E04 /* RCTNavItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNavItem.m; sourceTree = "<group>"; };
  711. C3EEDBC33777D38A88983ED0491499DB /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = QBImagePicker/QBImagePickerController.m; sourceTree = "<group>"; };
  712. C41C86290CFB2A00DDA13F44A5C058CE /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = "<group>"; };
  713. C48D911B001D072E6A7ED302F33A58F5 /* RCTNavItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNavItem.h; sourceTree = "<group>"; };
  714. C4CAFE2537E40DA60C561A2D9E9FBB3A /* OSSCancellationToken.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSCancellationToken.m; path = AliyunOSSSDK/OSSTask/OSSCancellationToken.m; sourceTree = "<group>"; };
  715. C4D457BDDCB02E69C6D0973A0E29F29E /* OSSUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSUtil.m; path = AliyunOSSSDK/OSSUtil.m; sourceTree = "<group>"; };
  716. C510ADB226098BFAE5F8AA86CD142146 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = "<group>"; };
  717. C5CA0E1A5D88E3F5A6DD788B17A3EFC1 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = "<group>"; };
  718. C61D91D63B6DA5C4820152D6D0C1B09A /* RSKImageCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropViewController.h; path = RSKImageCropper/RSKImageCropViewController.h; sourceTree = "<group>"; };
  719. C6504AFDFAB6968A4C16354BD999580C /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = "<group>"; };
  720. C6D60DC39CC5E93EC887F4038A8E19E8 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = "<group>"; };
  721. C6F05838A1F47F5CEAC22D2C2B127895 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = "<group>"; };
  722. C74A3711E08F9AD711551BA1F4E7F335 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = "<group>"; };
  723. C78D4C4BE3CCBB1DEC3ADF14A4D2C76E /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; };
  724. C7B5FBBEF9B5305B56C6DCA470B54E64 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = "<group>"; };
  725. C7B86230BBD904EB99DF8A400ACA6E51 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = "<group>"; };
  726. C8165EF01069AB66859C1623D8421CBD /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = "<group>"; };
  727. C87789F51180A5F13C4EA5BE0F363242 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = "<group>"; };
  728. C8E8105D5EF0FD8BB9625A33BB15B983 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = "<group>"; };
  729. C960173BB267D1D0CEADD3F3717330BB /* OSSCocoaLumberjack.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSCocoaLumberjack.h; path = AliyunOSSSDK/OSSFileLog/OSSCocoaLumberjack.h; sourceTree = "<group>"; };
  730. C968AD637CEA5129453BBF8537863306 /* OSSInputStreamHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSInputStreamHelper.h; path = AliyunOSSSDK/OSSInputStreamHelper.h; sourceTree = "<group>"; };
  731. C99B8E88FA6A2F05F758D36A2B13D7E5 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = "<group>"; };
  732. C9B29EFC561C78FE565077355AB40D36 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = "<group>"; };
  733. CA1196015D032E8CAB5C4D99535F4686 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = "<group>"; };
  734. CB93E2BCFB6A7A70079E209CA11CD2CE /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = "<group>"; };
  735. CBE43BF7A1AAD8D02BE0FCA20626BBC5 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = "<group>"; };
  736. CBEA4C270B863481B6BF351F2BFFA4FF /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = "<group>"; };
  737. CBF34043556A1B348A1C888D1080B4D7 /* RCTTabBarItemManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBarItemManager.m; sourceTree = "<group>"; };
  738. CC7C39729CD48410960F52BD19DDBD32 /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = "<group>"; };
  739. CD780B0105857C202F72F9C3C907F8F4 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = "<group>"; };
  740. CDC4556F80B36F9016102E2D021EB034 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = QBImagePicker/QBAlbumCell.h; sourceTree = "<group>"; };
  741. CDCBA96CA6C85569655E8DDBADC4488C /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = "<group>"; };
  742. CEB0ED767ECDABE48AFEF36DC34EC186 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = "<group>"; };
  743. CEB6C938146A6D1E2D379EE411154838 /* yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = yoga.podspec; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
  744. CF1F23963954B6B93F75636DDBB0D3D2 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = "<group>"; };
  745. CF2C810E2874AE2D17B5677DDDE4756E /* OSSDeleteMultipleObjectsRequest.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSDeleteMultipleObjectsRequest.h; path = AliyunOSSSDK/OSSDeleteMultipleObjectsRequest.h; sourceTree = "<group>"; };
  746. CF49A6717CBDB20735198DB39022FF1A /* OSSDeleteMultipleObjectsResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSDeleteMultipleObjectsResult.h; path = AliyunOSSSDK/OSSDeleteMultipleObjectsResult.h; sourceTree = "<group>"; };
  747. CF8442F35784305ED47C447E2C48E4CA /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = "<group>"; };
  748. D080124CF601E4F7676F233132CC75B7 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = "<group>"; };
  749. D0AF023D7286A3BC4BB25B905BDC47B6 /* OSSTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSTask.m; path = AliyunOSSSDK/OSSTask/OSSTask.m; sourceTree = "<group>"; };
  750. D11788C25CFFF9E05AFE47E22934FC42 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = "<group>"; };
  751. D1AED96B7525EE151D7FC21D86D388AC /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = "<group>"; };
  752. D1CC4753048ACCC6C0B4CAF3FDEF40D4 /* OSSGetObjectACLResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OSSGetObjectACLResult.m; path = AliyunOSSSDK/OSSGetObjectACLResult.m; sourceTree = "<group>"; };
  753. D1D82702F273B0CDEEF1A19C2A1C927F /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = "<group>"; };
  754. D22A882AF212A8B1F68C68FDAC4C9AE8 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = "<group>"; };
  755. D261A094BDF1EAD5B9DCE0A8A3C48FB0 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = "<group>"; };
  756. D2B0B5C0090ED91894BC8446AB092BCD /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = "<group>"; };
  757. D2CF7F9C9ECCA003EAD9D8B4AF0EBDCD /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = QBImagePicker/es.lproj; sourceTree = "<group>"; };
  758. D2D123935D2A023D0E65EDE1943345FC /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = "<group>"; };
  759. D3DBBDCC16C921299F7A461F2466041D /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = "<group>"; };
  760. D3DF654FB0B314725C1E57C16A49E6CA /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = "<group>"; };
  761. D3E1CC902241687FE99A3E1CCD9AF391 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageBlurUtils.m; path = Libraries/Image/RCTImageBlurUtils.m; sourceTree = "<group>"; };
  762. D432BE97AFF15FFD36B1465FBE0353D9 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = "<group>"; };
  763. D4C365F9BB6AD49F512CDE4235F58513 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = "<group>"; };
  764. D4EF34CEEB0BFB9F24CAE857C2027697 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = "<group>"; };
  765. D5A0C5AC5F564BC508DE5340CE760C5A /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageView.m; path = Libraries/Image/RCTImageView.m; sourceTree = "<group>"; };
  766. D68CC1DD7C877575B22C8D958FECF8C4 /* RCTFabricSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFabricSurfaceHostingView.mm; sourceTree = "<group>"; };
  767. D6FA8FC4D8FBD53EE4597A0436A06547 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = "<group>"; };
  768. D7C74039E8C9F4680D46396023C561E2 /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; };
  769. D98D1F81822AFE41A618031B4046D67D /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = "<group>"; };
  770. DA00A7D86ED74708C6A8E242A8FEEF01 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = "<group>"; };
  771. DA04ABE87B80B509E73A94128A331657 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = "<group>"; };
  772. DA08D7A1847712A20B560B10B03D14D9 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = "<group>"; };
  773. DA1E59CBE3EFE5A1FF9130A7027EC11C /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = "<group>"; };
  774. DA8DE7D728D3271C1E6E1130B6CB9FC1 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = "<group>"; };
  775. DA9A90FA77C96C68A730E93B2EEE0DAA /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = "<group>"; };
  776. DAEA2CEE601F6E405203B72F862869C5 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetInfo.m; path = Libraries/Network/RCTNetInfo.m; sourceTree = "<group>"; };
  777. DB2A9FDE4AE53FAA6DB8FE7C7BCF8C61 /* RCTTabBarItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBarItem.m; sourceTree = "<group>"; };
  778. DB43990353A32E18EE74A644CBFB662A /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = "<group>"; };
  779. DBD931BA97CB92A91823854F64FE72FC /* RCTWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebViewManager.h; sourceTree = "<group>"; };
  780. DC34D3D46D9CB8F51768B7DF5840FE1A /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = "<group>"; };
  781. DC552E431165FED5F80A058561ECB587 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = "<group>"; };
  782. DC7AFC5AE8677981EB9A1D2F7677120A /* RCTFabricUIManagerWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFabricUIManagerWrapper.h; sourceTree = "<group>"; };
  783. DC99D1D3F016EECC1D16D4B7C2E6F856 /* OSSAllRequestNeededMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSAllRequestNeededMessage.h; path = AliyunOSSSDK/OSSAllRequestNeededMessage.h; sourceTree = "<group>"; };
  784. DD1878EC221BE00B40A95724D17E5460 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTResizeMode.m; path = Libraries/Image/RCTResizeMode.m; sourceTree = "<group>"; };
  785. DD37859BA28D192861671F73F05C4543 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = QBImagePicker/QBSlomoIconView.m; sourceTree = "<group>"; };
  786. DD4077825D10034A0F7FC1A0BD028CD7 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = "<group>"; };
  787. DDEA1FEFF2B8B43860BB1ECD00FEDAA7 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/CoreTelephony.framework; sourceTree = DEVELOPER_DIR; };
  788. DDFF531E2F568DDD24F44662DBA6C31F /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = "<group>"; };
  789. DF56251842DAFF30512A02304B7BDD03 /* OSSService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSService.h; path = AliyunOSSSDK/OSSService.h; sourceTree = "<group>"; };
  790. E0E982944798F675636517A9ECC80D45 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = "<group>"; };
  791. E1964C5C7D0E2EF2B08CE11295B50D4A /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = "<group>"; };
  792. E1B24AFEA2053645A5D46BD9A801D4F5 /* RCTJSCSamplingProfiler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSCSamplingProfiler.h; sourceTree = "<group>"; };
  793. E204B7AB4B02E6A3F44FD66D51AE4890 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = "<group>"; };
  794. E21ABC1F6ADFB1FA7B402CC71BA7C164 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = "<group>"; };
  795. E2CD05EC77071AF0A8262A32AF0C601F /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = "<group>"; };
  796. E3339ADC464752BF550A045A934AE991 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = "<group>"; };
  797. E4DCB894AC07E59A67FB76023BE3685B /* ResourceBundle-QBImagePicker-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-Info.plist"; sourceTree = "<group>"; };
  798. E4E476E21A508E977961BE12256CF18A /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = "<group>"; };
  799. E4F7936331BC3ACD6329F576B72F3952 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = "<group>"; };
  800. E4F8B4452ABE3404D484014D400AA75C /* Pods-campus-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-campus-frameworks.sh"; sourceTree = "<group>"; };
  801. E550164C732D1C450FC52ADFC59B7D3C /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = "<group>"; };
  802. E5DE8904C11881385EB0FC1EDB830165 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = "<group>"; };
  803. E64DC664CE0CD82193073DC517EC30B4 /* OSSHttpResponseParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSHttpResponseParser.h; path = AliyunOSSSDK/OSSHttpResponseParser.h; sourceTree = "<group>"; };
  804. E6E27057311768F7424AF458FE372739 /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
  805. E6F242C7A496A2064E7723B6821B1EA0 /* OSSCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSCompat.h; path = AliyunOSSSDK/OSSCompat.h; sourceTree = "<group>"; };
  806. E74DB4AD5821861389EBF4A95E850DA6 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTExceptionsManager.h; sourceTree = "<group>"; };
  807. E8B0D10833CD8618EF3BEF5F07A7E864 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = "<group>"; };
  808. E95F517864222488B0EDCE2859C4EDCF /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+Text.m"; path = "Libraries/Text/RCTConvert+Text.m"; sourceTree = "<group>"; };
  809. E97C4B00B1FA67B77F67F28599A3DDFE /* OSSLogMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSLogMacros.h; path = AliyunOSSSDK/OSSFileLog/OSSLogMacros.h; sourceTree = "<group>"; };
  810. EB5C5C2642920F365C8AAA9F70715DC7 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = "<group>"; };
  811. EB65F6FF114841FDB440392485E6004D /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = "<group>"; };
  812. EBC0EEDD8C68728E64D7C8244EC2C86A /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = "<group>"; };
  813. EC1C222FE949E9816B8A8CF79C6A86ED /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = "<group>"; };
  814. EC48D763C99A5FFA48674E82E188638B /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = "<group>"; };
  815. ED41FB15CF06061F4FE62DC78D74149A /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = "<group>"; };
  816. ED8639EE24A3182193B0B4F1056B75CE /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = "<group>"; };
  817. ED9732ABE5F90361A9976536FE68130E /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = "<group>"; };
  818. EE75583B829E95A5B25B607F6523D091 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedModule.m; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.m; sourceTree = "<group>"; };
  819. EE998BF4239CB65FDC2FFC3EB20BF165 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = "<group>"; };
  820. F000FB373950952E9AA3589DC1C69180 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = "<group>"; };
  821. F01B3659F82AD446240A3C61A3C104B1 /* OSSIPv6PrefixResolver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OSSIPv6PrefixResolver.h; path = AliyunOSSSDK/OSSIPv6/OSSIPv6PrefixResolver.h; sourceTree = "<group>"; };
  822. F0211ECCA0CBDCF71BA835088CDD0371 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = "<group>"; };
  823. F04B3E3836A1314805E95C207C3C0497 /* RCTJSCSamplingProfiler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSCSamplingProfiler.m; sourceTree = "<group>"; };
  824. F0DA833F9B251D221FC5C2930285DD18 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = "<group>"; };
  825. F120D29E88B57871955AB98B98DD8F93 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = QBImagePicker/QBAssetCell.h; sourceTree = "<group>"; };
  826. F12AEEF8A5B3D0EEE2B1641554C6FE9F /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = "<group>"; };
  827. F13D1809B8EE2D9197EA24C32212133E /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = "<group>"; };
  828. F23D24B3A8FC9E84EE46994C7A7038C4 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = "<group>"; };
  829. F2C2FD918FEC37029476D02FF6DA0A92 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = "<group>"; };
  830. F36DE6F3D5C6418A7C9C7BEEB252E764 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = "<group>"; };
  831. F4C003259A45CABF75B91FD9FAAEDD31 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTActionSheetManager.m; path = Libraries/ActionSheetIOS/RCTActionSheetManager.m; sourceTree = "<group>"; };
  832. F4ECF434459C9F4089EEDA554F55658C /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = "<group>"; };
  833. F69108A0B3D03B0079AB660A187D7C0A /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = "<group>"; };
  834. F721BF65B88665F866C9771363B713C9 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = "<group>"; };
  835. F7B845D8886670586DB8EDE1F8203BDD /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = "<group>"; };
  836. F83BBAE23B23B7DF451A9C48989AA822 /* RCTTabBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBarManager.h; sourceTree = "<group>"; };
  837. F904226B79569F74A829FD99A1299BAE /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = "<group>"; };
  838. F9073DBA4A20EE47C86D5A2B47A09798 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = "<group>"; };
  839. F935C381782670B2AF816062060D81FB /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTHTTPRequestHandler.mm; path = Libraries/Network/RCTHTTPRequestHandler.mm; sourceTree = "<group>"; };
  840. F9C43C59014449A2E8DFEC96F5344183 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = "<group>"; };
  841. FA1CACEF8EF9F787794BDFF18CFE3D22 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = QBImagePicker/QBAlbumsViewController.h; sourceTree = "<group>"; };
  842. FB1A4C020F869E222A956583E975B9C4 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = "<group>"; };
  843. FB265ACA0D6B741184D32458F680CAEF /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = "<group>"; };
  844. FC29ABEDB7B1AAE7E2CA8BD40B1565A6 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = "<group>"; };
  845. FC8CC89248150CB899BC7DDC4EE537DB /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = "<group>"; };
  846. FCD9ECBA55EDE1531F14E51CCFD69913 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = "<group>"; };
  847. FD3C95CA4C0E6DE50C0C6AF6236FC7A2 /* NSMutableData+OSS_CRC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableData+OSS_CRC.h"; path = "AliyunOSSSDK/NSMutableData+OSS_CRC.h"; sourceTree = "<group>"; };
  848. FD813760846E9F0F6ADF60B9E7508ED7 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = "<group>"; };
  849. FE2A5F7CD52068DBD1EABE201971325C /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = "<group>"; };
  850. FE9EDEDB5E63243F3E47ABACFD9C7543 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = "<group>"; };
  851. FEB24662E45DD639DC3B1C743D9DE7F3 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = "<group>"; };
  852. FEDFB1DA5A758FD6A4FF10749E4A417A /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = "<group>"; };
  853. FF2B34DA91ACD8976D5A3414AAC5D6FB /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = "<group>"; };
  854. FF3969F5C47B6208B2B5040B063D7D69 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = "<group>"; };
  855. FF3E462AA17CDF50BF988BF89E2CE7AC /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = "<group>"; };
  856. /* End PBXFileReference section */
  857. /* Begin PBXFrameworksBuildPhase section */
  858. 52426A9FF7C3E4C3AA9128B2BB49881F /* Frameworks */ = {
  859. isa = PBXFrameworksBuildPhase;
  860. buildActionMask = 2147483647;
  861. files = (
  862. CAD40DC46851BF803F76FCF758AF4B89 /* QuartzCore.framework in Frameworks */,
  863. 67C2FD15DF6ECB96A40E73901DB7D706 /* UIKit.framework in Frameworks */,
  864. );
  865. runOnlyForDeploymentPostprocessing = 0;
  866. };
  867. 6651CCC0E65C9A86A08E9E5C37980E63 /* Frameworks */ = {
  868. isa = PBXFrameworksBuildPhase;
  869. buildActionMask = 2147483647;
  870. files = (
  871. );
  872. runOnlyForDeploymentPostprocessing = 0;
  873. };
  874. 88A90B4AA3F1C08EF20B38F38EE81FE4 /* Frameworks */ = {
  875. isa = PBXFrameworksBuildPhase;
  876. buildActionMask = 2147483647;
  877. files = (
  878. );
  879. runOnlyForDeploymentPostprocessing = 0;
  880. };
  881. A7C9947A807E506FA91E3E15FC7C0BCE /* Frameworks */ = {
  882. isa = PBXFrameworksBuildPhase;
  883. buildActionMask = 2147483647;
  884. files = (
  885. );
  886. runOnlyForDeploymentPostprocessing = 0;
  887. };
  888. B4BDF733595C6A79F173DEC8DF885738 /* Frameworks */ = {
  889. isa = PBXFrameworksBuildPhase;
  890. buildActionMask = 2147483647;
  891. files = (
  892. 84CC2786B36238BBD87EC5D33B62EC0A /* CoreTelephony.framework in Frameworks */,
  893. F953C454BA7CBC8BC3604047D345834D /* SystemConfiguration.framework in Frameworks */,
  894. );
  895. runOnlyForDeploymentPostprocessing = 0;
  896. };
  897. DE90E0827C903153A3CA675E82E73030 /* Frameworks */ = {
  898. isa = PBXFrameworksBuildPhase;
  899. buildActionMask = 2147483647;
  900. files = (
  901. F406B464F44EFEC2CEE02D51C9B2693E /* Photos.framework in Frameworks */,
  902. );
  903. runOnlyForDeploymentPostprocessing = 0;
  904. };
  905. E2E40406D390352568243363DB461D05 /* Frameworks */ = {
  906. isa = PBXFrameworksBuildPhase;
  907. buildActionMask = 2147483647;
  908. files = (
  909. );
  910. runOnlyForDeploymentPostprocessing = 0;
  911. };
  912. /* End PBXFrameworksBuildPhase section */
  913. /* Begin PBXGroup section */
  914. 032E213A4F6FD70E985504D9BD584250 /* RCTGeolocation */ = {
  915. isa = PBXGroup;
  916. children = (
  917. 04A0BEFB38D224068C592A359ADE5ECE /* RCTLocationObserver.h */,
  918. C0C2597F10CB3DBDCE0AC755C73E484B /* RCTLocationObserver.m */,
  919. );
  920. name = RCTGeolocation;
  921. sourceTree = "<group>";
  922. };
  923. 0F75DF6C7C5F002280EC53F48E80B587 /* Frameworks */ = {
  924. isa = PBXGroup;
  925. children = (
  926. E9E5A5FFAD9FACE71159B96F433F80C2 /* iOS */,
  927. );
  928. name = Frameworks;
  929. sourceTree = "<group>";
  930. };
  931. 13C8772B59DEABAE3B883DDB0D6C5212 /* Support Files */ = {
  932. isa = PBXGroup;
  933. children = (
  934. 4509AD2FFE3EDB8D61A81017F90E5D8D /* AliyunOSSiOS.xcconfig */,
  935. 156BEB56BF4E8417067F3C40953E2C74 /* AliyunOSSiOS-dummy.m */,
  936. 0BF925995E9D11D514CE25DC888F7257 /* AliyunOSSiOS-prefix.pch */,
  937. );
  938. name = "Support Files";
  939. path = "../Target Support Files/AliyunOSSiOS";
  940. sourceTree = "<group>";
  941. };
  942. 18EA95A36B96A27354BF51006185005C /* Pods-campus */ = {
  943. isa = PBXGroup;
  944. children = (
  945. 27D7436C8BDD17C801A949D038B4E7CA /* Pods-campus-acknowledgements.markdown */,
  946. 6F21DD3493F48EB02B1363F604F0CC2C /* Pods-campus-acknowledgements.plist */,
  947. 7775F14981B924D1AD2805BD29D4C889 /* Pods-campus-dummy.m */,
  948. E4F8B4452ABE3404D484014D400AA75C /* Pods-campus-frameworks.sh */,
  949. 13FEDFCC8FE60BDFB558FB6B3044BD74 /* Pods-campus-resources.sh */,
  950. 9D89C4377C66F4DBDF377BE9535A8AED /* Pods-campus.debug.xcconfig */,
  951. B3AE2E58E89D4C380F99BA73D891A878 /* Pods-campus.release.xcconfig */,
  952. );
  953. name = "Pods-campus";
  954. path = "Target Support Files/Pods-campus";
  955. sourceTree = "<group>";
  956. };
  957. 1A179D43AB72BCA17367EF55C8E4DA9A /* RSKImageCropper */ = {
  958. isa = PBXGroup;
  959. children = (
  960. B685207AB5685EFD11EBC9985C991894 /* CGGeometry+RSKImageCropper.h */,
  961. 8FE1D030403FC22A6D94F3476DA9FD8B /* CGGeometry+RSKImageCropper.m */,
  962. 3C3202B333DEA15325C6A8E9178BF6A0 /* RSKImageCropper.h */,
  963. C61D91D63B6DA5C4820152D6D0C1B09A /* RSKImageCropViewController.h */,
  964. 3307577C0B517AC0468E6DD0F52DC2EF /* RSKImageCropViewController.m */,
  965. 09CF10C60E922ED065C1B06223A82A09 /* RSKImageCropViewController+Protected.h */,
  966. 779BDACCB21940FF772AA97C1CEFA9A2 /* RSKImageScrollView.h */,
  967. D98D1F81822AFE41A618031B4046D67D /* RSKImageScrollView.m */,
  968. 2AB5331EEC5F2A6B7E2D3B6FD3C1CA25 /* RSKInternalUtility.h */,
  969. 33D26D25A4B782CD69C48F782255A365 /* RSKInternalUtility.m */,
  970. 49005B80FFF25F19462B6B107C627DA4 /* RSKTouchView.h */,
  971. 71BC3FE892D61657CF63A7ECCBA9B730 /* RSKTouchView.m */,
  972. 3FBC99830BB92FD87D6C3BD485431BF3 /* UIApplication+RSKImageCropper.h */,
  973. 02EAD2C92D477C0E24FE43BE56459806 /* UIApplication+RSKImageCropper.m */,
  974. 5081911AB41469623B368DEFBFBCF6D4 /* UIImage+RSKImageCropper.h */,
  975. CC7C39729CD48410960F52BD19DDBD32 /* UIImage+RSKImageCropper.m */,
  976. 70D9A1024725FDD446AF110CDB8A42E3 /* Support Files */,
  977. );
  978. name = RSKImageCropper;
  979. path = RSKImageCropper;
  980. sourceTree = "<group>";
  981. };
  982. 1B5383D642D36DC2BAB023D8E608DD9D /* Modules */ = {
  983. isa = PBXGroup;
  984. children = (
  985. CBEA4C270B863481B6BF351F2BFFA4FF /* RCTAccessibilityManager.h */,
  986. E204B7AB4B02E6A3F44FD66D51AE4890 /* RCTAccessibilityManager.m */,
  987. 92646F26321ECB9BC1D0B40375BC0BEA /* RCTAlertManager.h */,
  988. 668CCE73341577C1234C48D44FC43BD0 /* RCTAlertManager.m */,
  989. 9A083228905E860DC9878E196F1E453C /* RCTAppState.h */,
  990. 8EEC2E4009CADDCCC3C8A9C088C06134 /* RCTAppState.m */,
  991. 81A1A1145581A194365212BFEBF217F2 /* RCTAsyncLocalStorage.h */,
  992. FB265ACA0D6B741184D32458F680CAEF /* RCTAsyncLocalStorage.m */,
  993. 4516D7F91C1232B1FE059EB521E4CCA8 /* RCTClipboard.h */,
  994. 8A0C3989DB408A67AD18F15086947794 /* RCTClipboard.m */,
  995. B5150110204A4AF7AFCD9751FA50B353 /* RCTDeviceInfo.h */,
  996. 9C8C3906F7B4C03D7048E783D71C3465 /* RCTDeviceInfo.m */,
  997. D2B0B5C0090ED91894BC8446AB092BCD /* RCTDevSettings.h */,
  998. 0B5D75568A91A85AA0BB464FAC6643D2 /* RCTDevSettings.mm */,
  999. 00A2606DB7FC6C4D2706433AEED43EBA /* RCTEventEmitter.h */,
  1000. 14B35B29219EFFB3C7A2F2CCD772CD3F /* RCTEventEmitter.m */,
  1001. E74DB4AD5821861389EBF4A95E850DA6 /* RCTExceptionsManager.h */,
  1002. 7241CE247597E89E43AAA266F7FB7969 /* RCTExceptionsManager.m */,
  1003. 52A21A4ACFA1C65CCA81BE7F174F4C77 /* RCTI18nManager.h */,
  1004. 140C08A04E2E4F9D217EF42E0359EEEE /* RCTI18nManager.m */,
  1005. E2CD05EC77071AF0A8262A32AF0C601F /* RCTI18nUtil.h */,
  1006. D3DBBDCC16C921299F7A461F2466041D /* RCTI18nUtil.m */,
  1007. E1B24AFEA2053645A5D46BD9A801D4F5 /* RCTJSCSamplingProfiler.h */,
  1008. F04B3E3836A1314805E95C207C3C0497 /* RCTJSCSamplingProfiler.m */,
  1009. 3B656B6D4AA0E46B1563558C8C3165D6 /* RCTKeyboardObserver.h */,
  1010. 9A7C25C1D1A00987A8EAC3B2B3EED6C9 /* RCTKeyboardObserver.m */,
  1011. A01DDA915D6779C7233F223D4F2A8C6B /* RCTLayoutAnimation.h */,
  1012. 4B21E814411B10F507F698DE62B818AA /* RCTLayoutAnimation.m */,
  1013. C1D02A2A3183619EB7EB0B6FE11ED142 /* RCTLayoutAnimationGroup.h */,
  1014. 2661B2AB89F7E6C25BC490593FDC2227 /* RCTLayoutAnimationGroup.m */,
  1015. F721BF65B88665F866C9771363B713C9 /* RCTRedBox.h */,
  1016. 43087F0F08C53873DE485E60977C3A0A /* RCTRedBox.m */,
  1017. C5CA0E1A5D88E3F5A6DD788B17A3EFC1 /* RCTRedBoxExtraDataViewController.h */,
  1018. C99B8E88FA6A2F05F758D36A2B13D7E5 /* RCTRedBoxExtraDataViewController.m */,
  1019. D261A094BDF1EAD5B9DCE0A8A3C48FB0 /* RCTSourceCode.h */,
  1020. 31B4D92547841E648AE1A139E483407D /* RCTSourceCode.m */,
  1021. C6504AFDFAB6968A4C16354BD999580C /* RCTStatusBarManager.h */,
  1022. 7A43FF6E32D57A36F9C2B4877575BCC9 /* RCTStatusBarManager.m */,
  1023. 50BBD99140E2DE833881FADCE69025EE /* RCTTiming.h */,
  1024. 11247671B79898D768656A08B5B653A6 /* RCTTiming.m */,
  1025. 564F8E1C269C7E751DC81ACDEA8A3881 /* RCTUIManager.h */,
  1026. 2837D05C57979E6515E666D2813A01D4 /* RCTUIManager.m */,
  1027. 50C192D917F15A804D024DD10C6BC3B0 /* RCTUIManagerObserverCoordinator.h */,
  1028. E3339ADC464752BF550A045A934AE991 /* RCTUIManagerObserverCoordinator.mm */,
  1029. A558761ECE13608037AEDFAA3A42CB86 /* RCTUIManagerUtils.h */,
  1030. D1D82702F273B0CDEEF1A19C2A1C927F /* RCTUIManagerUtils.m */,
  1031. );
  1032. name = Modules;
  1033. path = React/Modules;
  1034. sourceTree = "<group>";
  1035. };
  1036. 1C69B7E26FA01757F18308EE26AC940E /* AliyunOSSiOS */ = {
  1037. isa = PBXGroup;
  1038. children = (
  1039. BC1D553F17DFA56C20EC6A7B645A5243 /* AliyunOSSiOS.h */,
  1040. 555DEA507E79E016A36DED6E8179CBB3 /* aos_crc64.c */,
  1041. 44397AA4273251CD0D823CA069815C9E /* aos_crc64.h */,
  1042. FD3C95CA4C0E6DE50C0C6AF6236FC7A2 /* NSMutableData+OSS_CRC.h */,
  1043. 2B89D3501A814D18B9E4210E0940DF59 /* NSMutableData+OSS_CRC.m */,
  1044. DC99D1D3F016EECC1D16D4B7C2E6F856 /* OSSAllRequestNeededMessage.h */,
  1045. 20C3E53BD774F75F44D23D3F4CEDD700 /* OSSAllRequestNeededMessage.m */,
  1046. AA1EE86E2A81FC3E49D10AF571B74312 /* OSSBolts.h */,
  1047. 9EB2E4AB2D749EB9D2A298D2065CB6CB /* OSSBolts.m */,
  1048. 6BB319E884C3C3EF797F5CC394C81FB4 /* OSSCancellationToken.h */,
  1049. C4CAFE2537E40DA60C561A2D9E9FBB3A /* OSSCancellationToken.m */,
  1050. B4EE7BAC681A17F81228E966AAF6DEBF /* OSSCancellationTokenRegistration.h */,
  1051. 49CB2D95B275EFE8CF26E90559F74CD3 /* OSSCancellationTokenRegistration.m */,
  1052. 17168ACC82A9C2B517B112BC8627FA4E /* OSSCancellationTokenSource.h */,
  1053. AC134B9AA5DEB6C1AA74D4F07FCC5352 /* OSSCancellationTokenSource.m */,
  1054. 3D2A3F6B9CC2A681613EFA80F6100B0B /* OSSClient.h */,
  1055. 37F592E833D0AE7ED8B1A62BC452A3C6 /* OSSClient.m */,
  1056. C960173BB267D1D0CEADD3F3717330BB /* OSSCocoaLumberjack.h */,
  1057. E6F242C7A496A2064E7723B6821B1EA0 /* OSSCompat.h */,
  1058. 49014995AAE36D671C41657154D4CBFB /* OSSCompat.m */,
  1059. 35E6BBAF39E2CEC41967F067FCCB315A /* OSSConstants.h */,
  1060. A4AC4EBC026602AB12FFA9B5BF6F70F3 /* OSSConstants.m */,
  1061. 8DB64272716388987CDB639B896BD2F8 /* OSSDDLog.h */,
  1062. 76DF7D46B27905D292B45F6733D2B943 /* OSSDDLog.m */,
  1063. 183D9BE18102386E1677F45BA8B01F21 /* OSSDefine.h */,
  1064. CF2C810E2874AE2D17B5677DDDE4756E /* OSSDeleteMultipleObjectsRequest.h */,
  1065. 9097AEBF5C431ADB54D61289CB890248 /* OSSDeleteMultipleObjectsRequest.m */,
  1066. CF49A6717CBDB20735198DB39022FF1A /* OSSDeleteMultipleObjectsResult.h */,
  1067. 59943D12FA5808B3622F72490026344A /* OSSDeleteMultipleObjectsResult.m */,
  1068. C35018A61D2ECF9ADD4AF0075634F03B /* OSSExecutor.h */,
  1069. 9D76658119C23E2C2B0C048D61216DF8 /* OSSExecutor.m */,
  1070. 710557384E4F1298D107A298A2A0EF00 /* OSSFileLogger.h */,
  1071. 75270900814CAE2BC925BD061B206D97 /* OSSFileLogger.m */,
  1072. 4C1B9CEBFAF536B0749DE84C7FACE2D0 /* OSSGetObjectACLRequest.h */,
  1073. AE65AB84E752AE7823B3C1254137AD9F /* OSSGetObjectACLRequest.m */,
  1074. 4BC45B7C3A2F761B70356E6410FC53C4 /* OSSGetObjectACLResult.h */,
  1075. D1CC4753048ACCC6C0B4CAF3FDEF40D4 /* OSSGetObjectACLResult.m */,
  1076. 33B2BE26D3BCFEB1AB81B0017B7493A6 /* OSSHttpdns.h */,
  1077. 6808B83C9DD722ABD6714FE3FDCF87E9 /* OSSHttpdns.m */,
  1078. E64DC664CE0CD82193073DC517EC30B4 /* OSSHttpResponseParser.h */,
  1079. 229E4C37472A1A920D17F1A388889BE4 /* OSSHttpResponseParser.m */,
  1080. C968AD637CEA5129453BBF8537863306 /* OSSInputStreamHelper.h */,
  1081. 169130DFA5E65398F8660DF23CF9D3B6 /* OSSInputStreamHelper.m */,
  1082. 4B7CD39E01CAE74ECEB601D43715A3B2 /* OSSIPv6Adapter.h */,
  1083. 73016635C4DACB74652AC6E2E7E3E610 /* OSSIPv6Adapter.m */,
  1084. F01B3659F82AD446240A3C61A3C104B1 /* OSSIPv6PrefixResolver.h */,
  1085. AD5F107AEACC35425F0081538F3D853A /* OSSIPv6PrefixResolver.m */,
  1086. 6B447E79DD03778ABF1D7EA9F8972866 /* OSSLog.h */,
  1087. 149EBE92DDF7F8611EC571A22EB6EDB9 /* OSSLog.m */,
  1088. E97C4B00B1FA67B77F67F28599A3DDFE /* OSSLogMacros.h */,
  1089. 35642BDA3EB570DD1D6B94ABA0C577E8 /* OSSModel.h */,
  1090. AF730652F68F9D18C9A8D379CE2CF329 /* OSSModel.m */,
  1091. 76642D0A4FFB3A07474C4E9B61D70577 /* OSSNetworking.h */,
  1092. 0EEBC68806A469365A7B348599FAC03A /* OSSNetworking.m */,
  1093. 600ECF741EDEC05467D808C41BE47651 /* OSSNetworkingRequestDelegate.h */,
  1094. 45D911D2AB3ADD20E3A7EB167DF60C98 /* OSSNetworkingRequestDelegate.m */,
  1095. 39FA363425128A34986279DCAF4FF151 /* OSSNSLogger.h */,
  1096. 067029D4EA94FFF25DDEEE2D6EABA498 /* OSSNSLogger.m */,
  1097. BBDE07EA8B7DBDA94207A9DE32F16967 /* OSSReachability.h */,
  1098. 3286458CAE7809FAF7265C7864B6C8F5 /* OSSReachability.m */,
  1099. 5DB80B4BA052F08242D7C6D004995C03 /* OSSReachabilityManager.h */,
  1100. 20B58B4DC0F6A44CAC3BDFED06E6D5A0 /* OSSReachabilityManager.m */,
  1101. 9DA0EFDC6D617AE971EFCB3D2AB49B54 /* OSSRequest.h */,
  1102. 6C92373E01D66AEB6AF5D6EE1F2B71D3 /* OSSRequest.m */,
  1103. 5B470A5F040AD8DCCBF54DC3D0F25655 /* OSSResult.h */,
  1104. 6625048B41ADFA42580B2E161D63BBAE /* OSSResult.m */,
  1105. DF56251842DAFF30512A02304B7BDD03 /* OSSService.h */,
  1106. BDC940AD0886B60FA724355AECDD50D2 /* OSSTask.h */,
  1107. D0AF023D7286A3BC4BB25B905BDC47B6 /* OSSTask.m */,
  1108. 67369DE47BA41D02E412566651ED2791 /* OSSTaskCompletionSource.h */,
  1109. 7D1D0EF2F003D2F439A0DE77BE52A9D7 /* OSSTaskCompletionSource.m */,
  1110. AB686C1794EFB1B3F7E51EF84AA94EF9 /* OSSURLRequestRetryHandler.h */,
  1111. 2DA666C810D8CDEA1821E175858AEF4E /* OSSURLRequestRetryHandler.m */,
  1112. 0442CCBD9A33923BBFFAEB7F4BA76EDB /* OSSUtil.h */,
  1113. C4D457BDDCB02E69C6D0973A0E29F29E /* OSSUtil.m */,
  1114. 82873F6C751F6CD9DAE837118ABCB314 /* OSSXMLDictionary.h */,
  1115. 18AA7D895C561392007AB616D630679C /* OSSXMLDictionary.m */,
  1116. 13C8772B59DEABAE3B883DDB0D6C5212 /* Support Files */,
  1117. );
  1118. name = AliyunOSSiOS;
  1119. path = AliyunOSSiOS;
  1120. sourceTree = "<group>";
  1121. };
  1122. 1FA33F742F1231246E2C72764E93943E /* RNImageCropPicker */ = {
  1123. isa = PBXGroup;
  1124. children = (
  1125. C1A3CD5CE60A7F95A39BD286474B9675 /* Compression.h */,
  1126. 9387DB241A95C5042B8DB31B544D38CD /* Compression.m */,
  1127. 6B27EDED807AA88CD88B43ABCAB84E92 /* ImageCropPicker.h */,
  1128. C87789F51180A5F13C4EA5BE0F363242 /* ImageCropPicker.m */,
  1129. 693EE3289645DBCEEACEFB31BB8D476F /* UIImage+Resize.h */,
  1130. 7463405892C8FD5084E714C3A539C432 /* UIImage+Resize.m */,
  1131. 5CA1BE7C7BE4589C33688A0EA761C477 /* Pod */,
  1132. 75C56D80600CAD58BB939B5B37F160A4 /* Support Files */,
  1133. );
  1134. name = RNImageCropPicker;
  1135. path = "../../node_modules/react-native-image-crop-picker";
  1136. sourceTree = "<group>";
  1137. };
  1138. 209001B3C37FC252F9B627721DB71DD8 /* TextInput */ = {
  1139. isa = PBXGroup;
  1140. children = (
  1141. 1986174594CF8C20D5EEA654BFD04624 /* RCTBackedTextInputDelegate.h */,
  1142. FCD9ECBA55EDE1531F14E51CCFD69913 /* RCTBackedTextInputDelegateAdapter.h */,
  1143. D432BE97AFF15FFD36B1465FBE0353D9 /* RCTBackedTextInputDelegateAdapter.m */,
  1144. D6FA8FC4D8FBD53EE4597A0436A06547 /* RCTBackedTextInputViewProtocol.h */,
  1145. 4A9216830061B006BDA91943953A6F6F /* RCTBaseTextInputShadowView.h */,
  1146. 127E8CE25BA7322C2F53E6049A20C6F8 /* RCTBaseTextInputShadowView.m */,
  1147. B5AFA6B06A8188E72495AF44CDF06B31 /* RCTBaseTextInputView.h */,
  1148. 93041BC02C7BEB6ABC1412449F469A15 /* RCTBaseTextInputView.m */,
  1149. 856187A4327925B586BBA67ECBF9C0C8 /* RCTBaseTextInputViewManager.h */,
  1150. AA71E086942CF24586A51CFF44EC7A4A /* RCTBaseTextInputViewManager.m */,
  1151. 4569D61B3BB0DD410EA6D57AADF6A459 /* RCTInputAccessoryView.h */,
  1152. D22A882AF212A8B1F68C68FDAC4C9AE8 /* RCTInputAccessoryView.m */,
  1153. A6766BB7A01E7B545B02D753C7B9A065 /* RCTInputAccessoryViewContent.h */,
  1154. CF1F23963954B6B93F75636DDBB0D3D2 /* RCTInputAccessoryViewContent.m */,
  1155. 8BD11223DF357997737194F03E3C9E79 /* RCTInputAccessoryViewManager.h */,
  1156. 17D153557A8A2289105EA827E2CF2863 /* RCTInputAccessoryViewManager.m */,
  1157. 5E37FF100FC0735C240F767C212D51B1 /* RCTTextSelection.h */,
  1158. 8D7ED691D7B126B9530247926160B205 /* RCTTextSelection.m */,
  1159. AAEFA6BAC077A2118FAB995D1F83F304 /* Multiline */,
  1160. 7381650FBAF68289682C9BFF2CDF813A /* Singleline */,
  1161. );
  1162. name = TextInput;
  1163. path = Libraries/Text/TextInput;
  1164. sourceTree = "<group>";
  1165. };
  1166. 2747E9AB22C01BBF9B4658748253BEAA /* RCTText */ = {
  1167. isa = PBXGroup;
  1168. children = (
  1169. 1B3EFD45F6B8C7228946C1CD763D57C0 /* RCTConvert+Text.h */,
  1170. E95F517864222488B0EDCE2859C4EDCF /* RCTConvert+Text.m */,
  1171. 5B982D54EF708DB48292CA3828DA0E6C /* RCTTextAttributes.h */,
  1172. 20A4CD3A879344977F67484C3BE2C3CB /* RCTTextAttributes.m */,
  1173. A8CC8354DB4AB9747CC37A68BA036A86 /* BaseText */,
  1174. 97115B39552ACFB53F0C1E1FE8FA6EE1 /* RawText */,
  1175. 4119C30E9D1FC25AE0DC82169812E58D /* Text */,
  1176. 209001B3C37FC252F9B627721DB71DD8 /* TextInput */,
  1177. 9D5AE9765940F64FBBAA15471A84C466 /* VirtualText */,
  1178. );
  1179. name = RCTText;
  1180. sourceTree = "<group>";
  1181. };
  1182. 3ABB7D88FE51EF5071686E8A1CC5C58E /* Views */ = {
  1183. isa = PBXGroup;
  1184. children = (
  1185. 033B7FD8616610B9B828F058087F87CB /* RCTActivityIndicatorView.h */,
  1186. B1AD918D3D46E6DCD1FFEC49AC43DED1 /* RCTActivityIndicatorView.m */,
  1187. 52587D238DE8644253C4E1CF64D51135 /* RCTActivityIndicatorViewManager.h */,
  1188. F69108A0B3D03B0079AB660A187D7C0A /* RCTActivityIndicatorViewManager.m */,
  1189. 2FB5C86E8AC783DE1CE36AD368261975 /* RCTAnimationType.h */,
  1190. D11788C25CFFF9E05AFE47E22934FC42 /* RCTAutoInsetsProtocol.h */,
  1191. 7421A2B6273FDABDE404DBB0901AB299 /* RCTBorderDrawing.h */,
  1192. 76943C9E8060EEE1EB29400F985C73D5 /* RCTBorderDrawing.m */,
  1193. C7B86230BBD904EB99DF8A400ACA6E51 /* RCTBorderStyle.h */,
  1194. 8EA66310220CB4289B52245590622F97 /* RCTComponent.h */,
  1195. 62E5930AEA2F9CDBFDAAF75979033814 /* RCTComponentData.h */,
  1196. FE2A5F7CD52068DBD1EABE201971325C /* RCTComponentData.m */,
  1197. 364B0BDA68C051887A792537F0E0E066 /* RCTConvert+CoreLocation.h */,
  1198. 36721D1423C0B28539E02C55FE0A632A /* RCTConvert+CoreLocation.m */,
  1199. A43887C3AC81942AC8529F6DF5400772 /* RCTConvert+Transform.h */,
  1200. 26B93F8A0953C7BFD70CC03989C0F048 /* RCTConvert+Transform.m */,
  1201. 2B1E1F4DE85BFB7876EC1B493044AB1B /* RCTDatePicker.h */,
  1202. 478690E295B06A5C23565ABDF452A9E7 /* RCTDatePicker.m */,
  1203. 17B7CFE3572C70FB6ABA99D2ACFE2C47 /* RCTDatePickerManager.h */,
  1204. 2D257D68E0A825339750B1F4D8D8D314 /* RCTDatePickerManager.m */,
  1205. F13D1809B8EE2D9197EA24C32212133E /* RCTFont.h */,
  1206. 4B4401FD0F49CDC1DAA516D535D10001 /* RCTFont.mm */,
  1207. 5597481A09C92D5B5B46CF293F0EBF09 /* RCTLayout.h */,
  1208. D3DF654FB0B314725C1E57C16A49E6CA /* RCTLayout.m */,
  1209. DA08D7A1847712A20B560B10B03D14D9 /* RCTMaskedView.h */,
  1210. 7804F34D75FEC515AD2BA20FBED2FAB4 /* RCTMaskedView.m */,
  1211. 4AD0BB7F817E6543E53001AEA77ACD30 /* RCTMaskedViewManager.h */,
  1212. 8F5C809791E13E330C25196F1A35A8C7 /* RCTMaskedViewManager.m */,
  1213. 38C8335C86466C0EEE03706B1FE57998 /* RCTModalHostView.h */,
  1214. BA664AA37D5473CE4C27B54FD5B36DDD /* RCTModalHostView.m */,
  1215. 7579E9ADBD1A514F443AE6BA48E3672B /* RCTModalHostViewController.h */,
  1216. 3B767BE627FDFEB2906B492784AB81B8 /* RCTModalHostViewController.m */,
  1217. A70A627D4186B61AD01245C918318508 /* RCTModalHostViewManager.h */,
  1218. 913B30494626AF43749AE23AB387AFA4 /* RCTModalHostViewManager.m */,
  1219. F000FB373950952E9AA3589DC1C69180 /* RCTModalManager.h */,
  1220. 80AF3F41DDB436A3830838E8D5A88A6E /* RCTModalManager.m */,
  1221. A5FA75B9BB312CB872B4D7B26F888975 /* RCTNavigator.h */,
  1222. 8002BD5AC9C1D422A90F424E2AD694A9 /* RCTNavigator.m */,
  1223. BDA0C9A29256650E0507A9F79016ED2D /* RCTNavigatorManager.h */,
  1224. 060D5FD6CC264E5CA22C8D94A5B7D4D4 /* RCTNavigatorManager.m */,
  1225. C48D911B001D072E6A7ED302F33A58F5 /* RCTNavItem.h */,
  1226. C3C329A23E23CC17F4D9F870E3711E04 /* RCTNavItem.m */,
  1227. BD0D7875E58E1012188A66FCA410686C /* RCTNavItemManager.h */,
  1228. C0A60B94887C9179612825E430D34916 /* RCTNavItemManager.m */,
  1229. EBC0EEDD8C68728E64D7C8244EC2C86A /* RCTPicker.h */,
  1230. A7EBB3769F6977A8548B282F3E42A458 /* RCTPicker.m */,
  1231. 27B620C370B7657F4D9EC21FA34319E3 /* RCTPickerManager.h */,
  1232. DC552E431165FED5F80A058561ECB587 /* RCTPickerManager.m */,
  1233. B2D44AA5F3341FD0715F453A4B42B5CD /* RCTPointerEvents.h */,
  1234. C7B5FBBEF9B5305B56C6DCA470B54E64 /* RCTProgressViewManager.h */,
  1235. E21ABC1F6ADFB1FA7B402CC71BA7C164 /* RCTProgressViewManager.m */,
  1236. 9DD35898AD8F1AB2178D89E843CE1DBC /* RCTRefreshControl.h */,
  1237. 4D1AB78A9484240772AC1567C222CC22 /* RCTRefreshControl.m */,
  1238. F4ECF434459C9F4089EEDA554F55658C /* RCTRefreshControlManager.h */,
  1239. DDFF531E2F568DDD24F44662DBA6C31F /* RCTRefreshControlManager.m */,
  1240. C510ADB226098BFAE5F8AA86CD142146 /* RCTRootShadowView.h */,
  1241. 5A81C7DCD6B6E972F6E038EA96054685 /* RCTRootShadowView.m */,
  1242. DD4077825D10034A0F7FC1A0BD028CD7 /* RCTSegmentedControl.h */,
  1243. 446A12EE2B9B91EBABABA16826FD7BD0 /* RCTSegmentedControl.m */,
  1244. 6A86FF65374A795A2724103696472B16 /* RCTSegmentedControlManager.h */,
  1245. BD7948A1C6C79DFD23F15DFB3EC4A027 /* RCTSegmentedControlManager.m */,
  1246. 084146C8D4F228FFBCDA0E5D4E8BE16B /* RCTShadowView.h */,
  1247. 537AB7F717FB45CC8AAEEEEBB2E252A5 /* RCTShadowView.m */,
  1248. C0E96FF5C852E307A98CAE1799A57D28 /* RCTShadowView+Internal.h */,
  1249. 6D69E32DA88E72AF5775D69F580BA536 /* RCTShadowView+Internal.m */,
  1250. 876086374D7B7B4615BF5E1D78C8D6AC /* RCTShadowView+Layout.h */,
  1251. CA1196015D032E8CAB5C4D99535F4686 /* RCTShadowView+Layout.m */,
  1252. 46412583AA4241697200CD6B1F4F48C0 /* RCTSlider.h */,
  1253. 7026BA42886C8EA8AEE9DD33C0968CE1 /* RCTSlider.m */,
  1254. 5BB69377F20CF9A544F18181E26246D5 /* RCTSliderManager.h */,
  1255. 3A11DDAB21290C1EDD8B073803409D39 /* RCTSliderManager.m */,
  1256. 571EE73435EEB01FBA0A255F8A928A8F /* RCTSwitch.h */,
  1257. 33E3DAB010D36082B08B88816D2A1445 /* RCTSwitch.m */,
  1258. 8EC02A82F86E4A68E8B8BFBD955E85F9 /* RCTSwitchManager.h */,
  1259. 354FCB86B79A6C6A8CB9E204D653B484 /* RCTSwitchManager.m */,
  1260. 6FDA9D368D1BCD132D2F3F8F032CFA64 /* RCTTabBar.h */,
  1261. 5819C86FC1DC8D6966A135FD2CF418EB /* RCTTabBar.m */,
  1262. BCAA22EF387E143F4D4DBD690681DFA7 /* RCTTabBarItem.h */,
  1263. DB2A9FDE4AE53FAA6DB8FE7C7BCF8C61 /* RCTTabBarItem.m */,
  1264. 4E3387AD51610AD131D8CBE9E7B14983 /* RCTTabBarItemManager.h */,
  1265. CBF34043556A1B348A1C888D1080B4D7 /* RCTTabBarItemManager.m */,
  1266. F83BBAE23B23B7DF451A9C48989AA822 /* RCTTabBarManager.h */,
  1267. 8D526EC93D916F509C6C1188E66AB807 /* RCTTabBarManager.m */,
  1268. ABA5A60151F0C619926144EBF3724695 /* RCTTextDecorationLineType.h */,
  1269. 8343E6AD794C5A6D60B39C288254BE63 /* RCTView.h */,
  1270. 5F6E233C310519C4F64B04780970EE98 /* RCTView.m */,
  1271. B4AFDA3DCA0D4EDF01C23DCDDAF4BC30 /* RCTViewManager.h */,
  1272. D4EF34CEEB0BFB9F24CAE857C2027697 /* RCTViewManager.m */,
  1273. B363B064932A6A4E273F59039C0C3F66 /* RCTWebView.h */,
  1274. C2541CD3AA7CE1E3727B439440EBB75A /* RCTWebView.m */,
  1275. DBD931BA97CB92A91823854F64FE72FC /* RCTWebViewManager.h */,
  1276. 0963166B1108E15365BDCC06B0E65EB4 /* RCTWebViewManager.m */,
  1277. 53183A5FE0BC8472134D27009C6D52DE /* RCTWrapperViewController.h */,
  1278. 2261A74598556CACD1A8E3A958F3E149 /* RCTWrapperViewController.m */,
  1279. 733D6FE3ADE78A8A33DDBC27385641D6 /* UIView+Private.h */,
  1280. 7F0BEEFBC0A0F45D639F5E4D1CE731D5 /* UIView+React.h */,
  1281. 156B81E87A6414F0914CE027ACF73012 /* UIView+React.m */,
  1282. 89794F2431FF6B8BEC0BC1AE08ABA03D /* SafeAreaView */,
  1283. 43B18CF36309546AFB826EE29A95F4F3 /* ScrollView */,
  1284. );
  1285. name = Views;
  1286. path = React/Views;
  1287. sourceTree = "<group>";
  1288. };
  1289. 3C0E7F013E12DD81DA068B7F2E72DAC5 /* Resources */ = {
  1290. isa = PBXGroup;
  1291. children = (
  1292. C028F17C9B4C3A9F92A9C345ABC48905 /* de.lproj */,
  1293. 23727AFA7DB558F2AE901516F5DF2C97 /* en.lproj */,
  1294. D2CF7F9C9ECCA003EAD9D8B4AF0EBDCD /* es.lproj */,
  1295. 802E950A71C5C949DE95B96DC7F5F434 /* ja.lproj */,
  1296. 84C9B8249B6CDC5D2606A617E94A2DDD /* QBImagePicker.storyboard */,
  1297. 319314FD20C2F54E0FA50B4EBD89E588 /* zh-Hans.lproj */,
  1298. );
  1299. name = Resources;
  1300. sourceTree = "<group>";
  1301. };
  1302. 4119C30E9D1FC25AE0DC82169812E58D /* Text */ = {
  1303. isa = PBXGroup;
  1304. children = (
  1305. DB43990353A32E18EE74A644CBFB662A /* NSTextStorage+FontScaling.h */,
  1306. 7A6A02B4B26016EE9C85322D12B1E503 /* NSTextStorage+FontScaling.m */,
  1307. 5E289BD0E063C7F39251230B08875BB6 /* RCTTextShadowView.h */,
  1308. B6AB085961C9A0483C327AD6A654868D /* RCTTextShadowView.m */,
  1309. E550164C732D1C450FC52ADFC59B7D3C /* RCTTextView.h */,
  1310. DC34D3D46D9CB8F51768B7DF5840FE1A /* RCTTextView.m */,
  1311. CDCBA96CA6C85569655E8DDBADC4488C /* RCTTextViewManager.h */,
  1312. 81D056928657132DD80ABBD302BFD4AC /* RCTTextViewManager.m */,
  1313. );
  1314. name = Text;
  1315. path = Libraries/Text/Text;
  1316. sourceTree = "<group>";
  1317. };
  1318. 43B18CF36309546AFB826EE29A95F4F3 /* ScrollView */ = {
  1319. isa = PBXGroup;
  1320. children = (
  1321. 516809299F6294F29C89A5440C692F5C /* RCTScrollableProtocol.h */,
  1322. F12AEEF8A5B3D0EEE2B1641554C6FE9F /* RCTScrollContentShadowView.h */,
  1323. B082F018D3E3192C1C296DA014650467 /* RCTScrollContentShadowView.m */,
  1324. 351AD25A579D961B93DB23A5E33A78B9 /* RCTScrollContentView.h */,
  1325. 89F05D2D33EC3BDC134932AC52A25BED /* RCTScrollContentView.m */,
  1326. 11AE52812EFC44683F48635E6DDEDFEA /* RCTScrollContentViewManager.h */,
  1327. DA00A7D86ED74708C6A8E242A8FEEF01 /* RCTScrollContentViewManager.m */,
  1328. 0DEE3EF297A4D4F7399C2668352687C7 /* RCTScrollView.h */,
  1329. BAFDFD42B9F0AAD9EE594D7A8BCC066B /* RCTScrollView.m */,
  1330. F23D24B3A8FC9E84EE46994C7A7038C4 /* RCTScrollViewManager.h */,
  1331. 9B263D6FC30AD8F205341BBF17BD3BA7 /* RCTScrollViewManager.m */,
  1332. );
  1333. name = ScrollView;
  1334. path = ScrollView;
  1335. sourceTree = "<group>";
  1336. };
  1337. 46FC456E45E7E5B992558FA381DBB33B /* Pod */ = {
  1338. isa = PBXGroup;
  1339. children = (
  1340. CEB6C938146A6D1E2D379EE411154838 /* yoga.podspec */,
  1341. );
  1342. name = Pod;
  1343. sourceTree = "<group>";
  1344. };
  1345. 476ED9E01EDA114246508C1A69AF4A50 /* RCTImage */ = {
  1346. isa = PBXGroup;
  1347. children = (
  1348. FEDFB1DA5A758FD6A4FF10749E4A417A /* RCTGIFImageDecoder.h */,
  1349. 31A85A70E4C5C21B3B19424D7486F1DA /* RCTGIFImageDecoder.m */,
  1350. 5AFCAF7540FAD59A92905A359B3E063B /* RCTImageBlurUtils.h */,
  1351. D3E1CC902241687FE99A3E1CCD9AF391 /* RCTImageBlurUtils.m */,
  1352. 1A17F72495A3A0CCB52E175E42D5F0EF /* RCTImageCache.h */,
  1353. 37B8699EA175C8803138C490EB21EF9D /* RCTImageCache.m */,
  1354. 1C520E0E7F0735D07BF9104208684B15 /* RCTImageEditingManager.h */,
  1355. 6CC96EB6CD876E57D4DA111BAF02F712 /* RCTImageEditingManager.m */,
  1356. 57E4E1FA958E9033D3E37E0CF04D3DDB /* RCTImageLoader.h */,
  1357. 5B54AA3A9569146EC181682144DE987A /* RCTImageLoader.m */,
  1358. 73455BB9B2084729C95970F7BF8E91A3 /* RCTImageShadowView.h */,
  1359. 4088B0EEEF5201D8D88B13DD26C24D74 /* RCTImageShadowView.m */,
  1360. B4270031DD411BD9BCBAF6543C6A281D /* RCTImageStoreManager.h */,
  1361. 6D064BE400DE68930B3A792699A43343 /* RCTImageStoreManager.m */,
  1362. 1CB844BEBECE083414F91E316093770C /* RCTImageUtils.h */,
  1363. 1E9176B6DA2F98F8D1862A00E8409CB5 /* RCTImageUtils.m */,
  1364. B42F2C5DE78E1FD553A7DF8AE7FD3DE5 /* RCTImageView.h */,
  1365. D5A0C5AC5F564BC508DE5340CE760C5A /* RCTImageView.m */,
  1366. FB1A4C020F869E222A956583E975B9C4 /* RCTImageViewManager.h */,
  1367. 560A1D349B3E37DBCEB240C424143C0B /* RCTImageViewManager.m */,
  1368. F0DA833F9B251D221FC5C2930285DD18 /* RCTLocalAssetImageLoader.h */,
  1369. 09B3C47CD26958315C91ED2680B5D005 /* RCTLocalAssetImageLoader.m */,
  1370. 9B0679AEE308211D30E5F2A3703C9009 /* RCTResizeMode.h */,
  1371. DD1878EC221BE00B40A95724D17E5460 /* RCTResizeMode.m */,
  1372. );
  1373. name = RCTImage;
  1374. sourceTree = "<group>";
  1375. };
  1376. 50B516705FC02FD09BEA43CBB845E21F /* Support Files */ = {
  1377. isa = PBXGroup;
  1378. children = (
  1379. 9C1DB78BEB79259351959944D1680A52 /* QBImagePickerController.xcconfig */,
  1380. 0AE90D612267B391997A03165D275FA6 /* QBImagePickerController-dummy.m */,
  1381. A9D7316E1079E419016E998E0B68A57F /* QBImagePickerController-prefix.pch */,
  1382. E4DCB894AC07E59A67FB76023BE3685B /* ResourceBundle-QBImagePicker-Info.plist */,
  1383. );
  1384. name = "Support Files";
  1385. path = "../Target Support Files/QBImagePickerController";
  1386. sourceTree = "<group>";
  1387. };
  1388. 5CA1BE7C7BE4589C33688A0EA761C477 /* Pod */ = {
  1389. isa = PBXGroup;
  1390. children = (
  1391. 50EE0035FA8B708DAA4EADEA88A52306 /* LICENSE */,
  1392. 15F089FF279177CF03AB2BD15AB741D0 /* README.md */,
  1393. 6D7854FBC0F389DD26B58AAB95C7722D /* RNImageCropPicker.podspec */,
  1394. );
  1395. name = Pod;
  1396. sourceTree = "<group>";
  1397. };
  1398. 6907E229DB7B421D32BD3AF7D2A22371 /* UIUtils */ = {
  1399. isa = PBXGroup;
  1400. children = (
  1401. 061A8B30A8B17BAD95E8AE9C4DA3D1AB /* RCTUIUtils.h */,
  1402. 55557289013981CE04D40E15A1F01A7A /* RCTUIUtils.m */,
  1403. );
  1404. name = UIUtils;
  1405. path = React/UIUtils;
  1406. sourceTree = "<group>";
  1407. };
  1408. 70D9A1024725FDD446AF110CDB8A42E3 /* Support Files */ = {
  1409. isa = PBXGroup;
  1410. children = (
  1411. A4F02F9A4AE35DFBDB35382975959FBE /* RSKImageCropper.xcconfig */,
  1412. 09855C26F77DB3BC73601FA931BD0EED /* RSKImageCropper-dummy.m */,
  1413. FC8CC89248150CB899BC7DDC4EE537DB /* RSKImageCropper-prefix.pch */,
  1414. );
  1415. name = "Support Files";
  1416. path = "../Target Support Files/RSKImageCropper";
  1417. sourceTree = "<group>";
  1418. };
  1419. 7381650FBAF68289682C9BFF2CDF813A /* Singleline */ = {
  1420. isa = PBXGroup;
  1421. children = (
  1422. C9B29EFC561C78FE565077355AB40D36 /* RCTSinglelineTextInputView.h */,
  1423. C41C86290CFB2A00DDA13F44A5C058CE /* RCTSinglelineTextInputView.m */,
  1424. F9073DBA4A20EE47C86D5A2B47A09798 /* RCTSinglelineTextInputViewManager.h */,
  1425. B76EC0616AB13208EAC3C374A72CD988 /* RCTSinglelineTextInputViewManager.m */,
  1426. 9AA8879C1F12429D3B97C38C796BF9C4 /* RCTUITextField.h */,
  1427. EC1C222FE949E9816B8A8CF79C6A86ED /* RCTUITextField.m */,
  1428. );
  1429. name = Singleline;
  1430. path = Singleline;
  1431. sourceTree = "<group>";
  1432. };
  1433. 75C56D80600CAD58BB939B5B37F160A4 /* Support Files */ = {
  1434. isa = PBXGroup;
  1435. children = (
  1436. 45B1DABE586878C969224DE6350ABA1D /* RNImageCropPicker.xcconfig */,
  1437. 3F405C9E2C8221A5D8C92D487C661179 /* RNImageCropPicker-dummy.m */,
  1438. 00CAD9508B127CA719D0FD50227993B4 /* RNImageCropPicker-prefix.pch */,
  1439. );
  1440. name = "Support Files";
  1441. path = "../../ios/Pods/Target Support Files/RNImageCropPicker";
  1442. sourceTree = "<group>";
  1443. };
  1444. 761428B92A49168E3E1B50841CB7C113 /* SurfaceHostingView */ = {
  1445. isa = PBXGroup;
  1446. children = (
  1447. C18A0BF9A8A75BA011DB42A21BF8B1AE /* RCTSurfaceHostingProxyRootView.h */,
  1448. 7199B5EDD737C5DC56D608DE01620143 /* RCTSurfaceHostingProxyRootView.mm */,
  1449. 02B979CD2B38B5A1F8370A867FE88600 /* RCTSurfaceHostingView.h */,
  1450. 41428BDD775F59A8F18BF73FF771C909 /* RCTSurfaceHostingView.mm */,
  1451. FD813760846E9F0F6ADF60B9E7508ED7 /* RCTSurfaceSizeMeasureMode.h */,
  1452. 4BC534504D5C67FF20EB82A53560B752 /* RCTSurfaceSizeMeasureMode.mm */,
  1453. );
  1454. name = SurfaceHostingView;
  1455. path = SurfaceHostingView;
  1456. sourceTree = "<group>";
  1457. };
  1458. 7657E5D3C21A35C7A4B799551D27A46E /* QBImagePickerController */ = {
  1459. isa = PBXGroup;
  1460. children = (
  1461. CDC4556F80B36F9016102E2D021EB034 /* QBAlbumCell.h */,
  1462. 7FFC42B14517790DB9E932B69DDB685F /* QBAlbumCell.m */,
  1463. FA1CACEF8EF9F787794BDFF18CFE3D22 /* QBAlbumsViewController.h */,
  1464. 628013D1CE1672529C2C3AD9A748CBFB /* QBAlbumsViewController.m */,
  1465. F120D29E88B57871955AB98B98DD8F93 /* QBAssetCell.h */,
  1466. 232E0BE7F4AA21903E8A579DE19C2FF7 /* QBAssetCell.m */,
  1467. A687781243E532DA1A0B63F0B9527C92 /* QBAssetsViewController.h */,
  1468. AF59993BD650051F4555F758C7DC51B6 /* QBAssetsViewController.m */,
  1469. 9F30E0B28C8184B57DB114CDFE02FE13 /* QBCheckmarkView.h */,
  1470. 94EF82BFB19183B51ADBA52C8F90DEC0 /* QBCheckmarkView.m */,
  1471. 80B709051D73B905013A6DB0A6139363 /* QBImagePickerController.h */,
  1472. C3EEDBC33777D38A88983ED0491499DB /* QBImagePickerController.m */,
  1473. A346F2E3F6F0B589B5446AD4B2922877 /* QBSlomoIconView.h */,
  1474. DD37859BA28D192861671F73F05C4543 /* QBSlomoIconView.m */,
  1475. 8863C53DD7F74C328FE08DEB71F1E193 /* QBVideoIconView.h */,
  1476. A13BA22ACB3EAB31C6CA043989E332E8 /* QBVideoIconView.m */,
  1477. 4403912A1FDD7949142096E126009B20 /* QBVideoIndicatorView.h */,
  1478. 396FFAB74CC72EE13B25EA02CD63B789 /* QBVideoIndicatorView.m */,
  1479. 3C0E7F013E12DD81DA068B7F2E72DAC5 /* Resources */,
  1480. 50B516705FC02FD09BEA43CBB845E21F /* Support Files */,
  1481. );
  1482. name = QBImagePickerController;
  1483. path = QBImagePickerController;
  1484. sourceTree = "<group>";
  1485. };
  1486. 782E0A8F6B0145A174D95A5803A9FEF7 /* Surface */ = {
  1487. isa = PBXGroup;
  1488. children = (
  1489. E5DE8904C11881385EB0FC1EDB830165 /* RCTSurface.h */,
  1490. 3ADA6D4D116DA616475D70E47BA2FC60 /* RCTSurface.mm */,
  1491. 7D26BE13B3A7E56279B7C780DDFA6BBA /* RCTSurfaceDelegate.h */,
  1492. 0C6C4BFFFFFBCF65A48266042CD1F319 /* RCTSurfaceRootShadowView.h */,
  1493. 5B689BA5ACBB52DBA9D5CC2E54B9CFEA /* RCTSurfaceRootShadowView.m */,
  1494. D2D123935D2A023D0E65EDE1943345FC /* RCTSurfaceRootShadowViewDelegate.h */,
  1495. FE9EDEDB5E63243F3E47ABACFD9C7543 /* RCTSurfaceRootView.h */,
  1496. FEB24662E45DD639DC3B1C743D9DE7F3 /* RCTSurfaceRootView.mm */,
  1497. 2CBD9415A13EE9527056945EE823D64C /* RCTSurfaceStage.h */,
  1498. 79AB4F745E6B5830AC88EE2580F3700A /* RCTSurfaceStage.m */,
  1499. CB93E2BCFB6A7A70079E209CA11CD2CE /* RCTSurfaceView.h */,
  1500. 61A549821A326190FBE64D6A27C3D26B /* RCTSurfaceView.mm */,
  1501. F2C2FD918FEC37029476D02FF6DA0A92 /* RCTSurfaceView+Internal.h */,
  1502. 761428B92A49168E3E1B50841CB7C113 /* SurfaceHostingView */,
  1503. );
  1504. name = Surface;
  1505. path = Surface;
  1506. sourceTree = "<group>";
  1507. };
  1508. 7DB346D0F39D3F0E887471402A8071AB = {
  1509. isa = PBXGroup;
  1510. children = (
  1511. 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
  1512. 94EA4C669448278FA3B84563C6DEDFE1 /* Development Pods */,
  1513. 0F75DF6C7C5F002280EC53F48E80B587 /* Frameworks */,
  1514. EA0EB08173AB3A5DAC3C1737AC388A5D /* Pods */,
  1515. D16A10CEF25EAE459D3C48F02EA41D87 /* Products */,
  1516. 9712177288B6A49E628CD343E07E22CE /* Targets Support Files */,
  1517. );
  1518. sourceTree = "<group>";
  1519. };
  1520. 89794F2431FF6B8BEC0BC1AE08ABA03D /* SafeAreaView */ = {
  1521. isa = PBXGroup;
  1522. children = (
  1523. 5950D5DB97B9C38F708666C67BC7E0E1 /* RCTSafeAreaShadowView.h */,
  1524. 8FE705826A491E6BD632210ABCD0284A /* RCTSafeAreaShadowView.m */,
  1525. A5626A3FF63C2A1F6AA7CD9A4AD0BED5 /* RCTSafeAreaView.h */,
  1526. 1DC6CDDA62BA164B2853F15012B49BB9 /* RCTSafeAreaView.m */,
  1527. FF3969F5C47B6208B2B5040B063D7D69 /* RCTSafeAreaViewLocalData.h */,
  1528. 09BA0DD7F7AC031ABB3849329F297DA9 /* RCTSafeAreaViewLocalData.m */,
  1529. 323EE3DFE16334AE83E5BED3C4CF323C /* RCTSafeAreaViewManager.h */,
  1530. 6826952B02B2AD8BD04DCF68CDA6B302 /* RCTSafeAreaViewManager.m */,
  1531. );
  1532. name = SafeAreaView;
  1533. path = SafeAreaView;
  1534. sourceTree = "<group>";
  1535. };
  1536. 8F2B9611E22BAE31023CE1525BD01D7A /* Pod */ = {
  1537. isa = PBXGroup;
  1538. children = (
  1539. 37FEDCC84B78AA1DB1C7DCB7A9F8A30A /* LICENSE */,
  1540. AA06330FA204DC042171C78AE2464AEC /* React.podspec */,
  1541. A8933B98E8215B0A891A78B8F343B094 /* README.md */,
  1542. );
  1543. name = Pod;
  1544. sourceTree = "<group>";
  1545. };
  1546. 918BFC0E49856F9917E918DBA602DD07 /* RCTAnimation */ = {
  1547. isa = PBXGroup;
  1548. children = (
  1549. BA3944D4BA242DED5E0F76B635A350F9 /* RCTAnimationUtils.h */,
  1550. 19EA396CAD535EFE82932D9B71D83909 /* RCTAnimationUtils.m */,
  1551. EC48D763C99A5FFA48674E82E188638B /* RCTNativeAnimatedModule.h */,
  1552. EE75583B829E95A5B25B607F6523D091 /* RCTNativeAnimatedModule.m */,
  1553. C8E8105D5EF0FD8BB9625A33BB15B983 /* RCTNativeAnimatedNodesManager.h */,
  1554. B8760107985C4D2AAD78C95731933CC0 /* RCTNativeAnimatedNodesManager.m */,
  1555. D6F58D5D17EDCDBB7A446FAC6AF49FDA /* Drivers */,
  1556. A5F2B580144158EC644A915CC585095E /* Nodes */,
  1557. );
  1558. name = RCTAnimation;
  1559. sourceTree = "<group>";
  1560. };
  1561. 94EA4C669448278FA3B84563C6DEDFE1 /* Development Pods */ = {
  1562. isa = PBXGroup;
  1563. children = (
  1564. 9D5EF9EEE6DC5E6F36FAECC85F9D2FD0 /* React */,
  1565. 1FA33F742F1231246E2C72764E93943E /* RNImageCropPicker */,
  1566. AC97DAA0087221BC407DC5129C7902B2 /* yoga */,
  1567. );
  1568. name = "Development Pods";
  1569. sourceTree = "<group>";
  1570. };
  1571. 97115B39552ACFB53F0C1E1FE8FA6EE1 /* RawText */ = {
  1572. isa = PBXGroup;
  1573. children = (
  1574. 98893E81BC040B8A973B3F0CED862BCC /* RCTRawTextShadowView.h */,
  1575. 898DEA65BA5BAD1D7A1DA57267EDEAF9 /* RCTRawTextShadowView.m */,
  1576. BEFF3198268D7A37F6A76FD0FB8EF34A /* RCTRawTextViewManager.h */,
  1577. 0E77887A006E9A36A6BAFA9023A11024 /* RCTRawTextViewManager.m */,
  1578. );
  1579. name = RawText;
  1580. path = Libraries/Text/RawText;
  1581. sourceTree = "<group>";
  1582. };
  1583. 9712177288B6A49E628CD343E07E22CE /* Targets Support Files */ = {
  1584. isa = PBXGroup;
  1585. children = (
  1586. 18EA95A36B96A27354BF51006185005C /* Pods-campus */,
  1587. );
  1588. name = "Targets Support Files";
  1589. sourceTree = "<group>";
  1590. };
  1591. 9BFB598280A60E0C308C165C8C9C93A7 /* RCTLinkingIOS */ = {
  1592. isa = PBXGroup;
  1593. children = (
  1594. BCE57E0A3F98E6839AC9EAF490641079 /* RCTLinkingManager.h */,
  1595. 04B7E8A46C72FE2EB608B7DD615B0403 /* RCTLinkingManager.m */,
  1596. );
  1597. name = RCTLinkingIOS;
  1598. sourceTree = "<group>";
  1599. };
  1600. 9D5AE9765940F64FBBAA15471A84C466 /* VirtualText */ = {
  1601. isa = PBXGroup;
  1602. children = (
  1603. A516CD8C8DAD2D00BC80F6DD4185BD04 /* RCTVirtualTextShadowView.h */,
  1604. 54A06EB01BC179351D286A29BD12DA57 /* RCTVirtualTextShadowView.m */,
  1605. 0D6F58B897600E793A35ACA6AF96FDC3 /* RCTVirtualTextViewManager.h */,
  1606. 74B62B9DCAE940986BCC9E258B561FAB /* RCTVirtualTextViewManager.m */,
  1607. );
  1608. name = VirtualText;
  1609. path = Libraries/Text/VirtualText;
  1610. sourceTree = "<group>";
  1611. };
  1612. 9D5EF9EEE6DC5E6F36FAECC85F9D2FD0 /* React */ = {
  1613. isa = PBXGroup;
  1614. children = (
  1615. D3C17430A4A97D44978492AE1730B549 /* Core */,
  1616. E6CAD89A914C9C6A15DA5CB0C62C5F4F /* fishhook */,
  1617. 8F2B9611E22BAE31023CE1525BD01D7A /* Pod */,
  1618. C5F6520F7B7F43326A0EA72D42D75A16 /* RCTActionSheet */,
  1619. 918BFC0E49856F9917E918DBA602DD07 /* RCTAnimation */,
  1620. E8B7994239219EF90F6731D8AAC1E475 /* RCTBlob */,
  1621. 032E213A4F6FD70E985504D9BD584250 /* RCTGeolocation */,
  1622. 476ED9E01EDA114246508C1A69AF4A50 /* RCTImage */,
  1623. 9BFB598280A60E0C308C165C8C9C93A7 /* RCTLinkingIOS */,
  1624. C21C9F6F0C1AEE46351A38DDC678B610 /* RCTNetwork */,
  1625. C9D611E0C4B134C801212B5D48BA9570 /* RCTSettings */,
  1626. 2747E9AB22C01BBF9B4658748253BEAA /* RCTText */,
  1627. BCE9BDBB0D898C1885ECA1F5E7B1F563 /* RCTVibration */,
  1628. DC1A7F0E9113A326EFC74357B29DAD1D /* RCTWebSocket */,
  1629. DD58C8CEEF0214C532463F81774FC8D0 /* Support Files */,
  1630. );
  1631. name = React;
  1632. path = "../../node_modules/react-native";
  1633. sourceTree = "<group>";
  1634. };
  1635. A2F5B66C068BB985E5B4A3BCE23FD3EA /* Base */ = {
  1636. isa = PBXGroup;
  1637. children = (
  1638. 8C46240649DE02C733ABD9E0D6498ED1 /* RCTAssert.h */,
  1639. 0E08DFBFDEB51F891DE2D971E0CEAEFC /* RCTAssert.m */,
  1640. 32DB1855E86F9CF70032D8E70C74DDCB /* RCTBridge.h */,
  1641. 6857B8017CA04ABC0043E2FC22E76BB8 /* RCTBridge.m */,
  1642. 15303B26F97E16D54EA8B003BB92F6C9 /* RCTBridge+Private.h */,
  1643. 16E5826A2AE8B754C4328EF5F28C1E5E /* RCTBridgeDelegate.h */,
  1644. ED9732ABE5F90361A9976536FE68130E /* RCTBridgeMethod.h */,
  1645. FF2B34DA91ACD8976D5A3414AAC5D6FB /* RCTBridgeModule.h */,
  1646. 52E5C28BF53F0384745D5751851C22B1 /* RCTBundleURLProvider.h */,
  1647. FF3E462AA17CDF50BF988BF89E2CE7AC /* RCTBundleURLProvider.m */,
  1648. 23BC4D7A1D7F4205E8184364BD66F0DF /* RCTConvert.h */,
  1649. 0F026A4C90DCD5E1E04E56F7D7C37B84 /* RCTConvert.m */,
  1650. 8C67278DD52E01F18941D124BDED5A15 /* RCTCxxConvert.h */,
  1651. 2B0D06E4B18C68F9AD168F6DEB98B6DE /* RCTCxxConvert.m */,
  1652. A8C61983FFAB63EB5DB1A409A31B4B52 /* RCTDefines.h */,
  1653. E4E476E21A508E977961BE12256CF18A /* RCTDisplayLink.h */,
  1654. 37020B6C9F43BECB0016343CD435D065 /* RCTDisplayLink.m */,
  1655. 7800C5305964C2BE216D87CD6A67C61A /* RCTErrorCustomizer.h */,
  1656. A37B91CD753C24F4EBDFDDC472FBB366 /* RCTErrorInfo.h */,
  1657. 23447A0E06AD162CBE347B17C18578FC /* RCTErrorInfo.m */,
  1658. DA9A90FA77C96C68A730E93B2EEE0DAA /* RCTEventDispatcher.h */,
  1659. 20BE6DB8F589F94E2A27F908C70CD139 /* RCTEventDispatcher.m */,
  1660. BB5ACC8301ADE46F71FE8E33B37CB6EA /* RCTFrameUpdate.h */,
  1661. 3C3196A64DCFB16734AB6DEDD3EE0E84 /* RCTFrameUpdate.m */,
  1662. 16B7C960A0D447E4ECE58CCB0B5EB98C /* RCTImageSource.h */,
  1663. ED41FB15CF06061F4FE62DC78D74149A /* RCTImageSource.m */,
  1664. 942C80221EA1D78C1B93281728700118 /* RCTInvalidating.h */,
  1665. 7E88F74CFB788A378D8DC44311D94655 /* RCTJavaScriptExecutor.h */,
  1666. 4463CB761EC2E61E32AFD874C00D4D6D /* RCTJavaScriptLoader.h */,
  1667. A56C2E1FCECCC873AB537B784E3B9104 /* RCTJavaScriptLoader.mm */,
  1668. 2699EFD24BB27EC977E05038D6435AB3 /* RCTJSCErrorHandling.h */,
  1669. 65D73E92DA4865FC17567983D8F0D4F2 /* RCTJSCErrorHandling.mm */,
  1670. 44727B3F385B44EB9FE8DC0E4A99FC67 /* RCTJSStackFrame.h */,
  1671. A0ECD8724CF27DAF96B2EB1615A229AC /* RCTJSStackFrame.m */,
  1672. C6F05838A1F47F5CEAC22D2C2B127895 /* RCTKeyCommands.h */,
  1673. 8DE6046DE1E4FCE16E263D82909B6519 /* RCTKeyCommands.m */,
  1674. 009A0410E93B4F4909D74C5D640A10BD /* RCTLog.h */,
  1675. EE998BF4239CB65FDC2FFC3EB20BF165 /* RCTLog.mm */,
  1676. ACD2D05C185F807702DF747A38DC887F /* RCTManagedPointer.h */,
  1677. 2240E065DBDD5EDC56A8DD8796063147 /* RCTManagedPointer.mm */,
  1678. 082DCA10C0FF57CA34EC8D9402035492 /* RCTModuleData.h */,
  1679. E0E982944798F675636517A9ECC80D45 /* RCTModuleData.mm */,
  1680. 3BED229FEA8DE24618B84EC777DEC2A5 /* RCTModuleMethod.h */,
  1681. F0211ECCA0CBDCF71BA835088CDD0371 /* RCTModuleMethod.mm */,
  1682. 15EE28B14E0AF63CEF6513D5A9F1F903 /* RCTMultipartDataTask.h */,
  1683. 31AAC06E6EA15560D224C8E8C343C6DC /* RCTMultipartDataTask.m */,
  1684. 1A4592F33EB26E91F688066E6B7C4926 /* RCTMultipartStreamReader.h */,
  1685. DA1E59CBE3EFE5A1FF9130A7027EC11C /* RCTMultipartStreamReader.m */,
  1686. 52AA9F9EE2E12C94D7A239FF15CF7B73 /* RCTNullability.h */,
  1687. 20872675C4FC3404DE4A8B156757011B /* RCTParserUtils.h */,
  1688. 47914ED552840FE014DA589CC9638882 /* RCTParserUtils.m */,
  1689. B6E8A3B0D9625EC0066DD52D73F89858 /* RCTPerformanceLogger.h */,
  1690. 46F69977E444541C34115F3A40B6B762 /* RCTPerformanceLogger.m */,
  1691. 342915C9975D73BDEBEFF5E86E1D0078 /* RCTPlatform.h */,
  1692. 2BB97E2887CBC333B135EEF85E4064A3 /* RCTPlatform.m */,
  1693. D080124CF601E4F7676F233132CC75B7 /* RCTReloadCommand.h */,
  1694. 7B1116DFCBD67A1B6D128140CEE4DB95 /* RCTReloadCommand.m */,
  1695. DA8DE7D728D3271C1E6E1130B6CB9FC1 /* RCTRootContentView.h */,
  1696. 7E7846F31F788B6F2BADA4EF8245DC3F /* RCTRootContentView.m */,
  1697. 919DF760160520652988AE15CF6F875B /* RCTRootView.h */,
  1698. A548EFCBC070C0E7C49EB6833EC7C4D5 /* RCTRootView.m */,
  1699. 7FF939317A68E4DF513B35E746D60775 /* RCTRootViewDelegate.h */,
  1700. 4249827A3723D86E1007AEA7B66CB1E5 /* RCTRootViewInternal.h */,
  1701. 89FDEA0130F36BA0BAE56A015485D174 /* RCTTouchEvent.h */,
  1702. F7B845D8886670586DB8EDE1F8203BDD /* RCTTouchEvent.m */,
  1703. A68C123A47DE2E753C244DF115937497 /* RCTTouchHandler.h */,
  1704. 07317AE8AFD3501B646AE3357528E7AB /* RCTTouchHandler.m */,
  1705. B332F7734884062604F85DFF248D0B39 /* RCTURLRequestDelegate.h */,
  1706. AA4DF7A6777907C5740051EA9F8B93B9 /* RCTURLRequestHandler.h */,
  1707. CBE43BF7A1AAD8D02BE0FCA20626BBC5 /* RCTUtils.h */,
  1708. 15EF7D16F20A305DCB39251224D1B4A8 /* RCTUtils.m */,
  1709. 6BC5173F58C9F32CBF48C2CEA3158358 /* RCTVersion.h */,
  1710. A4415E176E632D11297D82042235EB7E /* RCTVersion.m */,
  1711. 782E0A8F6B0145A174D95A5803A9FEF7 /* Surface */,
  1712. );
  1713. name = Base;
  1714. path = React/Base;
  1715. sourceTree = "<group>";
  1716. };
  1717. A5F2B580144158EC644A915CC585095E /* Nodes */ = {
  1718. isa = PBXGroup;
  1719. children = (
  1720. E8B0D10833CD8618EF3BEF5F07A7E864 /* RCTAdditionAnimatedNode.h */,
  1721. 0936FE69DB1B93F5ED22F8A0DD6C42D4 /* RCTAdditionAnimatedNode.m */,
  1722. EB65F6FF114841FDB440392485E6004D /* RCTAnimatedNode.h */,
  1723. 5408CAE046D8319CB36F1F35E1BE1749 /* RCTAnimatedNode.m */,
  1724. 09043A2A320380B2C3E35914F7917590 /* RCTDiffClampAnimatedNode.h */,
  1725. 01CE60DBB01A453EEA9A8567FF059C79 /* RCTDiffClampAnimatedNode.m */,
  1726. 090DED66BADB7DDCA2008A4A0C1FD290 /* RCTDivisionAnimatedNode.h */,
  1727. 5014378B64FED6D727EFD96ABF01FB0E /* RCTDivisionAnimatedNode.m */,
  1728. 0E914B21415382808C7D16F9AF5C042E /* RCTInterpolationAnimatedNode.h */,
  1729. 0478941E26C55832414F3B5D4C0F1C69 /* RCTInterpolationAnimatedNode.m */,
  1730. C74A3711E08F9AD711551BA1F4E7F335 /* RCTModuloAnimatedNode.h */,
  1731. B51F98A7236B71F9D9BDD75C6FDE223C /* RCTModuloAnimatedNode.m */,
  1732. E1964C5C7D0E2EF2B08CE11295B50D4A /* RCTMultiplicationAnimatedNode.h */,
  1733. 72DA05505E1F9E7FD6D1016581202B58 /* RCTMultiplicationAnimatedNode.m */,
  1734. 92120B2205D5B70DA7E60B10BD5F123A /* RCTPropsAnimatedNode.h */,
  1735. 272A7E80D1031B24D4B339DF4766DF50 /* RCTPropsAnimatedNode.m */,
  1736. 6E3D3C34E77A9840CC379495027A5204 /* RCTStyleAnimatedNode.h */,
  1737. 879F2966D2EAECCA9BF547B2EC44AFC7 /* RCTStyleAnimatedNode.m */,
  1738. 4F239D0DFAFC7442FE27754515928814 /* RCTTrackingAnimatedNode.h */,
  1739. 6D82D49C70EFEFD8302AB8F372F43264 /* RCTTrackingAnimatedNode.m */,
  1740. ED8639EE24A3182193B0B4F1056B75CE /* RCTTransformAnimatedNode.h */,
  1741. 5241DFE5245094BB5A19085EFD8D084D /* RCTTransformAnimatedNode.m */,
  1742. 1D637BD33481712A7D4F70348445E3DB /* RCTValueAnimatedNode.h */,
  1743. 856147CA65632428D6858F62660F1006 /* RCTValueAnimatedNode.m */,
  1744. );
  1745. name = Nodes;
  1746. path = Libraries/NativeAnimation/Nodes;
  1747. sourceTree = "<group>";
  1748. };
  1749. A8CC8354DB4AB9747CC37A68BA036A86 /* BaseText */ = {
  1750. isa = PBXGroup;
  1751. children = (
  1752. 98E3E97C4BC636FEA661B971C6B74233 /* RCTBaseTextShadowView.h */,
  1753. 36B291F034D894DF186A927E520A4D13 /* RCTBaseTextShadowView.m */,
  1754. C8165EF01069AB66859C1623D8421CBD /* RCTBaseTextViewManager.h */,
  1755. 91903A5C0C3DF48F2F635B7C79CD7FDF /* RCTBaseTextViewManager.m */,
  1756. );
  1757. name = BaseText;
  1758. path = Libraries/Text/BaseText;
  1759. sourceTree = "<group>";
  1760. };
  1761. AAEFA6BAC077A2118FAB995D1F83F304 /* Multiline */ = {
  1762. isa = PBXGroup;
  1763. children = (
  1764. EB5C5C2642920F365C8AAA9F70715DC7 /* RCTMultilineTextInputView.h */,
  1765. 1087DD2BF06703629195D79A025CB907 /* RCTMultilineTextInputView.m */,
  1766. 57A55396EC89B4C6F946EEBD3DEA0779 /* RCTMultilineTextInputViewManager.h */,
  1767. 93D68777257CB2778FC3F986CDC57602 /* RCTMultilineTextInputViewManager.m */,
  1768. 25F2D8BF76E534B04B99623846395833 /* RCTUITextView.h */,
  1769. 10F049F3C8EBFBA22529BF44E5926443 /* RCTUITextView.m */,
  1770. );
  1771. name = Multiline;
  1772. path = Multiline;
  1773. sourceTree = "<group>";
  1774. };
  1775. AC97DAA0087221BC407DC5129C7902B2 /* yoga */ = {
  1776. isa = PBXGroup;
  1777. children = (
  1778. 4EC2755B245D50460BE75E1BEBBF0E80 /* Utils.cpp */,
  1779. 8F792FDC7C0453D363F4EF3A2EBF0500 /* Utils.h */,
  1780. FC29ABEDB7B1AAE7E2CA8BD40B1565A6 /* YGEnums.cpp */,
  1781. 134663A96482BCAFC4185081180FB2D1 /* YGEnums.h */,
  1782. 159DA138B66F865808413F6EAC5B6D14 /* YGLayout.cpp */,
  1783. 29F9BE24CD800B313126E26E1BF0D8D6 /* YGLayout.h */,
  1784. D1AED96B7525EE151D7FC21D86D388AC /* YGMacros.h */,
  1785. AA3EC9663F86203344421F1E2A3E67F1 /* YGNode.cpp */,
  1786. 82DD472B9D6EF0492D48634D54DB0EC5 /* YGNode.h */,
  1787. 59A2B84803990E7333B6E1BC30AD0FC6 /* YGNodePrint.cpp */,
  1788. 2B5FC2F7234CF82C3CAFFE4001E843AE /* YGNodePrint.h */,
  1789. 867417284E92452F249A2959EF63F197 /* YGStyle.cpp */,
  1790. 5CB2F619C00CD45BA9266C37630E9996 /* YGStyle.h */,
  1791. 1D7E55958FBD04AC870B222B02C638D3 /* Yoga.cpp */,
  1792. 7DD35D6F83746B86FBF90B9D681D7466 /* Yoga.h */,
  1793. 6A4C280C29CFDB777807F975160CE65F /* Yoga-internal.h */,
  1794. 46FC456E45E7E5B992558FA381DBB33B /* Pod */,
  1795. DD12DBAC3EBED154CA4D33EA87087561 /* Support Files */,
  1796. );
  1797. name = yoga;
  1798. path = "../../node_modules/react-native/ReactCommon/yoga";
  1799. sourceTree = "<group>";
  1800. };
  1801. BA76C79A4557C08C4BC26A9AB372EFAC /* Profiler */ = {
  1802. isa = PBXGroup;
  1803. children = (
  1804. C6D60DC39CC5E93EC887F4038A8E19E8 /* RCTFPSGraph.h */,
  1805. 2440FC3A40404AE5D3E0712A9982B16C /* RCTFPSGraph.m */,
  1806. 17CB9D72D4309A1D42C7E8409E8C2E82 /* RCTMacros.h */,
  1807. 116B9BB6ACADAA5B79EED4A3ACC85E4C /* RCTPerfMonitor.m */,
  1808. F36DE6F3D5C6418A7C9C7BEEB252E764 /* RCTProfile.h */,
  1809. F904226B79569F74A829FD99A1299BAE /* RCTProfile.m */,
  1810. A252ABD80F4A8A30497FC9BE635237C1 /* RCTProfileTrampoline-arm.S */,
  1811. CD780B0105857C202F72F9C3C907F8F4 /* RCTProfileTrampoline-arm64.S */,
  1812. 9E725BA9392AE02041B9A019F52E159C /* RCTProfileTrampoline-i386.S */,
  1813. B12F93C8C9863D4203A0658A99494C85 /* RCTProfileTrampoline-x86_64.S */,
  1814. );
  1815. name = Profiler;
  1816. path = React/Profiler;
  1817. sourceTree = "<group>";
  1818. };
  1819. BCE9BDBB0D898C1885ECA1F5E7B1F563 /* RCTVibration */ = {
  1820. isa = PBXGroup;
  1821. children = (
  1822. B8A453F7D40BA914E4CA24FDAF46B1FE /* RCTVibration.h */,
  1823. 18A2FAA2D1FB3AA939F340DD71827258 /* RCTVibration.m */,
  1824. );
  1825. name = RCTVibration;
  1826. sourceTree = "<group>";
  1827. };
  1828. C21C9F6F0C1AEE46351A38DDC678B610 /* RCTNetwork */ = {
  1829. isa = PBXGroup;
  1830. children = (
  1831. 8A935DECD301F7ECB1B31C697C568BA4 /* RCTDataRequestHandler.h */,
  1832. 96EA7D10443C3D96CE12A125AA00770E /* RCTDataRequestHandler.m */,
  1833. 04C883F6F85EA21D35288F3EA1EAC9E0 /* RCTFileRequestHandler.h */,
  1834. 9221B1E662C0050AE4D77888A15E4894 /* RCTFileRequestHandler.m */,
  1835. 7D120A7DB2896B3FBDA0A67178F11B13 /* RCTHTTPRequestHandler.h */,
  1836. F935C381782670B2AF816062060D81FB /* RCTHTTPRequestHandler.mm */,
  1837. A46057E7975BDE7D54882AACF2DA5F86 /* RCTNetInfo.h */,
  1838. DAEA2CEE601F6E405203B72F862869C5 /* RCTNetInfo.m */,
  1839. DA04ABE87B80B509E73A94128A331657 /* RCTNetworking.h */,
  1840. 58F93C402111CCE82DBB22C36F105C35 /* RCTNetworking.mm */,
  1841. 7BAC3023ECD3377961E7F25C2B001C91 /* RCTNetworkTask.h */,
  1842. 3F111CB94203D67B0E4BB8706C1C79CE /* RCTNetworkTask.m */,
  1843. );
  1844. name = RCTNetwork;
  1845. sourceTree = "<group>";
  1846. };
  1847. C5F6520F7B7F43326A0EA72D42D75A16 /* RCTActionSheet */ = {
  1848. isa = PBXGroup;
  1849. children = (
  1850. 7BC2CF46E70373C5732C0CBB99E53FA5 /* RCTActionSheetManager.h */,
  1851. F4C003259A45CABF75B91FD9FAAEDD31 /* RCTActionSheetManager.m */,
  1852. );
  1853. name = RCTActionSheet;
  1854. sourceTree = "<group>";
  1855. };
  1856. C9D611E0C4B134C801212B5D48BA9570 /* RCTSettings */ = {
  1857. isa = PBXGroup;
  1858. children = (
  1859. 69532263F8E4D176B6AB4B7A1C3C9B7B /* RCTSettingsManager.h */,
  1860. 6A54D5F9FFF5E29695B03BF03DE30993 /* RCTSettingsManager.m */,
  1861. );
  1862. name = RCTSettings;
  1863. sourceTree = "<group>";
  1864. };
  1865. D16A10CEF25EAE459D3C48F02EA41D87 /* Products */ = {
  1866. isa = PBXGroup;
  1867. children = (
  1868. A5EA349B61B0C8FAC9B9BC611D68C37D /* libAliyunOSSiOS.a */,
  1869. BAB2C202C48CAA74C9835C31D02E3E7B /* libPods-campus.a */,
  1870. D7C74039E8C9F4680D46396023C561E2 /* libQBImagePickerController.a */,
  1871. 059DED4387CD5A8024BE60BA28403108 /* libReact.a */,
  1872. 70D4DB87F1D5A533B23191D5CD2EF5DC /* libRNImageCropPicker.a */,
  1873. C78D4C4BE3CCBB1DEC3ADF14A4D2C76E /* libRSKImageCropper.a */,
  1874. 282563931F8D022039BF1CFBC3A43DBB /* libyoga.a */,
  1875. 12037F1727CE450C932689A24AB4F843 /* QBImagePicker.bundle */,
  1876. );
  1877. name = Products;
  1878. sourceTree = "<group>";
  1879. };
  1880. D3C17430A4A97D44978492AE1730B549 /* Core */ = {
  1881. isa = PBXGroup;
  1882. children = (
  1883. A2F5B66C068BB985E5B4A3BCE23FD3EA /* Base */,
  1884. D8450C600175FC4C3D4708F1CC610F13 /* Fabric */,
  1885. 1B5383D642D36DC2BAB023D8E608DD9D /* Modules */,
  1886. BA76C79A4557C08C4BC26A9AB372EFAC /* Profiler */,
  1887. 6907E229DB7B421D32BD3AF7D2A22371 /* UIUtils */,
  1888. 3ABB7D88FE51EF5071686E8A1CC5C58E /* Views */,
  1889. );
  1890. name = Core;
  1891. sourceTree = "<group>";
  1892. };
  1893. D6F58D5D17EDCDBB7A446FAC6AF49FDA /* Drivers */ = {
  1894. isa = PBXGroup;
  1895. children = (
  1896. E4F7936331BC3ACD6329F576B72F3952 /* RCTAnimationDriver.h */,
  1897. 4C948AE6D294EA92E98DE4A9807E113B /* RCTDecayAnimation.h */,
  1898. 79F31CC1FDEA0A11ADCD09FD603D50BC /* RCTDecayAnimation.m */,
  1899. D4C365F9BB6AD49F512CDE4235F58513 /* RCTEventAnimation.h */,
  1900. 1C35C51010A085FD24DD2192DD7EB3EA /* RCTEventAnimation.m */,
  1901. F9C43C59014449A2E8DFEC96F5344183 /* RCTFrameAnimation.h */,
  1902. AE01C1873E504F07FDA4B215899EFA5B /* RCTFrameAnimation.m */,
  1903. 29E20E6DCD4F70F104F059C6435E10E1 /* RCTSpringAnimation.h */,
  1904. B066F7C16F32F190953C3BE544AF46CA /* RCTSpringAnimation.m */,
  1905. );
  1906. name = Drivers;
  1907. path = Libraries/NativeAnimation/Drivers;
  1908. sourceTree = "<group>";
  1909. };
  1910. D8450C600175FC4C3D4708F1CC610F13 /* Fabric */ = {
  1911. isa = PBXGroup;
  1912. children = (
  1913. B80BEA0AF1E33D2EC5BD7E254B58EEB8 /* RCTFabricPlatformUIOperationManager.h */,
  1914. 3CC079C50D41EDB04DADC7E7A874DB36 /* RCTFabricPlatformUIOperationManager.mm */,
  1915. DC7AFC5AE8677981EB9A1D2F7677120A /* RCTFabricUIManagerWrapper.h */,
  1916. 4CF7790EBF90371838E28C795C7392B8 /* RCTFabricUIManagerWrapper.mm */,
  1917. FFBA971FA97D8C9417B105E06866EDA6 /* Surface */,
  1918. );
  1919. name = Fabric;
  1920. path = React/Fabric;
  1921. sourceTree = "<group>";
  1922. };
  1923. DC1A7F0E9113A326EFC74357B29DAD1D /* RCTWebSocket */ = {
  1924. isa = PBXGroup;
  1925. children = (
  1926. CF8442F35784305ED47C447E2C48E4CA /* RCTReconnectingWebSocket.h */,
  1927. 34B4F3A9117A4C18BAC3D70A8AB3D86D /* RCTReconnectingWebSocket.m */,
  1928. 62B855B393F054CAEC1F27937E5CF5C1 /* RCTSRWebSocket.h */,
  1929. 7CA35E2C2B6B2A41D682A58F6D9C0786 /* RCTSRWebSocket.m */,
  1930. CEB0ED767ECDABE48AFEF36DC34EC186 /* RCTWebSocketExecutor.h */,
  1931. 0DB3FE2D342384AF975FFA669D280ECD /* RCTWebSocketExecutor.m */,
  1932. 5C383ADC81D09B3B13BE80FCBE6E858A /* RCTWebSocketModule.h */,
  1933. 3C57EE26857EFB518727B0875D53566B /* RCTWebSocketModule.m */,
  1934. );
  1935. name = RCTWebSocket;
  1936. sourceTree = "<group>";
  1937. };
  1938. DD12DBAC3EBED154CA4D33EA87087561 /* Support Files */ = {
  1939. isa = PBXGroup;
  1940. children = (
  1941. 8880BD8B3F6582DA06C659AB2DB9F63F /* yoga.xcconfig */,
  1942. B03FC1FB058D59E19D68DDEFB790A6A1 /* yoga-dummy.m */,
  1943. C2835F5DE320094513D127FA02AC9AB8 /* yoga-prefix.pch */,
  1944. );
  1945. name = "Support Files";
  1946. path = "../../../../ios/Pods/Target Support Files/yoga";
  1947. sourceTree = "<group>";
  1948. };
  1949. DD58C8CEEF0214C532463F81774FC8D0 /* Support Files */ = {
  1950. isa = PBXGroup;
  1951. children = (
  1952. 2CA68A9006E3293008E3D627D44309C4 /* React.xcconfig */,
  1953. BA023FD0F5662871629F1CA61BB57FC4 /* React-dummy.m */,
  1954. 583AF5D2D5921A539C3E24565A2ED217 /* React-prefix.pch */,
  1955. );
  1956. name = "Support Files";
  1957. path = "../../ios/Pods/Target Support Files/React";
  1958. sourceTree = "<group>";
  1959. };
  1960. E6CAD89A914C9C6A15DA5CB0C62C5F4F /* fishhook */ = {
  1961. isa = PBXGroup;
  1962. children = (
  1963. 232541DF26989FABA4D20D8C83D0C8B3 /* fishhook.c */,
  1964. 50D693470EED13FEAF1AEEDFD38F1808 /* fishhook.h */,
  1965. );
  1966. name = fishhook;
  1967. sourceTree = "<group>";
  1968. };
  1969. E8B7994239219EF90F6731D8AAC1E475 /* RCTBlob */ = {
  1970. isa = PBXGroup;
  1971. children = (
  1972. 3B751C2A346DAEBFF85FEC09318829E3 /* RCTBlobManager.h */,
  1973. 5FC89C44428F3DA47349728B93F0AC37 /* RCTBlobManager.mm */,
  1974. C2499064E615BFC9B13F6AA4A1ED262A /* RCTFileReaderModule.h */,
  1975. 4174D73964E876673FF5D535AA9F226A /* RCTFileReaderModule.m */,
  1976. );
  1977. name = RCTBlob;
  1978. sourceTree = "<group>";
  1979. };
  1980. E9E5A5FFAD9FACE71159B96F433F80C2 /* iOS */ = {
  1981. isa = PBXGroup;
  1982. children = (
  1983. DDEA1FEFF2B8B43860BB1ECD00FEDAA7 /* CoreTelephony.framework */,
  1984. E6E27057311768F7424AF458FE372739 /* JavaScriptCore.framework */,
  1985. 7360D1EFDF00F062D912679127DC65B8 /* Photos.framework */,
  1986. 9EADC27904C688775D8A39EC4054BBA5 /* QuartzCore.framework */,
  1987. 85D38E475D972A14A26A6DFADDAEA143 /* SystemConfiguration.framework */,
  1988. 7EC06121E71D5112070CB91D90F657CB /* UIKit.framework */,
  1989. );
  1990. name = iOS;
  1991. sourceTree = "<group>";
  1992. };
  1993. EA0EB08173AB3A5DAC3C1737AC388A5D /* Pods */ = {
  1994. isa = PBXGroup;
  1995. children = (
  1996. 1C69B7E26FA01757F18308EE26AC940E /* AliyunOSSiOS */,
  1997. 7657E5D3C21A35C7A4B799551D27A46E /* QBImagePickerController */,
  1998. 1A179D43AB72BCA17367EF55C8E4DA9A /* RSKImageCropper */,
  1999. );
  2000. name = Pods;
  2001. sourceTree = "<group>";
  2002. };
  2003. FFBA971FA97D8C9417B105E06866EDA6 /* Surface */ = {
  2004. isa = PBXGroup;
  2005. children = (
  2006. 44764628DDD6B2AB78537D743786EC0F /* RCTFabricSurface.h */,
  2007. 1CA510033F8F927C2AF57F1B6540A8B9 /* RCTFabricSurface.mm */,
  2008. 6E8164D609B821E4AB968F0FC8384672 /* RCTFabricSurfaceHostingProxyRootView.h */,
  2009. 0B7CBD7775444CAC166684BDC19D811A /* RCTFabricSurfaceHostingProxyRootView.mm */,
  2010. 814BFE517FAD9B8B2D9ED2EB4153D389 /* RCTFabricSurfaceHostingView.h */,
  2011. D68CC1DD7C877575B22C8D958FECF8C4 /* RCTFabricSurfaceHostingView.mm */,
  2012. );
  2013. name = Surface;
  2014. path = Surface;
  2015. sourceTree = "<group>";
  2016. };
  2017. /* End PBXGroup section */
  2018. /* Begin PBXHeadersBuildPhase section */
  2019. 027700D4AE54617C1877AE4CAADD94B5 /* Headers */ = {
  2020. isa = PBXHeadersBuildPhase;
  2021. buildActionMask = 2147483647;
  2022. files = (
  2023. 0643DDB1D9C084040DDD7DDD0726371A /* QBAlbumCell.h in Headers */,
  2024. 1E9596253C9E763258938C5BDE24EDF0 /* QBAlbumsViewController.h in Headers */,
  2025. 5E16358822ECBB02B6A06672C550CFA6 /* QBAssetCell.h in Headers */,
  2026. F7A67A707BB28CB1463DEBC581280A7F /* QBAssetsViewController.h in Headers */,
  2027. C6BAB28AC1EE717BE6EA3670132E1360 /* QBCheckmarkView.h in Headers */,
  2028. 8EA5ED5C1169B8E5F3EA20DAFB83F9A6 /* QBImagePickerController.h in Headers */,
  2029. 2351BF64358FB0B6A738F1DD6F315ADC /* QBSlomoIconView.h in Headers */,
  2030. 4E04F0928441406BE90035480B3A35D4 /* QBVideoIconView.h in Headers */,
  2031. 992E016DF0814A0D40FF438168E8782F /* QBVideoIndicatorView.h in Headers */,
  2032. );
  2033. runOnlyForDeploymentPostprocessing = 0;
  2034. };
  2035. 3BFBAF456C5257E5066E8F187DE9DD2B /* Headers */ = {
  2036. isa = PBXHeadersBuildPhase;
  2037. buildActionMask = 2147483647;
  2038. files = (
  2039. 386BE6016E8DDC0AB63FF8B7611C17C0 /* AliyunOSSiOS.h in Headers */,
  2040. 4DB36C598788ED5B064D71A74B42F0E3 /* aos_crc64.h in Headers */,
  2041. 0A5FEE160055004E22FA7388D92A8B8F /* NSMutableData+OSS_CRC.h in Headers */,
  2042. 74B9FA62B235E2B0ED597542F79C8586 /* OSSAllRequestNeededMessage.h in Headers */,
  2043. A3B46A090F6FD6D10AE5635C9E74536A /* OSSBolts.h in Headers */,
  2044. 9CCC17EAD5A797FE622E02264F37B6EB /* OSSCancellationToken.h in Headers */,
  2045. 6C9AF0F6F4C22F667401E08535CB8C78 /* OSSCancellationTokenRegistration.h in Headers */,
  2046. CE11516E556C1764CD13AF25A3044AB9 /* OSSCancellationTokenSource.h in Headers */,
  2047. 4D40A68BCBFAA13952C04DA6B52DFC8E /* OSSClient.h in Headers */,
  2048. 42E7253D8552BE8330F25728E386B80D /* OSSCocoaLumberjack.h in Headers */,
  2049. 4CEFB7719117B58E2F71CBF4930304D6 /* OSSCompat.h in Headers */,
  2050. 32F8AE23C6B3A531A1CDB69D52AEAC1A /* OSSConstants.h in Headers */,
  2051. DA2203248B29F57C3B29F9E8E55CE673 /* OSSDDLog.h in Headers */,
  2052. B9E4DD5495D283FAF25043DBBAAFE85A /* OSSDefine.h in Headers */,
  2053. 8470FCB4D40915B1AFC26EA51AF44493 /* OSSDeleteMultipleObjectsRequest.h in Headers */,
  2054. BAEE5396BEA886DE9BFC2A5320BF8DA7 /* OSSDeleteMultipleObjectsResult.h in Headers */,
  2055. DD3452E5CFEFD1A52C88A01E7B17D4D9 /* OSSExecutor.h in Headers */,
  2056. A166215F58E177106A6C099F0FB67474 /* OSSFileLogger.h in Headers */,
  2057. 97597EF6EE626FA07A2E9B1277E1E955 /* OSSGetObjectACLRequest.h in Headers */,
  2058. 49546F44C27B144F32A4B7D8DD79D1A6 /* OSSGetObjectACLResult.h in Headers */,
  2059. A899258A6BBC967439455B9EFA3B694A /* OSSHttpdns.h in Headers */,
  2060. 3B8E3321C1F50B9230D67EFD0A82BE63 /* OSSHttpResponseParser.h in Headers */,
  2061. 427BD089085B9F3DBF955B93D7D37A35 /* OSSInputStreamHelper.h in Headers */,
  2062. E12234B9A7AE1FF5DAAE0EBD1CF0C73D /* OSSIPv6Adapter.h in Headers */,
  2063. FA2BD11BF28E93AB80C8C8C8EC93447E /* OSSIPv6PrefixResolver.h in Headers */,
  2064. 104032AFF872D503ED32CB0729374FF0 /* OSSLog.h in Headers */,
  2065. C58CD4E0B42A6952C3BA07F9AFFEBFBC /* OSSLogMacros.h in Headers */,
  2066. B3D4F8F530AEC2B48EB104961F62592C /* OSSModel.h in Headers */,
  2067. 8DFEE697CE75E1D314BA09C6C37BE454 /* OSSNetworking.h in Headers */,
  2068. FF74F954C0939731C90C3AA9BD6FE6DB /* OSSNetworkingRequestDelegate.h in Headers */,
  2069. 3AE319195257E626BD3628F90423FBF9 /* OSSNSLogger.h in Headers */,
  2070. D492A898DEEB47CD74B955A03A361D71 /* OSSReachability.h in Headers */,
  2071. 3F590C94BC12AC5D6373706D4B165934 /* OSSReachabilityManager.h in Headers */,
  2072. 5AC20CE1F5AFB79637001E37928E208C /* OSSRequest.h in Headers */,
  2073. 0BC179ED5646AD0493759FD6698BC897 /* OSSResult.h in Headers */,
  2074. DF5C1ADFE3BE4D9C6FDADC7CCB609B54 /* OSSService.h in Headers */,
  2075. C71B2ED3013D7B2236BC2B389F04B4AB /* OSSTask.h in Headers */,
  2076. BAED4ACCE9175F2124E6476DB020DE28 /* OSSTaskCompletionSource.h in Headers */,
  2077. 0292A74D1EB165C713FD59D2C3497742 /* OSSURLRequestRetryHandler.h in Headers */,
  2078. 27682991E7CB6BAB7829C4F00916A2C9 /* OSSUtil.h in Headers */,
  2079. 77E0EA40853AD003C4990D0866FE19D2 /* OSSXMLDictionary.h in Headers */,
  2080. );
  2081. runOnlyForDeploymentPostprocessing = 0;
  2082. };
  2083. 60041FAA5F9604BDF39968F1F587B197 /* Headers */ = {
  2084. isa = PBXHeadersBuildPhase;
  2085. buildActionMask = 2147483647;
  2086. files = (
  2087. 6793CF7A9B546C2C1CB2EC0116DF58B5 /* Utils.h in Headers */,
  2088. 5C860203595F0B879CFA6D9E2B581881 /* YGEnums.h in Headers */,
  2089. 3ED2002A8729BAD18CD6BA355CD7C459 /* YGLayout.h in Headers */,
  2090. 247F6E480DF74095CB5928A83F92927E /* YGMacros.h in Headers */,
  2091. 49BDA5C5471A791B5237C6C9E31D061F /* YGNode.h in Headers */,
  2092. 97FD5809D5AD53B30EE318EC9463B53F /* YGNodePrint.h in Headers */,
  2093. DF1A8A176DE15B50EFFD8AD6D3BE0510 /* YGStyle.h in Headers */,
  2094. C14596BB842470BB8FFED4C2E4B32CA3 /* Yoga-internal.h in Headers */,
  2095. 55311EAD452D5A88D2810D35CBDD3D07 /* Yoga.h in Headers */,
  2096. );
  2097. runOnlyForDeploymentPostprocessing = 0;
  2098. };
  2099. D54500A9D74D08FE26767D6CB896A873 /* Headers */ = {
  2100. isa = PBXHeadersBuildPhase;
  2101. buildActionMask = 2147483647;
  2102. files = (
  2103. DFDEC739691825F5DEAE6AED6D7F7E7F /* Compression.h in Headers */,
  2104. 8822F5D535CF083D07E17C889F58BBE4 /* ImageCropPicker.h in Headers */,
  2105. 0E6BF3172AB9BDB3AF1D16E79E8A6349 /* UIImage+Resize.h in Headers */,
  2106. );
  2107. runOnlyForDeploymentPostprocessing = 0;
  2108. };
  2109. DB3DED500D4129C0675E898B979AD342 /* Headers */ = {
  2110. isa = PBXHeadersBuildPhase;
  2111. buildActionMask = 2147483647;
  2112. files = (
  2113. 3664372C22E39881351D4665A6968FC3 /* CGGeometry+RSKImageCropper.h in Headers */,
  2114. E2F4CE7CFAFD0602FBB829C895C6FC72 /* RSKImageCropper.h in Headers */,
  2115. 9530A3297661EA656EB281C7C2689B33 /* RSKImageCropViewController+Protected.h in Headers */,
  2116. E6BBC4420A278524992091E3FB67AEF1 /* RSKImageCropViewController.h in Headers */,
  2117. B5C30831E9AA762079ADADFCA1B5ADAD /* RSKImageScrollView.h in Headers */,
  2118. F4D2ED406DFCBFC554A7B61BC7741DF5 /* RSKInternalUtility.h in Headers */,
  2119. 83DE3E31083020AE6D994B9A97479D3C /* RSKTouchView.h in Headers */,
  2120. C1C3940848ED3A0B2BE221AF089AD9EA /* UIApplication+RSKImageCropper.h in Headers */,
  2121. 20CB01154A3945B5508EABD459B42C74 /* UIImage+RSKImageCropper.h in Headers */,
  2122. );
  2123. runOnlyForDeploymentPostprocessing = 0;
  2124. };
  2125. /* End PBXHeadersBuildPhase section */
  2126. /* Begin PBXNativeTarget section */
  2127. 04FB5733F36AF6A2BCC9EB1D159743FE /* Pods-campus */ = {
  2128. isa = PBXNativeTarget;
  2129. buildConfigurationList = 9F797183252895E4702D99F02D0AF01C /* Build configuration list for PBXNativeTarget "Pods-campus" */;
  2130. buildPhases = (
  2131. 3402A6F90EF960850C3EE0B085B9812A /* Sources */,
  2132. 6651CCC0E65C9A86A08E9E5C37980E63 /* Frameworks */,
  2133. );
  2134. buildRules = (
  2135. );
  2136. dependencies = (
  2137. 3EFAB5928C33032A3E240AF6D5DF2A73 /* PBXTargetDependency */,
  2138. 014E609403593206ECDE1D539BBD34EB /* PBXTargetDependency */,
  2139. C4E15A65532F9AA91E24A8803B376014 /* PBXTargetDependency */,
  2140. 08B3C050EAFC33E850D3B3D0CF04D6AE /* PBXTargetDependency */,
  2141. 2A00ED2FF6A5161A7E1B946244F2E713 /* PBXTargetDependency */,
  2142. 53DA802315D9D29D78A57F52887B38E7 /* PBXTargetDependency */,
  2143. );
  2144. name = "Pods-campus";
  2145. productName = "Pods-campus";
  2146. productReference = BAB2C202C48CAA74C9835C31D02E3E7B /* libPods-campus.a */;
  2147. productType = "com.apple.product-type.library.static";
  2148. };
  2149. 081A1D49B111AACC2E0AC579D38D7B50 /* QBImagePickerController-QBImagePicker */ = {
  2150. isa = PBXNativeTarget;
  2151. buildConfigurationList = FA3D23829B3D67DB72FB131972C4223E /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */;
  2152. buildPhases = (
  2153. C4F7872AD8F47302B5CE4822AEAB00CE /* Sources */,
  2154. E2E40406D390352568243363DB461D05 /* Frameworks */,
  2155. F1EB56C6A168C58A8F8BD631C070B8D3 /* Resources */,
  2156. );
  2157. buildRules = (
  2158. );
  2159. dependencies = (
  2160. );
  2161. name = "QBImagePickerController-QBImagePicker";
  2162. productName = "QBImagePickerController-QBImagePicker";
  2163. productReference = 12037F1727CE450C932689A24AB4F843 /* QBImagePicker.bundle */;
  2164. productType = "com.apple.product-type.bundle";
  2165. };
  2166. 7389EF10935159BBFCA6974078C10763 /* RSKImageCropper */ = {
  2167. isa = PBXNativeTarget;
  2168. buildConfigurationList = 629181BC2567EA33078523D8B3D36610 /* Build configuration list for PBXNativeTarget "RSKImageCropper" */;
  2169. buildPhases = (
  2170. 986501F1BEB2AC789D35FB548FC50ED8 /* Sources */,
  2171. 52426A9FF7C3E4C3AA9128B2BB49881F /* Frameworks */,
  2172. DB3DED500D4129C0675E898B979AD342 /* Headers */,
  2173. );
  2174. buildRules = (
  2175. );
  2176. dependencies = (
  2177. );
  2178. name = RSKImageCropper;
  2179. productName = RSKImageCropper;
  2180. productReference = C78D4C4BE3CCBB1DEC3ADF14A4D2C76E /* libRSKImageCropper.a */;
  2181. productType = "com.apple.product-type.library.static";
  2182. };
  2183. 810A10C33065D8A85939E6D90BCAA7AD /* yoga */ = {
  2184. isa = PBXNativeTarget;
  2185. buildConfigurationList = ED60169CC25E98B4A1D9474815DBD47F /* Build configuration list for PBXNativeTarget "yoga" */;
  2186. buildPhases = (
  2187. 5DA8C8E6BF376BDAE1985E8AD5FAABEA /* Sources */,
  2188. 88A90B4AA3F1C08EF20B38F38EE81FE4 /* Frameworks */,
  2189. 60041FAA5F9604BDF39968F1F587B197 /* Headers */,
  2190. );
  2191. buildRules = (
  2192. );
  2193. dependencies = (
  2194. );
  2195. name = yoga;
  2196. productName = yoga;
  2197. productReference = 282563931F8D022039BF1CFBC3A43DBB /* libyoga.a */;
  2198. productType = "com.apple.product-type.library.static";
  2199. };
  2200. 9D5E7ED1EE6A039C6C45B9FF332D743B /* QBImagePickerController */ = {
  2201. isa = PBXNativeTarget;
  2202. buildConfigurationList = EE4F263749702EB47FEC45DB6354A292 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */;
  2203. buildPhases = (
  2204. 82C5EE4506854D2F9768E1F5581A63C9 /* Sources */,
  2205. DE90E0827C903153A3CA675E82E73030 /* Frameworks */,
  2206. 027700D4AE54617C1877AE4CAADD94B5 /* Headers */,
  2207. );
  2208. buildRules = (
  2209. );
  2210. dependencies = (
  2211. BE7D1545ED224435A2059A9A26C309CF /* PBXTargetDependency */,
  2212. );
  2213. name = QBImagePickerController;
  2214. productName = QBImagePickerController;
  2215. productReference = D7C74039E8C9F4680D46396023C561E2 /* libQBImagePickerController.a */;
  2216. productType = "com.apple.product-type.library.static";
  2217. };
  2218. B07E186489297BE11C1C3D7F88843167 /* AliyunOSSiOS */ = {
  2219. isa = PBXNativeTarget;
  2220. buildConfigurationList = 820DB0C28E49D56245F3A25337ECF018 /* Build configuration list for PBXNativeTarget "AliyunOSSiOS" */;
  2221. buildPhases = (
  2222. 7C9260B4F0C9509BA3790BBF0719E79A /* Sources */,
  2223. B4BDF733595C6A79F173DEC8DF885738 /* Frameworks */,
  2224. 3BFBAF456C5257E5066E8F187DE9DD2B /* Headers */,
  2225. );
  2226. buildRules = (
  2227. );
  2228. dependencies = (
  2229. );
  2230. name = AliyunOSSiOS;
  2231. productName = AliyunOSSiOS;
  2232. productReference = A5EA349B61B0C8FAC9B9BC611D68C37D /* libAliyunOSSiOS.a */;
  2233. productType = "com.apple.product-type.library.static";
  2234. };
  2235. EB57261C2CC2C315D06BF3274B5DEEEF /* RNImageCropPicker */ = {
  2236. isa = PBXNativeTarget;
  2237. buildConfigurationList = E8A19F288FB61E1A6C6048170575D5FA /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */;
  2238. buildPhases = (
  2239. A10D58096A3C1366F9BEAEB33C0A6F81 /* Sources */,
  2240. A7C9947A807E506FA91E3E15FC7C0BCE /* Frameworks */,
  2241. D54500A9D74D08FE26767D6CB896A873 /* Headers */,
  2242. );
  2243. buildRules = (
  2244. );
  2245. dependencies = (
  2246. 9B193348572ADF9472B6509AAAC4A126 /* PBXTargetDependency */,
  2247. 910B2FA0E3AC7268D5ECE025A6E00C9C /* PBXTargetDependency */,
  2248. 2D1B6FEE4754E79BA0240F8A2197AA4F /* PBXTargetDependency */,
  2249. 0D24C978380B6D61BB9E26962562F325 /* PBXTargetDependency */,
  2250. );
  2251. name = RNImageCropPicker;
  2252. productName = RNImageCropPicker;
  2253. productReference = 70D4DB87F1D5A533B23191D5CD2EF5DC /* libRNImageCropPicker.a */;
  2254. productType = "com.apple.product-type.library.static";
  2255. };
  2256. /* End PBXNativeTarget section */
  2257. /* Begin PBXProject section */
  2258. D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
  2259. isa = PBXProject;
  2260. attributes = {
  2261. LastSwiftUpdateCheck = 0930;
  2262. LastUpgradeCheck = 0930;
  2263. };
  2264. buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
  2265. compatibilityVersion = "Xcode 3.2";
  2266. developmentRegion = English;
  2267. hasScannedForEncodings = 0;
  2268. knownRegions = (
  2269. en,
  2270. );
  2271. mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
  2272. productRefGroup = D16A10CEF25EAE459D3C48F02EA41D87 /* Products */;
  2273. projectDirPath = "";
  2274. projectRoot = "";
  2275. targets = (
  2276. B07E186489297BE11C1C3D7F88843167 /* AliyunOSSiOS */,
  2277. 04FB5733F36AF6A2BCC9EB1D159743FE /* Pods-campus */,
  2278. 9D5E7ED1EE6A039C6C45B9FF332D743B /* QBImagePickerController */,
  2279. 081A1D49B111AACC2E0AC579D38D7B50 /* QBImagePickerController-QBImagePicker */,
  2280. EB57261C2CC2C315D06BF3274B5DEEEF /* RNImageCropPicker */,
  2281. 7389EF10935159BBFCA6974078C10763 /* RSKImageCropper */,
  2282. 810A10C33065D8A85939E6D90BCAA7AD /* yoga */,
  2283. );
  2284. };
  2285. /* End PBXProject section */
  2286. /* Begin PBXResourcesBuildPhase section */
  2287. F1EB56C6A168C58A8F8BD631C070B8D3 /* Resources */ = {
  2288. isa = PBXResourcesBuildPhase;
  2289. buildActionMask = 2147483647;
  2290. files = (
  2291. 139ED8CA4046C6FB0483C6BAF58BB623 /* de.lproj in Resources */,
  2292. BDE827789ABA8DF79C42DCAFEB77A719 /* en.lproj in Resources */,
  2293. A1C615A6CB41369F38888CF1010FED58 /* es.lproj in Resources */,
  2294. 397045986E56C244C3602EAC8060D894 /* ja.lproj in Resources */,
  2295. 779E90F8D82C385DA474EE0FCEF5E816 /* QBImagePicker.storyboard in Resources */,
  2296. 77157697273EFEBFB46ABF95BD39908E /* zh-Hans.lproj in Resources */,
  2297. );
  2298. runOnlyForDeploymentPostprocessing = 0;
  2299. };
  2300. /* End PBXResourcesBuildPhase section */
  2301. /* Begin PBXSourcesBuildPhase section */
  2302. 3402A6F90EF960850C3EE0B085B9812A /* Sources */ = {
  2303. isa = PBXSourcesBuildPhase;
  2304. buildActionMask = 2147483647;
  2305. files = (
  2306. BEF25194C491E8FEF027DA888EB52813 /* Pods-campus-dummy.m in Sources */,
  2307. );
  2308. runOnlyForDeploymentPostprocessing = 0;
  2309. };
  2310. 5DA8C8E6BF376BDAE1985E8AD5FAABEA /* Sources */ = {
  2311. isa = PBXSourcesBuildPhase;
  2312. buildActionMask = 2147483647;
  2313. files = (
  2314. 5B67F6E8A9D3F9E15AEA86C6FB50AE8C /* Utils.cpp in Sources */,
  2315. F917BC175DF5F07C61D1C65694C9ED62 /* YGEnums.cpp in Sources */,
  2316. 76D7CE0382D1E32DBA23517500500B19 /* YGLayout.cpp in Sources */,
  2317. 996C162E38BFC119562606DE70E57A69 /* YGNode.cpp in Sources */,
  2318. 7943D54963E61D7AC19F6FC3E80B394E /* YGNodePrint.cpp in Sources */,
  2319. BF9149CDC27E5DA986A038A350D589C7 /* YGStyle.cpp in Sources */,
  2320. FF4218DE25546156249A95EC63A62D09 /* yoga-dummy.m in Sources */,
  2321. 5A13FF688D3BAB49ACE72B9B0AD6964E /* Yoga.cpp in Sources */,
  2322. );
  2323. runOnlyForDeploymentPostprocessing = 0;
  2324. };
  2325. 7C9260B4F0C9509BA3790BBF0719E79A /* Sources */ = {
  2326. isa = PBXSourcesBuildPhase;
  2327. buildActionMask = 2147483647;
  2328. files = (
  2329. 2471ED20B9153392AE20562DFF1CFA85 /* AliyunOSSiOS-dummy.m in Sources */,
  2330. D135311CA3EB9469DE0C5AF3E9DCFF06 /* aos_crc64.c in Sources */,
  2331. EF54FA419F42C0BF30DF43F66FE061A8 /* NSMutableData+OSS_CRC.m in Sources */,
  2332. 329432914F62CE1D8A4C160650AA25DE /* OSSAllRequestNeededMessage.m in Sources */,
  2333. F73A6C6D494294870BE9B949D53952A2 /* OSSBolts.m in Sources */,
  2334. 025874B8F87886E7A8AFB256A03D3B70 /* OSSCancellationToken.m in Sources */,
  2335. 4AE35D9620618AB1D886F63C471AF816 /* OSSCancellationTokenRegistration.m in Sources */,
  2336. 69DEA25AB38CF12C44BAA8A71B0FBFB0 /* OSSCancellationTokenSource.m in Sources */,
  2337. DE22F985134D54D518AC0AB6E810159C /* OSSClient.m in Sources */,
  2338. 65FADCD255A52D62E8B816AA11839FC4 /* OSSCompat.m in Sources */,
  2339. 2CFBEB5A5F84F3276C25036D1D299D09 /* OSSConstants.m in Sources */,
  2340. AA4A3AEEE570D627E2130CFD4899DA04 /* OSSDDLog.m in Sources */,
  2341. B52D890F0A58B4540DE9096D578DC4E7 /* OSSDeleteMultipleObjectsRequest.m in Sources */,
  2342. 2E396B0C3A83820564776D69BE434306 /* OSSDeleteMultipleObjectsResult.m in Sources */,
  2343. E9DEE4EE90D092B8EA39C16E3288294C /* OSSExecutor.m in Sources */,
  2344. 01D50BCCFC4462B1B4DD43DAA76203CE /* OSSFileLogger.m in Sources */,
  2345. B24238F7533B95DAC288231061188058 /* OSSGetObjectACLRequest.m in Sources */,
  2346. 89A5648A82EFB2F275794CEA5340C66B /* OSSGetObjectACLResult.m in Sources */,
  2347. 4F4C6D235741499D1974AE832196EDF3 /* OSSHttpdns.m in Sources */,
  2348. B8FD5B454E7AD84C72BE91B93A9C2BBA /* OSSHttpResponseParser.m in Sources */,
  2349. A1BC0220DD779DACAD2E2355494BE26F /* OSSInputStreamHelper.m in Sources */,
  2350. B8C860016782328FDF405D3F59BF51D7 /* OSSIPv6Adapter.m in Sources */,
  2351. DDC4020E8E7468EC553C10E2271B1468 /* OSSIPv6PrefixResolver.m in Sources */,
  2352. 0C3BDFD757E9B2E05E81C88E1A236254 /* OSSLog.m in Sources */,
  2353. FFD456DC43F6749B29BF6F58BCE87300 /* OSSModel.m in Sources */,
  2354. 6915D98E08A1F855209AF5556DAB16A2 /* OSSNetworking.m in Sources */,
  2355. BCD27827E2932746CF4DED035577F561 /* OSSNetworkingRequestDelegate.m in Sources */,
  2356. E2F4687DF33D0463980465B84DEE55B8 /* OSSNSLogger.m in Sources */,
  2357. 546B015344D9994F7C07E5C5AA795004 /* OSSReachability.m in Sources */,
  2358. 1E82C901BBEC8943ED051BC39D749B3E /* OSSReachabilityManager.m in Sources */,
  2359. EFF1863D5A6F5C1DFE204A7A276DE10A /* OSSRequest.m in Sources */,
  2360. 00B5CF1B3E38A8C6C6F59BA23E5B35E3 /* OSSResult.m in Sources */,
  2361. CB55B0C21888BC0A4B4AEED221D4F81E /* OSSTask.m in Sources */,
  2362. 3ECC46B8C37146FCC7F2870F39C4173B /* OSSTaskCompletionSource.m in Sources */,
  2363. E43CE15BBEAD9338647F0A77E06C0FCF /* OSSURLRequestRetryHandler.m in Sources */,
  2364. AA2BCFC5AF22E001377D8907AA9258D6 /* OSSUtil.m in Sources */,
  2365. 56A3968C8B7A696F223DEDC00E5D733C /* OSSXMLDictionary.m in Sources */,
  2366. );
  2367. runOnlyForDeploymentPostprocessing = 0;
  2368. };
  2369. 82C5EE4506854D2F9768E1F5581A63C9 /* Sources */ = {
  2370. isa = PBXSourcesBuildPhase;
  2371. buildActionMask = 2147483647;
  2372. files = (
  2373. 45A268C68C567F0DFDF78F45E8C239B5 /* QBAlbumCell.m in Sources */,
  2374. 56E16D049E36465C6C2EE93AE61772FD /* QBAlbumsViewController.m in Sources */,
  2375. 8C81743F49E6CF7454D9DB2323C3F20E /* QBAssetCell.m in Sources */,
  2376. 8B442F95BF59656B7CC3F00BAA3528FA /* QBAssetsViewController.m in Sources */,
  2377. 887DF3A24F23B056115D91091186934B /* QBCheckmarkView.m in Sources */,
  2378. 861D2E8803D70E27105A4C9652B291A5 /* QBImagePickerController-dummy.m in Sources */,
  2379. A6CBD9451D1864FC92F6C2A872DB5D86 /* QBImagePickerController.m in Sources */,
  2380. C2672B03E6033344BC13C61E6FEF50F1 /* QBSlomoIconView.m in Sources */,
  2381. 2CA78E96B9A45C301BE07D1CA0E700D7 /* QBVideoIconView.m in Sources */,
  2382. D0BC9CFCE05B22706CF08B46DF918BE9 /* QBVideoIndicatorView.m in Sources */,
  2383. );
  2384. runOnlyForDeploymentPostprocessing = 0;
  2385. };
  2386. 986501F1BEB2AC789D35FB548FC50ED8 /* Sources */ = {
  2387. isa = PBXSourcesBuildPhase;
  2388. buildActionMask = 2147483647;
  2389. files = (
  2390. 7B38FF1CF4479FE02C4F7AC11380C7F1 /* CGGeometry+RSKImageCropper.m in Sources */,
  2391. 437413838B2995CEA31EE38024004F89 /* RSKImageCropper-dummy.m in Sources */,
  2392. 986C2EABEFC1C5D787D6BB6577250EA8 /* RSKImageCropViewController.m in Sources */,
  2393. 5286465E41A228BE43F1248E92FB4D6F /* RSKImageScrollView.m in Sources */,
  2394. 6ACBF424EADF8E761E0A2189C89D9182 /* RSKInternalUtility.m in Sources */,
  2395. A639612C4C6C386B7FF8ACFCA380A4BE /* RSKTouchView.m in Sources */,
  2396. 7BEE8B1382F47F22069DAE1A6B765A48 /* UIApplication+RSKImageCropper.m in Sources */,
  2397. 56A0CB18F8F28104C3AD70160447937A /* UIImage+RSKImageCropper.m in Sources */,
  2398. );
  2399. runOnlyForDeploymentPostprocessing = 0;
  2400. };
  2401. A10D58096A3C1366F9BEAEB33C0A6F81 /* Sources */ = {
  2402. isa = PBXSourcesBuildPhase;
  2403. buildActionMask = 2147483647;
  2404. files = (
  2405. 051A12A2F92A1DA659B73EDC68E3A527 /* Compression.m in Sources */,
  2406. C8D4BC222F2443279195AD57275B07A3 /* ImageCropPicker.m in Sources */,
  2407. 3F922819CF8E1DE3E08BD028515C876F /* RNImageCropPicker-dummy.m in Sources */,
  2408. B918EEB7D94791FB7E9B5CBB4F5E8B58 /* UIImage+Resize.m in Sources */,
  2409. );
  2410. runOnlyForDeploymentPostprocessing = 0;
  2411. };
  2412. C4F7872AD8F47302B5CE4822AEAB00CE /* Sources */ = {
  2413. isa = PBXSourcesBuildPhase;
  2414. buildActionMask = 2147483647;
  2415. files = (
  2416. );
  2417. runOnlyForDeploymentPostprocessing = 0;
  2418. };
  2419. /* End PBXSourcesBuildPhase section */
  2420. /* Begin PBXTargetDependency section */
  2421. 014E609403593206ECDE1D539BBD34EB /* PBXTargetDependency */ = {
  2422. isa = PBXTargetDependency;
  2423. name = QBImagePickerController;
  2424. target = 9D5E7ED1EE6A039C6C45B9FF332D743B /* QBImagePickerController */;
  2425. targetProxy = C60A78EA35D25B77D948AE6A6B7129DF /* PBXContainerItemProxy */;
  2426. };
  2427. 08B3C050EAFC33E850D3B3D0CF04D6AE /* PBXTargetDependency */ = {
  2428. isa = PBXTargetDependency;
  2429. name = RSKImageCropper;
  2430. target = 7389EF10935159BBFCA6974078C10763 /* RSKImageCropper */;
  2431. targetProxy = 8C0BFE98E2426C23C6E47DBEAFDF964E /* PBXContainerItemProxy */;
  2432. };
  2433. 0D24C978380B6D61BB9E26962562F325 /* PBXTargetDependency */ = {
  2434. isa = PBXTargetDependency;
  2435. name = yoga;
  2436. target = 810A10C33065D8A85939E6D90BCAA7AD /* yoga */;
  2437. targetProxy = B2D022011CE28509D1E41C55A4EC8D3B /* PBXContainerItemProxy */;
  2438. };
  2439. 2A00ED2FF6A5161A7E1B946244F2E713 /* PBXTargetDependency */ = {
  2440. isa = PBXTargetDependency;
  2441. name = React;
  2442. targetProxy = BE88B4E92772303B0DCAFBB53FE83517 /* PBXContainerItemProxy */;
  2443. };
  2444. 2D1B6FEE4754E79BA0240F8A2197AA4F /* PBXTargetDependency */ = {
  2445. isa = PBXTargetDependency;
  2446. name = React;
  2447. targetProxy = 180C8CBD30D8BF0E25538EE6BD4A0E70 /* PBXContainerItemProxy */;
  2448. };
  2449. 3EFAB5928C33032A3E240AF6D5DF2A73 /* PBXTargetDependency */ = {
  2450. isa = PBXTargetDependency;
  2451. name = AliyunOSSiOS;
  2452. target = B07E186489297BE11C1C3D7F88843167 /* AliyunOSSiOS */;
  2453. targetProxy = 70B514BDD1364A940D68A5F618D1BC56 /* PBXContainerItemProxy */;
  2454. };
  2455. 53DA802315D9D29D78A57F52887B38E7 /* PBXTargetDependency */ = {
  2456. isa = PBXTargetDependency;
  2457. name = yoga;
  2458. target = 810A10C33065D8A85939E6D90BCAA7AD /* yoga */;
  2459. targetProxy = 774345B46A57D47AD8302C21EAF416C2 /* PBXContainerItemProxy */;
  2460. };
  2461. 910B2FA0E3AC7268D5ECE025A6E00C9C /* PBXTargetDependency */ = {
  2462. isa = PBXTargetDependency;
  2463. name = RSKImageCropper;
  2464. target = 7389EF10935159BBFCA6974078C10763 /* RSKImageCropper */;
  2465. targetProxy = 7E6847F3D8C9D5FC2A5FB6898B3BDABF /* PBXContainerItemProxy */;
  2466. };
  2467. 9B193348572ADF9472B6509AAAC4A126 /* PBXTargetDependency */ = {
  2468. isa = PBXTargetDependency;
  2469. name = QBImagePickerController;
  2470. target = 9D5E7ED1EE6A039C6C45B9FF332D743B /* QBImagePickerController */;
  2471. targetProxy = D1F1007E2B6B6C660157E84F9D5EC231 /* PBXContainerItemProxy */;
  2472. };
  2473. BE7D1545ED224435A2059A9A26C309CF /* PBXTargetDependency */ = {
  2474. isa = PBXTargetDependency;
  2475. name = "QBImagePickerController-QBImagePicker";
  2476. target = 081A1D49B111AACC2E0AC579D38D7B50 /* QBImagePickerController-QBImagePicker */;
  2477. targetProxy = D0FB8C13CF9E739AFA6D4E1C98235746 /* PBXContainerItemProxy */;
  2478. };
  2479. C4E15A65532F9AA91E24A8803B376014 /* PBXTargetDependency */ = {
  2480. isa = PBXTargetDependency;
  2481. name = RNImageCropPicker;
  2482. target = EB57261C2CC2C315D06BF3274B5DEEEF /* RNImageCropPicker */;
  2483. targetProxy = 17CD363B6B4AEAFE51E718689A29A745 /* PBXContainerItemProxy */;
  2484. };
  2485. /* End PBXTargetDependency section */
  2486. /* Begin XCBuildConfiguration section */
  2487. 025FF8F5E8C9DC63DF72619745120B83 /* Debug */ = {
  2488. isa = XCBuildConfiguration;
  2489. baseConfigurationReference = A4F02F9A4AE35DFBDB35382975959FBE /* RSKImageCropper.xcconfig */;
  2490. buildSettings = {
  2491. CODE_SIGN_IDENTITY = "iPhone Developer";
  2492. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2493. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2494. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2495. GCC_PREFIX_HEADER = "Target Support Files/RSKImageCropper/RSKImageCropper-prefix.pch";
  2496. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2497. OTHER_LDFLAGS = "";
  2498. OTHER_LIBTOOLFLAGS = "";
  2499. PRIVATE_HEADERS_FOLDER_PATH = "";
  2500. PRODUCT_MODULE_NAME = RSKImageCropper;
  2501. PRODUCT_NAME = RSKImageCropper;
  2502. PUBLIC_HEADERS_FOLDER_PATH = "";
  2503. SDKROOT = iphoneos;
  2504. SKIP_INSTALL = YES;
  2505. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2506. TARGETED_DEVICE_FAMILY = "1,2";
  2507. };
  2508. name = Debug;
  2509. };
  2510. 0C6E9BB057B8722987693A14DF2F38B4 /* Release */ = {
  2511. isa = XCBuildConfiguration;
  2512. baseConfigurationReference = 8880BD8B3F6582DA06C659AB2DB9F63F /* yoga.xcconfig */;
  2513. buildSettings = {
  2514. CODE_SIGN_IDENTITY = "iPhone Developer";
  2515. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2516. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2517. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2518. GCC_PREFIX_HEADER = "Target Support Files/yoga/yoga-prefix.pch";
  2519. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2520. OTHER_LDFLAGS = "";
  2521. OTHER_LIBTOOLFLAGS = "";
  2522. PRIVATE_HEADERS_FOLDER_PATH = "";
  2523. PRODUCT_MODULE_NAME = yoga;
  2524. PRODUCT_NAME = yoga;
  2525. PUBLIC_HEADERS_FOLDER_PATH = "";
  2526. SDKROOT = iphoneos;
  2527. SKIP_INSTALL = YES;
  2528. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2529. TARGETED_DEVICE_FAMILY = "1,2";
  2530. VALIDATE_PRODUCT = YES;
  2531. };
  2532. name = Release;
  2533. };
  2534. 0DB1690D450D3D7D59C5542517C41526 /* Release */ = {
  2535. isa = XCBuildConfiguration;
  2536. baseConfigurationReference = 45B1DABE586878C969224DE6350ABA1D /* RNImageCropPicker.xcconfig */;
  2537. buildSettings = {
  2538. CODE_SIGN_IDENTITY = "iPhone Developer";
  2539. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2540. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2541. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2542. GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch";
  2543. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2544. OTHER_LDFLAGS = "";
  2545. OTHER_LIBTOOLFLAGS = "";
  2546. PRIVATE_HEADERS_FOLDER_PATH = "";
  2547. PRODUCT_MODULE_NAME = RNImageCropPicker;
  2548. PRODUCT_NAME = RNImageCropPicker;
  2549. PUBLIC_HEADERS_FOLDER_PATH = "";
  2550. SDKROOT = iphoneos;
  2551. SKIP_INSTALL = YES;
  2552. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2553. TARGETED_DEVICE_FAMILY = "1,2";
  2554. VALIDATE_PRODUCT = YES;
  2555. };
  2556. name = Release;
  2557. };
  2558. 1EE19F5DD95931924296F637BF18BD8F /* Debug */ = {
  2559. isa = XCBuildConfiguration;
  2560. buildSettings = {
  2561. ALWAYS_SEARCH_USER_PATHS = NO;
  2562. CLANG_ANALYZER_NONNULL = YES;
  2563. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2564. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2565. CLANG_CXX_LIBRARY = "libc++";
  2566. CLANG_ENABLE_MODULES = YES;
  2567. CLANG_ENABLE_OBJC_ARC = YES;
  2568. CLANG_ENABLE_OBJC_WEAK = YES;
  2569. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2570. CLANG_WARN_BOOL_CONVERSION = YES;
  2571. CLANG_WARN_COMMA = YES;
  2572. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2573. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2574. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2575. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2576. CLANG_WARN_EMPTY_BODY = YES;
  2577. CLANG_WARN_ENUM_CONVERSION = YES;
  2578. CLANG_WARN_INFINITE_RECURSION = YES;
  2579. CLANG_WARN_INT_CONVERSION = YES;
  2580. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2581. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2582. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2583. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2584. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2585. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2586. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2587. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2588. CLANG_WARN_UNREACHABLE_CODE = YES;
  2589. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2590. CODE_SIGNING_ALLOWED = NO;
  2591. CODE_SIGNING_REQUIRED = NO;
  2592. COPY_PHASE_STRIP = NO;
  2593. DEBUG_INFORMATION_FORMAT = dwarf;
  2594. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2595. ENABLE_TESTABILITY = YES;
  2596. GCC_C_LANGUAGE_STANDARD = gnu11;
  2597. GCC_DYNAMIC_NO_PIC = NO;
  2598. GCC_NO_COMMON_BLOCKS = YES;
  2599. GCC_OPTIMIZATION_LEVEL = 0;
  2600. GCC_PREPROCESSOR_DEFINITIONS = (
  2601. "POD_CONFIGURATION_DEBUG=1",
  2602. "DEBUG=1",
  2603. "$(inherited)",
  2604. );
  2605. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2606. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2607. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2608. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2609. GCC_WARN_UNUSED_FUNCTION = YES;
  2610. GCC_WARN_UNUSED_VARIABLE = YES;
  2611. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2612. MTL_ENABLE_DEBUG_INFO = YES;
  2613. ONLY_ACTIVE_ARCH = YES;
  2614. PRODUCT_NAME = "$(TARGET_NAME)";
  2615. STRIP_INSTALLED_PRODUCT = NO;
  2616. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  2617. SYMROOT = "${SRCROOT}/../build";
  2618. };
  2619. name = Debug;
  2620. };
  2621. 32772733EC1147AA217DE9B399213F11 /* Debug */ = {
  2622. isa = XCBuildConfiguration;
  2623. baseConfigurationReference = 8880BD8B3F6582DA06C659AB2DB9F63F /* yoga.xcconfig */;
  2624. buildSettings = {
  2625. CODE_SIGN_IDENTITY = "iPhone Developer";
  2626. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2627. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2628. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2629. GCC_PREFIX_HEADER = "Target Support Files/yoga/yoga-prefix.pch";
  2630. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2631. OTHER_LDFLAGS = "";
  2632. OTHER_LIBTOOLFLAGS = "";
  2633. PRIVATE_HEADERS_FOLDER_PATH = "";
  2634. PRODUCT_MODULE_NAME = yoga;
  2635. PRODUCT_NAME = yoga;
  2636. PUBLIC_HEADERS_FOLDER_PATH = "";
  2637. SDKROOT = iphoneos;
  2638. SKIP_INSTALL = YES;
  2639. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2640. TARGETED_DEVICE_FAMILY = "1,2";
  2641. };
  2642. name = Debug;
  2643. };
  2644. 35F8ECA1DD5E756C1C97E3AFE5C0C333 /* Debug */ = {
  2645. isa = XCBuildConfiguration;
  2646. baseConfigurationReference = 9C1DB78BEB79259351959944D1680A52 /* QBImagePickerController.xcconfig */;
  2647. buildSettings = {
  2648. CODE_SIGN_IDENTITY = "iPhone Developer";
  2649. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController";
  2650. INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-Info.plist";
  2651. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2652. PRODUCT_NAME = QBImagePicker;
  2653. SDKROOT = iphoneos;
  2654. SKIP_INSTALL = YES;
  2655. TARGETED_DEVICE_FAMILY = "1,2";
  2656. WRAPPER_EXTENSION = bundle;
  2657. };
  2658. name = Debug;
  2659. };
  2660. 5078EB7B8A9D9A290F94CFA768E0D5FC /* Release */ = {
  2661. isa = XCBuildConfiguration;
  2662. baseConfigurationReference = A4F02F9A4AE35DFBDB35382975959FBE /* RSKImageCropper.xcconfig */;
  2663. buildSettings = {
  2664. CODE_SIGN_IDENTITY = "iPhone Developer";
  2665. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2666. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2667. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2668. GCC_PREFIX_HEADER = "Target Support Files/RSKImageCropper/RSKImageCropper-prefix.pch";
  2669. IPHONEOS_DEPLOYMENT_TARGET = 6.0;
  2670. OTHER_LDFLAGS = "";
  2671. OTHER_LIBTOOLFLAGS = "";
  2672. PRIVATE_HEADERS_FOLDER_PATH = "";
  2673. PRODUCT_MODULE_NAME = RSKImageCropper;
  2674. PRODUCT_NAME = RSKImageCropper;
  2675. PUBLIC_HEADERS_FOLDER_PATH = "";
  2676. SDKROOT = iphoneos;
  2677. SKIP_INSTALL = YES;
  2678. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2679. TARGETED_DEVICE_FAMILY = "1,2";
  2680. VALIDATE_PRODUCT = YES;
  2681. };
  2682. name = Release;
  2683. };
  2684. 86737A1447223A5FF322FA8F30A00110 /* Debug */ = {
  2685. isa = XCBuildConfiguration;
  2686. baseConfigurationReference = 9C1DB78BEB79259351959944D1680A52 /* QBImagePickerController.xcconfig */;
  2687. buildSettings = {
  2688. CODE_SIGN_IDENTITY = "iPhone Developer";
  2689. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2690. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2691. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2692. GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch";
  2693. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2694. OTHER_LDFLAGS = "";
  2695. OTHER_LIBTOOLFLAGS = "";
  2696. PRIVATE_HEADERS_FOLDER_PATH = "";
  2697. PRODUCT_MODULE_NAME = QBImagePickerController;
  2698. PRODUCT_NAME = QBImagePickerController;
  2699. PUBLIC_HEADERS_FOLDER_PATH = "";
  2700. SDKROOT = iphoneos;
  2701. SKIP_INSTALL = YES;
  2702. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2703. TARGETED_DEVICE_FAMILY = "1,2";
  2704. };
  2705. name = Debug;
  2706. };
  2707. B130CBC81B83304B3D152E7E97F4AB60 /* Release */ = {
  2708. isa = XCBuildConfiguration;
  2709. baseConfigurationReference = 9C1DB78BEB79259351959944D1680A52 /* QBImagePickerController.xcconfig */;
  2710. buildSettings = {
  2711. CODE_SIGN_IDENTITY = "iPhone Developer";
  2712. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2713. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2714. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2715. GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch";
  2716. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2717. OTHER_LDFLAGS = "";
  2718. OTHER_LIBTOOLFLAGS = "";
  2719. PRIVATE_HEADERS_FOLDER_PATH = "";
  2720. PRODUCT_MODULE_NAME = QBImagePickerController;
  2721. PRODUCT_NAME = QBImagePickerController;
  2722. PUBLIC_HEADERS_FOLDER_PATH = "";
  2723. SDKROOT = iphoneos;
  2724. SKIP_INSTALL = YES;
  2725. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2726. TARGETED_DEVICE_FAMILY = "1,2";
  2727. VALIDATE_PRODUCT = YES;
  2728. };
  2729. name = Release;
  2730. };
  2731. B99D6CCA7769DD11E5D9E98EB4554DDB /* Debug */ = {
  2732. isa = XCBuildConfiguration;
  2733. baseConfigurationReference = 9D89C4377C66F4DBDF377BE9535A8AED /* Pods-campus.debug.xcconfig */;
  2734. buildSettings = {
  2735. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2736. CODE_SIGN_IDENTITY = "iPhone Developer";
  2737. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2738. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2739. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2740. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2741. MACH_O_TYPE = staticlib;
  2742. OTHER_LDFLAGS = "";
  2743. OTHER_LIBTOOLFLAGS = "";
  2744. PODS_ROOT = "$(SRCROOT)";
  2745. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  2746. SDKROOT = iphoneos;
  2747. SKIP_INSTALL = YES;
  2748. TARGETED_DEVICE_FAMILY = "1,2";
  2749. };
  2750. name = Debug;
  2751. };
  2752. B9DB23343F5679EAF3091B40C1C23AB5 /* Release */ = {
  2753. isa = XCBuildConfiguration;
  2754. baseConfigurationReference = B3AE2E58E89D4C380F99BA73D891A878 /* Pods-campus.release.xcconfig */;
  2755. buildSettings = {
  2756. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
  2757. CODE_SIGN_IDENTITY = "iPhone Developer";
  2758. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2759. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2760. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2761. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2762. MACH_O_TYPE = staticlib;
  2763. OTHER_LDFLAGS = "";
  2764. OTHER_LIBTOOLFLAGS = "";
  2765. PODS_ROOT = "$(SRCROOT)";
  2766. PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
  2767. SDKROOT = iphoneos;
  2768. SKIP_INSTALL = YES;
  2769. TARGETED_DEVICE_FAMILY = "1,2";
  2770. VALIDATE_PRODUCT = YES;
  2771. };
  2772. name = Release;
  2773. };
  2774. C3CE766C6E5BD16F8D906446FEDA17B2 /* Debug */ = {
  2775. isa = XCBuildConfiguration;
  2776. baseConfigurationReference = 4509AD2FFE3EDB8D61A81017F90E5D8D /* AliyunOSSiOS.xcconfig */;
  2777. buildSettings = {
  2778. CODE_SIGN_IDENTITY = "iPhone Developer";
  2779. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2780. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2781. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2782. GCC_PREFIX_HEADER = "Target Support Files/AliyunOSSiOS/AliyunOSSiOS-prefix.pch";
  2783. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2784. OTHER_LDFLAGS = "";
  2785. OTHER_LIBTOOLFLAGS = "";
  2786. PRIVATE_HEADERS_FOLDER_PATH = "";
  2787. PRODUCT_MODULE_NAME = AliyunOSSiOS;
  2788. PRODUCT_NAME = AliyunOSSiOS;
  2789. PUBLIC_HEADERS_FOLDER_PATH = "";
  2790. SDKROOT = iphoneos;
  2791. SKIP_INSTALL = YES;
  2792. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2793. TARGETED_DEVICE_FAMILY = "1,2";
  2794. };
  2795. name = Debug;
  2796. };
  2797. CA2071913CC8E90A15E37D94374C0281 /* Debug */ = {
  2798. isa = XCBuildConfiguration;
  2799. baseConfigurationReference = 45B1DABE586878C969224DE6350ABA1D /* RNImageCropPicker.xcconfig */;
  2800. buildSettings = {
  2801. CODE_SIGN_IDENTITY = "iPhone Developer";
  2802. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2803. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2804. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2805. GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch";
  2806. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2807. OTHER_LDFLAGS = "";
  2808. OTHER_LIBTOOLFLAGS = "";
  2809. PRIVATE_HEADERS_FOLDER_PATH = "";
  2810. PRODUCT_MODULE_NAME = RNImageCropPicker;
  2811. PRODUCT_NAME = RNImageCropPicker;
  2812. PUBLIC_HEADERS_FOLDER_PATH = "";
  2813. SDKROOT = iphoneos;
  2814. SKIP_INSTALL = YES;
  2815. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2816. TARGETED_DEVICE_FAMILY = "1,2";
  2817. };
  2818. name = Debug;
  2819. };
  2820. DA310EAFA285490697610D326C63D0BD /* Release */ = {
  2821. isa = XCBuildConfiguration;
  2822. baseConfigurationReference = 4509AD2FFE3EDB8D61A81017F90E5D8D /* AliyunOSSiOS.xcconfig */;
  2823. buildSettings = {
  2824. CODE_SIGN_IDENTITY = "iPhone Developer";
  2825. "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
  2826. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
  2827. "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
  2828. GCC_PREFIX_HEADER = "Target Support Files/AliyunOSSiOS/AliyunOSSiOS-prefix.pch";
  2829. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2830. OTHER_LDFLAGS = "";
  2831. OTHER_LIBTOOLFLAGS = "";
  2832. PRIVATE_HEADERS_FOLDER_PATH = "";
  2833. PRODUCT_MODULE_NAME = AliyunOSSiOS;
  2834. PRODUCT_NAME = AliyunOSSiOS;
  2835. PUBLIC_HEADERS_FOLDER_PATH = "";
  2836. SDKROOT = iphoneos;
  2837. SKIP_INSTALL = YES;
  2838. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
  2839. TARGETED_DEVICE_FAMILY = "1,2";
  2840. VALIDATE_PRODUCT = YES;
  2841. };
  2842. name = Release;
  2843. };
  2844. F4568DEE257655D290C2B9CEAB37C934 /* Release */ = {
  2845. isa = XCBuildConfiguration;
  2846. buildSettings = {
  2847. ALWAYS_SEARCH_USER_PATHS = NO;
  2848. CLANG_ANALYZER_NONNULL = YES;
  2849. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2850. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2851. CLANG_CXX_LIBRARY = "libc++";
  2852. CLANG_ENABLE_MODULES = YES;
  2853. CLANG_ENABLE_OBJC_ARC = YES;
  2854. CLANG_ENABLE_OBJC_WEAK = YES;
  2855. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2856. CLANG_WARN_BOOL_CONVERSION = YES;
  2857. CLANG_WARN_COMMA = YES;
  2858. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2859. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2860. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2861. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2862. CLANG_WARN_EMPTY_BODY = YES;
  2863. CLANG_WARN_ENUM_CONVERSION = YES;
  2864. CLANG_WARN_INFINITE_RECURSION = YES;
  2865. CLANG_WARN_INT_CONVERSION = YES;
  2866. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2867. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2868. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2869. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2870. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2871. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2872. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2873. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2874. CLANG_WARN_UNREACHABLE_CODE = YES;
  2875. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2876. CODE_SIGNING_ALLOWED = NO;
  2877. CODE_SIGNING_REQUIRED = NO;
  2878. COPY_PHASE_STRIP = NO;
  2879. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2880. ENABLE_NS_ASSERTIONS = NO;
  2881. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2882. GCC_C_LANGUAGE_STANDARD = gnu11;
  2883. GCC_NO_COMMON_BLOCKS = YES;
  2884. GCC_PREPROCESSOR_DEFINITIONS = (
  2885. "POD_CONFIGURATION_RELEASE=1",
  2886. "$(inherited)",
  2887. );
  2888. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2889. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2890. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2891. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2892. GCC_WARN_UNUSED_FUNCTION = YES;
  2893. GCC_WARN_UNUSED_VARIABLE = YES;
  2894. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2895. MTL_ENABLE_DEBUG_INFO = NO;
  2896. PRODUCT_NAME = "$(TARGET_NAME)";
  2897. STRIP_INSTALLED_PRODUCT = NO;
  2898. SYMROOT = "${SRCROOT}/../build";
  2899. };
  2900. name = Release;
  2901. };
  2902. F4E3D6CD32980D530F132D2F430C54FA /* Release */ = {
  2903. isa = XCBuildConfiguration;
  2904. baseConfigurationReference = 9C1DB78BEB79259351959944D1680A52 /* QBImagePickerController.xcconfig */;
  2905. buildSettings = {
  2906. CODE_SIGN_IDENTITY = "iPhone Developer";
  2907. CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController";
  2908. INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-Info.plist";
  2909. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2910. PRODUCT_NAME = QBImagePicker;
  2911. SDKROOT = iphoneos;
  2912. SKIP_INSTALL = YES;
  2913. TARGETED_DEVICE_FAMILY = "1,2";
  2914. WRAPPER_EXTENSION = bundle;
  2915. };
  2916. name = Release;
  2917. };
  2918. /* End XCBuildConfiguration section */
  2919. /* Begin XCConfigurationList section */
  2920. 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = {
  2921. isa = XCConfigurationList;
  2922. buildConfigurations = (
  2923. 1EE19F5DD95931924296F637BF18BD8F /* Debug */,
  2924. F4568DEE257655D290C2B9CEAB37C934 /* Release */,
  2925. );
  2926. defaultConfigurationIsVisible = 0;
  2927. defaultConfigurationName = Release;
  2928. };
  2929. 629181BC2567EA33078523D8B3D36610 /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = {
  2930. isa = XCConfigurationList;
  2931. buildConfigurations = (
  2932. 025FF8F5E8C9DC63DF72619745120B83 /* Debug */,
  2933. 5078EB7B8A9D9A290F94CFA768E0D5FC /* Release */,
  2934. );
  2935. defaultConfigurationIsVisible = 0;
  2936. defaultConfigurationName = Release;
  2937. };
  2938. 820DB0C28E49D56245F3A25337ECF018 /* Build configuration list for PBXNativeTarget "AliyunOSSiOS" */ = {
  2939. isa = XCConfigurationList;
  2940. buildConfigurations = (
  2941. C3CE766C6E5BD16F8D906446FEDA17B2 /* Debug */,
  2942. DA310EAFA285490697610D326C63D0BD /* Release */,
  2943. );
  2944. defaultConfigurationIsVisible = 0;
  2945. defaultConfigurationName = Release;
  2946. };
  2947. 9F797183252895E4702D99F02D0AF01C /* Build configuration list for PBXNativeTarget "Pods-campus" */ = {
  2948. isa = XCConfigurationList;
  2949. buildConfigurations = (
  2950. B99D6CCA7769DD11E5D9E98EB4554DDB /* Debug */,
  2951. B9DB23343F5679EAF3091B40C1C23AB5 /* Release */,
  2952. );
  2953. defaultConfigurationIsVisible = 0;
  2954. defaultConfigurationName = Release;
  2955. };
  2956. E8A19F288FB61E1A6C6048170575D5FA /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = {
  2957. isa = XCConfigurationList;
  2958. buildConfigurations = (
  2959. CA2071913CC8E90A15E37D94374C0281 /* Debug */,
  2960. 0DB1690D450D3D7D59C5542517C41526 /* Release */,
  2961. );
  2962. defaultConfigurationIsVisible = 0;
  2963. defaultConfigurationName = Release;
  2964. };
  2965. ED60169CC25E98B4A1D9474815DBD47F /* Build configuration list for PBXNativeTarget "yoga" */ = {
  2966. isa = XCConfigurationList;
  2967. buildConfigurations = (
  2968. 32772733EC1147AA217DE9B399213F11 /* Debug */,
  2969. 0C6E9BB057B8722987693A14DF2F38B4 /* Release */,
  2970. );
  2971. defaultConfigurationIsVisible = 0;
  2972. defaultConfigurationName = Release;
  2973. };
  2974. EE4F263749702EB47FEC45DB6354A292 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = {
  2975. isa = XCConfigurationList;
  2976. buildConfigurations = (
  2977. 86737A1447223A5FF322FA8F30A00110 /* Debug */,
  2978. B130CBC81B83304B3D152E7E97F4AB60 /* Release */,
  2979. );
  2980. defaultConfigurationIsVisible = 0;
  2981. defaultConfigurationName = Release;
  2982. };
  2983. FA3D23829B3D67DB72FB131972C4223E /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = {
  2984. isa = XCConfigurationList;
  2985. buildConfigurations = (
  2986. 35F8ECA1DD5E756C1C97E3AFE5C0C333 /* Debug */,
  2987. F4E3D6CD32980D530F132D2F430C54FA /* Release */,
  2988. );
  2989. defaultConfigurationIsVisible = 0;
  2990. defaultConfigurationName = Release;
  2991. };
  2992. /* End XCConfigurationList section */
  2993. };
  2994. rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
  2995. }