project.pbxproj 104 KB

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