project.pbxproj 104 KB

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