project.pbxproj 93 KB

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