project.pbxproj 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 50;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 0A110C4CD931995B8E8BF7C5 /* Pods_RainbowPlanet.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D469F6C3768252BCB7001EDD /* Pods_RainbowPlanet.framework */; };
  10. A72843FC224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72843FB224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift */; };
  11. A7284401224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284400224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift */; };
  12. A7284404224DBFBD00F82F30 /* LoginModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284403224DBFBD00F82F30 /* LoginModel.swift */; };
  13. A7284440224DFACD00F82F30 /* InfoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A728443F224DFACD00F82F30 /* InfoModel.swift */; };
  14. A7284A522252EE9A000BAEC4 /* RootModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A512252EE9A000BAEC4 /* RootModel.swift */; };
  15. A7284A542252FB5C000BAEC4 /* PaginationModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7284A532252FB5C000BAEC4 /* PaginationModel.swift */; };
  16. A72A726722321DBD00B21995 /* LocationModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A726322321DBD00B21995 /* LocationModel.swift */; };
  17. A72A726822321DBD00B21995 /* UMManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A726522321DBD00B21995 /* UMManager.swift */; };
  18. A72A72A222321DE000B21995 /* LBXScanNetAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A726A22321DDE00B21995 /* LBXScanNetAnimation.swift */; };
  19. A72A72A322321DE000B21995 /* LBXScanView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A726B22321DDE00B21995 /* LBXScanView.swift */; };
  20. A72A72A422321DE000B21995 /* LBXScanViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A726C22321DDE00B21995 /* LBXScanViewController.swift */; };
  21. A72A72A522321DE000B21995 /* LBXScanLineAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A726D22321DDE00B21995 /* LBXScanLineAnimation.swift */; };
  22. A72A72A622321DE000B21995 /* LBXScanViewStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A726E22321DDE00B21995 /* LBXScanViewStyle.swift */; };
  23. A72A72A722321DE000B21995 /* LBXPermissions.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A726F22321DDE00B21995 /* LBXPermissions.swift */; };
  24. A72A72A822321DE000B21995 /* LBXScanWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727022321DDE00B21995 /* LBXScanWrapper.swift */; };
  25. A72A72A922321DE000B21995 /* NumberKeyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727222321DDE00B21995 /* NumberKeyboard.swift */; };
  26. A72A72AA22321DE000B21995 /* Log.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727422321DDE00B21995 /* Log.swift */; };
  27. A72A72AB22321DE000B21995 /* SwiftProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727622321DDE00B21995 /* SwiftProgressHUD.swift */; };
  28. A72A72AC22321DE000B21995 /* Regex.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727822321DDF00B21995 /* Regex.swift */; };
  29. A72A72AE22321DE000B21995 /* CountdownButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727C22321DDF00B21995 /* CountdownButton.swift */; };
  30. A72A72AF22321DE000B21995 /* AppInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A727E22321DDF00B21995 /* AppInfo.swift */; };
  31. A72A72B022321DE000B21995 /* CGView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728022321DDF00B21995 /* CGView.swift */; };
  32. A72A72B122321DE000B21995 /* UIScrollView+MJRefreshEX.m in Sources */ = {isa = PBXBuildFile; fileRef = A72A728222321DDF00B21995 /* UIScrollView+MJRefreshEX.m */; };
  33. A72A72B422321DE000B21995 /* Extension+UIImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728C22321DE000B21995 /* Extension+UIImage.swift */; };
  34. A72A72B522321DE000B21995 /* Extension+UITextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728D22321DE000B21995 /* Extension+UITextView.swift */; };
  35. A72A72B622321DE000B21995 /* Extension+NSRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728E22321DE000B21995 /* Extension+NSRange.swift */; };
  36. A72A72B722321DE000B21995 /* Extension+NSMutableAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A728F22321DE000B21995 /* Extension+NSMutableAttributedString.swift */; };
  37. A72A72B822321DE000B21995 /* Extension+UserDefaults.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729022321DE000B21995 /* Extension+UserDefaults.swift */; };
  38. A72A72B922321DE000B21995 /* Extension+Array.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729122321DE000B21995 /* Extension+Array.swift */; };
  39. A72A72BA22321DE000B21995 /* Extension+String.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729222321DE000B21995 /* Extension+String.swift */; };
  40. A72A72BB22321DE000B21995 /* Extension+UILabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729322321DE000B21995 /* Extension+UILabel.swift */; };
  41. A72A72BC22321DE000B21995 /* Extension+UIAlertController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729422321DE000B21995 /* Extension+UIAlertController.swift */; };
  42. A72A72BD22321DE000B21995 /* Extension+UIColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729722321DE000B21995 /* Extension+UIColor.swift */; };
  43. A72A72BE22321DE000B21995 /* Extension+RxTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729822321DE000B21995 /* Extension+RxTimer.swift */; };
  44. A72A72BF22321DE000B21995 /* Extension+UIButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729922321DE000B21995 /* Extension+UIButton.swift */; };
  45. A72A72C022321DE000B21995 /* Extension+UIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729A22321DE000B21995 /* Extension+UIView.swift */; };
  46. A72A72C322321DE000B21995 /* Extension+Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729D22321DE000B21995 /* Extension+Date.swift */; };
  47. A72A72C422321DE000B21995 /* Extension+CAGradientLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A729E22321DE000B21995 /* Extension+CAGradientLayer.swift */; };
  48. A72A72C522321DE000B21995 /* WKWebViewConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72A022321DE000B21995 /* WKWebViewConfig.swift */; };
  49. A72A72C622321DE000B21995 /* WebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72A122321DE000B21995 /* WebView.swift */; };
  50. A72A72CF22321E2700B21995 /* NotificationCenterMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72C722321E2500B21995 /* NotificationCenterMacro.swift */; };
  51. A72A72D022321E2700B21995 /* FontMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72C822321E2500B21995 /* FontMacro.swift */; };
  52. A72A72D122321E2700B21995 /* HTMLURLMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72C922321E2600B21995 /* HTMLURLMacro.swift */; };
  53. A72A72D222321E2700B21995 /* Common.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CA22321E2600B21995 /* Common.swift */; };
  54. A72A72D322321E2700B21995 /* CacheMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CB22321E2600B21995 /* CacheMacro.swift */; };
  55. A72A72D422321E2700B21995 /* EnumMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CC22321E2600B21995 /* EnumMacro.swift */; };
  56. A72A72D522321E2700B21995 /* ColorMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CD22321E2600B21995 /* ColorMacro.swift */; };
  57. A72A72D622321E2700B21995 /* ThirdPartyMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A72CE22321E2700B21995 /* ThirdPartyMacro.swift */; };
  58. A72A72F022321E8800B21995 /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72EF22321E8800B21995 /* CoreMotion.framework */; };
  59. A72A72F222321E9300B21995 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F122321E9300B21995 /* CFNetwork.framework */; };
  60. A72A72F422321E9A00B21995 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F322321E9A00B21995 /* Foundation.framework */; };
  61. A72A72F622321EA000B21995 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F522321EA000B21995 /* UIKit.framework */; };
  62. A72A72F822321EB600B21995 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F722321EB600B21995 /* CoreGraphics.framework */; };
  63. A72A72FA22321EBF00B21995 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72F922321EBF00B21995 /* CoreText.framework */; };
  64. A72A72FC22321ECE00B21995 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72FB22321ECD00B21995 /* CoreTelephony.framework */; };
  65. A72A72FE22321EE200B21995 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72FD22321EE200B21995 /* QuartzCore.framework */; };
  66. A72A730022321EE900B21995 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A72FF22321EE900B21995 /* SystemConfiguration.framework */; };
  67. A72A730222321EEE00B21995 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A730122321EEE00B21995 /* libz.tbd */; };
  68. A72A730422321EFA00B21995 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = A72A730322321EFA00B21995 /* libc++.tbd */; };
  69. A72A73142232475E00B21995 /* AlipayManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A73132232475E00B21995 /* AlipayManager.swift */; };
  70. A72A73162232481600B21995 /* WeChatpayManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A73152232481600B21995 /* WeChatpayManager.swift */; };
  71. A72A7333223256E100B21995 /* PayManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A7332223256E100B21995 /* PayManager.swift */; };
  72. A72A733522325A4B00B21995 /* AppDelegate+HandleOpen.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A733422325A4B00B21995 /* AppDelegate+HandleOpen.swift */; };
  73. A72A733722325EED00B21995 /* AlipayResultModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A733622325EED00B21995 /* AlipayResultModel.swift */; };
  74. A72A73392232688100B21995 /* AlipayOrderModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A73382232688100B21995 /* AlipayOrderModel.swift */; };
  75. A72A734322327DE300B21995 /* WeChatpayOrderModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A734222327DE300B21995 /* WeChatpayOrderModel.swift */; };
  76. A72A7386223396CB00B21995 /* SwiftMoyaNetWorkManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A7382223396CB00B21995 /* SwiftMoyaNetWorkManager.swift */; };
  77. A72A7388223396CB00B21995 /* ApiMacro.swift in Sources */ = {isa = PBXBuildFile; fileRef = A72A7384223396CB00B21995 /* ApiMacro.swift */; };
  78. A75414F7224B4C1B002480B5 /* VerificationPhoneViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A75414F5224B4C1B002480B5 /* VerificationPhoneViewController.swift */; };
  79. A75414F8224B4C1B002480B5 /* VerificationPhoneViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = A75414F6224B4C1B002480B5 /* VerificationPhoneViewController.xib */; };
  80. A75414FD224B5F28002480B5 /* PasswordLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A75414FB224B5F28002480B5 /* PasswordLoginViewController.swift */; };
  81. A75414FE224B5F28002480B5 /* PasswordLoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = A75414FC224B5F28002480B5 /* PasswordLoginViewController.xib */; };
  82. A7541500224BC02F002480B5 /* AMapManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A75414FF224BC02F002480B5 /* AMapManager.swift */; };
  83. A7541502224C5ECB002480B5 /* BaiduMapManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7541501224C5ECA002480B5 /* BaiduMapManager.swift */; };
  84. A7541504224C609A002480B5 /* AMapLocationModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7541503224C609A002480B5 /* AMapLocationModel.swift */; };
  85. A754150F224CACF9002480B5 /* SwiftSign.swift in Sources */ = {isa = PBXBuildFile; fileRef = A754150B224CACF9002480B5 /* SwiftSign.swift */; };
  86. A76390EB2248E27A0067EEE0 /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A76390EA2248E27A0067EEE0 /* UserNotifications.framework */; };
  87. A775CBFE2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A775CBFD2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift */; };
  88. A775CC00223774A300EBDCF8 /* ShoppingMallView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A775CBFF223774A300EBDCF8 /* ShoppingMallView.swift */; };
  89. A775CC0322377C6500EBDCF8 /* EmptyView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A775CC0222377C6500EBDCF8 /* EmptyView.swift */; };
  90. A7778C8D22438A5200C7C47A /* AlertView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778C8C22438A5200C7C47A /* AlertView.swift */; };
  91. A7778C9722438F5D00C7C47A /* AlipaySDK.bundle in Resources */ = {isa = PBXBuildFile; fileRef = A7778C8F22438F5C00C7C47A /* AlipaySDK.bundle */; };
  92. A7778C9822438F5D00C7C47A /* AlipaySDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7778C9022438F5C00C7C47A /* AlipaySDK.framework */; };
  93. A7778C9922438F5D00C7C47A /* README.txt in Resources */ = {isa = PBXBuildFile; fileRef = A7778C9422438F5D00C7C47A /* README.txt */; };
  94. A7778C9A22438F5D00C7C47A /* libWeChatSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A7778C9622438F5D00C7C47A /* libWeChatSDK.a */; };
  95. A7778C9C2243934A00C7C47A /* MineModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A7778C9B2243934A00C7C47A /* MineModule.xcassets */; };
  96. A7778C9E2243937300C7C47A /* RegisterLoginModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A7778C9D2243937300C7C47A /* RegisterLoginModule.xcassets */; };
  97. A7778CA02243938200C7C47A /* ShoppingCartModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A7778C9F2243938200C7C47A /* ShoppingCartModule.xcassets */; };
  98. A7778CA22243939100C7C47A /* ShoppingMallModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A7778CA12243939100C7C47A /* ShoppingMallModule.xcassets */; };
  99. A7778CA4224393A900C7C47A /* CommonModule.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A7778CA3224393A900C7C47A /* CommonModule.xcassets */; };
  100. A7778CA72243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CA62243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift */; };
  101. A7778CA92244904500C7C47A /* Extension+Gifu.GIFImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CA82244904500C7C47A /* Extension+Gifu.GIFImageView.swift */; };
  102. A7778CAB2244B12500C7C47A /* CountDownManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CAA2244B12500C7C47A /* CountDownManager.swift */; };
  103. A7778CB32244D73400C7C47A /* ThirdPartyLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CB12244D73400C7C47A /* ThirdPartyLoginViewController.swift */; };
  104. A7778CB82244E97A00C7C47A /* BindPhoneNumberViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CB72244E97A00C7C47A /* BindPhoneNumberViewController.swift */; };
  105. A7778CBA2244F14B00C7C47A /* Extension+UIViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CB92244F14B00C7C47A /* Extension+UIViewController.swift */; };
  106. A7778CC52246035700C7C47A /* PhoneCountryAreaViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CC42246035700C7C47A /* PhoneCountryAreaViewController.swift */; };
  107. A7778CD522460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CD422460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift */; };
  108. A7778CDD2246121500C7C47A /* PhoneCountryAreaListMdoel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CDC2246121500C7C47A /* PhoneCountryAreaListMdoel.swift */; };
  109. A7778CDF22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7778CDE22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift */; };
  110. A77F2C612231FB49001BD3F6 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C602231FB49001BD3F6 /* AppDelegate.swift */; };
  111. A77F2C682231FB4A001BD3F6 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A77F2C672231FB4A001BD3F6 /* Assets.xcassets */; };
  112. A77F2C762231FB4A001BD3F6 /* RainbowPlanetTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C752231FB4A001BD3F6 /* RainbowPlanetTests.swift */; };
  113. A77F2C812231FB4A001BD3F6 /* RainbowPlanetUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C802231FB4A001BD3F6 /* RainbowPlanetUITests.swift */; };
  114. A77F2C982231FD25001BD3F6 /* BaseNavigationViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C972231FD25001BD3F6 /* BaseNavigationViewController.swift */; };
  115. A77F2C9C2231FDCF001BD3F6 /* BaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C9B2231FDCF001BD3F6 /* BaseView.swift */; };
  116. A77F2C9E2231FDDC001BD3F6 /* BaseViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C9D2231FDDC001BD3F6 /* BaseViewController.swift */; };
  117. A77F2CA02231FE45001BD3F6 /* BaseWebViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2C9F2231FE45001BD3F6 /* BaseWebViewController.swift */; };
  118. A77F2CB52232010F001BD3F6 /* ShoppingMallViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CA72232010F001BD3F6 /* ShoppingMallViewController.swift */; };
  119. A77F2CB62232010F001BD3F6 /* MineViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = A77F2CAC2232010F001BD3F6 /* MineViewController.xib */; };
  120. A77F2CB72232010F001BD3F6 /* MineViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CAD2232010F001BD3F6 /* MineViewController.swift */; };
  121. A77F2CB82232010F001BD3F6 /* ShoppingCartViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = A77F2CB22232010F001BD3F6 /* ShoppingCartViewController.xib */; };
  122. A77F2CB92232010F001BD3F6 /* ShoppingCartViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CB32232010F001BD3F6 /* ShoppingCartViewController.swift */; };
  123. A77F2CC3223203BA001BD3F6 /* AppDelegate+Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC2223203BA001BD3F6 /* AppDelegate+Window.swift */; };
  124. A77F2CC722320627001BD3F6 /* WRNavigationBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC522320627001BD3F6 /* WRNavigationBar.swift */; };
  125. A77F2CC822320627001BD3F6 /* WRCustomNavigationBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC622320627001BD3F6 /* WRCustomNavigationBar.swift */; };
  126. A77F2CCA223209F2001BD3F6 /* BaseTabbarViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77F2CC9223209F2001BD3F6 /* BaseTabbarViewController.swift */; };
  127. A7A97FDA2238FBAD0070F84D /* VerticalListSectionModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A97FD62238FBAC0070F84D /* VerticalListSectionModel.swift */; };
  128. A7A97FDB2238FBAD0070F84D /* VerticalListCellModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A97FD72238FBAC0070F84D /* VerticalListCellModel.swift */; };
  129. A7A97FDC2238FBAD0070F84D /* VerticalListCellCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A97FD82238FBAC0070F84D /* VerticalListCellCollectionViewCell.swift */; };
  130. A7A97FDD2238FBAD0070F84D /* VerticalSectionHeaderView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A97FD92238FBAD0070F84D /* VerticalSectionHeaderView.swift */; };
  131. /* End PBXBuildFile section */
  132. /* Begin PBXContainerItemProxy section */
  133. A77F2C722231FB4A001BD3F6 /* PBXContainerItemProxy */ = {
  134. isa = PBXContainerItemProxy;
  135. containerPortal = A77F2C552231FB49001BD3F6 /* Project object */;
  136. proxyType = 1;
  137. remoteGlobalIDString = A77F2C5C2231FB49001BD3F6;
  138. remoteInfo = RainbowPlanet;
  139. };
  140. A77F2C7D2231FB4A001BD3F6 /* PBXContainerItemProxy */ = {
  141. isa = PBXContainerItemProxy;
  142. containerPortal = A77F2C552231FB49001BD3F6 /* Project object */;
  143. proxyType = 1;
  144. remoteGlobalIDString = A77F2C5C2231FB49001BD3F6;
  145. remoteInfo = RainbowPlanet;
  146. };
  147. /* End PBXContainerItemProxy section */
  148. /* Begin PBXFileReference section */
  149. 57C497E128081597F165C771 /* Pods-RainbowPlanet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RainbowPlanet.release.xcconfig"; path = "Pods/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet.release.xcconfig"; sourceTree = "<group>"; };
  150. 88DF1EFD2E202DA7C627E8A7 /* Pods_RainbowPlanetUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RainbowPlanetUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  151. A72843FB224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaServiceUserApi.swift; sourceTree = "<group>"; };
  152. A7284400224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkServiceUser.swift; sourceTree = "<group>"; };
  153. A7284403224DBFBD00F82F30 /* LoginModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LoginModel.swift; sourceTree = "<group>"; };
  154. A728443F224DFACD00F82F30 /* InfoModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InfoModel.swift; sourceTree = "<group>"; };
  155. A7284A512252EE9A000BAEC4 /* RootModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RootModel.swift; sourceTree = "<group>"; };
  156. A7284A532252FB5C000BAEC4 /* PaginationModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PaginationModel.swift; sourceTree = "<group>"; };
  157. A72A726022321D3400B21995 /* RainbowPlanet-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RainbowPlanet-Bridging-Header.h"; sourceTree = "<group>"; };
  158. A72A726322321DBD00B21995 /* LocationModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LocationModel.swift; sourceTree = "<group>"; };
  159. A72A726522321DBD00B21995 /* UMManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UMManager.swift; sourceTree = "<group>"; };
  160. A72A726A22321DDE00B21995 /* LBXScanNetAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanNetAnimation.swift; sourceTree = "<group>"; };
  161. A72A726B22321DDE00B21995 /* LBXScanView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanView.swift; sourceTree = "<group>"; };
  162. A72A726C22321DDE00B21995 /* LBXScanViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanViewController.swift; sourceTree = "<group>"; };
  163. A72A726D22321DDE00B21995 /* LBXScanLineAnimation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanLineAnimation.swift; sourceTree = "<group>"; };
  164. A72A726E22321DDE00B21995 /* LBXScanViewStyle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanViewStyle.swift; sourceTree = "<group>"; };
  165. A72A726F22321DDE00B21995 /* LBXPermissions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXPermissions.swift; sourceTree = "<group>"; };
  166. A72A727022321DDE00B21995 /* LBXScanWrapper.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LBXScanWrapper.swift; sourceTree = "<group>"; };
  167. A72A727222321DDE00B21995 /* NumberKeyboard.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NumberKeyboard.swift; sourceTree = "<group>"; };
  168. A72A727422321DDE00B21995 /* Log.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Log.swift; sourceTree = "<group>"; };
  169. A72A727622321DDE00B21995 /* SwiftProgressHUD.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftProgressHUD.swift; sourceTree = "<group>"; };
  170. A72A727822321DDF00B21995 /* Regex.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Regex.swift; sourceTree = "<group>"; };
  171. A72A727C22321DDF00B21995 /* CountdownButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CountdownButton.swift; sourceTree = "<group>"; };
  172. A72A727E22321DDF00B21995 /* AppInfo.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppInfo.swift; sourceTree = "<group>"; };
  173. A72A728022321DDF00B21995 /* CGView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CGView.swift; sourceTree = "<group>"; };
  174. A72A728222321DDF00B21995 /* UIScrollView+MJRefreshEX.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJRefreshEX.m"; sourceTree = "<group>"; };
  175. A72A728322321DDF00B21995 /* UIScrollView+MJRefreshEX.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJRefreshEX.h"; sourceTree = "<group>"; };
  176. A72A728C22321DE000B21995 /* Extension+UIImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIImage.swift"; sourceTree = "<group>"; };
  177. A72A728D22321DE000B21995 /* Extension+UITextView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UITextView.swift"; sourceTree = "<group>"; };
  178. A72A728E22321DE000B21995 /* Extension+NSRange.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+NSRange.swift"; sourceTree = "<group>"; };
  179. A72A728F22321DE000B21995 /* Extension+NSMutableAttributedString.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+NSMutableAttributedString.swift"; sourceTree = "<group>"; };
  180. A72A729022321DE000B21995 /* Extension+UserDefaults.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UserDefaults.swift"; sourceTree = "<group>"; };
  181. A72A729122321DE000B21995 /* Extension+Array.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+Array.swift"; sourceTree = "<group>"; };
  182. A72A729222321DE000B21995 /* Extension+String.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+String.swift"; sourceTree = "<group>"; };
  183. A72A729322321DE000B21995 /* Extension+UILabel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UILabel.swift"; sourceTree = "<group>"; };
  184. A72A729422321DE000B21995 /* Extension+UIAlertController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIAlertController.swift"; sourceTree = "<group>"; };
  185. A72A729722321DE000B21995 /* Extension+UIColor.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIColor.swift"; sourceTree = "<group>"; };
  186. A72A729822321DE000B21995 /* Extension+RxTimer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+RxTimer.swift"; sourceTree = "<group>"; };
  187. A72A729922321DE000B21995 /* Extension+UIButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIButton.swift"; sourceTree = "<group>"; };
  188. A72A729A22321DE000B21995 /* Extension+UIView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+UIView.swift"; sourceTree = "<group>"; };
  189. A72A729D22321DE000B21995 /* Extension+Date.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+Date.swift"; sourceTree = "<group>"; };
  190. A72A729E22321DE000B21995 /* Extension+CAGradientLayer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "Extension+CAGradientLayer.swift"; sourceTree = "<group>"; };
  191. A72A72A022321DE000B21995 /* WKWebViewConfig.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WKWebViewConfig.swift; sourceTree = "<group>"; };
  192. A72A72A122321DE000B21995 /* WebView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WebView.swift; sourceTree = "<group>"; };
  193. A72A72C722321E2500B21995 /* NotificationCenterMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationCenterMacro.swift; sourceTree = "<group>"; };
  194. A72A72C822321E2500B21995 /* FontMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FontMacro.swift; sourceTree = "<group>"; };
  195. A72A72C922321E2600B21995 /* HTMLURLMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HTMLURLMacro.swift; sourceTree = "<group>"; };
  196. A72A72CA22321E2600B21995 /* Common.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Common.swift; sourceTree = "<group>"; };
  197. A72A72CB22321E2600B21995 /* CacheMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CacheMacro.swift; sourceTree = "<group>"; };
  198. A72A72CC22321E2600B21995 /* EnumMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EnumMacro.swift; sourceTree = "<group>"; };
  199. A72A72CD22321E2600B21995 /* ColorMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorMacro.swift; sourceTree = "<group>"; };
  200. A72A72CE22321E2700B21995 /* ThirdPartyMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ThirdPartyMacro.swift; sourceTree = "<group>"; };
  201. A72A72EF22321E8800B21995 /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
  202. A72A72F122321E9300B21995 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
  203. A72A72F322321E9A00B21995 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  204. A72A72F522321EA000B21995 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  205. A72A72F722321EB600B21995 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  206. A72A72F922321EBF00B21995 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
  207. A72A72FB22321ECD00B21995 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
  208. A72A72FD22321EE200B21995 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  209. A72A72FF22321EE900B21995 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  210. A72A730122321EEE00B21995 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  211. A72A730322321EFA00B21995 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
  212. A72A73132232475E00B21995 /* AlipayManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlipayManager.swift; sourceTree = "<group>"; };
  213. A72A73152232481600B21995 /* WeChatpayManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WeChatpayManager.swift; sourceTree = "<group>"; };
  214. A72A7332223256E100B21995 /* PayManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PayManager.swift; sourceTree = "<group>"; };
  215. A72A733422325A4B00B21995 /* AppDelegate+HandleOpen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "AppDelegate+HandleOpen.swift"; sourceTree = "<group>"; };
  216. A72A733622325EED00B21995 /* AlipayResultModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AlipayResultModel.swift; sourceTree = "<group>"; };
  217. A72A73382232688100B21995 /* AlipayOrderModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AlipayOrderModel.swift; sourceTree = "<group>"; };
  218. A72A734222327DE300B21995 /* WeChatpayOrderModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WeChatpayOrderModel.swift; sourceTree = "<group>"; };
  219. A72A73592233577000B21995 /* libc++.1.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.1.tbd"; path = "usr/lib/libc++.1.tbd"; sourceTree = SDKROOT; };
  220. A72A7382223396CB00B21995 /* SwiftMoyaNetWorkManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftMoyaNetWorkManager.swift; sourceTree = "<group>"; };
  221. A72A7384223396CB00B21995 /* ApiMacro.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ApiMacro.swift; sourceTree = "<group>"; };
  222. A75414F5224B4C1B002480B5 /* VerificationPhoneViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VerificationPhoneViewController.swift; sourceTree = "<group>"; };
  223. A75414F6224B4C1B002480B5 /* VerificationPhoneViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = VerificationPhoneViewController.xib; sourceTree = "<group>"; };
  224. A75414FB224B5F28002480B5 /* PasswordLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PasswordLoginViewController.swift; sourceTree = "<group>"; };
  225. A75414FC224B5F28002480B5 /* PasswordLoginViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PasswordLoginViewController.xib; sourceTree = "<group>"; };
  226. A75414FF224BC02F002480B5 /* AMapManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AMapManager.swift; sourceTree = "<group>"; };
  227. A7541501224C5ECA002480B5 /* BaiduMapManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BaiduMapManager.swift; sourceTree = "<group>"; };
  228. A7541503224C609A002480B5 /* AMapLocationModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AMapLocationModel.swift; sourceTree = "<group>"; };
  229. A754150B224CACF9002480B5 /* SwiftSign.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SwiftSign.swift; sourceTree = "<group>"; };
  230. A76390EA2248E27A0067EEE0 /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
  231. A775CBFD2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallNavigationBarView.swift; sourceTree = "<group>"; };
  232. A775CBFF223774A300EBDCF8 /* ShoppingMallView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingMallView.swift; sourceTree = "<group>"; };
  233. A775CC0222377C6500EBDCF8 /* EmptyView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmptyView.swift; sourceTree = "<group>"; };
  234. A7778C8C22438A5200C7C47A /* AlertView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AlertView.swift; sourceTree = "<group>"; };
  235. A7778C8F22438F5C00C7C47A /* AlipaySDK.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = AlipaySDK.bundle; sourceTree = "<group>"; };
  236. A7778C9022438F5C00C7C47A /* AlipaySDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AlipaySDK.framework; sourceTree = "<group>"; };
  237. A7778C9222438F5D00C7C47A /* WXApi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApi.h; sourceTree = "<group>"; };
  238. A7778C9322438F5D00C7C47A /* WXApiObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApiObject.h; sourceTree = "<group>"; };
  239. A7778C9422438F5D00C7C47A /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
  240. A7778C9522438F5D00C7C47A /* WechatAuthSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WechatAuthSDK.h; sourceTree = "<group>"; };
  241. A7778C9622438F5D00C7C47A /* libWeChatSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libWeChatSDK.a; sourceTree = "<group>"; };
  242. A7778C9B2243934A00C7C47A /* MineModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = MineModule.xcassets; sourceTree = "<group>"; };
  243. A7778C9D2243937300C7C47A /* RegisterLoginModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = RegisterLoginModule.xcassets; sourceTree = "<group>"; };
  244. A7778C9F2243938200C7C47A /* ShoppingCartModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ShoppingCartModule.xcassets; sourceTree = "<group>"; };
  245. A7778CA12243939100C7C47A /* ShoppingMallModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = ShoppingMallModule.xcassets; sourceTree = "<group>"; };
  246. A7778CA3224393A900C7C47A /* CommonModule.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = CommonModule.xcassets; sourceTree = "<group>"; };
  247. A7778CA62243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IQKeyboardManagerSwiftManager.swift; sourceTree = "<group>"; };
  248. A7778CA82244904500C7C47A /* Extension+Gifu.GIFImageView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+Gifu.GIFImageView.swift"; sourceTree = "<group>"; };
  249. A7778CAA2244B12500C7C47A /* CountDownManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CountDownManager.swift; sourceTree = "<group>"; };
  250. A7778CB12244D73400C7C47A /* ThirdPartyLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ThirdPartyLoginViewController.swift; sourceTree = "<group>"; };
  251. A7778CB72244E97A00C7C47A /* BindPhoneNumberViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BindPhoneNumberViewController.swift; sourceTree = "<group>"; };
  252. A7778CB92244F14B00C7C47A /* Extension+UIViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Extension+UIViewController.swift"; sourceTree = "<group>"; };
  253. A7778CC42246035700C7C47A /* PhoneCountryAreaViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaViewController.swift; sourceTree = "<group>"; };
  254. A7778CD422460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaTableViewCell.swift; sourceTree = "<group>"; };
  255. A7778CDC2246121500C7C47A /* PhoneCountryAreaListMdoel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaListMdoel.swift; sourceTree = "<group>"; };
  256. A7778CDE22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneCountryAreaSectionHeaderView.swift; sourceTree = "<group>"; };
  257. A77F2C5D2231FB49001BD3F6 /* RainbowPlanet.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RainbowPlanet.app; sourceTree = BUILT_PRODUCTS_DIR; };
  258. A77F2C602231FB49001BD3F6 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  259. A77F2C672231FB4A001BD3F6 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  260. A77F2C6C2231FB4A001BD3F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  261. A77F2C712231FB4A001BD3F6 /* RainbowPlanetTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RainbowPlanetTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  262. A77F2C752231FB4A001BD3F6 /* RainbowPlanetTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RainbowPlanetTests.swift; sourceTree = "<group>"; };
  263. A77F2C772231FB4A001BD3F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  264. A77F2C7C2231FB4A001BD3F6 /* RainbowPlanetUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RainbowPlanetUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  265. A77F2C802231FB4A001BD3F6 /* RainbowPlanetUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RainbowPlanetUITests.swift; sourceTree = "<group>"; };
  266. A77F2C822231FB4A001BD3F6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  267. A77F2C972231FD25001BD3F6 /* BaseNavigationViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseNavigationViewController.swift; sourceTree = "<group>"; };
  268. A77F2C9B2231FDCF001BD3F6 /* BaseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseView.swift; sourceTree = "<group>"; };
  269. A77F2C9D2231FDDC001BD3F6 /* BaseViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseViewController.swift; sourceTree = "<group>"; };
  270. A77F2C9F2231FE45001BD3F6 /* BaseWebViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseWebViewController.swift; sourceTree = "<group>"; };
  271. A77F2CA72232010F001BD3F6 /* ShoppingMallViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShoppingMallViewController.swift; sourceTree = "<group>"; };
  272. A77F2CAC2232010F001BD3F6 /* MineViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MineViewController.xib; sourceTree = "<group>"; };
  273. A77F2CAD2232010F001BD3F6 /* MineViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MineViewController.swift; sourceTree = "<group>"; };
  274. A77F2CB22232010F001BD3F6 /* ShoppingCartViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ShoppingCartViewController.xib; sourceTree = "<group>"; };
  275. A77F2CB32232010F001BD3F6 /* ShoppingCartViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ShoppingCartViewController.swift; sourceTree = "<group>"; };
  276. A77F2CC2223203BA001BD3F6 /* AppDelegate+Window.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "AppDelegate+Window.swift"; sourceTree = "<group>"; };
  277. A77F2CC522320627001BD3F6 /* WRNavigationBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WRNavigationBar.swift; sourceTree = "<group>"; };
  278. A77F2CC622320627001BD3F6 /* WRCustomNavigationBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WRCustomNavigationBar.swift; sourceTree = "<group>"; };
  279. A77F2CC9223209F2001BD3F6 /* BaseTabbarViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseTabbarViewController.swift; sourceTree = "<group>"; };
  280. A7A59A7722363CCB00417FA4 /* RainbowPlanet.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = RainbowPlanet.entitlements; sourceTree = "<group>"; };
  281. A7A97FD62238FBAC0070F84D /* VerticalListSectionModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VerticalListSectionModel.swift; sourceTree = "<group>"; };
  282. A7A97FD72238FBAC0070F84D /* VerticalListCellModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VerticalListCellModel.swift; sourceTree = "<group>"; };
  283. A7A97FD82238FBAC0070F84D /* VerticalListCellCollectionViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VerticalListCellCollectionViewCell.swift; sourceTree = "<group>"; };
  284. A7A97FD92238FBAD0070F84D /* VerticalSectionHeaderView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VerticalSectionHeaderView.swift; sourceTree = "<group>"; };
  285. A7E03A30F40582782EC5DA89 /* Pods_RainbowPlanetTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RainbowPlanetTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  286. BD9052C044FD3AE4E62D3929 /* Pods-RainbowPlanet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RainbowPlanet.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet.debug.xcconfig"; sourceTree = "<group>"; };
  287. D469F6C3768252BCB7001EDD /* Pods_RainbowPlanet.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RainbowPlanet.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  288. /* End PBXFileReference section */
  289. /* Begin PBXFrameworksBuildPhase section */
  290. A77F2C5A2231FB49001BD3F6 /* Frameworks */ = {
  291. isa = PBXFrameworksBuildPhase;
  292. buildActionMask = 2147483647;
  293. files = (
  294. A76390EB2248E27A0067EEE0 /* UserNotifications.framework in Frameworks */,
  295. A7778C9A22438F5D00C7C47A /* libWeChatSDK.a in Frameworks */,
  296. A72A730422321EFA00B21995 /* libc++.tbd in Frameworks */,
  297. A72A730222321EEE00B21995 /* libz.tbd in Frameworks */,
  298. A72A730022321EE900B21995 /* SystemConfiguration.framework in Frameworks */,
  299. A72A72FE22321EE200B21995 /* QuartzCore.framework in Frameworks */,
  300. A72A72FC22321ECE00B21995 /* CoreTelephony.framework in Frameworks */,
  301. A72A72FA22321EBF00B21995 /* CoreText.framework in Frameworks */,
  302. A72A72F822321EB600B21995 /* CoreGraphics.framework in Frameworks */,
  303. A72A72F622321EA000B21995 /* UIKit.framework in Frameworks */,
  304. A72A72F422321E9A00B21995 /* Foundation.framework in Frameworks */,
  305. A72A72F222321E9300B21995 /* CFNetwork.framework in Frameworks */,
  306. A7778C9822438F5D00C7C47A /* AlipaySDK.framework in Frameworks */,
  307. A72A72F022321E8800B21995 /* CoreMotion.framework in Frameworks */,
  308. 0A110C4CD931995B8E8BF7C5 /* Pods_RainbowPlanet.framework in Frameworks */,
  309. );
  310. runOnlyForDeploymentPostprocessing = 0;
  311. };
  312. A77F2C6E2231FB4A001BD3F6 /* Frameworks */ = {
  313. isa = PBXFrameworksBuildPhase;
  314. buildActionMask = 2147483647;
  315. files = (
  316. );
  317. runOnlyForDeploymentPostprocessing = 0;
  318. };
  319. A77F2C792231FB4A001BD3F6 /* Frameworks */ = {
  320. isa = PBXFrameworksBuildPhase;
  321. buildActionMask = 2147483647;
  322. files = (
  323. );
  324. runOnlyForDeploymentPostprocessing = 0;
  325. };
  326. /* End PBXFrameworksBuildPhase section */
  327. /* Begin PBXGroup section */
  328. 618631008656829220117ED1 /* Pods */ = {
  329. isa = PBXGroup;
  330. children = (
  331. BD9052C044FD3AE4E62D3929 /* Pods-RainbowPlanet.debug.xcconfig */,
  332. 57C497E128081597F165C771 /* Pods-RainbowPlanet.release.xcconfig */,
  333. );
  334. name = Pods;
  335. sourceTree = "<group>";
  336. };
  337. A72843FD224DB79400F82F30 /* SwiftMoyaServiceUser */ = {
  338. isa = PBXGroup;
  339. children = (
  340. A72843FB224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift */,
  341. A7284400224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift */,
  342. );
  343. path = SwiftMoyaServiceUser;
  344. sourceTree = "<group>";
  345. };
  346. A7284402224DBE3500F82F30 /* UserModel */ = {
  347. isa = PBXGroup;
  348. children = (
  349. A7284403224DBFBD00F82F30 /* LoginModel.swift */,
  350. );
  351. path = UserModel;
  352. sourceTree = "<group>";
  353. };
  354. A7284A502252EB28000BAEC4 /* SwiftMoyaNetWorkManager */ = {
  355. isa = PBXGroup;
  356. children = (
  357. A72A7384223396CB00B21995 /* ApiMacro.swift */,
  358. A72A7382223396CB00B21995 /* SwiftMoyaNetWorkManager.swift */,
  359. );
  360. path = SwiftMoyaNetWorkManager;
  361. sourceTree = "<group>";
  362. };
  363. A72A7252223219BD00B21995 /* Service */ = {
  364. isa = PBXGroup;
  365. children = (
  366. A72A73722233966800B21995 /* RootModel */,
  367. A72A7380223396CB00B21995 /* SwiftMoyaService */,
  368. A7541507224CACF9002480B5 /* SwiftSign */,
  369. );
  370. path = Service;
  371. sourceTree = "<group>";
  372. };
  373. A72A725322321A6900B21995 /* Lib */ = {
  374. isa = PBXGroup;
  375. children = (
  376. A7778C8E22438F5C00C7C47A /* AlipaySDK */,
  377. A7778C9122438F5D00C7C47A /* WeChatSDK */,
  378. );
  379. path = Lib;
  380. sourceTree = "<group>";
  381. };
  382. A72A725422321B9400B21995 /* Manager */ = {
  383. isa = PBXGroup;
  384. children = (
  385. A7778CA52243A03400C7C47A /* IQKeyboardManagerSwiftManager */,
  386. A72A730522321F1D00B21995 /* PayManager */,
  387. A72A726122321DBD00B21995 /* MapManager */,
  388. A72A726422321DBD00B21995 /* UMManager */,
  389. );
  390. path = Manager;
  391. sourceTree = "<group>";
  392. };
  393. A72A725922321C5E00B21995 /* Define */ = {
  394. isa = PBXGroup;
  395. children = (
  396. A72A72CA22321E2600B21995 /* Common.swift */,
  397. A72A72CB22321E2600B21995 /* CacheMacro.swift */,
  398. A72A72CD22321E2600B21995 /* ColorMacro.swift */,
  399. A72A72CC22321E2600B21995 /* EnumMacro.swift */,
  400. A72A72C822321E2500B21995 /* FontMacro.swift */,
  401. A72A72C922321E2600B21995 /* HTMLURLMacro.swift */,
  402. A72A72C722321E2500B21995 /* NotificationCenterMacro.swift */,
  403. A72A72CE22321E2700B21995 /* ThirdPartyMacro.swift */,
  404. A72A726022321D3400B21995 /* RainbowPlanet-Bridging-Header.h */,
  405. );
  406. path = Define;
  407. sourceTree = "<group>";
  408. };
  409. A72A726122321DBD00B21995 /* MapManager */ = {
  410. isa = PBXGroup;
  411. children = (
  412. A7541501224C5ECA002480B5 /* BaiduMapManager.swift */,
  413. A72A726322321DBD00B21995 /* LocationModel.swift */,
  414. A75414FF224BC02F002480B5 /* AMapManager.swift */,
  415. A7541503224C609A002480B5 /* AMapLocationModel.swift */,
  416. );
  417. path = MapManager;
  418. sourceTree = "<group>";
  419. };
  420. A72A726422321DBD00B21995 /* UMManager */ = {
  421. isa = PBXGroup;
  422. children = (
  423. A72A726522321DBD00B21995 /* UMManager.swift */,
  424. );
  425. path = UMManager;
  426. sourceTree = "<group>";
  427. };
  428. A72A726922321DDE00B21995 /* SwiftScan */ = {
  429. isa = PBXGroup;
  430. children = (
  431. A72A726A22321DDE00B21995 /* LBXScanNetAnimation.swift */,
  432. A72A726B22321DDE00B21995 /* LBXScanView.swift */,
  433. A72A726C22321DDE00B21995 /* LBXScanViewController.swift */,
  434. A72A726D22321DDE00B21995 /* LBXScanLineAnimation.swift */,
  435. A72A726E22321DDE00B21995 /* LBXScanViewStyle.swift */,
  436. A72A726F22321DDE00B21995 /* LBXPermissions.swift */,
  437. A72A727022321DDE00B21995 /* LBXScanWrapper.swift */,
  438. );
  439. path = SwiftScan;
  440. sourceTree = "<group>";
  441. };
  442. A72A727122321DDE00B21995 /* NumberKeyboard */ = {
  443. isa = PBXGroup;
  444. children = (
  445. A72A727222321DDE00B21995 /* NumberKeyboard.swift */,
  446. );
  447. path = NumberKeyboard;
  448. sourceTree = "<group>";
  449. };
  450. A72A727322321DDE00B21995 /* Log */ = {
  451. isa = PBXGroup;
  452. children = (
  453. A72A727422321DDE00B21995 /* Log.swift */,
  454. );
  455. path = Log;
  456. sourceTree = "<group>";
  457. };
  458. A72A727522321DDE00B21995 /* SwiftProgressHUD */ = {
  459. isa = PBXGroup;
  460. children = (
  461. A72A727622321DDE00B21995 /* SwiftProgressHUD.swift */,
  462. );
  463. path = SwiftProgressHUD;
  464. sourceTree = "<group>";
  465. };
  466. A72A727722321DDF00B21995 /* Regex */ = {
  467. isa = PBXGroup;
  468. children = (
  469. A72A727822321DDF00B21995 /* Regex.swift */,
  470. );
  471. path = Regex;
  472. sourceTree = "<group>";
  473. };
  474. A72A727B22321DDF00B21995 /* Countdown */ = {
  475. isa = PBXGroup;
  476. children = (
  477. A72A727C22321DDF00B21995 /* CountdownButton.swift */,
  478. A7778CAA2244B12500C7C47A /* CountDownManager.swift */,
  479. );
  480. path = Countdown;
  481. sourceTree = "<group>";
  482. };
  483. A72A727D22321DDF00B21995 /* AppInfo */ = {
  484. isa = PBXGroup;
  485. children = (
  486. A72A727E22321DDF00B21995 /* AppInfo.swift */,
  487. );
  488. path = AppInfo;
  489. sourceTree = "<group>";
  490. };
  491. A72A727F22321DDF00B21995 /* CGView */ = {
  492. isa = PBXGroup;
  493. children = (
  494. A72A728022321DDF00B21995 /* CGView.swift */,
  495. );
  496. path = CGView;
  497. sourceTree = "<group>";
  498. };
  499. A72A728122321DDF00B21995 /* MJRefreshEX */ = {
  500. isa = PBXGroup;
  501. children = (
  502. A72A728222321DDF00B21995 /* UIScrollView+MJRefreshEX.m */,
  503. A72A728322321DDF00B21995 /* UIScrollView+MJRefreshEX.h */,
  504. );
  505. path = MJRefreshEX;
  506. sourceTree = "<group>";
  507. };
  508. A72A728B22321DE000B21995 /* Extension */ = {
  509. isa = PBXGroup;
  510. children = (
  511. A72A728C22321DE000B21995 /* Extension+UIImage.swift */,
  512. A72A728D22321DE000B21995 /* Extension+UITextView.swift */,
  513. A72A728E22321DE000B21995 /* Extension+NSRange.swift */,
  514. A72A729022321DE000B21995 /* Extension+UserDefaults.swift */,
  515. A72A729122321DE000B21995 /* Extension+Array.swift */,
  516. A72A729222321DE000B21995 /* Extension+String.swift */,
  517. A72A729322321DE000B21995 /* Extension+UILabel.swift */,
  518. A72A729422321DE000B21995 /* Extension+UIAlertController.swift */,
  519. A72A729722321DE000B21995 /* Extension+UIColor.swift */,
  520. A72A729822321DE000B21995 /* Extension+RxTimer.swift */,
  521. A72A729922321DE000B21995 /* Extension+UIButton.swift */,
  522. A72A729A22321DE000B21995 /* Extension+UIView.swift */,
  523. A72A728F22321DE000B21995 /* Extension+NSMutableAttributedString.swift */,
  524. A72A729D22321DE000B21995 /* Extension+Date.swift */,
  525. A72A729E22321DE000B21995 /* Extension+CAGradientLayer.swift */,
  526. A7778CA82244904500C7C47A /* Extension+Gifu.GIFImageView.swift */,
  527. A7778CB92244F14B00C7C47A /* Extension+UIViewController.swift */,
  528. );
  529. path = Extension;
  530. sourceTree = "<group>";
  531. };
  532. A72A729F22321DE000B21995 /* WKWebView */ = {
  533. isa = PBXGroup;
  534. children = (
  535. A72A72A022321DE000B21995 /* WKWebViewConfig.swift */,
  536. A72A72A122321DE000B21995 /* WebView.swift */,
  537. );
  538. path = WKWebView;
  539. sourceTree = "<group>";
  540. };
  541. A72A730522321F1D00B21995 /* PayManager */ = {
  542. isa = PBXGroup;
  543. children = (
  544. A72A7331223256D700B21995 /* PayManager */,
  545. A72A730622321F2900B21995 /* AlipayManager */,
  546. A72A730722321F3700B21995 /* WeChatpayManager */,
  547. );
  548. path = PayManager;
  549. sourceTree = "<group>";
  550. };
  551. A72A730622321F2900B21995 /* AlipayManager */ = {
  552. isa = PBXGroup;
  553. children = (
  554. A72A73132232475E00B21995 /* AlipayManager.swift */,
  555. A72A733622325EED00B21995 /* AlipayResultModel.swift */,
  556. A72A73382232688100B21995 /* AlipayOrderModel.swift */,
  557. );
  558. path = AlipayManager;
  559. sourceTree = "<group>";
  560. };
  561. A72A730722321F3700B21995 /* WeChatpayManager */ = {
  562. isa = PBXGroup;
  563. children = (
  564. A72A73152232481600B21995 /* WeChatpayManager.swift */,
  565. A72A734222327DE300B21995 /* WeChatpayOrderModel.swift */,
  566. );
  567. path = WeChatpayManager;
  568. sourceTree = "<group>";
  569. };
  570. A72A7331223256D700B21995 /* PayManager */ = {
  571. isa = PBXGroup;
  572. children = (
  573. A72A7332223256E100B21995 /* PayManager.swift */,
  574. );
  575. path = PayManager;
  576. sourceTree = "<group>";
  577. };
  578. A72A73722233966800B21995 /* RootModel */ = {
  579. isa = PBXGroup;
  580. children = (
  581. A728443F224DFACD00F82F30 /* InfoModel.swift */,
  582. A7284A512252EE9A000BAEC4 /* RootModel.swift */,
  583. A7284A532252FB5C000BAEC4 /* PaginationModel.swift */,
  584. A7284402224DBE3500F82F30 /* UserModel */,
  585. );
  586. path = RootModel;
  587. sourceTree = "<group>";
  588. };
  589. A72A7380223396CB00B21995 /* SwiftMoyaService */ = {
  590. isa = PBXGroup;
  591. children = (
  592. A7284A502252EB28000BAEC4 /* SwiftMoyaNetWorkManager */,
  593. A72843FD224DB79400F82F30 /* SwiftMoyaServiceUser */,
  594. );
  595. path = SwiftMoyaService;
  596. sourceTree = "<group>";
  597. };
  598. A75414F1224B4B9D002480B5 /* VerificationPhone */ = {
  599. isa = PBXGroup;
  600. children = (
  601. A75414F2224B4BE7002480B5 /* ViewController */,
  602. );
  603. path = VerificationPhone;
  604. sourceTree = "<group>";
  605. };
  606. A75414F2224B4BE7002480B5 /* ViewController */ = {
  607. isa = PBXGroup;
  608. children = (
  609. A75414F5224B4C1B002480B5 /* VerificationPhoneViewController.swift */,
  610. A75414F6224B4C1B002480B5 /* VerificationPhoneViewController.xib */,
  611. );
  612. path = ViewController;
  613. sourceTree = "<group>";
  614. };
  615. A75414F9224B5EFC002480B5 /* PasswordLogin */ = {
  616. isa = PBXGroup;
  617. children = (
  618. A75414FA224B5F17002480B5 /* ViewController */,
  619. );
  620. path = PasswordLogin;
  621. sourceTree = "<group>";
  622. };
  623. A75414FA224B5F17002480B5 /* ViewController */ = {
  624. isa = PBXGroup;
  625. children = (
  626. A75414FB224B5F28002480B5 /* PasswordLoginViewController.swift */,
  627. A75414FC224B5F28002480B5 /* PasswordLoginViewController.xib */,
  628. );
  629. path = ViewController;
  630. sourceTree = "<group>";
  631. };
  632. A7541507224CACF9002480B5 /* SwiftSign */ = {
  633. isa = PBXGroup;
  634. children = (
  635. A754150B224CACF9002480B5 /* SwiftSign.swift */,
  636. );
  637. path = SwiftSign;
  638. sourceTree = "<group>";
  639. };
  640. A775CBFC2237483E00EBDCF8 /* View */ = {
  641. isa = PBXGroup;
  642. children = (
  643. A775CBFD2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift */,
  644. A775CBFF223774A300EBDCF8 /* ShoppingMallView.swift */,
  645. A7A97FD82238FBAC0070F84D /* VerticalListCellCollectionViewCell.swift */,
  646. A7A97FD72238FBAC0070F84D /* VerticalListCellModel.swift */,
  647. A7A97FD62238FBAC0070F84D /* VerticalListSectionModel.swift */,
  648. A7A97FD92238FBAD0070F84D /* VerticalSectionHeaderView.swift */,
  649. );
  650. path = View;
  651. sourceTree = "<group>";
  652. };
  653. A775CC0122377AB700EBDCF8 /* EmptyView */ = {
  654. isa = PBXGroup;
  655. children = (
  656. A775CC0222377C6500EBDCF8 /* EmptyView.swift */,
  657. );
  658. path = EmptyView;
  659. sourceTree = "<group>";
  660. };
  661. A7778C8B22438A5200C7C47A /* AlertView */ = {
  662. isa = PBXGroup;
  663. children = (
  664. A7778C8C22438A5200C7C47A /* AlertView.swift */,
  665. );
  666. name = AlertView;
  667. path = "../../../../../../Desktop/彩虹星球/RainbowPlanet/Lib/BaseMoudle/BaseMoudle/Classes/Tools/AlertView";
  668. sourceTree = "<group>";
  669. };
  670. A7778C8E22438F5C00C7C47A /* AlipaySDK */ = {
  671. isa = PBXGroup;
  672. children = (
  673. A7778C8F22438F5C00C7C47A /* AlipaySDK.bundle */,
  674. A7778C9022438F5C00C7C47A /* AlipaySDK.framework */,
  675. );
  676. path = AlipaySDK;
  677. sourceTree = "<group>";
  678. };
  679. A7778C9122438F5D00C7C47A /* WeChatSDK */ = {
  680. isa = PBXGroup;
  681. children = (
  682. A7778C9222438F5D00C7C47A /* WXApi.h */,
  683. A7778C9322438F5D00C7C47A /* WXApiObject.h */,
  684. A7778C9422438F5D00C7C47A /* README.txt */,
  685. A7778C9522438F5D00C7C47A /* WechatAuthSDK.h */,
  686. A7778C9622438F5D00C7C47A /* libWeChatSDK.a */,
  687. );
  688. path = WeChatSDK;
  689. sourceTree = "<group>";
  690. };
  691. A7778CA52243A03400C7C47A /* IQKeyboardManagerSwiftManager */ = {
  692. isa = PBXGroup;
  693. children = (
  694. A7778CA62243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift */,
  695. );
  696. path = IQKeyboardManagerSwiftManager;
  697. sourceTree = "<group>";
  698. };
  699. A7778CAC2244BC2600C7C47A /* ThirdPartyLogin */ = {
  700. isa = PBXGroup;
  701. children = (
  702. A7778CAD2244BEFF00C7C47A /* ViewController */,
  703. );
  704. path = ThirdPartyLogin;
  705. sourceTree = "<group>";
  706. };
  707. A7778CAD2244BEFF00C7C47A /* ViewController */ = {
  708. isa = PBXGroup;
  709. children = (
  710. A7778CB12244D73400C7C47A /* ThirdPartyLoginViewController.swift */,
  711. );
  712. path = ViewController;
  713. sourceTree = "<group>";
  714. };
  715. A7778CB52244E93E00C7C47A /* BindPhoneNumber */ = {
  716. isa = PBXGroup;
  717. children = (
  718. A7778CB62244E96700C7C47A /* ViewController */,
  719. );
  720. path = BindPhoneNumber;
  721. sourceTree = "<group>";
  722. };
  723. A7778CB62244E96700C7C47A /* ViewController */ = {
  724. isa = PBXGroup;
  725. children = (
  726. A7778CB72244E97A00C7C47A /* BindPhoneNumberViewController.swift */,
  727. );
  728. path = ViewController;
  729. sourceTree = "<group>";
  730. };
  731. A7778CC32246030200C7C47A /* PhoneCountryArea */ = {
  732. isa = PBXGroup;
  733. children = (
  734. A7778CE022461DA300C7C47A /* Model */,
  735. A7778CD322460CED00C7C47A /* View */,
  736. A7778CCC224608EA00C7C47A /* ViewController */,
  737. );
  738. path = PhoneCountryArea;
  739. sourceTree = "<group>";
  740. };
  741. A7778CCC224608EA00C7C47A /* ViewController */ = {
  742. isa = PBXGroup;
  743. children = (
  744. A7778CC42246035700C7C47A /* PhoneCountryAreaViewController.swift */,
  745. );
  746. path = ViewController;
  747. sourceTree = "<group>";
  748. };
  749. A7778CD322460CED00C7C47A /* View */ = {
  750. isa = PBXGroup;
  751. children = (
  752. A7778CD422460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift */,
  753. A7778CDE22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift */,
  754. );
  755. path = View;
  756. sourceTree = "<group>";
  757. };
  758. A7778CE022461DA300C7C47A /* Model */ = {
  759. isa = PBXGroup;
  760. children = (
  761. A7778CDC2246121500C7C47A /* PhoneCountryAreaListMdoel.swift */,
  762. );
  763. path = Model;
  764. sourceTree = "<group>";
  765. };
  766. A77F2C542231FB49001BD3F6 = {
  767. isa = PBXGroup;
  768. children = (
  769. A77F2C5F2231FB49001BD3F6 /* RainbowPlanet */,
  770. A77F2C742231FB4A001BD3F6 /* RainbowPlanetTests */,
  771. A77F2C7F2231FB4A001BD3F6 /* RainbowPlanetUITests */,
  772. A77F2C5E2231FB49001BD3F6 /* Products */,
  773. 618631008656829220117ED1 /* Pods */,
  774. FA8AAFBADE8BD144A5C36FDB /* Frameworks */,
  775. );
  776. sourceTree = "<group>";
  777. };
  778. A77F2C5E2231FB49001BD3F6 /* Products */ = {
  779. isa = PBXGroup;
  780. children = (
  781. A77F2C5D2231FB49001BD3F6 /* RainbowPlanet.app */,
  782. A77F2C712231FB4A001BD3F6 /* RainbowPlanetTests.xctest */,
  783. A77F2C7C2231FB4A001BD3F6 /* RainbowPlanetUITests.xctest */,
  784. );
  785. name = Products;
  786. sourceTree = "<group>";
  787. };
  788. A77F2C5F2231FB49001BD3F6 /* RainbowPlanet */ = {
  789. isa = PBXGroup;
  790. children = (
  791. A7A59A7722363CCB00417FA4 /* RainbowPlanet.entitlements */,
  792. A77F2C8E2231FC5C001BD3F6 /* AppDelegate */,
  793. A77F2C8F2231FC65001BD3F6 /* Base */,
  794. A77F2CA22232010F001BD3F6 /* Modules */,
  795. A72A725422321B9400B21995 /* Manager */,
  796. A72A725922321C5E00B21995 /* Define */,
  797. A77F2CBC2232022A001BD3F6 /* Tools */,
  798. A72A725322321A6900B21995 /* Lib */,
  799. A72A7252223219BD00B21995 /* Service */,
  800. A77F2CBB223201DC001BD3F6 /* Supporting Files */,
  801. );
  802. path = RainbowPlanet;
  803. sourceTree = "<group>";
  804. };
  805. A77F2C742231FB4A001BD3F6 /* RainbowPlanetTests */ = {
  806. isa = PBXGroup;
  807. children = (
  808. A77F2C752231FB4A001BD3F6 /* RainbowPlanetTests.swift */,
  809. A77F2C772231FB4A001BD3F6 /* Info.plist */,
  810. );
  811. path = RainbowPlanetTests;
  812. sourceTree = "<group>";
  813. };
  814. A77F2C7F2231FB4A001BD3F6 /* RainbowPlanetUITests */ = {
  815. isa = PBXGroup;
  816. children = (
  817. A77F2C802231FB4A001BD3F6 /* RainbowPlanetUITests.swift */,
  818. A77F2C822231FB4A001BD3F6 /* Info.plist */,
  819. );
  820. path = RainbowPlanetUITests;
  821. sourceTree = "<group>";
  822. };
  823. A77F2C8E2231FC5C001BD3F6 /* AppDelegate */ = {
  824. isa = PBXGroup;
  825. children = (
  826. A77F2C602231FB49001BD3F6 /* AppDelegate.swift */,
  827. A77F2CC2223203BA001BD3F6 /* AppDelegate+Window.swift */,
  828. A72A733422325A4B00B21995 /* AppDelegate+HandleOpen.swift */,
  829. );
  830. path = AppDelegate;
  831. sourceTree = "<group>";
  832. };
  833. A77F2C8F2231FC65001BD3F6 /* Base */ = {
  834. isa = PBXGroup;
  835. children = (
  836. A77F2C902231FC75001BD3F6 /* BaseTabbarViewController */,
  837. A77F2C912231FC85001BD3F6 /* BaseNavigationController */,
  838. A77F2C942231FCD2001BD3F6 /* BaseWebViewController */,
  839. A77F2C922231FCA2001BD3F6 /* BaseViewController */,
  840. A77F2C932231FCC5001BD3F6 /* BaseView */,
  841. );
  842. path = Base;
  843. sourceTree = "<group>";
  844. };
  845. A77F2C902231FC75001BD3F6 /* BaseTabbarViewController */ = {
  846. isa = PBXGroup;
  847. children = (
  848. A77F2CC9223209F2001BD3F6 /* BaseTabbarViewController.swift */,
  849. );
  850. path = BaseTabbarViewController;
  851. sourceTree = "<group>";
  852. };
  853. A77F2C912231FC85001BD3F6 /* BaseNavigationController */ = {
  854. isa = PBXGroup;
  855. children = (
  856. A77F2C972231FD25001BD3F6 /* BaseNavigationViewController.swift */,
  857. );
  858. path = BaseNavigationController;
  859. sourceTree = "<group>";
  860. };
  861. A77F2C922231FCA2001BD3F6 /* BaseViewController */ = {
  862. isa = PBXGroup;
  863. children = (
  864. A77F2C9D2231FDDC001BD3F6 /* BaseViewController.swift */,
  865. );
  866. path = BaseViewController;
  867. sourceTree = "<group>";
  868. };
  869. A77F2C932231FCC5001BD3F6 /* BaseView */ = {
  870. isa = PBXGroup;
  871. children = (
  872. A77F2C9B2231FDCF001BD3F6 /* BaseView.swift */,
  873. );
  874. path = BaseView;
  875. sourceTree = "<group>";
  876. };
  877. A77F2C942231FCD2001BD3F6 /* BaseWebViewController */ = {
  878. isa = PBXGroup;
  879. children = (
  880. A77F2C9F2231FE45001BD3F6 /* BaseWebViewController.swift */,
  881. );
  882. path = BaseWebViewController;
  883. sourceTree = "<group>";
  884. };
  885. A77F2CA22232010F001BD3F6 /* Modules */ = {
  886. isa = PBXGroup;
  887. children = (
  888. A77F2CAE2232010F001BD3F6 /* RegisterLoginModule */,
  889. A77F2CA32232010F001BD3F6 /* ShoppingMallModule */,
  890. A77F2CA82232010F001BD3F6 /* CommonModule */,
  891. A77F2CAF2232010F001BD3F6 /* ShoppingCartModule */,
  892. A77F2CA92232010F001BD3F6 /* MineModule */,
  893. );
  894. path = Modules;
  895. sourceTree = "<group>";
  896. };
  897. A77F2CA32232010F001BD3F6 /* ShoppingMallModule */ = {
  898. isa = PBXGroup;
  899. children = (
  900. A77F2CA42232010F001BD3F6 /* ShoppingMall */,
  901. );
  902. path = ShoppingMallModule;
  903. sourceTree = "<group>";
  904. };
  905. A77F2CA42232010F001BD3F6 /* ShoppingMall */ = {
  906. isa = PBXGroup;
  907. children = (
  908. A775CBFC2237483E00EBDCF8 /* View */,
  909. A77F2CA52232010F001BD3F6 /* ViewController */,
  910. );
  911. path = ShoppingMall;
  912. sourceTree = "<group>";
  913. };
  914. A77F2CA52232010F001BD3F6 /* ViewController */ = {
  915. isa = PBXGroup;
  916. children = (
  917. A77F2CA72232010F001BD3F6 /* ShoppingMallViewController.swift */,
  918. );
  919. path = ViewController;
  920. sourceTree = "<group>";
  921. };
  922. A77F2CA82232010F001BD3F6 /* CommonModule */ = {
  923. isa = PBXGroup;
  924. children = (
  925. );
  926. path = CommonModule;
  927. sourceTree = "<group>";
  928. };
  929. A77F2CA92232010F001BD3F6 /* MineModule */ = {
  930. isa = PBXGroup;
  931. children = (
  932. A77F2CAA2232010F001BD3F6 /* Mine */,
  933. );
  934. path = MineModule;
  935. sourceTree = "<group>";
  936. };
  937. A77F2CAA2232010F001BD3F6 /* Mine */ = {
  938. isa = PBXGroup;
  939. children = (
  940. A77F2CAB2232010F001BD3F6 /* ViewController */,
  941. );
  942. path = Mine;
  943. sourceTree = "<group>";
  944. };
  945. A77F2CAB2232010F001BD3F6 /* ViewController */ = {
  946. isa = PBXGroup;
  947. children = (
  948. A77F2CAD2232010F001BD3F6 /* MineViewController.swift */,
  949. A77F2CAC2232010F001BD3F6 /* MineViewController.xib */,
  950. );
  951. path = ViewController;
  952. sourceTree = "<group>";
  953. };
  954. A77F2CAE2232010F001BD3F6 /* RegisterLoginModule */ = {
  955. isa = PBXGroup;
  956. children = (
  957. A75414F9224B5EFC002480B5 /* PasswordLogin */,
  958. A75414F1224B4B9D002480B5 /* VerificationPhone */,
  959. A7778CC32246030200C7C47A /* PhoneCountryArea */,
  960. A7778CB52244E93E00C7C47A /* BindPhoneNumber */,
  961. A7778CAC2244BC2600C7C47A /* ThirdPartyLogin */,
  962. );
  963. path = RegisterLoginModule;
  964. sourceTree = "<group>";
  965. };
  966. A77F2CAF2232010F001BD3F6 /* ShoppingCartModule */ = {
  967. isa = PBXGroup;
  968. children = (
  969. A77F2CB02232010F001BD3F6 /* ShoppingCart */,
  970. );
  971. path = ShoppingCartModule;
  972. sourceTree = "<group>";
  973. };
  974. A77F2CB02232010F001BD3F6 /* ShoppingCart */ = {
  975. isa = PBXGroup;
  976. children = (
  977. A77F2CB12232010F001BD3F6 /* ViewController */,
  978. );
  979. path = ShoppingCart;
  980. sourceTree = "<group>";
  981. };
  982. A77F2CB12232010F001BD3F6 /* ViewController */ = {
  983. isa = PBXGroup;
  984. children = (
  985. A77F2CB22232010F001BD3F6 /* ShoppingCartViewController.xib */,
  986. A77F2CB32232010F001BD3F6 /* ShoppingCartViewController.swift */,
  987. );
  988. path = ViewController;
  989. sourceTree = "<group>";
  990. };
  991. A77F2CBB223201DC001BD3F6 /* Supporting Files */ = {
  992. isa = PBXGroup;
  993. children = (
  994. A77F2C672231FB4A001BD3F6 /* Assets.xcassets */,
  995. A7778C9B2243934A00C7C47A /* MineModule.xcassets */,
  996. A7778C9D2243937300C7C47A /* RegisterLoginModule.xcassets */,
  997. A7778C9F2243938200C7C47A /* ShoppingCartModule.xcassets */,
  998. A7778CA12243939100C7C47A /* ShoppingMallModule.xcassets */,
  999. A7778CA3224393A900C7C47A /* CommonModule.xcassets */,
  1000. A77F2C6C2231FB4A001BD3F6 /* Info.plist */,
  1001. );
  1002. path = "Supporting Files";
  1003. sourceTree = "<group>";
  1004. };
  1005. A77F2CBC2232022A001BD3F6 /* Tools */ = {
  1006. isa = PBXGroup;
  1007. children = (
  1008. A7778C8B22438A5200C7C47A /* AlertView */,
  1009. A72A727322321DDE00B21995 /* Log */,
  1010. A72A727D22321DDF00B21995 /* AppInfo */,
  1011. A72A727B22321DDF00B21995 /* Countdown */,
  1012. A72A727522321DDE00B21995 /* SwiftProgressHUD */,
  1013. A775CC0122377AB700EBDCF8 /* EmptyView */,
  1014. A72A727F22321DDF00B21995 /* CGView */,
  1015. A72A728B22321DE000B21995 /* Extension */,
  1016. A72A728122321DDF00B21995 /* MJRefreshEX */,
  1017. A72A727122321DDE00B21995 /* NumberKeyboard */,
  1018. A72A727722321DDF00B21995 /* Regex */,
  1019. A72A726922321DDE00B21995 /* SwiftScan */,
  1020. A72A729F22321DE000B21995 /* WKWebView */,
  1021. A77F2CC422320627001BD3F6 /* WRNavigationBar */,
  1022. );
  1023. path = Tools;
  1024. sourceTree = "<group>";
  1025. };
  1026. A77F2CC422320627001BD3F6 /* WRNavigationBar */ = {
  1027. isa = PBXGroup;
  1028. children = (
  1029. A77F2CC522320627001BD3F6 /* WRNavigationBar.swift */,
  1030. A77F2CC622320627001BD3F6 /* WRCustomNavigationBar.swift */,
  1031. );
  1032. path = WRNavigationBar;
  1033. sourceTree = "<group>";
  1034. };
  1035. FA8AAFBADE8BD144A5C36FDB /* Frameworks */ = {
  1036. isa = PBXGroup;
  1037. children = (
  1038. A76390EA2248E27A0067EEE0 /* UserNotifications.framework */,
  1039. A72A73592233577000B21995 /* libc++.1.tbd */,
  1040. A72A730322321EFA00B21995 /* libc++.tbd */,
  1041. A72A730122321EEE00B21995 /* libz.tbd */,
  1042. A72A72FF22321EE900B21995 /* SystemConfiguration.framework */,
  1043. A72A72FD22321EE200B21995 /* QuartzCore.framework */,
  1044. A72A72FB22321ECD00B21995 /* CoreTelephony.framework */,
  1045. A72A72F922321EBF00B21995 /* CoreText.framework */,
  1046. A72A72F722321EB600B21995 /* CoreGraphics.framework */,
  1047. A72A72F522321EA000B21995 /* UIKit.framework */,
  1048. A72A72F322321E9A00B21995 /* Foundation.framework */,
  1049. A72A72F122321E9300B21995 /* CFNetwork.framework */,
  1050. A72A72EF22321E8800B21995 /* CoreMotion.framework */,
  1051. D469F6C3768252BCB7001EDD /* Pods_RainbowPlanet.framework */,
  1052. A7E03A30F40582782EC5DA89 /* Pods_RainbowPlanetTests.framework */,
  1053. 88DF1EFD2E202DA7C627E8A7 /* Pods_RainbowPlanetUITests.framework */,
  1054. );
  1055. name = Frameworks;
  1056. sourceTree = "<group>";
  1057. };
  1058. /* End PBXGroup section */
  1059. /* Begin PBXNativeTarget section */
  1060. A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */ = {
  1061. isa = PBXNativeTarget;
  1062. buildConfigurationList = A77F2C852231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanet" */;
  1063. buildPhases = (
  1064. D3A9893FB9EA18608E79E053 /* [CP] Check Pods Manifest.lock */,
  1065. A77F2C592231FB49001BD3F6 /* Sources */,
  1066. A77F2C5A2231FB49001BD3F6 /* Frameworks */,
  1067. A77F2C5B2231FB49001BD3F6 /* Resources */,
  1068. 696EB1DDE9DE019617B4DAD7 /* [CP] Embed Pods Frameworks */,
  1069. 59501F6F4334279DFBD164A0 /* [CP] Copy Pods Resources */,
  1070. );
  1071. buildRules = (
  1072. );
  1073. dependencies = (
  1074. );
  1075. name = RainbowPlanet;
  1076. productName = RainbowPlanet;
  1077. productReference = A77F2C5D2231FB49001BD3F6 /* RainbowPlanet.app */;
  1078. productType = "com.apple.product-type.application";
  1079. };
  1080. A77F2C702231FB4A001BD3F6 /* RainbowPlanetTests */ = {
  1081. isa = PBXNativeTarget;
  1082. buildConfigurationList = A77F2C882231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetTests" */;
  1083. buildPhases = (
  1084. A77F2C6D2231FB4A001BD3F6 /* Sources */,
  1085. A77F2C6E2231FB4A001BD3F6 /* Frameworks */,
  1086. A77F2C6F2231FB4A001BD3F6 /* Resources */,
  1087. );
  1088. buildRules = (
  1089. );
  1090. dependencies = (
  1091. A77F2C732231FB4A001BD3F6 /* PBXTargetDependency */,
  1092. );
  1093. name = RainbowPlanetTests;
  1094. productName = RainbowPlanetTests;
  1095. productReference = A77F2C712231FB4A001BD3F6 /* RainbowPlanetTests.xctest */;
  1096. productType = "com.apple.product-type.bundle.unit-test";
  1097. };
  1098. A77F2C7B2231FB4A001BD3F6 /* RainbowPlanetUITests */ = {
  1099. isa = PBXNativeTarget;
  1100. buildConfigurationList = A77F2C8B2231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetUITests" */;
  1101. buildPhases = (
  1102. A77F2C782231FB4A001BD3F6 /* Sources */,
  1103. A77F2C792231FB4A001BD3F6 /* Frameworks */,
  1104. A77F2C7A2231FB4A001BD3F6 /* Resources */,
  1105. );
  1106. buildRules = (
  1107. );
  1108. dependencies = (
  1109. A77F2C7E2231FB4A001BD3F6 /* PBXTargetDependency */,
  1110. );
  1111. name = RainbowPlanetUITests;
  1112. productName = RainbowPlanetUITests;
  1113. productReference = A77F2C7C2231FB4A001BD3F6 /* RainbowPlanetUITests.xctest */;
  1114. productType = "com.apple.product-type.bundle.ui-testing";
  1115. };
  1116. /* End PBXNativeTarget section */
  1117. /* Begin PBXProject section */
  1118. A77F2C552231FB49001BD3F6 /* Project object */ = {
  1119. isa = PBXProject;
  1120. attributes = {
  1121. LastSwiftUpdateCheck = 1010;
  1122. LastUpgradeCheck = 1010;
  1123. ORGANIZATIONNAME = "南鑫林";
  1124. TargetAttributes = {
  1125. A77F2C5C2231FB49001BD3F6 = {
  1126. CreatedOnToolsVersion = 10.1;
  1127. LastSwiftMigration = 1020;
  1128. SystemCapabilities = {
  1129. com.apple.BackgroundModes = {
  1130. enabled = 1;
  1131. };
  1132. com.apple.Push = {
  1133. enabled = 1;
  1134. };
  1135. };
  1136. };
  1137. A77F2C702231FB4A001BD3F6 = {
  1138. CreatedOnToolsVersion = 10.1;
  1139. LastSwiftMigration = 1020;
  1140. TestTargetID = A77F2C5C2231FB49001BD3F6;
  1141. };
  1142. A77F2C7B2231FB4A001BD3F6 = {
  1143. CreatedOnToolsVersion = 10.1;
  1144. LastSwiftMigration = 1020;
  1145. TestTargetID = A77F2C5C2231FB49001BD3F6;
  1146. };
  1147. };
  1148. };
  1149. buildConfigurationList = A77F2C582231FB49001BD3F6 /* Build configuration list for PBXProject "RainbowPlanet" */;
  1150. compatibilityVersion = "Xcode 9.3";
  1151. developmentRegion = en;
  1152. hasScannedForEncodings = 0;
  1153. knownRegions = (
  1154. en,
  1155. Base,
  1156. );
  1157. mainGroup = A77F2C542231FB49001BD3F6;
  1158. productRefGroup = A77F2C5E2231FB49001BD3F6 /* Products */;
  1159. projectDirPath = "";
  1160. projectRoot = "";
  1161. targets = (
  1162. A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */,
  1163. A77F2C702231FB4A001BD3F6 /* RainbowPlanetTests */,
  1164. A77F2C7B2231FB4A001BD3F6 /* RainbowPlanetUITests */,
  1165. );
  1166. };
  1167. /* End PBXProject section */
  1168. /* Begin PBXResourcesBuildPhase section */
  1169. A77F2C5B2231FB49001BD3F6 /* Resources */ = {
  1170. isa = PBXResourcesBuildPhase;
  1171. buildActionMask = 2147483647;
  1172. files = (
  1173. A77F2CB82232010F001BD3F6 /* ShoppingCartViewController.xib in Resources */,
  1174. A7778C9E2243937300C7C47A /* RegisterLoginModule.xcassets in Resources */,
  1175. A77F2CB62232010F001BD3F6 /* MineViewController.xib in Resources */,
  1176. A7778C9722438F5D00C7C47A /* AlipaySDK.bundle in Resources */,
  1177. A75414F8224B4C1B002480B5 /* VerificationPhoneViewController.xib in Resources */,
  1178. A7778CA4224393A900C7C47A /* CommonModule.xcassets in Resources */,
  1179. A77F2C682231FB4A001BD3F6 /* Assets.xcassets in Resources */,
  1180. A7778C9C2243934A00C7C47A /* MineModule.xcassets in Resources */,
  1181. A7778C9922438F5D00C7C47A /* README.txt in Resources */,
  1182. A7778CA22243939100C7C47A /* ShoppingMallModule.xcassets in Resources */,
  1183. A7778CA02243938200C7C47A /* ShoppingCartModule.xcassets in Resources */,
  1184. A75414FE224B5F28002480B5 /* PasswordLoginViewController.xib in Resources */,
  1185. );
  1186. runOnlyForDeploymentPostprocessing = 0;
  1187. };
  1188. A77F2C6F2231FB4A001BD3F6 /* Resources */ = {
  1189. isa = PBXResourcesBuildPhase;
  1190. buildActionMask = 2147483647;
  1191. files = (
  1192. );
  1193. runOnlyForDeploymentPostprocessing = 0;
  1194. };
  1195. A77F2C7A2231FB4A001BD3F6 /* Resources */ = {
  1196. isa = PBXResourcesBuildPhase;
  1197. buildActionMask = 2147483647;
  1198. files = (
  1199. );
  1200. runOnlyForDeploymentPostprocessing = 0;
  1201. };
  1202. /* End PBXResourcesBuildPhase section */
  1203. /* Begin PBXShellScriptBuildPhase section */
  1204. 59501F6F4334279DFBD164A0 /* [CP] Copy Pods Resources */ = {
  1205. isa = PBXShellScriptBuildPhase;
  1206. buildActionMask = 2147483647;
  1207. files = (
  1208. );
  1209. inputFileListPaths = (
  1210. );
  1211. inputPaths = (
  1212. "${SRCROOT}/Pods/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-resources.sh",
  1213. "${PODS_ROOT}/UMCCommonLog/UMCommonLog/UMCommonLog.bundle",
  1214. "${PODS_ROOT}/UMCShare/UMShare/UMSocialUI/UMSocialSDKResources.bundle",
  1215. );
  1216. name = "[CP] Copy Pods Resources";
  1217. outputFileListPaths = (
  1218. );
  1219. outputPaths = (
  1220. "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/UMCommonLog.bundle",
  1221. "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/UMSocialSDKResources.bundle",
  1222. );
  1223. runOnlyForDeploymentPostprocessing = 0;
  1224. shellPath = /bin/sh;
  1225. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-resources.sh\"\n";
  1226. showEnvVarsInLog = 0;
  1227. };
  1228. 696EB1DDE9DE019617B4DAD7 /* [CP] Embed Pods Frameworks */ = {
  1229. isa = PBXShellScriptBuildPhase;
  1230. buildActionMask = 2147483647;
  1231. files = (
  1232. );
  1233. inputFileListPaths = (
  1234. );
  1235. inputPaths = (
  1236. "${SRCROOT}/Pods/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-frameworks.sh",
  1237. "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework",
  1238. "${BUILT_PRODUCTS_DIR}/CryptoSwift/CryptoSwift.framework",
  1239. "${BUILT_PRODUCTS_DIR}/DeviceKit/DeviceKit.framework",
  1240. "${BUILT_PRODUCTS_DIR}/EFQRCode/EFQRCode.framework",
  1241. "${BUILT_PRODUCTS_DIR}/FBRetainCycleDetector/FBRetainCycleDetector.framework",
  1242. "${BUILT_PRODUCTS_DIR}/FSPagerView/FSPagerView.framework",
  1243. "${BUILT_PRODUCTS_DIR}/FWPopupView/FWPopupView.framework",
  1244. "${BUILT_PRODUCTS_DIR}/IQKeyboardManagerSwift/IQKeyboardManagerSwift.framework",
  1245. "${BUILT_PRODUCTS_DIR}/JXCategoryView/JXCategoryView.framework",
  1246. "${BUILT_PRODUCTS_DIR}/KeychainAccess/KeychainAccess.framework",
  1247. "${BUILT_PRODUCTS_DIR}/Kingfisher/Kingfisher.framework",
  1248. "${BUILT_PRODUCTS_DIR}/LYEmptyView/LYEmptyView.framework",
  1249. "${BUILT_PRODUCTS_DIR}/MBProgressHUD/MBProgressHUD.framework",
  1250. "${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework",
  1251. "${BUILT_PRODUCTS_DIR}/MLeaksFinder/MLeaksFinder.framework",
  1252. "${BUILT_PRODUCTS_DIR}/Moya/Moya.framework",
  1253. "${BUILT_PRODUCTS_DIR}/ObjectMapper/ObjectMapper.framework",
  1254. "${BUILT_PRODUCTS_DIR}/PPBadgeViewSwift/PPBadgeViewSwift.framework",
  1255. "${BUILT_PRODUCTS_DIR}/Result/Result.framework",
  1256. "${BUILT_PRODUCTS_DIR}/RxAtomic/RxAtomic.framework",
  1257. "${BUILT_PRODUCTS_DIR}/RxCocoa/RxCocoa.framework",
  1258. "${BUILT_PRODUCTS_DIR}/RxSwift/RxSwift.framework",
  1259. "${BUILT_PRODUCTS_DIR}/SnapKit/SnapKit.framework",
  1260. "${BUILT_PRODUCTS_DIR}/SwiftyJSON/SwiftyJSON.framework",
  1261. "${BUILT_PRODUCTS_DIR}/SwiftyStarRatingView/SwiftyStarRatingView.framework",
  1262. "${BUILT_PRODUCTS_DIR}/swift_qrcodejs/swift_qrcodejs.framework",
  1263. );
  1264. name = "[CP] Embed Pods Frameworks";
  1265. outputFileListPaths = (
  1266. );
  1267. outputPaths = (
  1268. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Alamofire.framework",
  1269. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CryptoSwift.framework",
  1270. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DeviceKit.framework",
  1271. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/EFQRCode.framework",
  1272. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBRetainCycleDetector.framework",
  1273. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FSPagerView.framework",
  1274. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FWPopupView.framework",
  1275. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/IQKeyboardManagerSwift.framework",
  1276. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/JXCategoryView.framework",
  1277. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/KeychainAccess.framework",
  1278. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Kingfisher.framework",
  1279. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/LYEmptyView.framework",
  1280. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MBProgressHUD.framework",
  1281. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJRefresh.framework",
  1282. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MLeaksFinder.framework",
  1283. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Moya.framework",
  1284. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ObjectMapper.framework",
  1285. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/PPBadgeViewSwift.framework",
  1286. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Result.framework",
  1287. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxAtomic.framework",
  1288. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxCocoa.framework",
  1289. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxSwift.framework",
  1290. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SnapKit.framework",
  1291. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SwiftyJSON.framework",
  1292. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SwiftyStarRatingView.framework",
  1293. "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/swift_qrcodejs.framework",
  1294. );
  1295. runOnlyForDeploymentPostprocessing = 0;
  1296. shellPath = /bin/sh;
  1297. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-RainbowPlanet/Pods-RainbowPlanet-frameworks.sh\"\n";
  1298. showEnvVarsInLog = 0;
  1299. };
  1300. D3A9893FB9EA18608E79E053 /* [CP] Check Pods Manifest.lock */ = {
  1301. isa = PBXShellScriptBuildPhase;
  1302. buildActionMask = 2147483647;
  1303. files = (
  1304. );
  1305. inputFileListPaths = (
  1306. );
  1307. inputPaths = (
  1308. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1309. "${PODS_ROOT}/Manifest.lock",
  1310. );
  1311. name = "[CP] Check Pods Manifest.lock";
  1312. outputFileListPaths = (
  1313. );
  1314. outputPaths = (
  1315. "$(DERIVED_FILE_DIR)/Pods-RainbowPlanet-checkManifestLockResult.txt",
  1316. );
  1317. runOnlyForDeploymentPostprocessing = 0;
  1318. shellPath = /bin/sh;
  1319. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  1320. showEnvVarsInLog = 0;
  1321. };
  1322. /* End PBXShellScriptBuildPhase section */
  1323. /* Begin PBXSourcesBuildPhase section */
  1324. A77F2C592231FB49001BD3F6 /* Sources */ = {
  1325. isa = PBXSourcesBuildPhase;
  1326. buildActionMask = 2147483647;
  1327. files = (
  1328. A72A72BA22321DE000B21995 /* Extension+String.swift in Sources */,
  1329. A77F2CA02231FE45001BD3F6 /* BaseWebViewController.swift in Sources */,
  1330. A72A72C022321DE000B21995 /* Extension+UIView.swift in Sources */,
  1331. A72A72C522321DE000B21995 /* WKWebViewConfig.swift in Sources */,
  1332. A72A72BB22321DE000B21995 /* Extension+UILabel.swift in Sources */,
  1333. A77F2C9E2231FDDC001BD3F6 /* BaseViewController.swift in Sources */,
  1334. A77F2CC722320627001BD3F6 /* WRNavigationBar.swift in Sources */,
  1335. A72A72BE22321DE000B21995 /* Extension+RxTimer.swift in Sources */,
  1336. A72A72C422321DE000B21995 /* Extension+CAGradientLayer.swift in Sources */,
  1337. A7778CA72243A05400C7C47A /* IQKeyboardManagerSwiftManager.swift in Sources */,
  1338. A72A72B722321DE000B21995 /* Extension+NSMutableAttributedString.swift in Sources */,
  1339. A72A73392232688100B21995 /* AlipayOrderModel.swift in Sources */,
  1340. A7284404224DBFBD00F82F30 /* LoginModel.swift in Sources */,
  1341. A72A72A322321DE000B21995 /* LBXScanView.swift in Sources */,
  1342. A7A97FDC2238FBAD0070F84D /* VerticalListCellCollectionViewCell.swift in Sources */,
  1343. A72A7386223396CB00B21995 /* SwiftMoyaNetWorkManager.swift in Sources */,
  1344. A77F2CCA223209F2001BD3F6 /* BaseTabbarViewController.swift in Sources */,
  1345. A72A726822321DBD00B21995 /* UMManager.swift in Sources */,
  1346. A77F2CB92232010F001BD3F6 /* ShoppingCartViewController.swift in Sources */,
  1347. A72A72B822321DE000B21995 /* Extension+UserDefaults.swift in Sources */,
  1348. A72A72A222321DE000B21995 /* LBXScanNetAnimation.swift in Sources */,
  1349. A7778CB82244E97A00C7C47A /* BindPhoneNumberViewController.swift in Sources */,
  1350. A754150F224CACF9002480B5 /* SwiftSign.swift in Sources */,
  1351. A72A72D322321E2700B21995 /* CacheMacro.swift in Sources */,
  1352. A72A72A422321DE000B21995 /* LBXScanViewController.swift in Sources */,
  1353. A7541504224C609A002480B5 /* AMapLocationModel.swift in Sources */,
  1354. A77F2CB52232010F001BD3F6 /* ShoppingMallViewController.swift in Sources */,
  1355. A75414F7224B4C1B002480B5 /* VerificationPhoneViewController.swift in Sources */,
  1356. A77F2CC3223203BA001BD3F6 /* AppDelegate+Window.swift in Sources */,
  1357. A72A72B022321DE000B21995 /* CGView.swift in Sources */,
  1358. A72A73142232475E00B21995 /* AlipayManager.swift in Sources */,
  1359. A72A72D522321E2700B21995 /* ColorMacro.swift in Sources */,
  1360. A72A7333223256E100B21995 /* PayManager.swift in Sources */,
  1361. A775CC00223774A300EBDCF8 /* ShoppingMallView.swift in Sources */,
  1362. A72A72D622321E2700B21995 /* ThirdPartyMacro.swift in Sources */,
  1363. A7284401224DBB7700F82F30 /* SwiftMoyaNetWorkServiceUser.swift in Sources */,
  1364. A72843FC224DB6B800F82F30 /* SwiftMoyaServiceUserApi.swift in Sources */,
  1365. A72A72A622321DE000B21995 /* LBXScanViewStyle.swift in Sources */,
  1366. A72A72B422321DE000B21995 /* Extension+UIImage.swift in Sources */,
  1367. A72A72AF22321DE000B21995 /* AppInfo.swift in Sources */,
  1368. A72A72D422321E2700B21995 /* EnumMacro.swift in Sources */,
  1369. A7778CDF22461BAD00C7C47A /* PhoneCountryAreaSectionHeaderView.swift in Sources */,
  1370. A775CC0322377C6500EBDCF8 /* EmptyView.swift in Sources */,
  1371. A72A72A922321DE000B21995 /* NumberKeyboard.swift in Sources */,
  1372. A72A72AA22321DE000B21995 /* Log.swift in Sources */,
  1373. A72A72B622321DE000B21995 /* Extension+NSRange.swift in Sources */,
  1374. A75414FD224B5F28002480B5 /* PasswordLoginViewController.swift in Sources */,
  1375. A7541500224BC02F002480B5 /* AMapManager.swift in Sources */,
  1376. A72A72A722321DE000B21995 /* LBXPermissions.swift in Sources */,
  1377. A72A72AE22321DE000B21995 /* CountdownButton.swift in Sources */,
  1378. A77F2CB72232010F001BD3F6 /* MineViewController.swift in Sources */,
  1379. A7778CA92244904500C7C47A /* Extension+Gifu.GIFImageView.swift in Sources */,
  1380. A7A97FDD2238FBAD0070F84D /* VerticalSectionHeaderView.swift in Sources */,
  1381. A72A72A822321DE000B21995 /* LBXScanWrapper.swift in Sources */,
  1382. A7778CB32244D73400C7C47A /* ThirdPartyLoginViewController.swift in Sources */,
  1383. A7A97FDB2238FBAD0070F84D /* VerticalListCellModel.swift in Sources */,
  1384. A72A72BD22321DE000B21995 /* Extension+UIColor.swift in Sources */,
  1385. A77F2CC822320627001BD3F6 /* WRCustomNavigationBar.swift in Sources */,
  1386. A72A72BC22321DE000B21995 /* Extension+UIAlertController.swift in Sources */,
  1387. A72A72B122321DE000B21995 /* UIScrollView+MJRefreshEX.m in Sources */,
  1388. A7A97FDA2238FBAD0070F84D /* VerticalListSectionModel.swift in Sources */,
  1389. A72A72A522321DE000B21995 /* LBXScanLineAnimation.swift in Sources */,
  1390. A72A72C322321DE000B21995 /* Extension+Date.swift in Sources */,
  1391. A7778CAB2244B12500C7C47A /* CountDownManager.swift in Sources */,
  1392. A775CBFE2237493600EBDCF8 /* ShoppingMallNavigationBarView.swift in Sources */,
  1393. A72A72C622321DE000B21995 /* WebView.swift in Sources */,
  1394. A72A72D122321E2700B21995 /* HTMLURLMacro.swift in Sources */,
  1395. A72A73162232481600B21995 /* WeChatpayManager.swift in Sources */,
  1396. A7778CBA2244F14B00C7C47A /* Extension+UIViewController.swift in Sources */,
  1397. A7778C8D22438A5200C7C47A /* AlertView.swift in Sources */,
  1398. A7284A542252FB5C000BAEC4 /* PaginationModel.swift in Sources */,
  1399. A72A72D022321E2700B21995 /* FontMacro.swift in Sources */,
  1400. A77F2C982231FD25001BD3F6 /* BaseNavigationViewController.swift in Sources */,
  1401. A72A72AB22321DE000B21995 /* SwiftProgressHUD.swift in Sources */,
  1402. A7778CD522460D8E00C7C47A /* PhoneCountryAreaTableViewCell.swift in Sources */,
  1403. A77F2C612231FB49001BD3F6 /* AppDelegate.swift in Sources */,
  1404. A72A734322327DE300B21995 /* WeChatpayOrderModel.swift in Sources */,
  1405. A72A726722321DBD00B21995 /* LocationModel.swift in Sources */,
  1406. A72A72D222321E2700B21995 /* Common.swift in Sources */,
  1407. A7284440224DFACD00F82F30 /* InfoModel.swift in Sources */,
  1408. A72A72B522321DE000B21995 /* Extension+UITextView.swift in Sources */,
  1409. A72A733722325EED00B21995 /* AlipayResultModel.swift in Sources */,
  1410. A7541502224C5ECB002480B5 /* BaiduMapManager.swift in Sources */,
  1411. A77F2C9C2231FDCF001BD3F6 /* BaseView.swift in Sources */,
  1412. A7284A522252EE9A000BAEC4 /* RootModel.swift in Sources */,
  1413. A72A7388223396CB00B21995 /* ApiMacro.swift in Sources */,
  1414. A72A72B922321DE000B21995 /* Extension+Array.swift in Sources */,
  1415. A7778CDD2246121500C7C47A /* PhoneCountryAreaListMdoel.swift in Sources */,
  1416. A72A733522325A4B00B21995 /* AppDelegate+HandleOpen.swift in Sources */,
  1417. A72A72AC22321DE000B21995 /* Regex.swift in Sources */,
  1418. A7778CC52246035700C7C47A /* PhoneCountryAreaViewController.swift in Sources */,
  1419. A72A72CF22321E2700B21995 /* NotificationCenterMacro.swift in Sources */,
  1420. A72A72BF22321DE000B21995 /* Extension+UIButton.swift in Sources */,
  1421. );
  1422. runOnlyForDeploymentPostprocessing = 0;
  1423. };
  1424. A77F2C6D2231FB4A001BD3F6 /* Sources */ = {
  1425. isa = PBXSourcesBuildPhase;
  1426. buildActionMask = 2147483647;
  1427. files = (
  1428. A77F2C762231FB4A001BD3F6 /* RainbowPlanetTests.swift in Sources */,
  1429. );
  1430. runOnlyForDeploymentPostprocessing = 0;
  1431. };
  1432. A77F2C782231FB4A001BD3F6 /* Sources */ = {
  1433. isa = PBXSourcesBuildPhase;
  1434. buildActionMask = 2147483647;
  1435. files = (
  1436. A77F2C812231FB4A001BD3F6 /* RainbowPlanetUITests.swift in Sources */,
  1437. );
  1438. runOnlyForDeploymentPostprocessing = 0;
  1439. };
  1440. /* End PBXSourcesBuildPhase section */
  1441. /* Begin PBXTargetDependency section */
  1442. A77F2C732231FB4A001BD3F6 /* PBXTargetDependency */ = {
  1443. isa = PBXTargetDependency;
  1444. target = A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */;
  1445. targetProxy = A77F2C722231FB4A001BD3F6 /* PBXContainerItemProxy */;
  1446. };
  1447. A77F2C7E2231FB4A001BD3F6 /* PBXTargetDependency */ = {
  1448. isa = PBXTargetDependency;
  1449. target = A77F2C5C2231FB49001BD3F6 /* RainbowPlanet */;
  1450. targetProxy = A77F2C7D2231FB4A001BD3F6 /* PBXContainerItemProxy */;
  1451. };
  1452. /* End PBXTargetDependency section */
  1453. /* Begin XCBuildConfiguration section */
  1454. A77F2C832231FB4A001BD3F6 /* Debug */ = {
  1455. isa = XCBuildConfiguration;
  1456. buildSettings = {
  1457. ALWAYS_SEARCH_USER_PATHS = NO;
  1458. CLANG_ANALYZER_NONNULL = YES;
  1459. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1460. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  1461. CLANG_CXX_LIBRARY = "libc++";
  1462. CLANG_ENABLE_MODULES = YES;
  1463. CLANG_ENABLE_OBJC_ARC = YES;
  1464. CLANG_ENABLE_OBJC_WEAK = YES;
  1465. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1466. CLANG_WARN_BOOL_CONVERSION = YES;
  1467. CLANG_WARN_COMMA = YES;
  1468. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1469. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1470. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1471. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1472. CLANG_WARN_EMPTY_BODY = YES;
  1473. CLANG_WARN_ENUM_CONVERSION = YES;
  1474. CLANG_WARN_INFINITE_RECURSION = YES;
  1475. CLANG_WARN_INT_CONVERSION = YES;
  1476. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1477. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1478. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1479. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1480. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1481. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1482. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1483. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1484. CLANG_WARN_UNREACHABLE_CODE = YES;
  1485. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1486. CODE_SIGN_IDENTITY = "iPhone Developer";
  1487. COPY_PHASE_STRIP = NO;
  1488. DEBUG_INFORMATION_FORMAT = dwarf;
  1489. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1490. ENABLE_TESTABILITY = YES;
  1491. GCC_C_LANGUAGE_STANDARD = gnu11;
  1492. GCC_DYNAMIC_NO_PIC = NO;
  1493. GCC_NO_COMMON_BLOCKS = YES;
  1494. GCC_OPTIMIZATION_LEVEL = 0;
  1495. GCC_PREPROCESSOR_DEFINITIONS = (
  1496. "DEBUG=1",
  1497. "$(inherited)",
  1498. );
  1499. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1500. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1501. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1502. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1503. GCC_WARN_UNUSED_FUNCTION = YES;
  1504. GCC_WARN_UNUSED_VARIABLE = YES;
  1505. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1506. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  1507. MTL_FAST_MATH = YES;
  1508. ONLY_ACTIVE_ARCH = YES;
  1509. SDKROOT = iphoneos;
  1510. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  1511. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  1512. };
  1513. name = Debug;
  1514. };
  1515. A77F2C842231FB4A001BD3F6 /* Release */ = {
  1516. isa = XCBuildConfiguration;
  1517. buildSettings = {
  1518. ALWAYS_SEARCH_USER_PATHS = NO;
  1519. CLANG_ANALYZER_NONNULL = YES;
  1520. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1521. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  1522. CLANG_CXX_LIBRARY = "libc++";
  1523. CLANG_ENABLE_MODULES = YES;
  1524. CLANG_ENABLE_OBJC_ARC = YES;
  1525. CLANG_ENABLE_OBJC_WEAK = YES;
  1526. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1527. CLANG_WARN_BOOL_CONVERSION = YES;
  1528. CLANG_WARN_COMMA = YES;
  1529. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1530. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1531. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1532. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1533. CLANG_WARN_EMPTY_BODY = YES;
  1534. CLANG_WARN_ENUM_CONVERSION = YES;
  1535. CLANG_WARN_INFINITE_RECURSION = YES;
  1536. CLANG_WARN_INT_CONVERSION = YES;
  1537. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1538. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1539. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1540. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1541. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1542. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1543. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1544. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1545. CLANG_WARN_UNREACHABLE_CODE = YES;
  1546. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1547. CODE_SIGN_IDENTITY = "iPhone Developer";
  1548. COPY_PHASE_STRIP = NO;
  1549. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1550. ENABLE_NS_ASSERTIONS = NO;
  1551. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1552. GCC_C_LANGUAGE_STANDARD = gnu11;
  1553. GCC_NO_COMMON_BLOCKS = YES;
  1554. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1555. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1556. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1557. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1558. GCC_WARN_UNUSED_FUNCTION = YES;
  1559. GCC_WARN_UNUSED_VARIABLE = YES;
  1560. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1561. MTL_ENABLE_DEBUG_INFO = NO;
  1562. MTL_FAST_MATH = YES;
  1563. SDKROOT = iphoneos;
  1564. SWIFT_COMPILATION_MODE = wholemodule;
  1565. SWIFT_OPTIMIZATION_LEVEL = "-O";
  1566. VALIDATE_PRODUCT = YES;
  1567. };
  1568. name = Release;
  1569. };
  1570. A77F2C862231FB4A001BD3F6 /* Debug */ = {
  1571. isa = XCBuildConfiguration;
  1572. baseConfigurationReference = BD9052C044FD3AE4E62D3929 /* Pods-RainbowPlanet.debug.xcconfig */;
  1573. buildSettings = {
  1574. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1575. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  1576. CLANG_ENABLE_MODULES = YES;
  1577. CODE_SIGN_ENTITLEMENTS = RainbowPlanet/RainbowPlanet.entitlements;
  1578. CODE_SIGN_STYLE = Automatic;
  1579. DEVELOPMENT_TEAM = B4UG6NNMLL;
  1580. ENABLE_BITCODE = YES;
  1581. FRAMEWORK_SEARCH_PATHS = (
  1582. "$(inherited)",
  1583. "$(PROJECT_DIR)/RainbowPlanet/Lib/AlipaySDK",
  1584. );
  1585. HEADER_SEARCH_PATHS = (
  1586. "$(inherited)",
  1587. "\"${PODS_ROOT}/Headers/Public\"",
  1588. "\"${PODS_ROOT}/Headers/Public/UMCShare\"",
  1589. "\"$(SRCROOT)/RainbowPlanet/Lib/AlipaySDK\"",
  1590. );
  1591. INFOPLIST_FILE = "$(SRCROOT)/RainbowPlanet/Supporting Files/Info.plist";
  1592. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1593. LD_RUNPATH_SEARCH_PATHS = (
  1594. "$(inherited)",
  1595. "@executable_path/Frameworks",
  1596. );
  1597. LIBRARY_SEARCH_PATHS = (
  1598. "$(inherited)",
  1599. "$(PROJECT_DIR)/RainbowPlanet/Lib/WeChatSDK",
  1600. );
  1601. OTHER_LDFLAGS = (
  1602. "$(inherited)",
  1603. "-ObjC",
  1604. "-l\"SocialQQ\"",
  1605. "-l\"SocialSina\"",
  1606. "-l\"SocialWeChat\"",
  1607. "-l\"c++\"",
  1608. "-l\"sqlite3\"",
  1609. "-l\"sqlite3.0\"",
  1610. "-l\"z\"",
  1611. "-framework",
  1612. "\"AdSupport\"",
  1613. "-framework",
  1614. "\"Alamofire\"",
  1615. "-framework",
  1616. "\"BMKLocationKit\"",
  1617. "-framework",
  1618. "\"CoreGraphics\"",
  1619. "-framework",
  1620. "\"CoreLocation\"",
  1621. "-framework",
  1622. "\"CoreTelephony\"",
  1623. "-framework",
  1624. "\"DeviceKit\"",
  1625. "-framework",
  1626. "\"FBRetainCycleDetector\"",
  1627. "-framework",
  1628. "\"Foundation\"",
  1629. "-framework",
  1630. "\"IQKeyboardManagerSwift\"",
  1631. "-framework",
  1632. "\"Kingfisher\"",
  1633. "-framework",
  1634. "\"MBProgressHUD\"",
  1635. "-framework",
  1636. "\"MJRefresh\"",
  1637. "-framework",
  1638. "\"MLeaksFinder\"",
  1639. "-framework",
  1640. "\"Moya\"",
  1641. "-framework",
  1642. "\"ObjectMapper\"",
  1643. "-framework",
  1644. "\"Photos\"",
  1645. "-framework",
  1646. "\"QuartzCore\"",
  1647. "-framework",
  1648. "\"Result\"",
  1649. "-framework",
  1650. "\"RxAtomic\"",
  1651. "-framework",
  1652. "\"RxCocoa\"",
  1653. "-framework",
  1654. "\"RxSwift\"",
  1655. "-framework",
  1656. "\"Security\"",
  1657. "-framework",
  1658. "\"SecurityEnvSDK\"",
  1659. "-framework",
  1660. "\"SnapKit\"",
  1661. "-framework",
  1662. "\"SwiftyJSON\"",
  1663. "-framework",
  1664. "\"SystemConfiguration\"",
  1665. "-framework",
  1666. "\"UIKit\"",
  1667. "-framework",
  1668. "\"UMAnalytics\"",
  1669. "-framework",
  1670. "\"UMCommon\"",
  1671. "-framework",
  1672. "\"UMCommonLog\"",
  1673. "-framework",
  1674. "\"UMPush\"",
  1675. "-framework",
  1676. "\"UMShare\"",
  1677. "-framework",
  1678. "\"UShareUI\"",
  1679. "-framework",
  1680. "\"UTDID\"",
  1681. "-framework",
  1682. "\"UserNotifications\"",
  1683. );
  1684. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.rainbowplanet;
  1685. PRODUCT_NAME = "$(TARGET_NAME)";
  1686. SWIFT_OBJC_BRIDGING_HEADER = "RainbowPlanet/Define/RainbowPlanet-Bridging-Header.h";
  1687. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  1688. SWIFT_VERSION = 5.0;
  1689. TARGETED_DEVICE_FAMILY = "1,2";
  1690. };
  1691. name = Debug;
  1692. };
  1693. A77F2C872231FB4A001BD3F6 /* Release */ = {
  1694. isa = XCBuildConfiguration;
  1695. baseConfigurationReference = 57C497E128081597F165C771 /* Pods-RainbowPlanet.release.xcconfig */;
  1696. buildSettings = {
  1697. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1698. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  1699. CLANG_ENABLE_MODULES = YES;
  1700. CODE_SIGN_ENTITLEMENTS = RainbowPlanet/RainbowPlanet.entitlements;
  1701. CODE_SIGN_STYLE = Automatic;
  1702. DEVELOPMENT_TEAM = B4UG6NNMLL;
  1703. ENABLE_BITCODE = YES;
  1704. FRAMEWORK_SEARCH_PATHS = (
  1705. "$(inherited)",
  1706. "$(PROJECT_DIR)/RainbowPlanet/Lib/AlipaySDK",
  1707. );
  1708. HEADER_SEARCH_PATHS = (
  1709. "$(inherited)",
  1710. "\"${PODS_ROOT}/Headers/Public\"",
  1711. "\"${PODS_ROOT}/Headers/Public/UMCShare\"",
  1712. "\"$(SRCROOT)/RainbowPlanet/Lib/AlipaySDK\"",
  1713. );
  1714. INFOPLIST_FILE = "$(SRCROOT)/RainbowPlanet/Supporting Files/Info.plist";
  1715. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1716. LD_RUNPATH_SEARCH_PATHS = (
  1717. "$(inherited)",
  1718. "@executable_path/Frameworks",
  1719. );
  1720. LIBRARY_SEARCH_PATHS = (
  1721. "$(inherited)",
  1722. "$(PROJECT_DIR)/RainbowPlanet/Lib/WeChatSDK",
  1723. );
  1724. OTHER_LDFLAGS = (
  1725. "$(inherited)",
  1726. "-ObjC",
  1727. "-l\"SocialQQ\"",
  1728. "-l\"SocialSina\"",
  1729. "-l\"SocialWeChat\"",
  1730. "-l\"c++\"",
  1731. "-l\"sqlite3\"",
  1732. "-l\"sqlite3.0\"",
  1733. "-l\"z\"",
  1734. "-framework",
  1735. "\"AdSupport\"",
  1736. "-framework",
  1737. "\"Alamofire\"",
  1738. "-framework",
  1739. "\"BMKLocationKit\"",
  1740. "-framework",
  1741. "\"CoreGraphics\"",
  1742. "-framework",
  1743. "\"CoreLocation\"",
  1744. "-framework",
  1745. "\"CoreTelephony\"",
  1746. "-framework",
  1747. "\"DeviceKit\"",
  1748. "-framework",
  1749. "\"FBRetainCycleDetector\"",
  1750. "-framework",
  1751. "\"Foundation\"",
  1752. "-framework",
  1753. "\"IQKeyboardManagerSwift\"",
  1754. "-framework",
  1755. "\"Kingfisher\"",
  1756. "-framework",
  1757. "\"MBProgressHUD\"",
  1758. "-framework",
  1759. "\"MJRefresh\"",
  1760. "-framework",
  1761. "\"MLeaksFinder\"",
  1762. "-framework",
  1763. "\"Moya\"",
  1764. "-framework",
  1765. "\"ObjectMapper\"",
  1766. "-framework",
  1767. "\"Photos\"",
  1768. "-framework",
  1769. "\"QuartzCore\"",
  1770. "-framework",
  1771. "\"Result\"",
  1772. "-framework",
  1773. "\"RxAtomic\"",
  1774. "-framework",
  1775. "\"RxCocoa\"",
  1776. "-framework",
  1777. "\"RxSwift\"",
  1778. "-framework",
  1779. "\"Security\"",
  1780. "-framework",
  1781. "\"SecurityEnvSDK\"",
  1782. "-framework",
  1783. "\"SnapKit\"",
  1784. "-framework",
  1785. "\"SwiftyJSON\"",
  1786. "-framework",
  1787. "\"SystemConfiguration\"",
  1788. "-framework",
  1789. "\"UIKit\"",
  1790. "-framework",
  1791. "\"UMAnalytics\"",
  1792. "-framework",
  1793. "\"UMCommon\"",
  1794. "-framework",
  1795. "\"UMCommonLog\"",
  1796. "-framework",
  1797. "\"UMPush\"",
  1798. "-framework",
  1799. "\"UMShare\"",
  1800. "-framework",
  1801. "\"UShareUI\"",
  1802. "-framework",
  1803. "\"UTDID\"",
  1804. "-framework",
  1805. "\"UserNotifications\"",
  1806. );
  1807. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.rainbowplanet;
  1808. PRODUCT_NAME = "$(TARGET_NAME)";
  1809. SWIFT_OBJC_BRIDGING_HEADER = "RainbowPlanet/Define/RainbowPlanet-Bridging-Header.h";
  1810. SWIFT_VERSION = 5.0;
  1811. TARGETED_DEVICE_FAMILY = "1,2";
  1812. };
  1813. name = Release;
  1814. };
  1815. A77F2C892231FB4A001BD3F6 /* Debug */ = {
  1816. isa = XCBuildConfiguration;
  1817. buildSettings = {
  1818. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1819. BUNDLE_LOADER = "$(TEST_HOST)";
  1820. CODE_SIGN_STYLE = Automatic;
  1821. DEVELOPMENT_TEAM = B4UG6NNMLL;
  1822. INFOPLIST_FILE = RainbowPlanetTests/Info.plist;
  1823. LD_RUNPATH_SEARCH_PATHS = (
  1824. "$(inherited)",
  1825. "@executable_path/Frameworks",
  1826. "@loader_path/Frameworks",
  1827. );
  1828. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetTests;
  1829. PRODUCT_NAME = "$(TARGET_NAME)";
  1830. SWIFT_VERSION = 5.0;
  1831. TARGETED_DEVICE_FAMILY = "1,2";
  1832. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RainbowPlanet.app/RainbowPlanet";
  1833. };
  1834. name = Debug;
  1835. };
  1836. A77F2C8A2231FB4A001BD3F6 /* Release */ = {
  1837. isa = XCBuildConfiguration;
  1838. buildSettings = {
  1839. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1840. BUNDLE_LOADER = "$(TEST_HOST)";
  1841. CODE_SIGN_STYLE = Automatic;
  1842. DEVELOPMENT_TEAM = B4UG6NNMLL;
  1843. INFOPLIST_FILE = RainbowPlanetTests/Info.plist;
  1844. LD_RUNPATH_SEARCH_PATHS = (
  1845. "$(inherited)",
  1846. "@executable_path/Frameworks",
  1847. "@loader_path/Frameworks",
  1848. );
  1849. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetTests;
  1850. PRODUCT_NAME = "$(TARGET_NAME)";
  1851. SWIFT_VERSION = 5.0;
  1852. TARGETED_DEVICE_FAMILY = "1,2";
  1853. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RainbowPlanet.app/RainbowPlanet";
  1854. };
  1855. name = Release;
  1856. };
  1857. A77F2C8C2231FB4A001BD3F6 /* Debug */ = {
  1858. isa = XCBuildConfiguration;
  1859. buildSettings = {
  1860. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1861. CODE_SIGN_IDENTITY = "iPhone Developer";
  1862. CODE_SIGN_STYLE = Automatic;
  1863. DEVELOPMENT_TEAM = B4UG6NNMLL;
  1864. INFOPLIST_FILE = RainbowPlanetUITests/Info.plist;
  1865. LD_RUNPATH_SEARCH_PATHS = (
  1866. "$(inherited)",
  1867. "@executable_path/Frameworks",
  1868. "@loader_path/Frameworks",
  1869. );
  1870. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetUITests;
  1871. PRODUCT_NAME = "$(TARGET_NAME)";
  1872. PROVISIONING_PROFILE_SPECIFIER = "";
  1873. SWIFT_VERSION = 5.0;
  1874. TARGETED_DEVICE_FAMILY = "1,2";
  1875. TEST_TARGET_NAME = RainbowPlanet;
  1876. };
  1877. name = Debug;
  1878. };
  1879. A77F2C8D2231FB4A001BD3F6 /* Release */ = {
  1880. isa = XCBuildConfiguration;
  1881. buildSettings = {
  1882. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1883. CODE_SIGN_IDENTITY = "iPhone Developer";
  1884. CODE_SIGN_STYLE = Automatic;
  1885. DEVELOPMENT_TEAM = B4UG6NNMLL;
  1886. INFOPLIST_FILE = RainbowPlanetUITests/Info.plist;
  1887. LD_RUNPATH_SEARCH_PATHS = (
  1888. "$(inherited)",
  1889. "@executable_path/Frameworks",
  1890. "@loader_path/Frameworks",
  1891. );
  1892. PRODUCT_BUNDLE_IDENTIFIER = com.chxq.RainbowPlanetUITests;
  1893. PRODUCT_NAME = "$(TARGET_NAME)";
  1894. PROVISIONING_PROFILE_SPECIFIER = "";
  1895. SWIFT_VERSION = 5.0;
  1896. TARGETED_DEVICE_FAMILY = "1,2";
  1897. TEST_TARGET_NAME = RainbowPlanet;
  1898. };
  1899. name = Release;
  1900. };
  1901. /* End XCBuildConfiguration section */
  1902. /* Begin XCConfigurationList section */
  1903. A77F2C582231FB49001BD3F6 /* Build configuration list for PBXProject "RainbowPlanet" */ = {
  1904. isa = XCConfigurationList;
  1905. buildConfigurations = (
  1906. A77F2C832231FB4A001BD3F6 /* Debug */,
  1907. A77F2C842231FB4A001BD3F6 /* Release */,
  1908. );
  1909. defaultConfigurationIsVisible = 0;
  1910. defaultConfigurationName = Release;
  1911. };
  1912. A77F2C852231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanet" */ = {
  1913. isa = XCConfigurationList;
  1914. buildConfigurations = (
  1915. A77F2C862231FB4A001BD3F6 /* Debug */,
  1916. A77F2C872231FB4A001BD3F6 /* Release */,
  1917. );
  1918. defaultConfigurationIsVisible = 0;
  1919. defaultConfigurationName = Release;
  1920. };
  1921. A77F2C882231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetTests" */ = {
  1922. isa = XCConfigurationList;
  1923. buildConfigurations = (
  1924. A77F2C892231FB4A001BD3F6 /* Debug */,
  1925. A77F2C8A2231FB4A001BD3F6 /* Release */,
  1926. );
  1927. defaultConfigurationIsVisible = 0;
  1928. defaultConfigurationName = Release;
  1929. };
  1930. A77F2C8B2231FB4A001BD3F6 /* Build configuration list for PBXNativeTarget "RainbowPlanetUITests" */ = {
  1931. isa = XCConfigurationList;
  1932. buildConfigurations = (
  1933. A77F2C8C2231FB4A001BD3F6 /* Debug */,
  1934. A77F2C8D2231FB4A001BD3F6 /* Release */,
  1935. );
  1936. defaultConfigurationIsVisible = 0;
  1937. defaultConfigurationName = Release;
  1938. };
  1939. /* End XCConfigurationList section */
  1940. };
  1941. rootObject = A77F2C552231FB49001BD3F6 /* Project object */;
  1942. }