project.pbxproj 100 KB

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