project.pbxproj 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 56;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. AD2B46D4292DCA1700C3D62F /* KMAdvertisement.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AD2B46C9292DCA1700C3D62F /* KMAdvertisement.framework */; };
  10. AD2B46D9292DCA1700C3D62F /* KMAdvertisementTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD2B46D8292DCA1700C3D62F /* KMAdvertisementTests.swift */; };
  11. AD2B46DA292DCA1700C3D62F /* KMAdvertisement.h in Headers */ = {isa = PBXBuildFile; fileRef = AD2B46CC292DCA1700C3D62F /* KMAdvertisement.h */; settings = {ATTRIBUTES = (Public, ); }; };
  12. AD2B46E4292DCCF500C3D62F /* KMAdvertisement.bundle in Resources */ = {isa = PBXBuildFile; fileRef = AD2B46E3292DCCF500C3D62F /* KMAdvertisement.bundle */; };
  13. AD4B453E2939FBB60076FA14 /* KMAdvertisementModelTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD4B453D2939FBB60076FA14 /* KMAdvertisementModelTransition.swift */; };
  14. AD4B453F2939FBB60076FA14 /* KMAdvertisementModelTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD4B453D2939FBB60076FA14 /* KMAdvertisementModelTransition.swift */; };
  15. AD4B4543293B57AD0076FA14 /* KMAdvertisementBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD4B4542293B57AD0076FA14 /* KMAdvertisementBaseView.swift */; };
  16. AD4B4544293B57AD0076FA14 /* KMAdvertisementBaseView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD4B4542293B57AD0076FA14 /* KMAdvertisementBaseView.swift */; };
  17. AD7BB7BE292DE94F00D7C3FB /* KMAdvertisementManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB7BD292DE94F00D7C3FB /* KMAdvertisementManager.swift */; };
  18. AD7BB7C6292DE9DB00D7C3FB /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB7C5292DE9DB00D7C3FB /* AppDelegate.swift */; };
  19. AD7BB7C8292DE9DB00D7C3FB /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB7C7292DE9DB00D7C3FB /* ViewController.swift */; };
  20. AD7BB7CA292DE9DC00D7C3FB /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AD7BB7C9292DE9DC00D7C3FB /* Assets.xcassets */; };
  21. AD7BB7CD292DE9DC00D7C3FB /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AD7BB7CB292DE9DC00D7C3FB /* Main.storyboard */; };
  22. AD7BB7D8292DE9DD00D7C3FB /* KMAdvertisementDemo_MacTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB7D7292DE9DD00D7C3FB /* KMAdvertisementDemo_MacTests.swift */; };
  23. AD7BB7E2292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB7E1292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITests.swift */; };
  24. AD7BB7E4292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB7E3292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITestsLaunchTests.swift */; };
  25. AD7BB7EE292DEA0400D7C3FB /* KMAdvertisement.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AD2B46C9292DCA1700C3D62F /* KMAdvertisement.framework */; };
  26. AD7BB7EF292DEA0400D7C3FB /* KMAdvertisement.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = AD2B46C9292DCA1700C3D62F /* KMAdvertisement.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  27. AD7BB7FF292E131100D7C3FB /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB7FE292E131100D7C3FB /* AppDelegate.swift */; };
  28. AD7BB801292E131100D7C3FB /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB800292E131100D7C3FB /* SceneDelegate.swift */; };
  29. AD7BB803292E131100D7C3FB /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB802292E131100D7C3FB /* ViewController.swift */; };
  30. AD7BB806292E131100D7C3FB /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AD7BB804292E131100D7C3FB /* Main.storyboard */; };
  31. AD7BB808292E131200D7C3FB /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = AD7BB807292E131200D7C3FB /* Assets.xcassets */; };
  32. AD7BB80B292E131200D7C3FB /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AD7BB809292E131200D7C3FB /* LaunchScreen.storyboard */; };
  33. AD7BB816292E131200D7C3FB /* KMAdvertisementDemo_iOSTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB815292E131200D7C3FB /* KMAdvertisementDemo_iOSTests.swift */; };
  34. AD7BB820292E131300D7C3FB /* KMAdvertisementDemo_iOSUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB81F292E131300D7C3FB /* KMAdvertisementDemo_iOSUITests.swift */; };
  35. AD7BB822292E131300D7C3FB /* KMAdvertisementDemo_iOSUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB821292E131300D7C3FB /* KMAdvertisementDemo_iOSUITestsLaunchTests.swift */; };
  36. AD7BB836292E144100D7C3FB /* KMAdvertisementRequestServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB835292E144100D7C3FB /* KMAdvertisementRequestServer.swift */; };
  37. AD7BB837292E15A600D7C3FB /* AFNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AD7BB82E292E133500D7C3FB /* AFNetworking.framework */; };
  38. AD7BB83A292F035300D7C3FB /* KMAdvertisementConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB839292F035300D7C3FB /* KMAdvertisementConfig.swift */; };
  39. AD7BB83B2930678900D7C3FB /* AFNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AD7BB82E292E133500D7C3FB /* AFNetworking.framework */; };
  40. AD7BB83C2930678900D7C3FB /* AFNetworking.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = AD7BB82E292E133500D7C3FB /* AFNetworking.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  41. AD9CA7AA2935DFF0000216EA /* KMAdvertisementTimeStampConversion.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD9CA7A92935DFF0000216EA /* KMAdvertisementTimeStampConversion.swift */; };
  42. AD9CA7AC2935E075000216EA /* KMAdvertisementTimeStampConversion.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD9CA7A92935DFF0000216EA /* KMAdvertisementTimeStampConversion.swift */; };
  43. AD9CA7AF2935EFDB000216EA /* KMAdvertisementTimeStampConversion.swift in Headers */ = {isa = PBXBuildFile; fileRef = AD9CA7A92935DFF0000216EA /* KMAdvertisementTimeStampConversion.swift */; settings = {ATTRIBUTES = (Public, ); }; };
  44. AD9CA7B829374A7F000216EA /* KMAdvertisementColorConversion.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD9CA7B729374A7F000216EA /* KMAdvertisementColorConversion.swift */; };
  45. AD9CA7B929374A7F000216EA /* KMAdvertisementColorConversion.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD9CA7B729374A7F000216EA /* KMAdvertisementColorConversion.swift */; };
  46. AD9CA7CB29377E6E000216EA /* KMAdvertisementModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD9CA7CA29377E6E000216EA /* KMAdvertisementModel.swift */; };
  47. AD9CA7CC29377E6E000216EA /* KMAdvertisementModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD9CA7CA29377E6E000216EA /* KMAdvertisementModel.swift */; };
  48. AD9CAA42293897FF000216EA /* Kingfisher.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AD9CAA41293897FE000216EA /* Kingfisher.framework */; };
  49. AD9CAA4329389807000216EA /* Kingfisher.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AD9CAA41293897FE000216EA /* Kingfisher.framework */; };
  50. AD9CAA4429389845000216EA /* Kingfisher.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = AD9CAA41293897FE000216EA /* Kingfisher.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  51. AD9CAA5D2938AAA7000216EA /* KMAdvertisementShowView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADB09A7E2935937B00A2C756 /* KMAdvertisementShowView.swift */; };
  52. AD9CAA5E2938AD95000216EA /* KMAdvertisementModel.swift in Headers */ = {isa = PBXBuildFile; fileRef = AD9CA7CA29377E6E000216EA /* KMAdvertisementModel.swift */; settings = {ATTRIBUTES = (Public, ); }; };
  53. AD9CAA642939851E000216EA /* KMAdvertisementFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD9CAA632939851E000216EA /* KMAdvertisementFlowLayout.swift */; };
  54. AD9CAA6529399C06000216EA /* KMAdvertisementTableViewPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADB09A4829347D2300A2C756 /* KMAdvertisementTableViewPresenter.swift */; };
  55. AD9CAA6A29399DDA000216EA /* Kingfisher.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AD9CAA6929399DDA000216EA /* Kingfisher.framework */; };
  56. AD9CAA6B29399DDA000216EA /* Kingfisher.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AD9CAA6929399DDA000216EA /* Kingfisher.framework */; };
  57. AD9CAA6C29399E08000216EA /* Kingfisher.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = AD9CAA6929399DDA000216EA /* Kingfisher.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  58. ADB09A1229309EA700A2C756 /* KMAdvertisementRequestServer.swift in Headers */ = {isa = PBXBuildFile; fileRef = AD7BB835292E144100D7C3FB /* KMAdvertisementRequestServer.swift */; settings = {ATTRIBUTES = (Public, ); }; };
  59. ADB09A1329309EA700A2C756 /* KMAdvertisementManager.swift in Headers */ = {isa = PBXBuildFile; fileRef = AD7BB7BD292DE94F00D7C3FB /* KMAdvertisementManager.swift */; settings = {ATTRIBUTES = (Public, ); }; };
  60. ADB09A1429309EA700A2C756 /* KMAdvertisementConfig.swift in Headers */ = {isa = PBXBuildFile; fileRef = AD7BB839292F035300D7C3FB /* KMAdvertisementConfig.swift */; settings = {ATTRIBUTES = (Public, ); }; };
  61. ADB09A172930C61A00A2C756 /* KMAdvertisementCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADB09A162930C61900A2C756 /* KMAdvertisementCache.swift */; settings = {ATTRIBUTES = (Public, ); }; };
  62. ADB09A4229347C2E00A2C756 /* KMAdvertisementTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADB09A4129347C2E00A2C756 /* KMAdvertisementTableView.swift */; settings = {ATTRIBUTES = (Public, ); }; };
  63. ADB09A4929347D2300A2C756 /* KMAdvertisementTableViewPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADB09A4829347D2300A2C756 /* KMAdvertisementTableViewPresenter.swift */; settings = {ATTRIBUTES = (Public, ); }; };
  64. ADB09A542934916F00A2C756 /* KMAdvertisementTableView.xib in Resources */ = {isa = PBXBuildFile; fileRef = ADB09A532934916F00A2C756 /* KMAdvertisementTableView.xib */; };
  65. ADB09A5C2934A26600A2C756 /* KMAdvertisementCollectionViewItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADB09A5A2934A26600A2C756 /* KMAdvertisementCollectionViewItem.swift */; };
  66. ADB09A5D2934A26600A2C756 /* KMAdvertisementCollectionViewItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = ADB09A5B2934A26600A2C756 /* KMAdvertisementCollectionViewItem.xib */; };
  67. ADB09A662934AD4A00A2C756 /* KMAdvertisementCollectionViewItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = ADB09A5B2934A26600A2C756 /* KMAdvertisementCollectionViewItem.xib */; };
  68. ADB09A702934B05900A2C756 /* KMAdvertisementCollectionHeadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADB09A6F2934B05900A2C756 /* KMAdvertisementCollectionHeadView.swift */; };
  69. ADB09A722934B08B00A2C756 /* KMAdvertisementCollectionHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = ADB09A712934B08B00A2C756 /* KMAdvertisementCollectionHeadView.xib */; };
  70. ADB09A732934B34800A2C756 /* KMAdvertisement.bundle in Resources */ = {isa = PBXBuildFile; fileRef = AD2B46E3292DCCF500C3D62F /* KMAdvertisement.bundle */; };
  71. ADB09A81293594B500A2C756 /* KMAdvertisementShowView.xib in Resources */ = {isa = PBXBuildFile; fileRef = ADB09A80293594B500A2C756 /* KMAdvertisementShowView.xib */; };
  72. ADB09A9329359C8600A2C756 /* KMAdvertisement_iOS.docc in Sources */ = {isa = PBXBuildFile; fileRef = ADB09A9229359C8600A2C756 /* KMAdvertisement_iOS.docc */; };
  73. ADB09A9929359C8600A2C756 /* KMAdvertisement_iOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ADB09A8F29359C8500A2C756 /* KMAdvertisement_iOS.framework */; };
  74. ADB09AA029359C8600A2C756 /* KMAdvertisement_iOSTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADB09A9F29359C8600A2C756 /* KMAdvertisement_iOSTests.swift */; };
  75. ADB09AA129359C8600A2C756 /* KMAdvertisement_iOS.h in Headers */ = {isa = PBXBuildFile; fileRef = ADB09A9129359C8600A2C756 /* KMAdvertisement_iOS.h */; settings = {ATTRIBUTES = (Public, ); }; };
  76. ADB09AA429359C8600A2C756 /* KMAdvertisement_iOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ADB09A8F29359C8500A2C756 /* KMAdvertisement_iOS.framework */; };
  77. ADB09AA529359C8600A2C756 /* KMAdvertisement_iOS.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = ADB09A8F29359C8500A2C756 /* KMAdvertisement_iOS.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  78. ADB09AAD29359C8F00A2C756 /* KMAdvertisementShowView_iOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADB09A84293599F600A2C756 /* KMAdvertisementShowView_iOS.swift */; };
  79. ADB09AAE29359C9600A2C756 /* KMAdvertisementShowView_iOS.xib in Resources */ = {isa = PBXBuildFile; fileRef = ADB09A8829359A4800A2C756 /* KMAdvertisementShowView_iOS.xib */; };
  80. ADB09ABC29359CC500A2C756 /* KMAdvertisementManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB7BD292DE94F00D7C3FB /* KMAdvertisementManager.swift */; };
  81. ADB09ABD29359CC500A2C756 /* KMAdvertisementConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB839292F035300D7C3FB /* KMAdvertisementConfig.swift */; };
  82. ADB09ABE29359CC500A2C756 /* KMAdvertisementRequestServer.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD7BB835292E144100D7C3FB /* KMAdvertisementRequestServer.swift */; };
  83. ADB09ABF29359CC900A2C756 /* KMAdvertisementCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADB09A162930C61900A2C756 /* KMAdvertisementCache.swift */; };
  84. ADB09AC72935A06F00A2C756 /* AFNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AD7BB82C292E132800D7C3FB /* AFNetworking.framework */; platformFilter = ios; };
  85. ADB09ACC2935AD0200A2C756 /* AFNetworking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = AD7BB82C292E132800D7C3FB /* AFNetworking.framework */; };
  86. ADB09ACD2935AD0200A2C756 /* AFNetworking.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = AD7BB82C292E132800D7C3FB /* AFNetworking.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  87. ADB09ACF2935B1D700A2C756 /* KMAdvertisementShowScroll_iOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADB09ACE2935B1D700A2C756 /* KMAdvertisementShowScroll_iOS.swift */; };
  88. ADB09AD12935B1EE00A2C756 /* KMAdvertisementShowScroll_iOS.xib in Resources */ = {isa = PBXBuildFile; fileRef = ADB09AD02935B1EE00A2C756 /* KMAdvertisementShowScroll_iOS.xib */; };
  89. ADB09AD72935B99600A2C756 /* KMAdvertisement.bundle in Resources */ = {isa = PBXBuildFile; fileRef = AD2B46E3292DCCF500C3D62F /* KMAdvertisement.bundle */; };
  90. ADB09AD82935B9A400A2C756 /* KMAdvertisement.bundle in Resources */ = {isa = PBXBuildFile; fileRef = AD2B46E3292DCCF500C3D62F /* KMAdvertisement.bundle */; };
  91. ADB09ADB2935B9D400A2C756 /* KMAdvertisementShowView_iOS.xib in Resources */ = {isa = PBXBuildFile; fileRef = ADB09A8829359A4800A2C756 /* KMAdvertisementShowView_iOS.xib */; };
  92. ADB09AE02935CE0700A2C756 /* KMAdvertisementShowScrollCell_iOS.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADB09ADD2935CE0700A2C756 /* KMAdvertisementShowScrollCell_iOS.swift */; };
  93. ADB09AE12935CE0700A2C756 /* KMAdvertisementShowScrollCell_iOS.xib in Resources */ = {isa = PBXBuildFile; fileRef = ADB09ADE2935CE0700A2C756 /* KMAdvertisementShowScrollCell_iOS.xib */; };
  94. ADB09AE22935CE0700A2C756 /* KMAdvertisementShowScrollCell_iOS.xib in Resources */ = {isa = PBXBuildFile; fileRef = ADB09ADE2935CE0700A2C756 /* KMAdvertisementShowScrollCell_iOS.xib */; };
  95. /* End PBXBuildFile section */
  96. /* Begin PBXContainerItemProxy section */
  97. AD2B46D5292DCA1700C3D62F /* PBXContainerItemProxy */ = {
  98. isa = PBXContainerItemProxy;
  99. containerPortal = AD2B46C0292DCA1700C3D62F /* Project object */;
  100. proxyType = 1;
  101. remoteGlobalIDString = AD2B46C8292DCA1700C3D62F;
  102. remoteInfo = KMAdvertisement;
  103. };
  104. AD7BB7D4292DE9DC00D7C3FB /* PBXContainerItemProxy */ = {
  105. isa = PBXContainerItemProxy;
  106. containerPortal = AD2B46C0292DCA1700C3D62F /* Project object */;
  107. proxyType = 1;
  108. remoteGlobalIDString = AD7BB7C2292DE9DB00D7C3FB;
  109. remoteInfo = KMAdvertisementDemo_Mac;
  110. };
  111. AD7BB7DE292DE9DD00D7C3FB /* PBXContainerItemProxy */ = {
  112. isa = PBXContainerItemProxy;
  113. containerPortal = AD2B46C0292DCA1700C3D62F /* Project object */;
  114. proxyType = 1;
  115. remoteGlobalIDString = AD7BB7C2292DE9DB00D7C3FB;
  116. remoteInfo = KMAdvertisementDemo_Mac;
  117. };
  118. AD7BB7F0292DEA0500D7C3FB /* PBXContainerItemProxy */ = {
  119. isa = PBXContainerItemProxy;
  120. containerPortal = AD2B46C0292DCA1700C3D62F /* Project object */;
  121. proxyType = 1;
  122. remoteGlobalIDString = AD2B46C8292DCA1700C3D62F;
  123. remoteInfo = KMAdvertisement;
  124. };
  125. AD7BB812292E131200D7C3FB /* PBXContainerItemProxy */ = {
  126. isa = PBXContainerItemProxy;
  127. containerPortal = AD2B46C0292DCA1700C3D62F /* Project object */;
  128. proxyType = 1;
  129. remoteGlobalIDString = AD7BB7FB292E131100D7C3FB;
  130. remoteInfo = KMAdvertisementDemo_iOS;
  131. };
  132. AD7BB81C292E131200D7C3FB /* PBXContainerItemProxy */ = {
  133. isa = PBXContainerItemProxy;
  134. containerPortal = AD2B46C0292DCA1700C3D62F /* Project object */;
  135. proxyType = 1;
  136. remoteGlobalIDString = AD7BB7FB292E131100D7C3FB;
  137. remoteInfo = KMAdvertisementDemo_iOS;
  138. };
  139. ADB09A9A29359C8600A2C756 /* PBXContainerItemProxy */ = {
  140. isa = PBXContainerItemProxy;
  141. containerPortal = AD2B46C0292DCA1700C3D62F /* Project object */;
  142. proxyType = 1;
  143. remoteGlobalIDString = ADB09A8E29359C8500A2C756;
  144. remoteInfo = KMAdvertisement_iOS;
  145. };
  146. ADB09A9C29359C8600A2C756 /* PBXContainerItemProxy */ = {
  147. isa = PBXContainerItemProxy;
  148. containerPortal = AD2B46C0292DCA1700C3D62F /* Project object */;
  149. proxyType = 1;
  150. remoteGlobalIDString = AD7BB7FB292E131100D7C3FB;
  151. remoteInfo = KMAdvertisementDemo_iOS;
  152. };
  153. ADB09AA229359C8600A2C756 /* PBXContainerItemProxy */ = {
  154. isa = PBXContainerItemProxy;
  155. containerPortal = AD2B46C0292DCA1700C3D62F /* Project object */;
  156. proxyType = 1;
  157. remoteGlobalIDString = ADB09A8E29359C8500A2C756;
  158. remoteInfo = KMAdvertisement_iOS;
  159. };
  160. /* End PBXContainerItemProxy section */
  161. /* Begin PBXCopyFilesBuildPhase section */
  162. AD7BB7F2292DEA0500D7C3FB /* Embed Frameworks */ = {
  163. isa = PBXCopyFilesBuildPhase;
  164. buildActionMask = 2147483647;
  165. dstPath = "";
  166. dstSubfolderSpec = 10;
  167. files = (
  168. AD9CAA4429389845000216EA /* Kingfisher.framework in Embed Frameworks */,
  169. AD7BB7EF292DEA0400D7C3FB /* KMAdvertisement.framework in Embed Frameworks */,
  170. AD7BB83C2930678900D7C3FB /* AFNetworking.framework in Embed Frameworks */,
  171. );
  172. name = "Embed Frameworks";
  173. runOnlyForDeploymentPostprocessing = 0;
  174. };
  175. ADB09AA929359C8600A2C756 /* Embed Frameworks */ = {
  176. isa = PBXCopyFilesBuildPhase;
  177. buildActionMask = 2147483647;
  178. dstPath = "";
  179. dstSubfolderSpec = 10;
  180. files = (
  181. AD9CAA6C29399E08000216EA /* Kingfisher.framework in Embed Frameworks */,
  182. ADB09AA529359C8600A2C756 /* KMAdvertisement_iOS.framework in Embed Frameworks */,
  183. ADB09ACD2935AD0200A2C756 /* AFNetworking.framework in Embed Frameworks */,
  184. );
  185. name = "Embed Frameworks";
  186. runOnlyForDeploymentPostprocessing = 0;
  187. };
  188. /* End PBXCopyFilesBuildPhase section */
  189. /* Begin PBXFileReference section */
  190. AD2B46C9292DCA1700C3D62F /* KMAdvertisement.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KMAdvertisement.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  191. AD2B46CC292DCA1700C3D62F /* KMAdvertisement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KMAdvertisement.h; sourceTree = "<group>"; };
  192. AD2B46CD292DCA1700C3D62F /* KMAdvertisement.docc */ = {isa = PBXFileReference; lastKnownFileType = folder.documentationcatalog; path = KMAdvertisement.docc; sourceTree = "<group>"; };
  193. AD2B46D3292DCA1700C3D62F /* KMAdvertisementTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KMAdvertisementTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  194. AD2B46D8292DCA1700C3D62F /* KMAdvertisementTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementTests.swift; sourceTree = "<group>"; };
  195. AD2B46E3292DCCF500C3D62F /* KMAdvertisement.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = KMAdvertisement.bundle; sourceTree = "<group>"; };
  196. AD4B453D2939FBB60076FA14 /* KMAdvertisementModelTransition.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementModelTransition.swift; sourceTree = "<group>"; };
  197. AD4B4542293B57AD0076FA14 /* KMAdvertisementBaseView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementBaseView.swift; sourceTree = "<group>"; };
  198. AD7BB7BD292DE94F00D7C3FB /* KMAdvertisementManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementManager.swift; sourceTree = "<group>"; };
  199. AD7BB7C3292DE9DB00D7C3FB /* KMAdvertisementDemo_Mac.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KMAdvertisementDemo_Mac.app; sourceTree = BUILT_PRODUCTS_DIR; };
  200. AD7BB7C5292DE9DB00D7C3FB /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  201. AD7BB7C7292DE9DB00D7C3FB /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
  202. AD7BB7C9292DE9DC00D7C3FB /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  203. AD7BB7CC292DE9DC00D7C3FB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  204. AD7BB7CE292DE9DC00D7C3FB /* KMAdvertisementDemo_Mac.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = KMAdvertisementDemo_Mac.entitlements; sourceTree = "<group>"; };
  205. AD7BB7D3292DE9DC00D7C3FB /* KMAdvertisementDemo_MacTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KMAdvertisementDemo_MacTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  206. AD7BB7D7292DE9DD00D7C3FB /* KMAdvertisementDemo_MacTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementDemo_MacTests.swift; sourceTree = "<group>"; };
  207. AD7BB7DD292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KMAdvertisementDemo_MacUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  208. AD7BB7E1292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementDemo_MacUITests.swift; sourceTree = "<group>"; };
  209. AD7BB7E3292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementDemo_MacUITestsLaunchTests.swift; sourceTree = "<group>"; };
  210. AD7BB7FC292E131100D7C3FB /* KMAdvertisementDemo_iOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KMAdvertisementDemo_iOS.app; sourceTree = BUILT_PRODUCTS_DIR; };
  211. AD7BB7FE292E131100D7C3FB /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  212. AD7BB800292E131100D7C3FB /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
  213. AD7BB802292E131100D7C3FB /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
  214. AD7BB805292E131100D7C3FB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  215. AD7BB807292E131200D7C3FB /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  216. AD7BB80A292E131200D7C3FB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  217. AD7BB80C292E131200D7C3FB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  218. AD7BB811292E131200D7C3FB /* KMAdvertisementDemo_iOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KMAdvertisementDemo_iOSTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  219. AD7BB815292E131200D7C3FB /* KMAdvertisementDemo_iOSTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementDemo_iOSTests.swift; sourceTree = "<group>"; };
  220. AD7BB81B292E131200D7C3FB /* KMAdvertisementDemo_iOSUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KMAdvertisementDemo_iOSUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  221. AD7BB81F292E131300D7C3FB /* KMAdvertisementDemo_iOSUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementDemo_iOSUITests.swift; sourceTree = "<group>"; };
  222. AD7BB821292E131300D7C3FB /* KMAdvertisementDemo_iOSUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementDemo_iOSUITestsLaunchTests.swift; sourceTree = "<group>"; };
  223. AD7BB82C292E132800D7C3FB /* AFNetworking.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AFNetworking.framework; sourceTree = "<group>"; };
  224. AD7BB82E292E133500D7C3FB /* AFNetworking.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AFNetworking.framework; sourceTree = "<group>"; };
  225. AD7BB835292E144100D7C3FB /* KMAdvertisementRequestServer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementRequestServer.swift; sourceTree = "<group>"; };
  226. AD7BB839292F035300D7C3FB /* KMAdvertisementConfig.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementConfig.swift; sourceTree = "<group>"; };
  227. AD9CA7A92935DFF0000216EA /* KMAdvertisementTimeStampConversion.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementTimeStampConversion.swift; sourceTree = "<group>"; };
  228. AD9CA7B329360274000216EA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
  229. AD9CA7B4293602AC000216EA /* KMAdvertisementDemo-Mac-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = "KMAdvertisementDemo-Mac-Info.plist"; sourceTree = SOURCE_ROOT; };
  230. AD9CA7B5293602AF000216EA /* KMAdvertisement-iOS-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = "KMAdvertisement-iOS-Info.plist"; sourceTree = SOURCE_ROOT; };
  231. AD9CA7B729374A7F000216EA /* KMAdvertisementColorConversion.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementColorConversion.swift; sourceTree = "<group>"; };
  232. AD9CA7CA29377E6E000216EA /* KMAdvertisementModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementModel.swift; sourceTree = "<group>"; };
  233. AD9CAA41293897FE000216EA /* Kingfisher.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Kingfisher.framework; sourceTree = "<group>"; };
  234. AD9CAA632939851E000216EA /* KMAdvertisementFlowLayout.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementFlowLayout.swift; sourceTree = "<group>"; };
  235. AD9CAA6929399DDA000216EA /* Kingfisher.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Kingfisher.framework; sourceTree = "<group>"; };
  236. ADB09A162930C61900A2C756 /* KMAdvertisementCache.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementCache.swift; sourceTree = "<group>"; };
  237. ADB09A4129347C2E00A2C756 /* KMAdvertisementTableView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementTableView.swift; sourceTree = "<group>"; };
  238. ADB09A4829347D2300A2C756 /* KMAdvertisementTableViewPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementTableViewPresenter.swift; sourceTree = "<group>"; };
  239. ADB09A532934916F00A2C756 /* KMAdvertisementTableView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KMAdvertisementTableView.xib; sourceTree = "<group>"; };
  240. ADB09A5A2934A26600A2C756 /* KMAdvertisementCollectionViewItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementCollectionViewItem.swift; sourceTree = "<group>"; };
  241. ADB09A5B2934A26600A2C756 /* KMAdvertisementCollectionViewItem.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KMAdvertisementCollectionViewItem.xib; sourceTree = "<group>"; };
  242. ADB09A6F2934B05900A2C756 /* KMAdvertisementCollectionHeadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementCollectionHeadView.swift; sourceTree = "<group>"; };
  243. ADB09A712934B08B00A2C756 /* KMAdvertisementCollectionHeadView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KMAdvertisementCollectionHeadView.xib; sourceTree = "<group>"; };
  244. ADB09A7E2935937B00A2C756 /* KMAdvertisementShowView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementShowView.swift; sourceTree = "<group>"; };
  245. ADB09A80293594B500A2C756 /* KMAdvertisementShowView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KMAdvertisementShowView.xib; sourceTree = "<group>"; };
  246. ADB09A84293599F600A2C756 /* KMAdvertisementShowView_iOS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementShowView_iOS.swift; sourceTree = "<group>"; };
  247. ADB09A8829359A4800A2C756 /* KMAdvertisementShowView_iOS.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KMAdvertisementShowView_iOS.xib; sourceTree = "<group>"; };
  248. ADB09A8F29359C8500A2C756 /* KMAdvertisement_iOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = KMAdvertisement_iOS.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  249. ADB09A9129359C8600A2C756 /* KMAdvertisement_iOS.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = KMAdvertisement_iOS.h; sourceTree = "<group>"; };
  250. ADB09A9229359C8600A2C756 /* KMAdvertisement_iOS.docc */ = {isa = PBXFileReference; lastKnownFileType = folder.documentationcatalog; path = KMAdvertisement_iOS.docc; sourceTree = "<group>"; };
  251. ADB09A9829359C8600A2C756 /* KMAdvertisement_iOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KMAdvertisement_iOSTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  252. ADB09A9F29359C8600A2C756 /* KMAdvertisement_iOSTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisement_iOSTests.swift; sourceTree = "<group>"; };
  253. ADB09ACE2935B1D700A2C756 /* KMAdvertisementShowScroll_iOS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementShowScroll_iOS.swift; sourceTree = "<group>"; };
  254. ADB09AD02935B1EE00A2C756 /* KMAdvertisementShowScroll_iOS.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KMAdvertisementShowScroll_iOS.xib; sourceTree = "<group>"; };
  255. ADB09ADD2935CE0700A2C756 /* KMAdvertisementShowScrollCell_iOS.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = KMAdvertisementShowScrollCell_iOS.swift; sourceTree = "<group>"; };
  256. ADB09ADE2935CE0700A2C756 /* KMAdvertisementShowScrollCell_iOS.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = KMAdvertisementShowScrollCell_iOS.xib; sourceTree = "<group>"; };
  257. /* End PBXFileReference section */
  258. /* Begin PBXFrameworksBuildPhase section */
  259. AD2B46C6292DCA1700C3D62F /* Frameworks */ = {
  260. isa = PBXFrameworksBuildPhase;
  261. buildActionMask = 2147483647;
  262. files = (
  263. AD9CAA4329389807000216EA /* Kingfisher.framework in Frameworks */,
  264. AD7BB837292E15A600D7C3FB /* AFNetworking.framework in Frameworks */,
  265. );
  266. runOnlyForDeploymentPostprocessing = 0;
  267. };
  268. AD2B46D0292DCA1700C3D62F /* Frameworks */ = {
  269. isa = PBXFrameworksBuildPhase;
  270. buildActionMask = 2147483647;
  271. files = (
  272. AD2B46D4292DCA1700C3D62F /* KMAdvertisement.framework in Frameworks */,
  273. );
  274. runOnlyForDeploymentPostprocessing = 0;
  275. };
  276. AD7BB7C0292DE9DB00D7C3FB /* Frameworks */ = {
  277. isa = PBXFrameworksBuildPhase;
  278. buildActionMask = 2147483647;
  279. files = (
  280. AD7BB7EE292DEA0400D7C3FB /* KMAdvertisement.framework in Frameworks */,
  281. AD9CAA42293897FF000216EA /* Kingfisher.framework in Frameworks */,
  282. AD7BB83B2930678900D7C3FB /* AFNetworking.framework in Frameworks */,
  283. );
  284. runOnlyForDeploymentPostprocessing = 0;
  285. };
  286. AD7BB7D0292DE9DC00D7C3FB /* Frameworks */ = {
  287. isa = PBXFrameworksBuildPhase;
  288. buildActionMask = 2147483647;
  289. files = (
  290. );
  291. runOnlyForDeploymentPostprocessing = 0;
  292. };
  293. AD7BB7DA292DE9DD00D7C3FB /* Frameworks */ = {
  294. isa = PBXFrameworksBuildPhase;
  295. buildActionMask = 2147483647;
  296. files = (
  297. );
  298. runOnlyForDeploymentPostprocessing = 0;
  299. };
  300. AD7BB7F9292E131100D7C3FB /* Frameworks */ = {
  301. isa = PBXFrameworksBuildPhase;
  302. buildActionMask = 2147483647;
  303. files = (
  304. ADB09AA429359C8600A2C756 /* KMAdvertisement_iOS.framework in Frameworks */,
  305. AD9CAA6A29399DDA000216EA /* Kingfisher.framework in Frameworks */,
  306. ADB09ACC2935AD0200A2C756 /* AFNetworking.framework in Frameworks */,
  307. );
  308. runOnlyForDeploymentPostprocessing = 0;
  309. };
  310. AD7BB80E292E131200D7C3FB /* Frameworks */ = {
  311. isa = PBXFrameworksBuildPhase;
  312. buildActionMask = 2147483647;
  313. files = (
  314. );
  315. runOnlyForDeploymentPostprocessing = 0;
  316. };
  317. AD7BB818292E131200D7C3FB /* Frameworks */ = {
  318. isa = PBXFrameworksBuildPhase;
  319. buildActionMask = 2147483647;
  320. files = (
  321. );
  322. runOnlyForDeploymentPostprocessing = 0;
  323. };
  324. ADB09A8C29359C8500A2C756 /* Frameworks */ = {
  325. isa = PBXFrameworksBuildPhase;
  326. buildActionMask = 2147483647;
  327. files = (
  328. AD9CAA6B29399DDA000216EA /* Kingfisher.framework in Frameworks */,
  329. ADB09AC72935A06F00A2C756 /* AFNetworking.framework in Frameworks */,
  330. );
  331. runOnlyForDeploymentPostprocessing = 0;
  332. };
  333. ADB09A9529359C8600A2C756 /* Frameworks */ = {
  334. isa = PBXFrameworksBuildPhase;
  335. buildActionMask = 2147483647;
  336. files = (
  337. ADB09A9929359C8600A2C756 /* KMAdvertisement_iOS.framework in Frameworks */,
  338. );
  339. runOnlyForDeploymentPostprocessing = 0;
  340. };
  341. /* End PBXFrameworksBuildPhase section */
  342. /* Begin PBXGroup section */
  343. AD2B46BF292DCA1700C3D62F = {
  344. isa = PBXGroup;
  345. children = (
  346. AD2B46CB292DCA1700C3D62F /* KMAdvertisement */,
  347. AD2B46D7292DCA1700C3D62F /* KMAdvertisementTests */,
  348. AD7BB7C4292DE9DB00D7C3FB /* KMAdvertisementDemo_Mac */,
  349. AD7BB7D6292DE9DD00D7C3FB /* KMAdvertisementDemo_MacTests */,
  350. AD7BB7E0292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITests */,
  351. AD7BB7FD292E131100D7C3FB /* KMAdvertisementDemo_iOS */,
  352. AD7BB814292E131200D7C3FB /* KMAdvertisementDemo_iOSTests */,
  353. AD7BB81E292E131300D7C3FB /* KMAdvertisementDemo_iOSUITests */,
  354. ADB09A9029359C8600A2C756 /* KMAdvertisement_iOS */,
  355. ADB09A9E29359C8600A2C756 /* KMAdvertisement_iOSTests */,
  356. AD2B46CA292DCA1700C3D62F /* Products */,
  357. AD2B46E5292DD00600C3D62F /* Frameworks */,
  358. );
  359. sourceTree = "<group>";
  360. };
  361. AD2B46CA292DCA1700C3D62F /* Products */ = {
  362. isa = PBXGroup;
  363. children = (
  364. AD2B46C9292DCA1700C3D62F /* KMAdvertisement.framework */,
  365. AD2B46D3292DCA1700C3D62F /* KMAdvertisementTests.xctest */,
  366. AD7BB7C3292DE9DB00D7C3FB /* KMAdvertisementDemo_Mac.app */,
  367. AD7BB7D3292DE9DC00D7C3FB /* KMAdvertisementDemo_MacTests.xctest */,
  368. AD7BB7DD292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITests.xctest */,
  369. AD7BB7FC292E131100D7C3FB /* KMAdvertisementDemo_iOS.app */,
  370. AD7BB811292E131200D7C3FB /* KMAdvertisementDemo_iOSTests.xctest */,
  371. AD7BB81B292E131200D7C3FB /* KMAdvertisementDemo_iOSUITests.xctest */,
  372. ADB09A8F29359C8500A2C756 /* KMAdvertisement_iOS.framework */,
  373. ADB09A9829359C8600A2C756 /* KMAdvertisement_iOSTests.xctest */,
  374. );
  375. name = Products;
  376. sourceTree = "<group>";
  377. };
  378. AD2B46CB292DCA1700C3D62F /* KMAdvertisement */ = {
  379. isa = PBXGroup;
  380. children = (
  381. AD9CA7B329360274000216EA /* Info.plist */,
  382. AD2B46CC292DCA1700C3D62F /* KMAdvertisement.h */,
  383. AD9CA7A62935DF6E000216EA /* Extension */,
  384. ADB09A1B293460B400A2C756 /* UI */,
  385. ADB09A152930C5E200A2C756 /* KMAdvertisementCache */,
  386. ADB09A0E29309D4500A2C756 /* Model */,
  387. AD7BB830292E13E100D7C3FB /* KMAdvertisementRequest */,
  388. AD7BB7BD292DE94F00D7C3FB /* KMAdvertisementManager.swift */,
  389. AD7BB839292F035300D7C3FB /* KMAdvertisementConfig.swift */,
  390. AD2B46CD292DCA1700C3D62F /* KMAdvertisement.docc */,
  391. AD2B46E3292DCCF500C3D62F /* KMAdvertisement.bundle */,
  392. );
  393. path = KMAdvertisement;
  394. sourceTree = "<group>";
  395. };
  396. AD2B46D7292DCA1700C3D62F /* KMAdvertisementTests */ = {
  397. isa = PBXGroup;
  398. children = (
  399. AD2B46D8292DCA1700C3D62F /* KMAdvertisementTests.swift */,
  400. );
  401. path = KMAdvertisementTests;
  402. sourceTree = "<group>";
  403. };
  404. AD2B46E5292DD00600C3D62F /* Frameworks */ = {
  405. isa = PBXGroup;
  406. children = (
  407. );
  408. name = Frameworks;
  409. sourceTree = "<group>";
  410. };
  411. AD4B4541293B578C0076FA14 /* Base */ = {
  412. isa = PBXGroup;
  413. children = (
  414. AD4B4542293B57AD0076FA14 /* KMAdvertisementBaseView.swift */,
  415. );
  416. path = Base;
  417. sourceTree = "<group>";
  418. };
  419. AD7BB7C4292DE9DB00D7C3FB /* KMAdvertisementDemo_Mac */ = {
  420. isa = PBXGroup;
  421. children = (
  422. AD9CA7B4293602AC000216EA /* KMAdvertisementDemo-Mac-Info.plist */,
  423. AD9CAA41293897FE000216EA /* Kingfisher.framework */,
  424. AD7BB82E292E133500D7C3FB /* AFNetworking.framework */,
  425. AD7BB7C5292DE9DB00D7C3FB /* AppDelegate.swift */,
  426. AD7BB7C7292DE9DB00D7C3FB /* ViewController.swift */,
  427. AD7BB7C9292DE9DC00D7C3FB /* Assets.xcassets */,
  428. AD7BB7CB292DE9DC00D7C3FB /* Main.storyboard */,
  429. AD7BB7CE292DE9DC00D7C3FB /* KMAdvertisementDemo_Mac.entitlements */,
  430. );
  431. path = KMAdvertisementDemo_Mac;
  432. sourceTree = "<group>";
  433. };
  434. AD7BB7D6292DE9DD00D7C3FB /* KMAdvertisementDemo_MacTests */ = {
  435. isa = PBXGroup;
  436. children = (
  437. AD7BB7D7292DE9DD00D7C3FB /* KMAdvertisementDemo_MacTests.swift */,
  438. );
  439. path = KMAdvertisementDemo_MacTests;
  440. sourceTree = "<group>";
  441. };
  442. AD7BB7E0292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITests */ = {
  443. isa = PBXGroup;
  444. children = (
  445. AD7BB7E1292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITests.swift */,
  446. AD7BB7E3292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITestsLaunchTests.swift */,
  447. );
  448. path = KMAdvertisementDemo_MacUITests;
  449. sourceTree = "<group>";
  450. };
  451. AD7BB7FD292E131100D7C3FB /* KMAdvertisementDemo_iOS */ = {
  452. isa = PBXGroup;
  453. children = (
  454. AD9CAA6929399DDA000216EA /* Kingfisher.framework */,
  455. AD7BB82C292E132800D7C3FB /* AFNetworking.framework */,
  456. AD7BB7FE292E131100D7C3FB /* AppDelegate.swift */,
  457. AD7BB800292E131100D7C3FB /* SceneDelegate.swift */,
  458. AD7BB802292E131100D7C3FB /* ViewController.swift */,
  459. AD7BB804292E131100D7C3FB /* Main.storyboard */,
  460. AD7BB807292E131200D7C3FB /* Assets.xcassets */,
  461. AD7BB809292E131200D7C3FB /* LaunchScreen.storyboard */,
  462. AD7BB80C292E131200D7C3FB /* Info.plist */,
  463. );
  464. path = KMAdvertisementDemo_iOS;
  465. sourceTree = "<group>";
  466. };
  467. AD7BB814292E131200D7C3FB /* KMAdvertisementDemo_iOSTests */ = {
  468. isa = PBXGroup;
  469. children = (
  470. AD7BB815292E131200D7C3FB /* KMAdvertisementDemo_iOSTests.swift */,
  471. );
  472. path = KMAdvertisementDemo_iOSTests;
  473. sourceTree = "<group>";
  474. };
  475. AD7BB81E292E131300D7C3FB /* KMAdvertisementDemo_iOSUITests */ = {
  476. isa = PBXGroup;
  477. children = (
  478. AD7BB81F292E131300D7C3FB /* KMAdvertisementDemo_iOSUITests.swift */,
  479. AD7BB821292E131300D7C3FB /* KMAdvertisementDemo_iOSUITestsLaunchTests.swift */,
  480. );
  481. path = KMAdvertisementDemo_iOSUITests;
  482. sourceTree = "<group>";
  483. };
  484. AD7BB830292E13E100D7C3FB /* KMAdvertisementRequest */ = {
  485. isa = PBXGroup;
  486. children = (
  487. AD7BB835292E144100D7C3FB /* KMAdvertisementRequestServer.swift */,
  488. );
  489. path = KMAdvertisementRequest;
  490. sourceTree = "<group>";
  491. };
  492. AD9CA7A62935DF6E000216EA /* Extension */ = {
  493. isa = PBXGroup;
  494. children = (
  495. AD9CA7B629374A6C000216EA /* Color */,
  496. AD9CA7A82935DF80000216EA /* Date */,
  497. );
  498. path = Extension;
  499. sourceTree = "<group>";
  500. };
  501. AD9CA7A82935DF80000216EA /* Date */ = {
  502. isa = PBXGroup;
  503. children = (
  504. AD9CA7A92935DFF0000216EA /* KMAdvertisementTimeStampConversion.swift */,
  505. );
  506. path = Date;
  507. sourceTree = "<group>";
  508. };
  509. AD9CA7B629374A6C000216EA /* Color */ = {
  510. isa = PBXGroup;
  511. children = (
  512. AD9CA7B729374A7F000216EA /* KMAdvertisementColorConversion.swift */,
  513. );
  514. path = Color;
  515. sourceTree = "<group>";
  516. };
  517. AD9CAA5F2938B0BF000216EA /* Presenter */ = {
  518. isa = PBXGroup;
  519. children = (
  520. ADB09A4829347D2300A2C756 /* KMAdvertisementTableViewPresenter.swift */,
  521. );
  522. path = Presenter;
  523. sourceTree = "<group>";
  524. };
  525. ADB09A0E29309D4500A2C756 /* Model */ = {
  526. isa = PBXGroup;
  527. children = (
  528. AD9CA7CA29377E6E000216EA /* KMAdvertisementModel.swift */,
  529. AD4B453D2939FBB60076FA14 /* KMAdvertisementModelTransition.swift */,
  530. );
  531. path = Model;
  532. sourceTree = "<group>";
  533. };
  534. ADB09A152930C5E200A2C756 /* KMAdvertisementCache */ = {
  535. isa = PBXGroup;
  536. children = (
  537. ADB09A162930C61900A2C756 /* KMAdvertisementCache.swift */,
  538. );
  539. path = KMAdvertisementCache;
  540. sourceTree = "<group>";
  541. };
  542. ADB09A1B293460B400A2C756 /* UI */ = {
  543. isa = PBXGroup;
  544. children = (
  545. AD4B4541293B578C0076FA14 /* Base */,
  546. ADB09A7D2935936B00A2C756 /* View */,
  547. ADB09A40293460EA00A2C756 /* Scroll */,
  548. ADB09A3F293460E200A2C756 /* Pop */,
  549. ADB09A1C293460B900A2C756 /* List */,
  550. );
  551. path = UI;
  552. sourceTree = "<group>";
  553. };
  554. ADB09A1C293460B900A2C756 /* List */ = {
  555. isa = PBXGroup;
  556. children = (
  557. AD9CAA5F2938B0BF000216EA /* Presenter */,
  558. ADB09A4A29347D7F00A2C756 /* Cell */,
  559. ADB09A4129347C2E00A2C756 /* KMAdvertisementTableView.swift */,
  560. ADB09A532934916F00A2C756 /* KMAdvertisementTableView.xib */,
  561. );
  562. path = List;
  563. sourceTree = "<group>";
  564. };
  565. ADB09A3F293460E200A2C756 /* Pop */ = {
  566. isa = PBXGroup;
  567. children = (
  568. );
  569. path = Pop;
  570. sourceTree = "<group>";
  571. };
  572. ADB09A40293460EA00A2C756 /* Scroll */ = {
  573. isa = PBXGroup;
  574. children = (
  575. ADB09ACB2935A58C00A2C756 /* Mac */,
  576. ADB09ACA2935A58700A2C756 /* iOS */,
  577. );
  578. path = Scroll;
  579. sourceTree = "<group>";
  580. };
  581. ADB09A4A29347D7F00A2C756 /* Cell */ = {
  582. isa = PBXGroup;
  583. children = (
  584. ADB09A5A2934A26600A2C756 /* KMAdvertisementCollectionViewItem.swift */,
  585. ADB09A5B2934A26600A2C756 /* KMAdvertisementCollectionViewItem.xib */,
  586. ADB09A6F2934B05900A2C756 /* KMAdvertisementCollectionHeadView.swift */,
  587. ADB09A712934B08B00A2C756 /* KMAdvertisementCollectionHeadView.xib */,
  588. );
  589. path = Cell;
  590. sourceTree = "<group>";
  591. };
  592. ADB09A7D2935936B00A2C756 /* View */ = {
  593. isa = PBXGroup;
  594. children = (
  595. ADB09A83293599DA00A2C756 /* iOS */,
  596. ADB09A82293599D100A2C756 /* Mac */,
  597. );
  598. path = View;
  599. sourceTree = "<group>";
  600. };
  601. ADB09A82293599D100A2C756 /* Mac */ = {
  602. isa = PBXGroup;
  603. children = (
  604. ADB09A7E2935937B00A2C756 /* KMAdvertisementShowView.swift */,
  605. ADB09A80293594B500A2C756 /* KMAdvertisementShowView.xib */,
  606. );
  607. path = Mac;
  608. sourceTree = "<group>";
  609. };
  610. ADB09A83293599DA00A2C756 /* iOS */ = {
  611. isa = PBXGroup;
  612. children = (
  613. ADB09A84293599F600A2C756 /* KMAdvertisementShowView_iOS.swift */,
  614. ADB09A8829359A4800A2C756 /* KMAdvertisementShowView_iOS.xib */,
  615. );
  616. path = iOS;
  617. sourceTree = "<group>";
  618. };
  619. ADB09A9029359C8600A2C756 /* KMAdvertisement_iOS */ = {
  620. isa = PBXGroup;
  621. children = (
  622. AD9CA7B5293602AF000216EA /* KMAdvertisement-iOS-Info.plist */,
  623. ADB09A9129359C8600A2C756 /* KMAdvertisement_iOS.h */,
  624. ADB09A9229359C8600A2C756 /* KMAdvertisement_iOS.docc */,
  625. );
  626. path = KMAdvertisement_iOS;
  627. sourceTree = "<group>";
  628. };
  629. ADB09A9E29359C8600A2C756 /* KMAdvertisement_iOSTests */ = {
  630. isa = PBXGroup;
  631. children = (
  632. ADB09A9F29359C8600A2C756 /* KMAdvertisement_iOSTests.swift */,
  633. );
  634. path = KMAdvertisement_iOSTests;
  635. sourceTree = "<group>";
  636. };
  637. ADB09ACA2935A58700A2C756 /* iOS */ = {
  638. isa = PBXGroup;
  639. children = (
  640. ADB09ACE2935B1D700A2C756 /* KMAdvertisementShowScroll_iOS.swift */,
  641. ADB09AD02935B1EE00A2C756 /* KMAdvertisementShowScroll_iOS.xib */,
  642. ADB09ADD2935CE0700A2C756 /* KMAdvertisementShowScrollCell_iOS.swift */,
  643. ADB09ADE2935CE0700A2C756 /* KMAdvertisementShowScrollCell_iOS.xib */,
  644. AD9CAA632939851E000216EA /* KMAdvertisementFlowLayout.swift */,
  645. );
  646. path = iOS;
  647. sourceTree = "<group>";
  648. };
  649. ADB09ACB2935A58C00A2C756 /* Mac */ = {
  650. isa = PBXGroup;
  651. children = (
  652. );
  653. path = Mac;
  654. sourceTree = "<group>";
  655. };
  656. /* End PBXGroup section */
  657. /* Begin PBXHeadersBuildPhase section */
  658. AD2B46C4292DCA1700C3D62F /* Headers */ = {
  659. isa = PBXHeadersBuildPhase;
  660. buildActionMask = 2147483647;
  661. files = (
  662. AD2B46DA292DCA1700C3D62F /* KMAdvertisement.h in Headers */,
  663. ADB09A1429309EA700A2C756 /* KMAdvertisementConfig.swift in Headers */,
  664. ADB09A1229309EA700A2C756 /* KMAdvertisementRequestServer.swift in Headers */,
  665. ADB09A1329309EA700A2C756 /* KMAdvertisementManager.swift in Headers */,
  666. AD9CA7AF2935EFDB000216EA /* KMAdvertisementTimeStampConversion.swift in Headers */,
  667. AD9CAA5E2938AD95000216EA /* KMAdvertisementModel.swift in Headers */,
  668. );
  669. runOnlyForDeploymentPostprocessing = 0;
  670. };
  671. ADB09A8A29359C8500A2C756 /* Headers */ = {
  672. isa = PBXHeadersBuildPhase;
  673. buildActionMask = 2147483647;
  674. files = (
  675. ADB09AA129359C8600A2C756 /* KMAdvertisement_iOS.h in Headers */,
  676. );
  677. runOnlyForDeploymentPostprocessing = 0;
  678. };
  679. /* End PBXHeadersBuildPhase section */
  680. /* Begin PBXNativeTarget section */
  681. AD2B46C8292DCA1700C3D62F /* KMAdvertisement */ = {
  682. isa = PBXNativeTarget;
  683. buildConfigurationList = AD2B46DD292DCA1700C3D62F /* Build configuration list for PBXNativeTarget "KMAdvertisement" */;
  684. buildPhases = (
  685. AD2B46C4292DCA1700C3D62F /* Headers */,
  686. AD2B46C5292DCA1700C3D62F /* Sources */,
  687. AD2B46C6292DCA1700C3D62F /* Frameworks */,
  688. AD2B46C7292DCA1700C3D62F /* Resources */,
  689. );
  690. buildRules = (
  691. );
  692. dependencies = (
  693. );
  694. name = KMAdvertisement;
  695. productName = KMAdvertisement;
  696. productReference = AD2B46C9292DCA1700C3D62F /* KMAdvertisement.framework */;
  697. productType = "com.apple.product-type.framework";
  698. };
  699. AD2B46D2292DCA1700C3D62F /* KMAdvertisementTests */ = {
  700. isa = PBXNativeTarget;
  701. buildConfigurationList = AD2B46E0292DCA1700C3D62F /* Build configuration list for PBXNativeTarget "KMAdvertisementTests" */;
  702. buildPhases = (
  703. AD2B46CF292DCA1700C3D62F /* Sources */,
  704. AD2B46D0292DCA1700C3D62F /* Frameworks */,
  705. AD2B46D1292DCA1700C3D62F /* Resources */,
  706. );
  707. buildRules = (
  708. );
  709. dependencies = (
  710. AD2B46D6292DCA1700C3D62F /* PBXTargetDependency */,
  711. );
  712. name = KMAdvertisementTests;
  713. productName = KMAdvertisementTests;
  714. productReference = AD2B46D3292DCA1700C3D62F /* KMAdvertisementTests.xctest */;
  715. productType = "com.apple.product-type.bundle.unit-test";
  716. };
  717. AD7BB7C2292DE9DB00D7C3FB /* KMAdvertisementDemo_Mac */ = {
  718. isa = PBXNativeTarget;
  719. buildConfigurationList = AD7BB7E5292DE9DD00D7C3FB /* Build configuration list for PBXNativeTarget "KMAdvertisementDemo_Mac" */;
  720. buildPhases = (
  721. AD7BB7BF292DE9DB00D7C3FB /* Sources */,
  722. AD7BB7C0292DE9DB00D7C3FB /* Frameworks */,
  723. AD7BB7C1292DE9DB00D7C3FB /* Resources */,
  724. AD7BB7F2292DEA0500D7C3FB /* Embed Frameworks */,
  725. );
  726. buildRules = (
  727. );
  728. dependencies = (
  729. AD7BB7F1292DEA0500D7C3FB /* PBXTargetDependency */,
  730. );
  731. name = KMAdvertisementDemo_Mac;
  732. productName = KMAdvertisementDemo_Mac;
  733. productReference = AD7BB7C3292DE9DB00D7C3FB /* KMAdvertisementDemo_Mac.app */;
  734. productType = "com.apple.product-type.application";
  735. };
  736. AD7BB7D2292DE9DC00D7C3FB /* KMAdvertisementDemo_MacTests */ = {
  737. isa = PBXNativeTarget;
  738. buildConfigurationList = AD7BB7E8292DE9DD00D7C3FB /* Build configuration list for PBXNativeTarget "KMAdvertisementDemo_MacTests" */;
  739. buildPhases = (
  740. AD7BB7CF292DE9DC00D7C3FB /* Sources */,
  741. AD7BB7D0292DE9DC00D7C3FB /* Frameworks */,
  742. AD7BB7D1292DE9DC00D7C3FB /* Resources */,
  743. );
  744. buildRules = (
  745. );
  746. dependencies = (
  747. AD7BB7D5292DE9DC00D7C3FB /* PBXTargetDependency */,
  748. );
  749. name = KMAdvertisementDemo_MacTests;
  750. productName = KMAdvertisementDemo_MacTests;
  751. productReference = AD7BB7D3292DE9DC00D7C3FB /* KMAdvertisementDemo_MacTests.xctest */;
  752. productType = "com.apple.product-type.bundle.unit-test";
  753. };
  754. AD7BB7DC292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITests */ = {
  755. isa = PBXNativeTarget;
  756. buildConfigurationList = AD7BB7EB292DE9DD00D7C3FB /* Build configuration list for PBXNativeTarget "KMAdvertisementDemo_MacUITests" */;
  757. buildPhases = (
  758. AD7BB7D9292DE9DD00D7C3FB /* Sources */,
  759. AD7BB7DA292DE9DD00D7C3FB /* Frameworks */,
  760. AD7BB7DB292DE9DD00D7C3FB /* Resources */,
  761. );
  762. buildRules = (
  763. );
  764. dependencies = (
  765. AD7BB7DF292DE9DD00D7C3FB /* PBXTargetDependency */,
  766. );
  767. name = KMAdvertisementDemo_MacUITests;
  768. productName = KMAdvertisementDemo_MacUITests;
  769. productReference = AD7BB7DD292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITests.xctest */;
  770. productType = "com.apple.product-type.bundle.ui-testing";
  771. };
  772. AD7BB7FB292E131100D7C3FB /* KMAdvertisementDemo_iOS */ = {
  773. isa = PBXNativeTarget;
  774. buildConfigurationList = AD7BB823292E131300D7C3FB /* Build configuration list for PBXNativeTarget "KMAdvertisementDemo_iOS" */;
  775. buildPhases = (
  776. AD7BB7F8292E131100D7C3FB /* Sources */,
  777. AD7BB7F9292E131100D7C3FB /* Frameworks */,
  778. AD7BB7FA292E131100D7C3FB /* Resources */,
  779. ADB09AA929359C8600A2C756 /* Embed Frameworks */,
  780. );
  781. buildRules = (
  782. );
  783. dependencies = (
  784. ADB09AA329359C8600A2C756 /* PBXTargetDependency */,
  785. );
  786. name = KMAdvertisementDemo_iOS;
  787. productName = KMAdvertisementDemo_iOS;
  788. productReference = AD7BB7FC292E131100D7C3FB /* KMAdvertisementDemo_iOS.app */;
  789. productType = "com.apple.product-type.application";
  790. };
  791. AD7BB810292E131200D7C3FB /* KMAdvertisementDemo_iOSTests */ = {
  792. isa = PBXNativeTarget;
  793. buildConfigurationList = AD7BB826292E131300D7C3FB /* Build configuration list for PBXNativeTarget "KMAdvertisementDemo_iOSTests" */;
  794. buildPhases = (
  795. AD7BB80D292E131200D7C3FB /* Sources */,
  796. AD7BB80E292E131200D7C3FB /* Frameworks */,
  797. AD7BB80F292E131200D7C3FB /* Resources */,
  798. );
  799. buildRules = (
  800. );
  801. dependencies = (
  802. AD7BB813292E131200D7C3FB /* PBXTargetDependency */,
  803. );
  804. name = KMAdvertisementDemo_iOSTests;
  805. productName = KMAdvertisementDemo_iOSTests;
  806. productReference = AD7BB811292E131200D7C3FB /* KMAdvertisementDemo_iOSTests.xctest */;
  807. productType = "com.apple.product-type.bundle.unit-test";
  808. };
  809. AD7BB81A292E131200D7C3FB /* KMAdvertisementDemo_iOSUITests */ = {
  810. isa = PBXNativeTarget;
  811. buildConfigurationList = AD7BB829292E131300D7C3FB /* Build configuration list for PBXNativeTarget "KMAdvertisementDemo_iOSUITests" */;
  812. buildPhases = (
  813. AD7BB817292E131200D7C3FB /* Sources */,
  814. AD7BB818292E131200D7C3FB /* Frameworks */,
  815. AD7BB819292E131200D7C3FB /* Resources */,
  816. );
  817. buildRules = (
  818. );
  819. dependencies = (
  820. AD7BB81D292E131200D7C3FB /* PBXTargetDependency */,
  821. );
  822. name = KMAdvertisementDemo_iOSUITests;
  823. productName = KMAdvertisementDemo_iOSUITests;
  824. productReference = AD7BB81B292E131200D7C3FB /* KMAdvertisementDemo_iOSUITests.xctest */;
  825. productType = "com.apple.product-type.bundle.ui-testing";
  826. };
  827. ADB09A8E29359C8500A2C756 /* KMAdvertisement_iOS */ = {
  828. isa = PBXNativeTarget;
  829. buildConfigurationList = ADB09AA629359C8600A2C756 /* Build configuration list for PBXNativeTarget "KMAdvertisement_iOS" */;
  830. buildPhases = (
  831. ADB09A8A29359C8500A2C756 /* Headers */,
  832. ADB09A8B29359C8500A2C756 /* Sources */,
  833. ADB09A8C29359C8500A2C756 /* Frameworks */,
  834. ADB09A8D29359C8500A2C756 /* Resources */,
  835. );
  836. buildRules = (
  837. );
  838. dependencies = (
  839. );
  840. name = KMAdvertisement_iOS;
  841. productName = KMAdvertisement_iOS;
  842. productReference = ADB09A8F29359C8500A2C756 /* KMAdvertisement_iOS.framework */;
  843. productType = "com.apple.product-type.framework";
  844. };
  845. ADB09A9729359C8600A2C756 /* KMAdvertisement_iOSTests */ = {
  846. isa = PBXNativeTarget;
  847. buildConfigurationList = ADB09AAA29359C8600A2C756 /* Build configuration list for PBXNativeTarget "KMAdvertisement_iOSTests" */;
  848. buildPhases = (
  849. ADB09A9429359C8600A2C756 /* Sources */,
  850. ADB09A9529359C8600A2C756 /* Frameworks */,
  851. ADB09A9629359C8600A2C756 /* Resources */,
  852. );
  853. buildRules = (
  854. );
  855. dependencies = (
  856. ADB09A9B29359C8600A2C756 /* PBXTargetDependency */,
  857. ADB09A9D29359C8600A2C756 /* PBXTargetDependency */,
  858. );
  859. name = KMAdvertisement_iOSTests;
  860. productName = KMAdvertisement_iOSTests;
  861. productReference = ADB09A9829359C8600A2C756 /* KMAdvertisement_iOSTests.xctest */;
  862. productType = "com.apple.product-type.bundle.unit-test";
  863. };
  864. /* End PBXNativeTarget section */
  865. /* Begin PBXProject section */
  866. AD2B46C0292DCA1700C3D62F /* Project object */ = {
  867. isa = PBXProject;
  868. attributes = {
  869. BuildIndependentTargetsInParallel = 1;
  870. LastSwiftUpdateCheck = 1410;
  871. LastUpgradeCheck = 1410;
  872. TargetAttributes = {
  873. AD2B46C8292DCA1700C3D62F = {
  874. CreatedOnToolsVersion = 14.1;
  875. LastSwiftMigration = 1410;
  876. };
  877. AD2B46D2292DCA1700C3D62F = {
  878. CreatedOnToolsVersion = 14.1;
  879. };
  880. AD7BB7C2292DE9DB00D7C3FB = {
  881. CreatedOnToolsVersion = 14.1;
  882. };
  883. AD7BB7D2292DE9DC00D7C3FB = {
  884. CreatedOnToolsVersion = 14.1;
  885. TestTargetID = AD7BB7C2292DE9DB00D7C3FB;
  886. };
  887. AD7BB7DC292DE9DD00D7C3FB = {
  888. CreatedOnToolsVersion = 14.1;
  889. TestTargetID = AD7BB7C2292DE9DB00D7C3FB;
  890. };
  891. AD7BB7FB292E131100D7C3FB = {
  892. CreatedOnToolsVersion = 14.1;
  893. };
  894. AD7BB810292E131200D7C3FB = {
  895. CreatedOnToolsVersion = 14.1;
  896. TestTargetID = AD7BB7FB292E131100D7C3FB;
  897. };
  898. AD7BB81A292E131200D7C3FB = {
  899. CreatedOnToolsVersion = 14.1;
  900. TestTargetID = AD7BB7FB292E131100D7C3FB;
  901. };
  902. ADB09A8E29359C8500A2C756 = {
  903. CreatedOnToolsVersion = 14.1;
  904. };
  905. ADB09A9729359C8600A2C756 = {
  906. CreatedOnToolsVersion = 14.1;
  907. TestTargetID = AD7BB7FB292E131100D7C3FB;
  908. };
  909. };
  910. };
  911. buildConfigurationList = AD2B46C3292DCA1700C3D62F /* Build configuration list for PBXProject "KMAdvertisement" */;
  912. compatibilityVersion = "Xcode 14.0";
  913. developmentRegion = en;
  914. hasScannedForEncodings = 0;
  915. knownRegions = (
  916. en,
  917. Base,
  918. );
  919. mainGroup = AD2B46BF292DCA1700C3D62F;
  920. productRefGroup = AD2B46CA292DCA1700C3D62F /* Products */;
  921. projectDirPath = "";
  922. projectRoot = "";
  923. targets = (
  924. AD2B46C8292DCA1700C3D62F /* KMAdvertisement */,
  925. AD2B46D2292DCA1700C3D62F /* KMAdvertisementTests */,
  926. AD7BB7C2292DE9DB00D7C3FB /* KMAdvertisementDemo_Mac */,
  927. AD7BB7D2292DE9DC00D7C3FB /* KMAdvertisementDemo_MacTests */,
  928. AD7BB7DC292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITests */,
  929. AD7BB7FB292E131100D7C3FB /* KMAdvertisementDemo_iOS */,
  930. AD7BB810292E131200D7C3FB /* KMAdvertisementDemo_iOSTests */,
  931. AD7BB81A292E131200D7C3FB /* KMAdvertisementDemo_iOSUITests */,
  932. ADB09A8E29359C8500A2C756 /* KMAdvertisement_iOS */,
  933. ADB09A9729359C8600A2C756 /* KMAdvertisement_iOSTests */,
  934. );
  935. };
  936. /* End PBXProject section */
  937. /* Begin PBXResourcesBuildPhase section */
  938. AD2B46C7292DCA1700C3D62F /* Resources */ = {
  939. isa = PBXResourcesBuildPhase;
  940. buildActionMask = 2147483647;
  941. files = (
  942. AD2B46E4292DCCF500C3D62F /* KMAdvertisement.bundle in Resources */,
  943. ADB09A542934916F00A2C756 /* KMAdvertisementTableView.xib in Resources */,
  944. ADB09A722934B08B00A2C756 /* KMAdvertisementCollectionHeadView.xib in Resources */,
  945. ADB09A5D2934A26600A2C756 /* KMAdvertisementCollectionViewItem.xib in Resources */,
  946. ADB09A81293594B500A2C756 /* KMAdvertisementShowView.xib in Resources */,
  947. );
  948. runOnlyForDeploymentPostprocessing = 0;
  949. };
  950. AD2B46D1292DCA1700C3D62F /* Resources */ = {
  951. isa = PBXResourcesBuildPhase;
  952. buildActionMask = 2147483647;
  953. files = (
  954. );
  955. runOnlyForDeploymentPostprocessing = 0;
  956. };
  957. AD7BB7C1292DE9DB00D7C3FB /* Resources */ = {
  958. isa = PBXResourcesBuildPhase;
  959. buildActionMask = 2147483647;
  960. files = (
  961. ADB09A662934AD4A00A2C756 /* KMAdvertisementCollectionViewItem.xib in Resources */,
  962. ADB09A732934B34800A2C756 /* KMAdvertisement.bundle in Resources */,
  963. AD7BB7CA292DE9DC00D7C3FB /* Assets.xcassets in Resources */,
  964. AD7BB7CD292DE9DC00D7C3FB /* Main.storyboard in Resources */,
  965. );
  966. runOnlyForDeploymentPostprocessing = 0;
  967. };
  968. AD7BB7D1292DE9DC00D7C3FB /* Resources */ = {
  969. isa = PBXResourcesBuildPhase;
  970. buildActionMask = 2147483647;
  971. files = (
  972. );
  973. runOnlyForDeploymentPostprocessing = 0;
  974. };
  975. AD7BB7DB292DE9DD00D7C3FB /* Resources */ = {
  976. isa = PBXResourcesBuildPhase;
  977. buildActionMask = 2147483647;
  978. files = (
  979. );
  980. runOnlyForDeploymentPostprocessing = 0;
  981. };
  982. AD7BB7FA292E131100D7C3FB /* Resources */ = {
  983. isa = PBXResourcesBuildPhase;
  984. buildActionMask = 2147483647;
  985. files = (
  986. AD7BB80B292E131200D7C3FB /* LaunchScreen.storyboard in Resources */,
  987. ADB09ADB2935B9D400A2C756 /* KMAdvertisementShowView_iOS.xib in Resources */,
  988. ADB09AD82935B9A400A2C756 /* KMAdvertisement.bundle in Resources */,
  989. AD7BB808292E131200D7C3FB /* Assets.xcassets in Resources */,
  990. AD7BB806292E131100D7C3FB /* Main.storyboard in Resources */,
  991. ADB09AE12935CE0700A2C756 /* KMAdvertisementShowScrollCell_iOS.xib in Resources */,
  992. );
  993. runOnlyForDeploymentPostprocessing = 0;
  994. };
  995. AD7BB80F292E131200D7C3FB /* Resources */ = {
  996. isa = PBXResourcesBuildPhase;
  997. buildActionMask = 2147483647;
  998. files = (
  999. );
  1000. runOnlyForDeploymentPostprocessing = 0;
  1001. };
  1002. AD7BB819292E131200D7C3FB /* Resources */ = {
  1003. isa = PBXResourcesBuildPhase;
  1004. buildActionMask = 2147483647;
  1005. files = (
  1006. );
  1007. runOnlyForDeploymentPostprocessing = 0;
  1008. };
  1009. ADB09A8D29359C8500A2C756 /* Resources */ = {
  1010. isa = PBXResourcesBuildPhase;
  1011. buildActionMask = 2147483647;
  1012. files = (
  1013. ADB09AAE29359C9600A2C756 /* KMAdvertisementShowView_iOS.xib in Resources */,
  1014. ADB09AD12935B1EE00A2C756 /* KMAdvertisementShowScroll_iOS.xib in Resources */,
  1015. ADB09AD72935B99600A2C756 /* KMAdvertisement.bundle in Resources */,
  1016. ADB09AE22935CE0700A2C756 /* KMAdvertisementShowScrollCell_iOS.xib in Resources */,
  1017. );
  1018. runOnlyForDeploymentPostprocessing = 0;
  1019. };
  1020. ADB09A9629359C8600A2C756 /* Resources */ = {
  1021. isa = PBXResourcesBuildPhase;
  1022. buildActionMask = 2147483647;
  1023. files = (
  1024. );
  1025. runOnlyForDeploymentPostprocessing = 0;
  1026. };
  1027. /* End PBXResourcesBuildPhase section */
  1028. /* Begin PBXSourcesBuildPhase section */
  1029. AD2B46C5292DCA1700C3D62F /* Sources */ = {
  1030. isa = PBXSourcesBuildPhase;
  1031. buildActionMask = 2147483647;
  1032. files = (
  1033. AD9CA7AA2935DFF0000216EA /* KMAdvertisementTimeStampConversion.swift in Sources */,
  1034. ADB09A4229347C2E00A2C756 /* KMAdvertisementTableView.swift in Sources */,
  1035. ADB09A172930C61A00A2C756 /* KMAdvertisementCache.swift in Sources */,
  1036. ADB09A702934B05900A2C756 /* KMAdvertisementCollectionHeadView.swift in Sources */,
  1037. AD9CA7CB29377E6E000216EA /* KMAdvertisementModel.swift in Sources */,
  1038. ADB09A4929347D2300A2C756 /* KMAdvertisementTableViewPresenter.swift in Sources */,
  1039. AD9CA7B829374A7F000216EA /* KMAdvertisementColorConversion.swift in Sources */,
  1040. AD4B4543293B57AD0076FA14 /* KMAdvertisementBaseView.swift in Sources */,
  1041. AD4B453E2939FBB60076FA14 /* KMAdvertisementModelTransition.swift in Sources */,
  1042. AD9CAA5D2938AAA7000216EA /* KMAdvertisementShowView.swift in Sources */,
  1043. AD7BB83A292F035300D7C3FB /* KMAdvertisementConfig.swift in Sources */,
  1044. AD7BB836292E144100D7C3FB /* KMAdvertisementRequestServer.swift in Sources */,
  1045. AD7BB7BE292DE94F00D7C3FB /* KMAdvertisementManager.swift in Sources */,
  1046. ADB09A5C2934A26600A2C756 /* KMAdvertisementCollectionViewItem.swift in Sources */,
  1047. );
  1048. runOnlyForDeploymentPostprocessing = 0;
  1049. };
  1050. AD2B46CF292DCA1700C3D62F /* Sources */ = {
  1051. isa = PBXSourcesBuildPhase;
  1052. buildActionMask = 2147483647;
  1053. files = (
  1054. AD2B46D9292DCA1700C3D62F /* KMAdvertisementTests.swift in Sources */,
  1055. );
  1056. runOnlyForDeploymentPostprocessing = 0;
  1057. };
  1058. AD7BB7BF292DE9DB00D7C3FB /* Sources */ = {
  1059. isa = PBXSourcesBuildPhase;
  1060. buildActionMask = 2147483647;
  1061. files = (
  1062. AD7BB7C8292DE9DB00D7C3FB /* ViewController.swift in Sources */,
  1063. AD7BB7C6292DE9DB00D7C3FB /* AppDelegate.swift in Sources */,
  1064. );
  1065. runOnlyForDeploymentPostprocessing = 0;
  1066. };
  1067. AD7BB7CF292DE9DC00D7C3FB /* Sources */ = {
  1068. isa = PBXSourcesBuildPhase;
  1069. buildActionMask = 2147483647;
  1070. files = (
  1071. AD7BB7D8292DE9DD00D7C3FB /* KMAdvertisementDemo_MacTests.swift in Sources */,
  1072. );
  1073. runOnlyForDeploymentPostprocessing = 0;
  1074. };
  1075. AD7BB7D9292DE9DD00D7C3FB /* Sources */ = {
  1076. isa = PBXSourcesBuildPhase;
  1077. buildActionMask = 2147483647;
  1078. files = (
  1079. AD7BB7E2292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITests.swift in Sources */,
  1080. AD7BB7E4292DE9DD00D7C3FB /* KMAdvertisementDemo_MacUITestsLaunchTests.swift in Sources */,
  1081. );
  1082. runOnlyForDeploymentPostprocessing = 0;
  1083. };
  1084. AD7BB7F8292E131100D7C3FB /* Sources */ = {
  1085. isa = PBXSourcesBuildPhase;
  1086. buildActionMask = 2147483647;
  1087. files = (
  1088. AD7BB803292E131100D7C3FB /* ViewController.swift in Sources */,
  1089. AD7BB7FF292E131100D7C3FB /* AppDelegate.swift in Sources */,
  1090. AD7BB801292E131100D7C3FB /* SceneDelegate.swift in Sources */,
  1091. );
  1092. runOnlyForDeploymentPostprocessing = 0;
  1093. };
  1094. AD7BB80D292E131200D7C3FB /* Sources */ = {
  1095. isa = PBXSourcesBuildPhase;
  1096. buildActionMask = 2147483647;
  1097. files = (
  1098. AD7BB816292E131200D7C3FB /* KMAdvertisementDemo_iOSTests.swift in Sources */,
  1099. );
  1100. runOnlyForDeploymentPostprocessing = 0;
  1101. };
  1102. AD7BB817292E131200D7C3FB /* Sources */ = {
  1103. isa = PBXSourcesBuildPhase;
  1104. buildActionMask = 2147483647;
  1105. files = (
  1106. AD7BB820292E131300D7C3FB /* KMAdvertisementDemo_iOSUITests.swift in Sources */,
  1107. AD7BB822292E131300D7C3FB /* KMAdvertisementDemo_iOSUITestsLaunchTests.swift in Sources */,
  1108. );
  1109. runOnlyForDeploymentPostprocessing = 0;
  1110. };
  1111. ADB09A8B29359C8500A2C756 /* Sources */ = {
  1112. isa = PBXSourcesBuildPhase;
  1113. buildActionMask = 2147483647;
  1114. files = (
  1115. AD9CA7B929374A7F000216EA /* KMAdvertisementColorConversion.swift in Sources */,
  1116. ADB09A9329359C8600A2C756 /* KMAdvertisement_iOS.docc in Sources */,
  1117. ADB09ACF2935B1D700A2C756 /* KMAdvertisementShowScroll_iOS.swift in Sources */,
  1118. AD4B4544293B57AD0076FA14 /* KMAdvertisementBaseView.swift in Sources */,
  1119. AD9CAA642939851E000216EA /* KMAdvertisementFlowLayout.swift in Sources */,
  1120. AD9CAA6529399C06000216EA /* KMAdvertisementTableViewPresenter.swift in Sources */,
  1121. AD4B453F2939FBB60076FA14 /* KMAdvertisementModelTransition.swift in Sources */,
  1122. ADB09ABD29359CC500A2C756 /* KMAdvertisementConfig.swift in Sources */,
  1123. ADB09ABC29359CC500A2C756 /* KMAdvertisementManager.swift in Sources */,
  1124. AD9CA7AC2935E075000216EA /* KMAdvertisementTimeStampConversion.swift in Sources */,
  1125. AD9CA7CC29377E6E000216EA /* KMAdvertisementModel.swift in Sources */,
  1126. ADB09AAD29359C8F00A2C756 /* KMAdvertisementShowView_iOS.swift in Sources */,
  1127. ADB09ABF29359CC900A2C756 /* KMAdvertisementCache.swift in Sources */,
  1128. ADB09AE02935CE0700A2C756 /* KMAdvertisementShowScrollCell_iOS.swift in Sources */,
  1129. ADB09ABE29359CC500A2C756 /* KMAdvertisementRequestServer.swift in Sources */,
  1130. );
  1131. runOnlyForDeploymentPostprocessing = 0;
  1132. };
  1133. ADB09A9429359C8600A2C756 /* Sources */ = {
  1134. isa = PBXSourcesBuildPhase;
  1135. buildActionMask = 2147483647;
  1136. files = (
  1137. ADB09AA029359C8600A2C756 /* KMAdvertisement_iOSTests.swift in Sources */,
  1138. );
  1139. runOnlyForDeploymentPostprocessing = 0;
  1140. };
  1141. /* End PBXSourcesBuildPhase section */
  1142. /* Begin PBXTargetDependency section */
  1143. AD2B46D6292DCA1700C3D62F /* PBXTargetDependency */ = {
  1144. isa = PBXTargetDependency;
  1145. target = AD2B46C8292DCA1700C3D62F /* KMAdvertisement */;
  1146. targetProxy = AD2B46D5292DCA1700C3D62F /* PBXContainerItemProxy */;
  1147. };
  1148. AD7BB7D5292DE9DC00D7C3FB /* PBXTargetDependency */ = {
  1149. isa = PBXTargetDependency;
  1150. target = AD7BB7C2292DE9DB00D7C3FB /* KMAdvertisementDemo_Mac */;
  1151. targetProxy = AD7BB7D4292DE9DC00D7C3FB /* PBXContainerItemProxy */;
  1152. };
  1153. AD7BB7DF292DE9DD00D7C3FB /* PBXTargetDependency */ = {
  1154. isa = PBXTargetDependency;
  1155. target = AD7BB7C2292DE9DB00D7C3FB /* KMAdvertisementDemo_Mac */;
  1156. targetProxy = AD7BB7DE292DE9DD00D7C3FB /* PBXContainerItemProxy */;
  1157. };
  1158. AD7BB7F1292DEA0500D7C3FB /* PBXTargetDependency */ = {
  1159. isa = PBXTargetDependency;
  1160. target = AD2B46C8292DCA1700C3D62F /* KMAdvertisement */;
  1161. targetProxy = AD7BB7F0292DEA0500D7C3FB /* PBXContainerItemProxy */;
  1162. };
  1163. AD7BB813292E131200D7C3FB /* PBXTargetDependency */ = {
  1164. isa = PBXTargetDependency;
  1165. target = AD7BB7FB292E131100D7C3FB /* KMAdvertisementDemo_iOS */;
  1166. targetProxy = AD7BB812292E131200D7C3FB /* PBXContainerItemProxy */;
  1167. };
  1168. AD7BB81D292E131200D7C3FB /* PBXTargetDependency */ = {
  1169. isa = PBXTargetDependency;
  1170. target = AD7BB7FB292E131100D7C3FB /* KMAdvertisementDemo_iOS */;
  1171. targetProxy = AD7BB81C292E131200D7C3FB /* PBXContainerItemProxy */;
  1172. };
  1173. ADB09A9B29359C8600A2C756 /* PBXTargetDependency */ = {
  1174. isa = PBXTargetDependency;
  1175. target = ADB09A8E29359C8500A2C756 /* KMAdvertisement_iOS */;
  1176. targetProxy = ADB09A9A29359C8600A2C756 /* PBXContainerItemProxy */;
  1177. };
  1178. ADB09A9D29359C8600A2C756 /* PBXTargetDependency */ = {
  1179. isa = PBXTargetDependency;
  1180. target = AD7BB7FB292E131100D7C3FB /* KMAdvertisementDemo_iOS */;
  1181. targetProxy = ADB09A9C29359C8600A2C756 /* PBXContainerItemProxy */;
  1182. };
  1183. ADB09AA329359C8600A2C756 /* PBXTargetDependency */ = {
  1184. isa = PBXTargetDependency;
  1185. target = ADB09A8E29359C8500A2C756 /* KMAdvertisement_iOS */;
  1186. targetProxy = ADB09AA229359C8600A2C756 /* PBXContainerItemProxy */;
  1187. };
  1188. /* End PBXTargetDependency section */
  1189. /* Begin PBXVariantGroup section */
  1190. AD7BB7CB292DE9DC00D7C3FB /* Main.storyboard */ = {
  1191. isa = PBXVariantGroup;
  1192. children = (
  1193. AD7BB7CC292DE9DC00D7C3FB /* Base */,
  1194. );
  1195. name = Main.storyboard;
  1196. sourceTree = "<group>";
  1197. };
  1198. AD7BB804292E131100D7C3FB /* Main.storyboard */ = {
  1199. isa = PBXVariantGroup;
  1200. children = (
  1201. AD7BB805292E131100D7C3FB /* Base */,
  1202. );
  1203. name = Main.storyboard;
  1204. sourceTree = "<group>";
  1205. };
  1206. AD7BB809292E131200D7C3FB /* LaunchScreen.storyboard */ = {
  1207. isa = PBXVariantGroup;
  1208. children = (
  1209. AD7BB80A292E131200D7C3FB /* Base */,
  1210. );
  1211. name = LaunchScreen.storyboard;
  1212. sourceTree = "<group>";
  1213. };
  1214. /* End PBXVariantGroup section */
  1215. /* Begin XCBuildConfiguration section */
  1216. AD2B46DB292DCA1700C3D62F /* Debug */ = {
  1217. isa = XCBuildConfiguration;
  1218. buildSettings = {
  1219. ALWAYS_SEARCH_USER_PATHS = NO;
  1220. CLANG_ANALYZER_NONNULL = YES;
  1221. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1222. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  1223. CLANG_ENABLE_MODULES = YES;
  1224. CLANG_ENABLE_OBJC_ARC = YES;
  1225. CLANG_ENABLE_OBJC_WEAK = YES;
  1226. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1227. CLANG_WARN_BOOL_CONVERSION = YES;
  1228. CLANG_WARN_COMMA = YES;
  1229. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1230. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1231. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1232. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1233. CLANG_WARN_EMPTY_BODY = YES;
  1234. CLANG_WARN_ENUM_CONVERSION = YES;
  1235. CLANG_WARN_INFINITE_RECURSION = YES;
  1236. CLANG_WARN_INT_CONVERSION = YES;
  1237. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1238. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1239. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1240. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1241. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1242. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1243. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1244. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1245. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1246. CLANG_WARN_UNREACHABLE_CODE = YES;
  1247. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1248. COPY_PHASE_STRIP = NO;
  1249. CURRENT_PROJECT_VERSION = 1;
  1250. DEBUG_INFORMATION_FORMAT = dwarf;
  1251. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1252. ENABLE_TESTABILITY = YES;
  1253. GCC_C_LANGUAGE_STANDARD = gnu11;
  1254. GCC_DYNAMIC_NO_PIC = NO;
  1255. GCC_NO_COMMON_BLOCKS = YES;
  1256. GCC_OPTIMIZATION_LEVEL = 0;
  1257. GCC_PREPROCESSOR_DEFINITIONS = (
  1258. "DEBUG=1",
  1259. "$(inherited)",
  1260. );
  1261. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1262. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1263. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1264. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1265. GCC_WARN_UNUSED_FUNCTION = YES;
  1266. GCC_WARN_UNUSED_VARIABLE = YES;
  1267. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  1268. MTL_FAST_MATH = YES;
  1269. ONLY_ACTIVE_ARCH = YES;
  1270. SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
  1271. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  1272. VERSIONING_SYSTEM = "apple-generic";
  1273. VERSION_INFO_PREFIX = "";
  1274. };
  1275. name = Debug;
  1276. };
  1277. AD2B46DC292DCA1700C3D62F /* Release */ = {
  1278. isa = XCBuildConfiguration;
  1279. buildSettings = {
  1280. ALWAYS_SEARCH_USER_PATHS = NO;
  1281. CLANG_ANALYZER_NONNULL = YES;
  1282. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1283. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  1284. CLANG_ENABLE_MODULES = YES;
  1285. CLANG_ENABLE_OBJC_ARC = YES;
  1286. CLANG_ENABLE_OBJC_WEAK = YES;
  1287. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1288. CLANG_WARN_BOOL_CONVERSION = YES;
  1289. CLANG_WARN_COMMA = YES;
  1290. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1291. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1292. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1293. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1294. CLANG_WARN_EMPTY_BODY = YES;
  1295. CLANG_WARN_ENUM_CONVERSION = YES;
  1296. CLANG_WARN_INFINITE_RECURSION = YES;
  1297. CLANG_WARN_INT_CONVERSION = YES;
  1298. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1299. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1300. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1301. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1302. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  1303. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1304. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1305. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1306. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1307. CLANG_WARN_UNREACHABLE_CODE = YES;
  1308. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1309. COPY_PHASE_STRIP = NO;
  1310. CURRENT_PROJECT_VERSION = 1;
  1311. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1312. ENABLE_NS_ASSERTIONS = NO;
  1313. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1314. GCC_C_LANGUAGE_STANDARD = gnu11;
  1315. GCC_NO_COMMON_BLOCKS = YES;
  1316. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1317. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1318. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1319. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1320. GCC_WARN_UNUSED_FUNCTION = YES;
  1321. GCC_WARN_UNUSED_VARIABLE = YES;
  1322. MTL_ENABLE_DEBUG_INFO = NO;
  1323. MTL_FAST_MATH = YES;
  1324. SWIFT_COMPILATION_MODE = wholemodule;
  1325. SWIFT_OPTIMIZATION_LEVEL = "-O";
  1326. VERSIONING_SYSTEM = "apple-generic";
  1327. VERSION_INFO_PREFIX = "";
  1328. };
  1329. name = Release;
  1330. };
  1331. AD2B46DE292DCA1700C3D62F /* Debug */ = {
  1332. isa = XCBuildConfiguration;
  1333. buildSettings = {
  1334. CLANG_ENABLE_MODULES = YES;
  1335. CODE_SIGN_STYLE = Automatic;
  1336. CURRENT_PROJECT_VERSION = 1;
  1337. DEFINES_MODULE = YES;
  1338. DYLIB_COMPATIBILITY_VERSION = 1;
  1339. DYLIB_CURRENT_VERSION = 1;
  1340. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1341. EXCLUDED_ARCHS = "";
  1342. FRAMEWORK_SEARCH_PATHS = (
  1343. "$(inherited)",
  1344. "$(PROJECT_DIR)/KMAdvertisementDemo_Mac",
  1345. );
  1346. GENERATE_INFOPLIST_FILE = YES;
  1347. INFOPLIST_FILE = KMAdvertisement/Info.plist;
  1348. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1349. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1350. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  1351. LD_RUNPATH_SEARCH_PATHS = (
  1352. "@executable_path/Frameworks",
  1353. "@loader_path/Frameworks",
  1354. );
  1355. "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = (
  1356. "@executable_path/../Frameworks",
  1357. "@loader_path/Frameworks",
  1358. );
  1359. MACOSX_DEPLOYMENT_TARGET = 11.0;
  1360. MARKETING_VERSION = 1.0;
  1361. OTHER_LDFLAGS = "-ObjC";
  1362. PRODUCT_BUNDLE_IDENTIFIER = KMAdvertisement.KMAdvertisement;
  1363. PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  1364. SDKROOT = auto;
  1365. SKIP_INSTALL = YES;
  1366. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx";
  1367. SUPPORTS_MACCATALYST = NO;
  1368. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  1369. SWIFT_EMIT_LOC_STRINGS = YES;
  1370. SWIFT_OBJC_BRIDGING_HEADER = "";
  1371. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  1372. SWIFT_VERSION = 5.0;
  1373. TARGETED_DEVICE_FAMILY = "1,2";
  1374. };
  1375. name = Debug;
  1376. };
  1377. AD2B46DF292DCA1700C3D62F /* Release */ = {
  1378. isa = XCBuildConfiguration;
  1379. buildSettings = {
  1380. CLANG_ENABLE_MODULES = YES;
  1381. CODE_SIGN_STYLE = Automatic;
  1382. CURRENT_PROJECT_VERSION = 1;
  1383. DEFINES_MODULE = YES;
  1384. DYLIB_COMPATIBILITY_VERSION = 1;
  1385. DYLIB_CURRENT_VERSION = 1;
  1386. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1387. EXCLUDED_ARCHS = "";
  1388. FRAMEWORK_SEARCH_PATHS = (
  1389. "$(inherited)",
  1390. "$(PROJECT_DIR)/KMAdvertisementDemo_Mac",
  1391. );
  1392. GENERATE_INFOPLIST_FILE = YES;
  1393. INFOPLIST_FILE = KMAdvertisement/Info.plist;
  1394. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1395. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1396. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  1397. LD_RUNPATH_SEARCH_PATHS = (
  1398. "@executable_path/Frameworks",
  1399. "@loader_path/Frameworks",
  1400. );
  1401. "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = (
  1402. "@executable_path/../Frameworks",
  1403. "@loader_path/Frameworks",
  1404. );
  1405. MACOSX_DEPLOYMENT_TARGET = 11.0;
  1406. MARKETING_VERSION = 1.0;
  1407. OTHER_LDFLAGS = "-ObjC";
  1408. PRODUCT_BUNDLE_IDENTIFIER = KMAdvertisement.KMAdvertisement;
  1409. PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  1410. SDKROOT = auto;
  1411. SKIP_INSTALL = YES;
  1412. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx";
  1413. SUPPORTS_MACCATALYST = NO;
  1414. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  1415. SWIFT_EMIT_LOC_STRINGS = YES;
  1416. SWIFT_OBJC_BRIDGING_HEADER = "";
  1417. SWIFT_VERSION = 5.0;
  1418. TARGETED_DEVICE_FAMILY = "1,2";
  1419. };
  1420. name = Release;
  1421. };
  1422. AD2B46E1292DCA1700C3D62F /* Debug */ = {
  1423. isa = XCBuildConfiguration;
  1424. buildSettings = {
  1425. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1426. CODE_SIGN_STYLE = Automatic;
  1427. CURRENT_PROJECT_VERSION = 1;
  1428. GENERATE_INFOPLIST_FILE = YES;
  1429. IPHONEOS_DEPLOYMENT_TARGET = 16.1;
  1430. MACOSX_DEPLOYMENT_TARGET = 13.0;
  1431. MARKETING_VERSION = 1.0;
  1432. PRODUCT_BUNDLE_IDENTIFIER = KMAdvertisement.KMAdvertisementTests;
  1433. PRODUCT_NAME = "$(TARGET_NAME)";
  1434. SDKROOT = auto;
  1435. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx";
  1436. SWIFT_EMIT_LOC_STRINGS = NO;
  1437. SWIFT_VERSION = 5.0;
  1438. TARGETED_DEVICE_FAMILY = "1,2";
  1439. };
  1440. name = Debug;
  1441. };
  1442. AD2B46E2292DCA1700C3D62F /* Release */ = {
  1443. isa = XCBuildConfiguration;
  1444. buildSettings = {
  1445. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1446. CODE_SIGN_STYLE = Automatic;
  1447. CURRENT_PROJECT_VERSION = 1;
  1448. GENERATE_INFOPLIST_FILE = YES;
  1449. IPHONEOS_DEPLOYMENT_TARGET = 16.1;
  1450. MACOSX_DEPLOYMENT_TARGET = 13.0;
  1451. MARKETING_VERSION = 1.0;
  1452. PRODUCT_BUNDLE_IDENTIFIER = KMAdvertisement.KMAdvertisementTests;
  1453. PRODUCT_NAME = "$(TARGET_NAME)";
  1454. SDKROOT = auto;
  1455. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx";
  1456. SWIFT_EMIT_LOC_STRINGS = NO;
  1457. SWIFT_VERSION = 5.0;
  1458. TARGETED_DEVICE_FAMILY = "1,2";
  1459. };
  1460. name = Release;
  1461. };
  1462. AD7BB7E6292DE9DD00D7C3FB /* Debug */ = {
  1463. isa = XCBuildConfiguration;
  1464. buildSettings = {
  1465. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1466. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  1467. CODE_SIGN_ENTITLEMENTS = KMAdvertisementDemo_Mac/KMAdvertisementDemo_Mac.entitlements;
  1468. CODE_SIGN_STYLE = Automatic;
  1469. COMBINE_HIDPI_IMAGES = YES;
  1470. CURRENT_PROJECT_VERSION = 1;
  1471. FRAMEWORK_SEARCH_PATHS = (
  1472. "$(inherited)",
  1473. "$(PROJECT_DIR)/KMAdvertisementDemo_Mac",
  1474. );
  1475. GENERATE_INFOPLIST_FILE = YES;
  1476. INFOPLIST_FILE = "KMAdvertisementDemo-Mac-Info.plist";
  1477. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1478. INFOPLIST_KEY_NSMainStoryboardFile = Main;
  1479. INFOPLIST_KEY_NSPrincipalClass = NSApplication;
  1480. LD_RUNPATH_SEARCH_PATHS = (
  1481. "$(inherited)",
  1482. "@executable_path/../Frameworks",
  1483. );
  1484. MACH_O_TYPE = mh_execute;
  1485. MACOSX_DEPLOYMENT_TARGET = 13.0;
  1486. MARKETING_VERSION = 1.3.5;
  1487. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisementDemo-Mac";
  1488. PRODUCT_NAME = "$(TARGET_NAME)";
  1489. SDKROOT = macosx;
  1490. SWIFT_EMIT_LOC_STRINGS = YES;
  1491. SWIFT_VERSION = 5.0;
  1492. };
  1493. name = Debug;
  1494. };
  1495. AD7BB7E7292DE9DD00D7C3FB /* Release */ = {
  1496. isa = XCBuildConfiguration;
  1497. buildSettings = {
  1498. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1499. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  1500. CODE_SIGN_ENTITLEMENTS = KMAdvertisementDemo_Mac/KMAdvertisementDemo_Mac.entitlements;
  1501. CODE_SIGN_STYLE = Automatic;
  1502. COMBINE_HIDPI_IMAGES = YES;
  1503. CURRENT_PROJECT_VERSION = 1;
  1504. FRAMEWORK_SEARCH_PATHS = (
  1505. "$(inherited)",
  1506. "$(PROJECT_DIR)/KMAdvertisementDemo_Mac",
  1507. );
  1508. GENERATE_INFOPLIST_FILE = YES;
  1509. INFOPLIST_FILE = "KMAdvertisementDemo-Mac-Info.plist";
  1510. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1511. INFOPLIST_KEY_NSMainStoryboardFile = Main;
  1512. INFOPLIST_KEY_NSPrincipalClass = NSApplication;
  1513. LD_RUNPATH_SEARCH_PATHS = (
  1514. "$(inherited)",
  1515. "@executable_path/../Frameworks",
  1516. );
  1517. MACH_O_TYPE = mh_execute;
  1518. MACOSX_DEPLOYMENT_TARGET = 13.0;
  1519. MARKETING_VERSION = 1.3.5;
  1520. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisementDemo-Mac";
  1521. PRODUCT_NAME = "$(TARGET_NAME)";
  1522. SDKROOT = macosx;
  1523. SWIFT_EMIT_LOC_STRINGS = YES;
  1524. SWIFT_VERSION = 5.0;
  1525. };
  1526. name = Release;
  1527. };
  1528. AD7BB7E9292DE9DD00D7C3FB /* Debug */ = {
  1529. isa = XCBuildConfiguration;
  1530. buildSettings = {
  1531. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1532. BUNDLE_LOADER = "$(TEST_HOST)";
  1533. CODE_SIGN_STYLE = Automatic;
  1534. CURRENT_PROJECT_VERSION = 1;
  1535. GENERATE_INFOPLIST_FILE = YES;
  1536. MACOSX_DEPLOYMENT_TARGET = 13.0;
  1537. MARKETING_VERSION = 1.0;
  1538. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisementDemo-MacTests";
  1539. PRODUCT_NAME = "$(TARGET_NAME)";
  1540. SDKROOT = macosx;
  1541. SWIFT_EMIT_LOC_STRINGS = NO;
  1542. SWIFT_VERSION = 5.0;
  1543. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KMAdvertisementDemo_Mac.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/KMAdvertisementDemo_Mac";
  1544. };
  1545. name = Debug;
  1546. };
  1547. AD7BB7EA292DE9DD00D7C3FB /* Release */ = {
  1548. isa = XCBuildConfiguration;
  1549. buildSettings = {
  1550. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1551. BUNDLE_LOADER = "$(TEST_HOST)";
  1552. CODE_SIGN_STYLE = Automatic;
  1553. CURRENT_PROJECT_VERSION = 1;
  1554. GENERATE_INFOPLIST_FILE = YES;
  1555. MACOSX_DEPLOYMENT_TARGET = 13.0;
  1556. MARKETING_VERSION = 1.0;
  1557. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisementDemo-MacTests";
  1558. PRODUCT_NAME = "$(TARGET_NAME)";
  1559. SDKROOT = macosx;
  1560. SWIFT_EMIT_LOC_STRINGS = NO;
  1561. SWIFT_VERSION = 5.0;
  1562. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KMAdvertisementDemo_Mac.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/KMAdvertisementDemo_Mac";
  1563. };
  1564. name = Release;
  1565. };
  1566. AD7BB7EC292DE9DD00D7C3FB /* Debug */ = {
  1567. isa = XCBuildConfiguration;
  1568. buildSettings = {
  1569. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1570. CODE_SIGN_STYLE = Automatic;
  1571. CURRENT_PROJECT_VERSION = 1;
  1572. GENERATE_INFOPLIST_FILE = YES;
  1573. MACOSX_DEPLOYMENT_TARGET = 13.0;
  1574. MARKETING_VERSION = 1.0;
  1575. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisementDemo-MacUITests";
  1576. PRODUCT_NAME = "$(TARGET_NAME)";
  1577. SDKROOT = macosx;
  1578. SWIFT_EMIT_LOC_STRINGS = NO;
  1579. SWIFT_VERSION = 5.0;
  1580. TEST_TARGET_NAME = KMAdvertisementDemo_Mac;
  1581. };
  1582. name = Debug;
  1583. };
  1584. AD7BB7ED292DE9DD00D7C3FB /* Release */ = {
  1585. isa = XCBuildConfiguration;
  1586. buildSettings = {
  1587. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1588. CODE_SIGN_STYLE = Automatic;
  1589. CURRENT_PROJECT_VERSION = 1;
  1590. GENERATE_INFOPLIST_FILE = YES;
  1591. MACOSX_DEPLOYMENT_TARGET = 13.0;
  1592. MARKETING_VERSION = 1.0;
  1593. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisementDemo-MacUITests";
  1594. PRODUCT_NAME = "$(TARGET_NAME)";
  1595. SDKROOT = macosx;
  1596. SWIFT_EMIT_LOC_STRINGS = NO;
  1597. SWIFT_VERSION = 5.0;
  1598. TEST_TARGET_NAME = KMAdvertisementDemo_Mac;
  1599. };
  1600. name = Release;
  1601. };
  1602. AD7BB824292E131300D7C3FB /* Debug */ = {
  1603. isa = XCBuildConfiguration;
  1604. buildSettings = {
  1605. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1606. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1607. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  1608. CODE_SIGN_STYLE = Automatic;
  1609. CURRENT_PROJECT_VERSION = 1;
  1610. DEVELOPMENT_TEAM = EKZC6PCX52;
  1611. FRAMEWORK_SEARCH_PATHS = (
  1612. "$(inherited)",
  1613. "$(PROJECT_DIR)/KMAdvertisementDemo_iOS",
  1614. );
  1615. GENERATE_INFOPLIST_FILE = YES;
  1616. INFOPLIST_FILE = KMAdvertisementDemo_iOS/Info.plist;
  1617. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  1618. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  1619. INFOPLIST_KEY_UIMainStoryboardFile = Main;
  1620. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  1621. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  1622. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  1623. LD_RUNPATH_SEARCH_PATHS = (
  1624. "$(inherited)",
  1625. "@executable_path/Frameworks",
  1626. );
  1627. MARKETING_VERSION = 1.0;
  1628. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisementDemo-iOS";
  1629. PRODUCT_NAME = "$(TARGET_NAME)";
  1630. SDKROOT = iphoneos;
  1631. SWIFT_EMIT_LOC_STRINGS = YES;
  1632. SWIFT_VERSION = 5.0;
  1633. TARGETED_DEVICE_FAMILY = "1,2";
  1634. };
  1635. name = Debug;
  1636. };
  1637. AD7BB825292E131300D7C3FB /* Release */ = {
  1638. isa = XCBuildConfiguration;
  1639. buildSettings = {
  1640. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1641. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1642. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  1643. CODE_SIGN_STYLE = Automatic;
  1644. CURRENT_PROJECT_VERSION = 1;
  1645. DEVELOPMENT_TEAM = EKZC6PCX52;
  1646. FRAMEWORK_SEARCH_PATHS = (
  1647. "$(inherited)",
  1648. "$(PROJECT_DIR)/KMAdvertisementDemo_iOS",
  1649. );
  1650. GENERATE_INFOPLIST_FILE = YES;
  1651. INFOPLIST_FILE = KMAdvertisementDemo_iOS/Info.plist;
  1652. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  1653. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  1654. INFOPLIST_KEY_UIMainStoryboardFile = Main;
  1655. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  1656. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  1657. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  1658. LD_RUNPATH_SEARCH_PATHS = (
  1659. "$(inherited)",
  1660. "@executable_path/Frameworks",
  1661. );
  1662. MARKETING_VERSION = 1.0;
  1663. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisementDemo-iOS";
  1664. PRODUCT_NAME = "$(TARGET_NAME)";
  1665. SDKROOT = iphoneos;
  1666. SWIFT_EMIT_LOC_STRINGS = YES;
  1667. SWIFT_VERSION = 5.0;
  1668. TARGETED_DEVICE_FAMILY = "1,2";
  1669. VALIDATE_PRODUCT = YES;
  1670. };
  1671. name = Release;
  1672. };
  1673. AD7BB827292E131300D7C3FB /* Debug */ = {
  1674. isa = XCBuildConfiguration;
  1675. buildSettings = {
  1676. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1677. BUNDLE_LOADER = "$(TEST_HOST)";
  1678. CODE_SIGN_STYLE = Automatic;
  1679. CURRENT_PROJECT_VERSION = 1;
  1680. GENERATE_INFOPLIST_FILE = YES;
  1681. IPHONEOS_DEPLOYMENT_TARGET = 16.1;
  1682. MARKETING_VERSION = 1.0;
  1683. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisementDemo-iOSTests";
  1684. PRODUCT_NAME = "$(TARGET_NAME)";
  1685. SDKROOT = iphoneos;
  1686. SWIFT_EMIT_LOC_STRINGS = NO;
  1687. SWIFT_VERSION = 5.0;
  1688. TARGETED_DEVICE_FAMILY = "1,2";
  1689. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KMAdvertisementDemo_iOS.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/KMAdvertisementDemo_iOS";
  1690. };
  1691. name = Debug;
  1692. };
  1693. AD7BB828292E131300D7C3FB /* Release */ = {
  1694. isa = XCBuildConfiguration;
  1695. buildSettings = {
  1696. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1697. BUNDLE_LOADER = "$(TEST_HOST)";
  1698. CODE_SIGN_STYLE = Automatic;
  1699. CURRENT_PROJECT_VERSION = 1;
  1700. GENERATE_INFOPLIST_FILE = YES;
  1701. IPHONEOS_DEPLOYMENT_TARGET = 16.1;
  1702. MARKETING_VERSION = 1.0;
  1703. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisementDemo-iOSTests";
  1704. PRODUCT_NAME = "$(TARGET_NAME)";
  1705. SDKROOT = iphoneos;
  1706. SWIFT_EMIT_LOC_STRINGS = NO;
  1707. SWIFT_VERSION = 5.0;
  1708. TARGETED_DEVICE_FAMILY = "1,2";
  1709. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KMAdvertisementDemo_iOS.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/KMAdvertisementDemo_iOS";
  1710. VALIDATE_PRODUCT = YES;
  1711. };
  1712. name = Release;
  1713. };
  1714. AD7BB82A292E131300D7C3FB /* Debug */ = {
  1715. isa = XCBuildConfiguration;
  1716. buildSettings = {
  1717. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1718. CODE_SIGN_STYLE = Automatic;
  1719. CURRENT_PROJECT_VERSION = 1;
  1720. GENERATE_INFOPLIST_FILE = YES;
  1721. IPHONEOS_DEPLOYMENT_TARGET = 16.1;
  1722. MARKETING_VERSION = 1.0;
  1723. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisementDemo-iOSUITests";
  1724. PRODUCT_NAME = "$(TARGET_NAME)";
  1725. SDKROOT = iphoneos;
  1726. SWIFT_EMIT_LOC_STRINGS = NO;
  1727. SWIFT_VERSION = 5.0;
  1728. TARGETED_DEVICE_FAMILY = "1,2";
  1729. TEST_TARGET_NAME = KMAdvertisementDemo_iOS;
  1730. };
  1731. name = Debug;
  1732. };
  1733. AD7BB82B292E131300D7C3FB /* Release */ = {
  1734. isa = XCBuildConfiguration;
  1735. buildSettings = {
  1736. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1737. CODE_SIGN_STYLE = Automatic;
  1738. CURRENT_PROJECT_VERSION = 1;
  1739. GENERATE_INFOPLIST_FILE = YES;
  1740. IPHONEOS_DEPLOYMENT_TARGET = 16.1;
  1741. MARKETING_VERSION = 1.0;
  1742. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisementDemo-iOSUITests";
  1743. PRODUCT_NAME = "$(TARGET_NAME)";
  1744. SDKROOT = iphoneos;
  1745. SWIFT_EMIT_LOC_STRINGS = NO;
  1746. SWIFT_VERSION = 5.0;
  1747. TARGETED_DEVICE_FAMILY = "1,2";
  1748. TEST_TARGET_NAME = KMAdvertisementDemo_iOS;
  1749. VALIDATE_PRODUCT = YES;
  1750. };
  1751. name = Release;
  1752. };
  1753. ADB09AA729359C8600A2C756 /* Debug */ = {
  1754. isa = XCBuildConfiguration;
  1755. buildSettings = {
  1756. CODE_SIGN_STYLE = Automatic;
  1757. CURRENT_PROJECT_VERSION = 1;
  1758. DEFINES_MODULE = YES;
  1759. DYLIB_COMPATIBILITY_VERSION = 1;
  1760. DYLIB_CURRENT_VERSION = 1;
  1761. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1762. EXCLUDED_ARCHS = "";
  1763. FRAMEWORK_SEARCH_PATHS = (
  1764. "$(inherited)",
  1765. "$(PROJECT_DIR)/KMAdvertisementDemo_iOS",
  1766. "$(PROJECT_DIR)/KMAdvertisementDemo_Mac",
  1767. );
  1768. GENERATE_INFOPLIST_FILE = YES;
  1769. INFOPLIST_FILE = "KMAdvertisement-iOS-Info.plist";
  1770. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1771. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1772. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  1773. LD_RUNPATH_SEARCH_PATHS = (
  1774. "$(inherited)",
  1775. "@executable_path/Frameworks",
  1776. "@loader_path/Frameworks",
  1777. );
  1778. MARKETING_VERSION = 1.0;
  1779. OTHER_LDFLAGS = "-ObjC";
  1780. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisement-iOS";
  1781. PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  1782. SDKROOT = iphoneos;
  1783. SKIP_INSTALL = YES;
  1784. SWIFT_EMIT_LOC_STRINGS = YES;
  1785. SWIFT_VERSION = 5.0;
  1786. TARGETED_DEVICE_FAMILY = "1,2";
  1787. };
  1788. name = Debug;
  1789. };
  1790. ADB09AA829359C8600A2C756 /* Release */ = {
  1791. isa = XCBuildConfiguration;
  1792. buildSettings = {
  1793. CODE_SIGN_STYLE = Automatic;
  1794. CURRENT_PROJECT_VERSION = 1;
  1795. DEFINES_MODULE = YES;
  1796. DYLIB_COMPATIBILITY_VERSION = 1;
  1797. DYLIB_CURRENT_VERSION = 1;
  1798. DYLIB_INSTALL_NAME_BASE = "@rpath";
  1799. EXCLUDED_ARCHS = "";
  1800. FRAMEWORK_SEARCH_PATHS = (
  1801. "$(inherited)",
  1802. "$(PROJECT_DIR)/KMAdvertisementDemo_iOS",
  1803. "$(PROJECT_DIR)/KMAdvertisementDemo_Mac",
  1804. );
  1805. GENERATE_INFOPLIST_FILE = YES;
  1806. INFOPLIST_FILE = "KMAdvertisement-iOS-Info.plist";
  1807. INFOPLIST_KEY_NSHumanReadableCopyright = "";
  1808. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  1809. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  1810. LD_RUNPATH_SEARCH_PATHS = (
  1811. "$(inherited)",
  1812. "@executable_path/Frameworks",
  1813. "@loader_path/Frameworks",
  1814. );
  1815. MARKETING_VERSION = 1.0;
  1816. OTHER_LDFLAGS = "-ObjC";
  1817. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisement-iOS";
  1818. PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  1819. SDKROOT = iphoneos;
  1820. SKIP_INSTALL = YES;
  1821. SWIFT_EMIT_LOC_STRINGS = YES;
  1822. SWIFT_VERSION = 5.0;
  1823. TARGETED_DEVICE_FAMILY = "1,2";
  1824. VALIDATE_PRODUCT = YES;
  1825. };
  1826. name = Release;
  1827. };
  1828. ADB09AAB29359C8600A2C756 /* Debug */ = {
  1829. isa = XCBuildConfiguration;
  1830. buildSettings = {
  1831. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1832. CODE_SIGN_STYLE = Automatic;
  1833. CURRENT_PROJECT_VERSION = 1;
  1834. GENERATE_INFOPLIST_FILE = YES;
  1835. IPHONEOS_DEPLOYMENT_TARGET = 16.1;
  1836. MARKETING_VERSION = 1.0;
  1837. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisement-iOSTests";
  1838. PRODUCT_NAME = "$(TARGET_NAME)";
  1839. SDKROOT = iphoneos;
  1840. SWIFT_EMIT_LOC_STRINGS = NO;
  1841. SWIFT_VERSION = 5.0;
  1842. TARGETED_DEVICE_FAMILY = "1,2";
  1843. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KMAdvertisementDemo_iOS.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/KMAdvertisementDemo_iOS";
  1844. };
  1845. name = Debug;
  1846. };
  1847. ADB09AAC29359C8600A2C756 /* Release */ = {
  1848. isa = XCBuildConfiguration;
  1849. buildSettings = {
  1850. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  1851. CODE_SIGN_STYLE = Automatic;
  1852. CURRENT_PROJECT_VERSION = 1;
  1853. GENERATE_INFOPLIST_FILE = YES;
  1854. IPHONEOS_DEPLOYMENT_TARGET = 16.1;
  1855. MARKETING_VERSION = 1.0;
  1856. PRODUCT_BUNDLE_IDENTIFIER = "KMAdvertisement.KMAdvertisement-iOSTests";
  1857. PRODUCT_NAME = "$(TARGET_NAME)";
  1858. SDKROOT = iphoneos;
  1859. SWIFT_EMIT_LOC_STRINGS = NO;
  1860. SWIFT_VERSION = 5.0;
  1861. TARGETED_DEVICE_FAMILY = "1,2";
  1862. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KMAdvertisementDemo_iOS.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/KMAdvertisementDemo_iOS";
  1863. VALIDATE_PRODUCT = YES;
  1864. };
  1865. name = Release;
  1866. };
  1867. /* End XCBuildConfiguration section */
  1868. /* Begin XCConfigurationList section */
  1869. AD2B46C3292DCA1700C3D62F /* Build configuration list for PBXProject "KMAdvertisement" */ = {
  1870. isa = XCConfigurationList;
  1871. buildConfigurations = (
  1872. AD2B46DB292DCA1700C3D62F /* Debug */,
  1873. AD2B46DC292DCA1700C3D62F /* Release */,
  1874. );
  1875. defaultConfigurationIsVisible = 0;
  1876. defaultConfigurationName = Release;
  1877. };
  1878. AD2B46DD292DCA1700C3D62F /* Build configuration list for PBXNativeTarget "KMAdvertisement" */ = {
  1879. isa = XCConfigurationList;
  1880. buildConfigurations = (
  1881. AD2B46DE292DCA1700C3D62F /* Debug */,
  1882. AD2B46DF292DCA1700C3D62F /* Release */,
  1883. );
  1884. defaultConfigurationIsVisible = 0;
  1885. defaultConfigurationName = Release;
  1886. };
  1887. AD2B46E0292DCA1700C3D62F /* Build configuration list for PBXNativeTarget "KMAdvertisementTests" */ = {
  1888. isa = XCConfigurationList;
  1889. buildConfigurations = (
  1890. AD2B46E1292DCA1700C3D62F /* Debug */,
  1891. AD2B46E2292DCA1700C3D62F /* Release */,
  1892. );
  1893. defaultConfigurationIsVisible = 0;
  1894. defaultConfigurationName = Release;
  1895. };
  1896. AD7BB7E5292DE9DD00D7C3FB /* Build configuration list for PBXNativeTarget "KMAdvertisementDemo_Mac" */ = {
  1897. isa = XCConfigurationList;
  1898. buildConfigurations = (
  1899. AD7BB7E6292DE9DD00D7C3FB /* Debug */,
  1900. AD7BB7E7292DE9DD00D7C3FB /* Release */,
  1901. );
  1902. defaultConfigurationIsVisible = 0;
  1903. defaultConfigurationName = Release;
  1904. };
  1905. AD7BB7E8292DE9DD00D7C3FB /* Build configuration list for PBXNativeTarget "KMAdvertisementDemo_MacTests" */ = {
  1906. isa = XCConfigurationList;
  1907. buildConfigurations = (
  1908. AD7BB7E9292DE9DD00D7C3FB /* Debug */,
  1909. AD7BB7EA292DE9DD00D7C3FB /* Release */,
  1910. );
  1911. defaultConfigurationIsVisible = 0;
  1912. defaultConfigurationName = Release;
  1913. };
  1914. AD7BB7EB292DE9DD00D7C3FB /* Build configuration list for PBXNativeTarget "KMAdvertisementDemo_MacUITests" */ = {
  1915. isa = XCConfigurationList;
  1916. buildConfigurations = (
  1917. AD7BB7EC292DE9DD00D7C3FB /* Debug */,
  1918. AD7BB7ED292DE9DD00D7C3FB /* Release */,
  1919. );
  1920. defaultConfigurationIsVisible = 0;
  1921. defaultConfigurationName = Release;
  1922. };
  1923. AD7BB823292E131300D7C3FB /* Build configuration list for PBXNativeTarget "KMAdvertisementDemo_iOS" */ = {
  1924. isa = XCConfigurationList;
  1925. buildConfigurations = (
  1926. AD7BB824292E131300D7C3FB /* Debug */,
  1927. AD7BB825292E131300D7C3FB /* Release */,
  1928. );
  1929. defaultConfigurationIsVisible = 0;
  1930. defaultConfigurationName = Release;
  1931. };
  1932. AD7BB826292E131300D7C3FB /* Build configuration list for PBXNativeTarget "KMAdvertisementDemo_iOSTests" */ = {
  1933. isa = XCConfigurationList;
  1934. buildConfigurations = (
  1935. AD7BB827292E131300D7C3FB /* Debug */,
  1936. AD7BB828292E131300D7C3FB /* Release */,
  1937. );
  1938. defaultConfigurationIsVisible = 0;
  1939. defaultConfigurationName = Release;
  1940. };
  1941. AD7BB829292E131300D7C3FB /* Build configuration list for PBXNativeTarget "KMAdvertisementDemo_iOSUITests" */ = {
  1942. isa = XCConfigurationList;
  1943. buildConfigurations = (
  1944. AD7BB82A292E131300D7C3FB /* Debug */,
  1945. AD7BB82B292E131300D7C3FB /* Release */,
  1946. );
  1947. defaultConfigurationIsVisible = 0;
  1948. defaultConfigurationName = Release;
  1949. };
  1950. ADB09AA629359C8600A2C756 /* Build configuration list for PBXNativeTarget "KMAdvertisement_iOS" */ = {
  1951. isa = XCConfigurationList;
  1952. buildConfigurations = (
  1953. ADB09AA729359C8600A2C756 /* Debug */,
  1954. ADB09AA829359C8600A2C756 /* Release */,
  1955. );
  1956. defaultConfigurationIsVisible = 0;
  1957. defaultConfigurationName = Release;
  1958. };
  1959. ADB09AAA29359C8600A2C756 /* Build configuration list for PBXNativeTarget "KMAdvertisement_iOSTests" */ = {
  1960. isa = XCConfigurationList;
  1961. buildConfigurations = (
  1962. ADB09AAB29359C8600A2C756 /* Debug */,
  1963. ADB09AAC29359C8600A2C756 /* Release */,
  1964. );
  1965. defaultConfigurationIsVisible = 0;
  1966. defaultConfigurationName = Release;
  1967. };
  1968. /* End XCConfigurationList section */
  1969. };
  1970. rootObject = AD2B46C0292DCA1700C3D62F /* Project object */;
  1971. }