project.pbxproj 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 2FD70D8B3678B2B51AD9E418 /* libPods-OneCable.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D85E32D933C36C37A7CE9517 /* libPods-OneCable.a */; };
  10. A13BCE831C3B47A500C76527 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCE821C3B47A500C76527 /* main.m */; };
  11. A13BCE8C1C3B47A500C76527 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BCE8A1C3B47A500C76527 /* Main.storyboard */; };
  12. A13BCE8E1C3B47A500C76527 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A13BCE8D1C3B47A500C76527 /* Assets.xcassets */; };
  13. A13BCE9C1C3B47A500C76527 /* OneCableTests.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCE9B1C3B47A500C76527 /* OneCableTests.m */; };
  14. A13BCFDA1C3B491400C76527 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEAF1C3B491300C76527 /* AppDelegate.m */; };
  15. A13BCFDB1C3B491400C76527 /* GTMNSString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEB21C3B491300C76527 /* GTMNSString+HTML.m */; };
  16. A13BCFDC1C3B491400C76527 /* NSArray-Addtions.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEB41C3B491300C76527 /* NSArray-Addtions.m */; };
  17. A13BCFDD1C3B491400C76527 /* NSData+AESCrypt.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEB61C3B491300C76527 /* NSData+AESCrypt.m */; };
  18. A13BCFDE1C3B491400C76527 /* NSDate+Utilities.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEB81C3B491300C76527 /* NSDate+Utilities.m */; };
  19. A13BCFDF1C3B491400C76527 /* NSDictionary-Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEBA1C3B491300C76527 /* NSDictionary-Additions.m */; };
  20. A13BCFE01C3B491400C76527 /* NSString-Addtions.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEBC1C3B491300C76527 /* NSString-Addtions.m */; };
  21. A13BCFE11C3B491400C76527 /* SortDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEBE1C3B491300C76527 /* SortDictionary.m */; };
  22. A13BCFE21C3B491400C76527 /* UIDevice-Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEC01C3B491300C76527 /* UIDevice-Reachability.m */; };
  23. A13BCFE31C3B491400C76527 /* UIImage+Addtions.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEC21C3B491300C76527 /* UIImage+Addtions.m */; };
  24. A13BCFE41C3B491400C76527 /* UITableView+EnumarateCells.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEC41C3B491300C76527 /* UITableView+EnumarateCells.m */; };
  25. A13BCFE51C3B491400C76527 /* UIView+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEC61C3B491300C76527 /* UIView+Additions.m */; };
  26. A13BCFE61C3B491400C76527 /* UIView+AutoLayoutDebugging.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEC81C3B491300C76527 /* UIView+AutoLayoutDebugging.m */; };
  27. A13BCFE71C3B491400C76527 /* UIView+Toast.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCECA1C3B491300C76527 /* UIView+Toast.m */; };
  28. A13BCFE81C3B491400C76527 /* UIViewController-ActionSheetSimulation.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCECC1C3B491300C76527 /* UIViewController-ActionSheetSimulation.m */; };
  29. A13BCFE91C3B491400C76527 /* CommandClassControlDetailView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCED01C3B491300C76527 /* CommandClassControlDetailView.m */; };
  30. A13BCFEA1C3B491400C76527 /* CommandClassControlDetailView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCED11C3B491300C76527 /* CommandClassControlDetailView.xib */; };
  31. A13BCFEB1C3B491400C76527 /* CommandClassControlNodeView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCED31C3B491300C76527 /* CommandClassControlNodeView.m */; };
  32. A13BCFEC1C3B491400C76527 /* CommandClassControlNodeView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCED41C3B491300C76527 /* CommandClassControlNodeView.xib */; };
  33. A13BCFED1C3B491400C76527 /* CommandClassControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCED61C3B491300C76527 /* CommandClassControlView.m */; };
  34. A13BCFEE1C3B491400C76527 /* CommandClassControlView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCED71C3B491300C76527 /* CommandClassControlView.xib */; };
  35. A13BCFEF1C3B491400C76527 /* DeviceNodePopupTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCED81C3B491300C76527 /* DeviceNodePopupTableViewCell.xib */; };
  36. A13BCFF01C3B491400C76527 /* DeviceNodePopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEDA1C3B491300C76527 /* DeviceNodePopupView.m */; };
  37. A13BCFF11C3B491400C76527 /* DeviceNodePopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCEDB1C3B491300C76527 /* DeviceNodePopupView.xib */; };
  38. A13BCFF21C3B491400C76527 /* DeviceSelectPopupTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCEDC1C3B491300C76527 /* DeviceSelectPopupTableViewCell.xib */; };
  39. A13BCFF31C3B491400C76527 /* DeviceSelectPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEDE1C3B491300C76527 /* DeviceSelectPopupView.m */; };
  40. A13BCFF41C3B491400C76527 /* DeviceSelectPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCEDF1C3B491300C76527 /* DeviceSelectPopupView.xib */; };
  41. A13BCFF51C3B491400C76527 /* JDProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEE11C3B491300C76527 /* JDProgressHUD.m */; };
  42. A13BCFF61C3B491400C76527 /* KNTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEE31C3B491300C76527 /* KNTableViewCell.m */; };
  43. A13BCFF71C3B491400C76527 /* MultiLevelPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEE51C3B491300C76527 /* MultiLevelPopupView.m */; };
  44. A13BCFF81C3B491400C76527 /* MultiLevelPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCEE61C3B491300C76527 /* MultiLevelPopupView.xib */; };
  45. A13BCFF91C3B491400C76527 /* NoContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEE81C3B491300C76527 /* NoContentView.m */; };
  46. A13BCFFA1C3B491400C76527 /* NoContentView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCEE91C3B491300C76527 /* NoContentView.xib */; };
  47. A13BCFFB1C3B491400C76527 /* OptionPopOverViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEEB1C3B491300C76527 /* OptionPopOverViewController.m */; };
  48. A13BCFFC1C3B491400C76527 /* PopTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEED1C3B491300C76527 /* PopTableView.m */; };
  49. A13BCFFD1C3B491400C76527 /* PopTableView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCEEE1C3B491300C76527 /* PopTableView.xib */; };
  50. A13BD0041C3B491400C76527 /* CustomAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEF91C3B491300C76527 /* CustomAlertView.m */; };
  51. A13BD0051C3B491400C76527 /* CustomAlertView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCEFA1C3B491300C76527 /* CustomAlertView.xib */; };
  52. A13BD0061C3B491400C76527 /* CustomButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEFC1C3B491300C76527 /* CustomButton.m */; };
  53. A13BD0071C3B491400C76527 /* CustomCheckBox.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCEFE1C3B491300C76527 /* CustomCheckBox.m */; };
  54. A13BD0081C3B491400C76527 /* CustomImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF001C3B491300C76527 /* CustomImageView.m */; };
  55. A13BD0091C3B491400C76527 /* CustomLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF021C3B491300C76527 /* CustomLabel.m */; };
  56. A13BD00A1C3B491400C76527 /* CustomLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF041C3B491300C76527 /* CustomLoadingView.m */; };
  57. A13BD00B1C3B491400C76527 /* CustomPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF061C3B491300C76527 /* CustomPicker.m */; };
  58. A13BD00C1C3B491400C76527 /* CustomRadioGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF081C3B491300C76527 /* CustomRadioGroup.m */; };
  59. A13BD00D1C3B491400C76527 /* CustomShapeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF0A1C3B491300C76527 /* CustomShapeButton.m */; };
  60. A13BD00E1C3B491400C76527 /* CustomSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF0C1C3B491300C76527 /* CustomSwitch.m */; };
  61. A13BD00F1C3B491400C76527 /* CustomTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF0E1C3B491300C76527 /* CustomTableView.m */; };
  62. A13BD0101C3B491400C76527 /* CustomTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF101C3B491300C76527 /* CustomTextField.m */; };
  63. A13BD0111C3B491400C76527 /* CustomTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF121C3B491400C76527 /* CustomTextView.m */; };
  64. A13BD0121C3B491400C76527 /* DatePickerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF141C3B491400C76527 /* DatePickerButton.m */; };
  65. A13BD0131C3B491400C76527 /* SelectButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF161C3B491400C76527 /* SelectButton.m */; };
  66. A13BD0141C3B491400C76527 /* TimePickerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF181C3B491400C76527 /* TimePickerButton.m */; };
  67. A13BD0151C3B491400C76527 /* RequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF1C1C3B491400C76527 /* RequestHandler.m */; };
  68. A13BD0161C3B491400C76527 /* JDFacade.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF1E1C3B491400C76527 /* JDFacade.m */; };
  69. A13BD0171C3B491400C76527 /* JDObject.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF201C3B491400C76527 /* JDObject.m */; };
  70. A13BD0181C3B491400C76527 /* DeviceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF231C3B491400C76527 /* DeviceModel.m */; };
  71. A13BD0191C3B491400C76527 /* ItemModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF251C3B491400C76527 /* ItemModel.m */; };
  72. A13BD01A1C3B491400C76527 /* JDJSONModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF271C3B491400C76527 /* JDJSONModel.m */; };
  73. A13BD01B1C3B491400C76527 /* LoginModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF291C3B491400C76527 /* LoginModel.m */; };
  74. A13BD01C1C3B491400C76527 /* ModeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF2B1C3B491400C76527 /* ModeModel.m */; };
  75. A13BD01D1C3B491400C76527 /* RuleModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF2D1C3B491400C76527 /* RuleModel.m */; };
  76. A13BD01E1C3B491400C76527 /* SceneModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF2F1C3B491400C76527 /* SceneModel.m */; };
  77. A13BD01F1C3B491400C76527 /* CommonUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF321C3B491400C76527 /* CommonUtil.m */; };
  78. A13BD0201C3B491400C76527 /* CypherUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF341C3B491400C76527 /* CypherUtil.m */; };
  79. A13BD0211C3B491400C76527 /* ImageUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF361C3B491400C76527 /* ImageUtil.m */; };
  80. A13BD0221C3B491400C76527 /* JDUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF381C3B491400C76527 /* JDUserDefaults.m */; };
  81. A13BD0231C3B491400C76527 /* UIDeviceUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF3A1C3B491400C76527 /* UIDeviceUtil.m */; };
  82. A13BD0241C3B491400C76527 /* ValidateUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF3C1C3B491400C76527 /* ValidateUtil.m */; };
  83. A13BD0251C3B491400C76527 /* WebBrowseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF401C3B491400C76527 /* WebBrowseViewController.m */; };
  84. A13BD0261C3B491400C76527 /* HomeHubChangeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF431C3B491400C76527 /* HomeHubChangeViewController.m */; };
  85. A13BD0291C3B491400C76527 /* HomeHubInitViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF491C3B491400C76527 /* HomeHubInitViewController.m */; };
  86. A13BD02D1C3B491400C76527 /* HomeHubViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF511C3B491400C76527 /* HomeHubViewController.m */; };
  87. A13BD02E1C3B491400C76527 /* QRCodeInputPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF531C3B491400C76527 /* QRCodeInputPopupView.m */; };
  88. A13BD02F1C3B491400C76527 /* QRCodeInputPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCF541C3B491400C76527 /* QRCodeInputPopupView.xib */; };
  89. A13BD0301C3B491400C76527 /* QRCodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF561C3B491400C76527 /* QRCodeViewController.m */; };
  90. A13BD0311C3B491400C76527 /* HomeMemberAddViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF5A1C3B491400C76527 /* HomeMemberAddViewController.m */; };
  91. A13BD0321C3B491400C76527 /* HomeMemberViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF5C1C3B491400C76527 /* HomeMemberViewController.m */; };
  92. A13BD0331C3B491400C76527 /* JDTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF5E1C3B491400C76527 /* JDTableViewController.m */; };
  93. A13BD0341C3B491400C76527 /* JDViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF601C3B491400C76527 /* JDViewController.m */; };
  94. A13BD0351C3B491400C76527 /* HomeModeSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF631C3B491400C76527 /* HomeModeSettingsViewController.m */; };
  95. A13BD0361C3B491400C76527 /* HomeModeUpdateViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF651C3B491400C76527 /* HomeModeUpdateViewController.m */; };
  96. A13BD0371C3B491400C76527 /* IntroViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF671C3B491400C76527 /* IntroViewController.m */; };
  97. A13BD0381C3B491400C76527 /* InvitationAnswerPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF691C3B491400C76527 /* InvitationAnswerPopupView.m */; };
  98. A13BD0391C3B491400C76527 /* InvitationAnswerPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCF6A1C3B491400C76527 /* InvitationAnswerPopupView.xib */; };
  99. A13BD03A1C3B491400C76527 /* InvitationAnswerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF6C1C3B491400C76527 /* InvitationAnswerViewController.m */; };
  100. A13BD03B1C3B491400C76527 /* InvitationListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF6E1C3B491400C76527 /* InvitationListViewController.m */; };
  101. A13BD03C1C3B491400C76527 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF701C3B491400C76527 /* LoginViewController.m */; };
  102. A13BD03D1C3B491400C76527 /* MainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF721C3B491400C76527 /* MainViewController.m */; };
  103. A13BD03E1C3B491400C76527 /* MessageBoxViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF741C3B491400C76527 /* MessageBoxViewController.m */; };
  104. A13BD03F1C3B491400C76527 /* NoticeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF761C3B491400C76527 /* NoticeViewController.m */; };
  105. A13BD0401C3B491400C76527 /* ResetPwdViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF781C3B491400C76527 /* ResetPwdViewController.m */; };
  106. A13BD0411C3B491400C76527 /* RulesAddCompleteViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF7B1C3B491400C76527 /* RulesAddCompleteViewController.m */; };
  107. A13BD0421C3B491400C76527 /* RulesAddViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF7D1C3B491400C76527 /* RulesAddViewController.m */; };
  108. A13BD0431C3B491400C76527 /* RulesConditionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF7F1C3B491400C76527 /* RulesConditionViewController.m */; };
  109. A13BD0441C3B491400C76527 /* RulesDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF811C3B491400C76527 /* RulesDetailViewController.m */; };
  110. A13BD0451C3B491400C76527 /* RulesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF831C3B491400C76527 /* RulesViewController.m */; };
  111. A13BD04E1C3B491400C76527 /* DeleteAccountPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF961C3B491400C76527 /* DeleteAccountPopupView.m */; };
  112. A13BD04F1C3B491400C76527 /* DeleteAccountPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCF971C3B491400C76527 /* DeleteAccountPopupView.xib */; };
  113. A13BD0501C3B491400C76527 /* GoodbyeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF991C3B491400C76527 /* GoodbyeViewController.m */; };
  114. A13BD0511C3B491400C76527 /* PwdPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCF9B1C3B491400C76527 /* PwdPopupView.m */; };
  115. A13BD0521C3B491400C76527 /* PwdPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCF9C1C3B491400C76527 /* PwdPopupView.xib */; };
  116. A13BD0541C3B491400C76527 /* SettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFA01C3B491400C76527 /* SettingsViewController.m */; };
  117. A13BD0561C3B491400C76527 /* AgreementViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFA51C3B491400C76527 /* AgreementViewController.m */; };
  118. A13BD0571C3B491400C76527 /* NewMobileViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFA71C3B491400C76527 /* NewMobileViewController.m */; };
  119. A13BD0581C3B491400C76527 /* SignUpViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFA91C3B491400C76527 /* SignUpViewController.m */; };
  120. A13BD05F1C3B491400C76527 /* ModifyDeviceNamePopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFB51C3B491400C76527 /* ModifyDeviceNamePopupView.m */; };
  121. A13BD0601C3B491400C76527 /* ModifyDeviceNamePopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCFB61C3B491400C76527 /* ModifyDeviceNamePopupView.xib */; };
  122. A13BD0611C3B491400C76527 /* ModifySecureKeyPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFB81C3B491400C76527 /* ModifySecureKeyPopupView.m */; };
  123. A13BD0621C3B491400C76527 /* ModifySecureKeyPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BCFB91C3B491400C76527 /* ModifySecureKeyPopupView.xib */; };
  124. A13BD0651C3B491400C76527 /* ThingsAddCompleteViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFBE1C3B491400C76527 /* ThingsAddCompleteViewController.m */; };
  125. A13BD0661C3B491400C76527 /* ThingsAddFailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFC01C3B491400C76527 /* ThingsAddFailViewController.m */; };
  126. A13BD0671C3B491400C76527 /* ThingsAddIncludeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFC21C3B491400C76527 /* ThingsAddIncludeViewController.m */; };
  127. A13BD0681C3B491400C76527 /* ThingsAddStartViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFC41C3B491400C76527 /* ThingsAddStartViewController.m */; };
  128. A13BD0691C3B491400C76527 /* ThingsAddViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFC61C3B491400C76527 /* ThingsAddViewController.m */; };
  129. A13BD06A1C3B491400C76527 /* ThingsDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFC81C3B491400C76527 /* ThingsDetailViewController.m */; };
  130. A13BD06B1C3B491400C76527 /* ThingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFCA1C3B491400C76527 /* ThingsViewController.m */; };
  131. A13BD0701C3B491400C76527 /* JDUUID.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFD41C3B491400C76527 /* JDUUID.m */; };
  132. A13BD0711C3B491400C76527 /* KeychainItemWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFD61C3B491400C76527 /* KeychainItemWrapper.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
  133. A13BD0721C3B491400C76527 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BCFD91C3B491400C76527 /* Reachability.m */; };
  134. A13BD0831C3B492A00C76527 /* Common.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0731C3B492A00C76527 /* Common.storyboard */; };
  135. A13BD0841C3B492A00C76527 /* HomeHub.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0751C3B492A00C76527 /* HomeHub.storyboard */; };
  136. A13BD0851C3B492A00C76527 /* HomeMember.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0771C3B492A00C76527 /* HomeMember.storyboard */; };
  137. A13BD0861C3B492A00C76527 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0791C3B492A00C76527 /* Localizable.strings */; };
  138. A13BD0871C3B492A00C76527 /* Rules.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BD07B1C3B492A00C76527 /* Rules.storyboard */; };
  139. A13BD0881C3B492A00C76527 /* Settings.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BD07D1C3B492A00C76527 /* Settings.storyboard */; };
  140. A13BD0891C3B492A00C76527 /* SignUp.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BD07F1C3B492A00C76527 /* SignUp.storyboard */; };
  141. A13BD08A1C3B492A00C76527 /* Things.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0811C3B492A00C76527 /* Things.storyboard */; };
  142. A13BD0D11C3B563D00C76527 /* DaylightPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BD0BB1C3B563D00C76527 /* DaylightPopupView.m */; };
  143. A13BD0D21C3B563D00C76527 /* DaylightPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0BC1C3B563D00C76527 /* DaylightPopupView.xib */; };
  144. A13BD0D31C3B563D00C76527 /* ExternHeatPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BD0BE1C3B563D00C76527 /* ExternHeatPopupView.m */; };
  145. A13BD0D41C3B563D00C76527 /* ExternHeatPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0BF1C3B563D00C76527 /* ExternHeatPopupView.xib */; };
  146. A13BD0D51C3B563D00C76527 /* RulesConditionHomeModePopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BD0C11C3B563D00C76527 /* RulesConditionHomeModePopupView.m */; };
  147. A13BD0D61C3B563D00C76527 /* RulesConditionHomeModePopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0C21C3B563D00C76527 /* RulesConditionHomeModePopupView.xib */; };
  148. A13BD0D71C3B563D00C76527 /* RulesConditionHomeModeTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0C31C3B563D00C76527 /* RulesConditionHomeModeTableViewCell.xib */; };
  149. A13BD0D81C3B563D00C76527 /* TemperaturePopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BD0C51C3B563D00C76527 /* TemperaturePopupView.m */; };
  150. A13BD0D91C3B563D00C76527 /* TemperaturePopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0C61C3B563D00C76527 /* TemperaturePopupView.xib */; };
  151. A13BD0DA1C3B563D00C76527 /* TimePickerPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BD0C81C3B563D00C76527 /* TimePickerPopupView.m */; };
  152. A13BD0DB1C3B563D00C76527 /* TimePickerPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0C91C3B563D00C76527 /* TimePickerPopupView.xib */; };
  153. A13BD0DC1C3B563D00C76527 /* TriggerSelectPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BD0CB1C3B563D00C76527 /* TriggerSelectPopupView.m */; };
  154. A13BD0DD1C3B563D00C76527 /* TriggerSelectPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0CC1C3B563D00C76527 /* TriggerSelectPopupView.xib */; };
  155. A13BD0DE1C3B563D00C76527 /* WeatherLocationPopupTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0CD1C3B563D00C76527 /* WeatherLocationPopupTableViewCell.xib */; };
  156. A13BD0DF1C3B563D00C76527 /* WeatherLocationPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A13BD0CF1C3B563D00C76527 /* WeatherLocationPopupView.m */; };
  157. A13BD0E01C3B563D00C76527 /* WeatherLocationPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A13BD0D01C3B563D00C76527 /* WeatherLocationPopupView.xib */; };
  158. A15D2CFC1C58598F0018D555 /* KNLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = A15D2CFB1C58598F0018D555 /* KNLayoutConstraint.m */; };
  159. A15D2CFF1C588FBB0018D555 /* KNView.m in Sources */ = {isa = PBXBuildFile; fileRef = A15D2CFE1C588FBB0018D555 /* KNView.m */; };
  160. A16A1CC41C71728400F92BC1 /* NetworkServiceHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A16A1CC31C71728400F92BC1 /* NetworkServiceHandler.m */; };
  161. A16D937E1C5600D300DC0DF1 /* DurationPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A16D937C1C5600D300DC0DF1 /* DurationPopupView.m */; };
  162. A16D937F1C5600D300DC0DF1 /* DurationPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A16D937D1C5600D300DC0DF1 /* DurationPopupView.xib */; };
  163. A191B4841C4495AE00DEBA91 /* WelcomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A191B4831C4495AE00DEBA91 /* WelcomeViewController.m */; };
  164. A191B4871C44985200DEBA91 /* UIWindow+Addtions.m in Sources */ = {isa = PBXBuildFile; fileRef = A191B4861C44985200DEBA91 /* UIWindow+Addtions.m */; };
  165. A191B48E1C4639F900DEBA91 /* AdminAuthPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A191B48C1C4639F900DEBA91 /* AdminAuthPopupView.m */; };
  166. A191B48F1C4639F900DEBA91 /* AdminAuthPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A191B48D1C4639F900DEBA91 /* AdminAuthPopupView.xib */; };
  167. A1A454891C476CDE00BA805C /* ChangeNamePopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A1A454871C476CDE00BA805C /* ChangeNamePopupView.m */; };
  168. A1A4548A1C476CDE00BA805C /* ChangeNamePopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A1A454881C476CDE00BA805C /* ChangeNamePopupView.xib */; };
  169. A1A4548E1C47736D00BA805C /* ConfirmPasswdPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A1A4548C1C47736D00BA805C /* ConfirmPasswdPopupView.m */; };
  170. A1A4548F1C47736D00BA805C /* ConfirmPasswdPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A1A4548D1C47736D00BA805C /* ConfirmPasswdPopupView.xib */; };
  171. A1A454931C477ACD00BA805C /* ChangeEmailPopupView.m in Sources */ = {isa = PBXBuildFile; fileRef = A1A454911C477ACD00BA805C /* ChangeEmailPopupView.m */; };
  172. A1A454941C477ACD00BA805C /* ChangeEmailPopupView.xib in Resources */ = {isa = PBXBuildFile; fileRef = A1A454921C477ACD00BA805C /* ChangeEmailPopupView.xib */; };
  173. A1BC6EC81C3E578F00D957D9 /* CustomLabelButton.m in Sources */ = {isa = PBXBuildFile; fileRef = A1BC6EC71C3E578F00D957D9 /* CustomLabelButton.m */; };
  174. A1BC6ECA1C3E57A000D957D9 /* CustomLabelButton.xib in Resources */ = {isa = PBXBuildFile; fileRef = A1BC6EC91C3E57A000D957D9 /* CustomLabelButton.xib */; };
  175. A1CC0BF61C3B8A2D00B05DA3 /* NSLayoutConstraint+Additions.m in Sources */ = {isa = PBXBuildFile; fileRef = A1CC0BF51C3B8A2D00B05DA3 /* NSLayoutConstraint+Additions.m */; };
  176. A57656141E51823E002D0AE2 /* ReactiveObjC.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A57656131E51823E002D0AE2 /* ReactiveObjC.framework */; };
  177. A57656161E518255002D0AE2 /* ReactiveObjC.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = A57656131E51823E002D0AE2 /* ReactiveObjC.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  178. /* End PBXBuildFile section */
  179. /* Begin PBXContainerItemProxy section */
  180. A13BCE981C3B47A500C76527 /* PBXContainerItemProxy */ = {
  181. isa = PBXContainerItemProxy;
  182. containerPortal = A13BCE761C3B47A500C76527 /* Project object */;
  183. proxyType = 1;
  184. remoteGlobalIDString = A13BCE7D1C3B47A500C76527;
  185. remoteInfo = SmartCity;
  186. };
  187. /* End PBXContainerItemProxy section */
  188. /* Begin PBXCopyFilesBuildPhase section */
  189. A57656171E518255002D0AE2 /* Embed Frameworks */ = {
  190. isa = PBXCopyFilesBuildPhase;
  191. buildActionMask = 2147483647;
  192. dstPath = "";
  193. dstSubfolderSpec = 10;
  194. files = (
  195. A57656161E518255002D0AE2 /* ReactiveObjC.framework in Embed Frameworks */,
  196. );
  197. name = "Embed Frameworks";
  198. runOnlyForDeploymentPostprocessing = 0;
  199. };
  200. /* End PBXCopyFilesBuildPhase section */
  201. /* Begin PBXFileReference section */
  202. 1FEE599D97C10ACB19408ACA /* Pods-OneCable.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OneCable.release.xcconfig"; path = "Pods/Target Support Files/Pods-OneCable/Pods-OneCable.release.xcconfig"; sourceTree = "<group>"; };
  203. 55C040EE251C2C1BC9704BEC /* Pods-OneCable.product.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OneCable.product.xcconfig"; path = "Pods/Target Support Files/Pods-OneCable/Pods-OneCable.product.xcconfig"; sourceTree = "<group>"; };
  204. A13BCE7E1C3B47A500C76527 /* OneCable.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OneCable.app; sourceTree = BUILT_PRODUCTS_DIR; };
  205. A13BCE821C3B47A500C76527 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  206. A13BCE8B1C3B47A500C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  207. A13BCE8D1C3B47A500C76527 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  208. A13BCE921C3B47A500C76527 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  209. A13BCE971C3B47A500C76527 /* OneCableTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = OneCableTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  210. A13BCE9B1C3B47A500C76527 /* OneCableTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OneCableTests.m; sourceTree = "<group>"; };
  211. A13BCE9D1C3B47A500C76527 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  212. A13BCEAE1C3B491300C76527 /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  213. A13BCEAF1C3B491300C76527 /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  214. A13BCEB11C3B491300C76527 /* GTMNSString+HTML.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GTMNSString+HTML.h"; sourceTree = "<group>"; };
  215. A13BCEB21C3B491300C76527 /* GTMNSString+HTML.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "GTMNSString+HTML.m"; sourceTree = "<group>"; };
  216. A13BCEB31C3B491300C76527 /* NSArray-Addtions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray-Addtions.h"; sourceTree = "<group>"; };
  217. A13BCEB41C3B491300C76527 /* NSArray-Addtions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray-Addtions.m"; sourceTree = "<group>"; };
  218. A13BCEB51C3B491300C76527 /* NSData+AESCrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+AESCrypt.h"; sourceTree = "<group>"; };
  219. A13BCEB61C3B491300C76527 /* NSData+AESCrypt.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+AESCrypt.m"; sourceTree = "<group>"; };
  220. A13BCEB71C3B491300C76527 /* NSDate+Utilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Utilities.h"; sourceTree = "<group>"; };
  221. A13BCEB81C3B491300C76527 /* NSDate+Utilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Utilities.m"; sourceTree = "<group>"; };
  222. A13BCEB91C3B491300C76527 /* NSDictionary-Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary-Additions.h"; sourceTree = "<group>"; };
  223. A13BCEBA1C3B491300C76527 /* NSDictionary-Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary-Additions.m"; sourceTree = "<group>"; };
  224. A13BCEBB1C3B491300C76527 /* NSString-Addtions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString-Addtions.h"; sourceTree = "<group>"; };
  225. A13BCEBC1C3B491300C76527 /* NSString-Addtions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString-Addtions.m"; sourceTree = "<group>"; };
  226. A13BCEBD1C3B491300C76527 /* SortDictionary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SortDictionary.h; sourceTree = "<group>"; };
  227. A13BCEBE1C3B491300C76527 /* SortDictionary.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SortDictionary.m; sourceTree = "<group>"; };
  228. A13BCEBF1C3B491300C76527 /* UIDevice-Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice-Reachability.h"; sourceTree = "<group>"; };
  229. A13BCEC01C3B491300C76527 /* UIDevice-Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice-Reachability.m"; sourceTree = "<group>"; };
  230. A13BCEC11C3B491300C76527 /* UIImage+Addtions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Addtions.h"; sourceTree = "<group>"; };
  231. A13BCEC21C3B491300C76527 /* UIImage+Addtions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Addtions.m"; sourceTree = "<group>"; };
  232. A13BCEC31C3B491300C76527 /* UITableView+EnumarateCells.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+EnumarateCells.h"; sourceTree = "<group>"; };
  233. A13BCEC41C3B491300C76527 /* UITableView+EnumarateCells.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+EnumarateCells.m"; sourceTree = "<group>"; };
  234. A13BCEC51C3B491300C76527 /* UIView+Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Additions.h"; sourceTree = "<group>"; };
  235. A13BCEC61C3B491300C76527 /* UIView+Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Additions.m"; sourceTree = "<group>"; };
  236. A13BCEC71C3B491300C76527 /* UIView+AutoLayoutDebugging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+AutoLayoutDebugging.h"; sourceTree = "<group>"; };
  237. A13BCEC81C3B491300C76527 /* UIView+AutoLayoutDebugging.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+AutoLayoutDebugging.m"; sourceTree = "<group>"; };
  238. A13BCEC91C3B491300C76527 /* UIView+Toast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Toast.h"; sourceTree = "<group>"; };
  239. A13BCECA1C3B491300C76527 /* UIView+Toast.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Toast.m"; sourceTree = "<group>"; };
  240. A13BCECB1C3B491300C76527 /* UIViewController-ActionSheetSimulation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController-ActionSheetSimulation.h"; sourceTree = "<group>"; };
  241. A13BCECC1C3B491300C76527 /* UIViewController-ActionSheetSimulation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController-ActionSheetSimulation.m"; sourceTree = "<group>"; };
  242. A13BCECD1C3B491300C76527 /* Common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Common.h; sourceTree = "<group>"; };
  243. A13BCECF1C3B491300C76527 /* CommandClassControlDetailView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommandClassControlDetailView.h; sourceTree = "<group>"; };
  244. A13BCED01C3B491300C76527 /* CommandClassControlDetailView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommandClassControlDetailView.m; sourceTree = "<group>"; };
  245. A13BCED11C3B491300C76527 /* CommandClassControlDetailView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CommandClassControlDetailView.xib; sourceTree = "<group>"; };
  246. A13BCED21C3B491300C76527 /* CommandClassControlNodeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommandClassControlNodeView.h; sourceTree = "<group>"; };
  247. A13BCED31C3B491300C76527 /* CommandClassControlNodeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommandClassControlNodeView.m; sourceTree = "<group>"; };
  248. A13BCED41C3B491300C76527 /* CommandClassControlNodeView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CommandClassControlNodeView.xib; sourceTree = "<group>"; };
  249. A13BCED51C3B491300C76527 /* CommandClassControlView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommandClassControlView.h; sourceTree = "<group>"; };
  250. A13BCED61C3B491300C76527 /* CommandClassControlView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommandClassControlView.m; sourceTree = "<group>"; };
  251. A13BCED71C3B491300C76527 /* CommandClassControlView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CommandClassControlView.xib; sourceTree = "<group>"; };
  252. A13BCED81C3B491300C76527 /* DeviceNodePopupTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceNodePopupTableViewCell.xib; sourceTree = "<group>"; };
  253. A13BCED91C3B491300C76527 /* DeviceNodePopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceNodePopupView.h; sourceTree = "<group>"; };
  254. A13BCEDA1C3B491300C76527 /* DeviceNodePopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceNodePopupView.m; sourceTree = "<group>"; };
  255. A13BCEDB1C3B491300C76527 /* DeviceNodePopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceNodePopupView.xib; sourceTree = "<group>"; };
  256. A13BCEDC1C3B491300C76527 /* DeviceSelectPopupTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceSelectPopupTableViewCell.xib; sourceTree = "<group>"; };
  257. A13BCEDD1C3B491300C76527 /* DeviceSelectPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceSelectPopupView.h; sourceTree = "<group>"; };
  258. A13BCEDE1C3B491300C76527 /* DeviceSelectPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceSelectPopupView.m; sourceTree = "<group>"; };
  259. A13BCEDF1C3B491300C76527 /* DeviceSelectPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceSelectPopupView.xib; sourceTree = "<group>"; };
  260. A13BCEE01C3B491300C76527 /* JDProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDProgressHUD.h; sourceTree = "<group>"; };
  261. A13BCEE11C3B491300C76527 /* JDProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDProgressHUD.m; sourceTree = "<group>"; };
  262. A13BCEE21C3B491300C76527 /* KNTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KNTableViewCell.h; sourceTree = "<group>"; };
  263. A13BCEE31C3B491300C76527 /* KNTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KNTableViewCell.m; sourceTree = "<group>"; };
  264. A13BCEE41C3B491300C76527 /* MultiLevelPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultiLevelPopupView.h; sourceTree = "<group>"; };
  265. A13BCEE51C3B491300C76527 /* MultiLevelPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultiLevelPopupView.m; sourceTree = "<group>"; };
  266. A13BCEE61C3B491300C76527 /* MultiLevelPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MultiLevelPopupView.xib; sourceTree = "<group>"; };
  267. A13BCEE71C3B491300C76527 /* NoContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoContentView.h; sourceTree = "<group>"; };
  268. A13BCEE81C3B491300C76527 /* NoContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoContentView.m; sourceTree = "<group>"; };
  269. A13BCEE91C3B491300C76527 /* NoContentView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NoContentView.xib; sourceTree = "<group>"; };
  270. A13BCEEA1C3B491300C76527 /* OptionPopOverViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OptionPopOverViewController.h; sourceTree = "<group>"; };
  271. A13BCEEB1C3B491300C76527 /* OptionPopOverViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OptionPopOverViewController.m; sourceTree = "<group>"; };
  272. A13BCEEC1C3B491300C76527 /* PopTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PopTableView.h; sourceTree = "<group>"; };
  273. A13BCEED1C3B491300C76527 /* PopTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PopTableView.m; sourceTree = "<group>"; };
  274. A13BCEEE1C3B491300C76527 /* PopTableView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PopTableView.xib; sourceTree = "<group>"; };
  275. A13BCEF81C3B491300C76527 /* CustomAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomAlertView.h; sourceTree = "<group>"; };
  276. A13BCEF91C3B491300C76527 /* CustomAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomAlertView.m; sourceTree = "<group>"; };
  277. A13BCEFA1C3B491300C76527 /* CustomAlertView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CustomAlertView.xib; sourceTree = "<group>"; };
  278. A13BCEFB1C3B491300C76527 /* CustomButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomButton.h; sourceTree = "<group>"; };
  279. A13BCEFC1C3B491300C76527 /* CustomButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomButton.m; sourceTree = "<group>"; };
  280. A13BCEFD1C3B491300C76527 /* CustomCheckBox.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomCheckBox.h; sourceTree = "<group>"; };
  281. A13BCEFE1C3B491300C76527 /* CustomCheckBox.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomCheckBox.m; sourceTree = "<group>"; };
  282. A13BCEFF1C3B491300C76527 /* CustomImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomImageView.h; sourceTree = "<group>"; };
  283. A13BCF001C3B491300C76527 /* CustomImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomImageView.m; sourceTree = "<group>"; };
  284. A13BCF011C3B491300C76527 /* CustomLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomLabel.h; sourceTree = "<group>"; };
  285. A13BCF021C3B491300C76527 /* CustomLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomLabel.m; sourceTree = "<group>"; };
  286. A13BCF031C3B491300C76527 /* CustomLoadingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomLoadingView.h; sourceTree = "<group>"; };
  287. A13BCF041C3B491300C76527 /* CustomLoadingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomLoadingView.m; sourceTree = "<group>"; };
  288. A13BCF051C3B491300C76527 /* CustomPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomPicker.h; sourceTree = "<group>"; };
  289. A13BCF061C3B491300C76527 /* CustomPicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomPicker.m; sourceTree = "<group>"; };
  290. A13BCF071C3B491300C76527 /* CustomRadioGroup.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomRadioGroup.h; sourceTree = "<group>"; };
  291. A13BCF081C3B491300C76527 /* CustomRadioGroup.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomRadioGroup.m; sourceTree = "<group>"; };
  292. A13BCF091C3B491300C76527 /* CustomShapeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomShapeButton.h; sourceTree = "<group>"; };
  293. A13BCF0A1C3B491300C76527 /* CustomShapeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomShapeButton.m; sourceTree = "<group>"; };
  294. A13BCF0B1C3B491300C76527 /* CustomSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomSwitch.h; sourceTree = "<group>"; };
  295. A13BCF0C1C3B491300C76527 /* CustomSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomSwitch.m; sourceTree = "<group>"; };
  296. A13BCF0D1C3B491300C76527 /* CustomTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomTableView.h; sourceTree = "<group>"; };
  297. A13BCF0E1C3B491300C76527 /* CustomTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomTableView.m; sourceTree = "<group>"; };
  298. A13BCF0F1C3B491300C76527 /* CustomTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomTextField.h; sourceTree = "<group>"; };
  299. A13BCF101C3B491300C76527 /* CustomTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomTextField.m; sourceTree = "<group>"; };
  300. A13BCF111C3B491400C76527 /* CustomTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomTextView.h; sourceTree = "<group>"; };
  301. A13BCF121C3B491400C76527 /* CustomTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomTextView.m; sourceTree = "<group>"; };
  302. A13BCF131C3B491400C76527 /* DatePickerButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DatePickerButton.h; sourceTree = "<group>"; };
  303. A13BCF141C3B491400C76527 /* DatePickerButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DatePickerButton.m; sourceTree = "<group>"; };
  304. A13BCF151C3B491400C76527 /* SelectButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelectButton.h; sourceTree = "<group>"; };
  305. A13BCF161C3B491400C76527 /* SelectButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SelectButton.m; sourceTree = "<group>"; };
  306. A13BCF171C3B491400C76527 /* TimePickerButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimePickerButton.h; sourceTree = "<group>"; };
  307. A13BCF181C3B491400C76527 /* TimePickerButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimePickerButton.m; sourceTree = "<group>"; };
  308. A13BCF191C3B491400C76527 /* Definitions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Definitions.h; sourceTree = "<group>"; };
  309. A13BCF1B1C3B491400C76527 /* RequestHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RequestHandler.h; sourceTree = "<group>"; };
  310. A13BCF1C1C3B491400C76527 /* RequestHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RequestHandler.m; sourceTree = "<group>"; };
  311. A13BCF1D1C3B491400C76527 /* JDFacade.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDFacade.h; sourceTree = "<group>"; };
  312. A13BCF1E1C3B491400C76527 /* JDFacade.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDFacade.m; sourceTree = "<group>"; };
  313. A13BCF1F1C3B491400C76527 /* JDObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDObject.h; sourceTree = "<group>"; };
  314. A13BCF201C3B491400C76527 /* JDObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDObject.m; sourceTree = "<group>"; };
  315. A13BCF221C3B491400C76527 /* DeviceModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceModel.h; sourceTree = "<group>"; };
  316. A13BCF231C3B491400C76527 /* DeviceModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceModel.m; sourceTree = "<group>"; };
  317. A13BCF241C3B491400C76527 /* ItemModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ItemModel.h; sourceTree = "<group>"; };
  318. A13BCF251C3B491400C76527 /* ItemModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ItemModel.m; sourceTree = "<group>"; };
  319. A13BCF261C3B491400C76527 /* JDJSONModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDJSONModel.h; sourceTree = "<group>"; };
  320. A13BCF271C3B491400C76527 /* JDJSONModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDJSONModel.m; sourceTree = "<group>"; };
  321. A13BCF281C3B491400C76527 /* LoginModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginModel.h; sourceTree = "<group>"; };
  322. A13BCF291C3B491400C76527 /* LoginModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginModel.m; sourceTree = "<group>"; };
  323. A13BCF2A1C3B491400C76527 /* ModeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModeModel.h; sourceTree = "<group>"; };
  324. A13BCF2B1C3B491400C76527 /* ModeModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModeModel.m; sourceTree = "<group>"; };
  325. A13BCF2C1C3B491400C76527 /* RuleModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RuleModel.h; sourceTree = "<group>"; };
  326. A13BCF2D1C3B491400C76527 /* RuleModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RuleModel.m; sourceTree = "<group>"; };
  327. A13BCF2E1C3B491400C76527 /* SceneModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SceneModel.h; sourceTree = "<group>"; };
  328. A13BCF2F1C3B491400C76527 /* SceneModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SceneModel.m; sourceTree = "<group>"; };
  329. A13BCF311C3B491400C76527 /* CommonUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommonUtil.h; sourceTree = "<group>"; };
  330. A13BCF321C3B491400C76527 /* CommonUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommonUtil.m; sourceTree = "<group>"; };
  331. A13BCF331C3B491400C76527 /* CypherUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CypherUtil.h; sourceTree = "<group>"; };
  332. A13BCF341C3B491400C76527 /* CypherUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CypherUtil.m; sourceTree = "<group>"; };
  333. A13BCF351C3B491400C76527 /* ImageUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImageUtil.h; sourceTree = "<group>"; };
  334. A13BCF361C3B491400C76527 /* ImageUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ImageUtil.m; sourceTree = "<group>"; };
  335. A13BCF371C3B491400C76527 /* JDUserDefaults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDUserDefaults.h; sourceTree = "<group>"; };
  336. A13BCF381C3B491400C76527 /* JDUserDefaults.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDUserDefaults.m; sourceTree = "<group>"; };
  337. A13BCF391C3B491400C76527 /* UIDeviceUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIDeviceUtil.h; sourceTree = "<group>"; };
  338. A13BCF3A1C3B491400C76527 /* UIDeviceUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIDeviceUtil.m; sourceTree = "<group>"; };
  339. A13BCF3B1C3B491400C76527 /* ValidateUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ValidateUtil.h; sourceTree = "<group>"; };
  340. A13BCF3C1C3B491400C76527 /* ValidateUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ValidateUtil.m; sourceTree = "<group>"; };
  341. A13BCF3F1C3B491400C76527 /* WebBrowseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WebBrowseViewController.h; sourceTree = "<group>"; };
  342. A13BCF401C3B491400C76527 /* WebBrowseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WebBrowseViewController.m; sourceTree = "<group>"; };
  343. A13BCF421C3B491400C76527 /* HomeHubChangeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeHubChangeViewController.h; sourceTree = "<group>"; };
  344. A13BCF431C3B491400C76527 /* HomeHubChangeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeHubChangeViewController.m; sourceTree = "<group>"; };
  345. A13BCF481C3B491400C76527 /* HomeHubInitViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeHubInitViewController.h; sourceTree = "<group>"; };
  346. A13BCF491C3B491400C76527 /* HomeHubInitViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeHubInitViewController.m; sourceTree = "<group>"; };
  347. A13BCF501C3B491400C76527 /* HomeHubViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeHubViewController.h; sourceTree = "<group>"; };
  348. A13BCF511C3B491400C76527 /* HomeHubViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeHubViewController.m; sourceTree = "<group>"; };
  349. A13BCF521C3B491400C76527 /* QRCodeInputPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QRCodeInputPopupView.h; sourceTree = "<group>"; };
  350. A13BCF531C3B491400C76527 /* QRCodeInputPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QRCodeInputPopupView.m; sourceTree = "<group>"; };
  351. A13BCF541C3B491400C76527 /* QRCodeInputPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = QRCodeInputPopupView.xib; sourceTree = "<group>"; };
  352. A13BCF551C3B491400C76527 /* QRCodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QRCodeViewController.h; sourceTree = "<group>"; };
  353. A13BCF561C3B491400C76527 /* QRCodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QRCodeViewController.m; sourceTree = "<group>"; };
  354. A13BCF591C3B491400C76527 /* HomeMemberAddViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeMemberAddViewController.h; sourceTree = "<group>"; };
  355. A13BCF5A1C3B491400C76527 /* HomeMemberAddViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeMemberAddViewController.m; sourceTree = "<group>"; };
  356. A13BCF5B1C3B491400C76527 /* HomeMemberViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeMemberViewController.h; sourceTree = "<group>"; };
  357. A13BCF5C1C3B491400C76527 /* HomeMemberViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeMemberViewController.m; sourceTree = "<group>"; };
  358. A13BCF5D1C3B491400C76527 /* JDTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDTableViewController.h; sourceTree = "<group>"; };
  359. A13BCF5E1C3B491400C76527 /* JDTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDTableViewController.m; sourceTree = "<group>"; };
  360. A13BCF5F1C3B491400C76527 /* JDViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDViewController.h; sourceTree = "<group>"; };
  361. A13BCF601C3B491400C76527 /* JDViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDViewController.m; sourceTree = "<group>"; };
  362. A13BCF621C3B491400C76527 /* HomeModeSettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeModeSettingsViewController.h; sourceTree = "<group>"; };
  363. A13BCF631C3B491400C76527 /* HomeModeSettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeModeSettingsViewController.m; sourceTree = "<group>"; };
  364. A13BCF641C3B491400C76527 /* HomeModeUpdateViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeModeUpdateViewController.h; sourceTree = "<group>"; };
  365. A13BCF651C3B491400C76527 /* HomeModeUpdateViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeModeUpdateViewController.m; sourceTree = "<group>"; };
  366. A13BCF661C3B491400C76527 /* IntroViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IntroViewController.h; sourceTree = "<group>"; };
  367. A13BCF671C3B491400C76527 /* IntroViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IntroViewController.m; sourceTree = "<group>"; };
  368. A13BCF681C3B491400C76527 /* InvitationAnswerPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InvitationAnswerPopupView.h; sourceTree = "<group>"; };
  369. A13BCF691C3B491400C76527 /* InvitationAnswerPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InvitationAnswerPopupView.m; sourceTree = "<group>"; };
  370. A13BCF6A1C3B491400C76527 /* InvitationAnswerPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = InvitationAnswerPopupView.xib; sourceTree = "<group>"; };
  371. A13BCF6B1C3B491400C76527 /* InvitationAnswerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InvitationAnswerViewController.h; sourceTree = "<group>"; };
  372. A13BCF6C1C3B491400C76527 /* InvitationAnswerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InvitationAnswerViewController.m; sourceTree = "<group>"; };
  373. A13BCF6D1C3B491400C76527 /* InvitationListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InvitationListViewController.h; sourceTree = "<group>"; };
  374. A13BCF6E1C3B491400C76527 /* InvitationListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InvitationListViewController.m; sourceTree = "<group>"; };
  375. A13BCF6F1C3B491400C76527 /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
  376. A13BCF701C3B491400C76527 /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
  377. A13BCF711C3B491400C76527 /* MainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainViewController.h; sourceTree = "<group>"; };
  378. A13BCF721C3B491400C76527 /* MainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainViewController.m; sourceTree = "<group>"; };
  379. A13BCF731C3B491400C76527 /* MessageBoxViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageBoxViewController.h; sourceTree = "<group>"; };
  380. A13BCF741C3B491400C76527 /* MessageBoxViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageBoxViewController.m; sourceTree = "<group>"; };
  381. A13BCF751C3B491400C76527 /* NoticeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoticeViewController.h; sourceTree = "<group>"; };
  382. A13BCF761C3B491400C76527 /* NoticeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoticeViewController.m; sourceTree = "<group>"; };
  383. A13BCF771C3B491400C76527 /* ResetPwdViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ResetPwdViewController.h; sourceTree = "<group>"; };
  384. A13BCF781C3B491400C76527 /* ResetPwdViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ResetPwdViewController.m; sourceTree = "<group>"; };
  385. A13BCF7A1C3B491400C76527 /* RulesAddCompleteViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RulesAddCompleteViewController.h; sourceTree = "<group>"; };
  386. A13BCF7B1C3B491400C76527 /* RulesAddCompleteViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RulesAddCompleteViewController.m; sourceTree = "<group>"; };
  387. A13BCF7C1C3B491400C76527 /* RulesAddViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RulesAddViewController.h; sourceTree = "<group>"; };
  388. A13BCF7D1C3B491400C76527 /* RulesAddViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RulesAddViewController.m; sourceTree = "<group>"; };
  389. A13BCF7E1C3B491400C76527 /* RulesConditionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RulesConditionViewController.h; sourceTree = "<group>"; };
  390. A13BCF7F1C3B491400C76527 /* RulesConditionViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RulesConditionViewController.m; sourceTree = "<group>"; };
  391. A13BCF801C3B491400C76527 /* RulesDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RulesDetailViewController.h; sourceTree = "<group>"; };
  392. A13BCF811C3B491400C76527 /* RulesDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RulesDetailViewController.m; sourceTree = "<group>"; };
  393. A13BCF821C3B491400C76527 /* RulesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RulesViewController.h; sourceTree = "<group>"; };
  394. A13BCF831C3B491400C76527 /* RulesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RulesViewController.m; sourceTree = "<group>"; };
  395. A13BCF951C3B491400C76527 /* DeleteAccountPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeleteAccountPopupView.h; sourceTree = "<group>"; };
  396. A13BCF961C3B491400C76527 /* DeleteAccountPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeleteAccountPopupView.m; sourceTree = "<group>"; };
  397. A13BCF971C3B491400C76527 /* DeleteAccountPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeleteAccountPopupView.xib; sourceTree = "<group>"; };
  398. A13BCF981C3B491400C76527 /* GoodbyeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoodbyeViewController.h; sourceTree = "<group>"; };
  399. A13BCF991C3B491400C76527 /* GoodbyeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GoodbyeViewController.m; sourceTree = "<group>"; };
  400. A13BCF9A1C3B491400C76527 /* PwdPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PwdPopupView.h; sourceTree = "<group>"; };
  401. A13BCF9B1C3B491400C76527 /* PwdPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PwdPopupView.m; sourceTree = "<group>"; };
  402. A13BCF9C1C3B491400C76527 /* PwdPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PwdPopupView.xib; sourceTree = "<group>"; };
  403. A13BCF9F1C3B491400C76527 /* SettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingsViewController.h; sourceTree = "<group>"; };
  404. A13BCFA01C3B491400C76527 /* SettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettingsViewController.m; sourceTree = "<group>"; };
  405. A13BCFA41C3B491400C76527 /* AgreementViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AgreementViewController.h; sourceTree = "<group>"; };
  406. A13BCFA51C3B491400C76527 /* AgreementViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AgreementViewController.m; sourceTree = "<group>"; };
  407. A13BCFA61C3B491400C76527 /* NewMobileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NewMobileViewController.h; sourceTree = "<group>"; };
  408. A13BCFA71C3B491400C76527 /* NewMobileViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NewMobileViewController.m; sourceTree = "<group>"; };
  409. A13BCFA81C3B491400C76527 /* SignUpViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SignUpViewController.h; sourceTree = "<group>"; };
  410. A13BCFA91C3B491400C76527 /* SignUpViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SignUpViewController.m; sourceTree = "<group>"; };
  411. A13BCFB41C3B491400C76527 /* ModifyDeviceNamePopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyDeviceNamePopupView.h; sourceTree = "<group>"; };
  412. A13BCFB51C3B491400C76527 /* ModifyDeviceNamePopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyDeviceNamePopupView.m; sourceTree = "<group>"; };
  413. A13BCFB61C3B491400C76527 /* ModifyDeviceNamePopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ModifyDeviceNamePopupView.xib; sourceTree = "<group>"; };
  414. A13BCFB71C3B491400C76527 /* ModifySecureKeyPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifySecureKeyPopupView.h; sourceTree = "<group>"; };
  415. A13BCFB81C3B491400C76527 /* ModifySecureKeyPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifySecureKeyPopupView.m; sourceTree = "<group>"; };
  416. A13BCFB91C3B491400C76527 /* ModifySecureKeyPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ModifySecureKeyPopupView.xib; sourceTree = "<group>"; };
  417. A13BCFBD1C3B491400C76527 /* ThingsAddCompleteViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThingsAddCompleteViewController.h; sourceTree = "<group>"; };
  418. A13BCFBE1C3B491400C76527 /* ThingsAddCompleteViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThingsAddCompleteViewController.m; sourceTree = "<group>"; };
  419. A13BCFBF1C3B491400C76527 /* ThingsAddFailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThingsAddFailViewController.h; sourceTree = "<group>"; };
  420. A13BCFC01C3B491400C76527 /* ThingsAddFailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThingsAddFailViewController.m; sourceTree = "<group>"; };
  421. A13BCFC11C3B491400C76527 /* ThingsAddIncludeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThingsAddIncludeViewController.h; sourceTree = "<group>"; };
  422. A13BCFC21C3B491400C76527 /* ThingsAddIncludeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThingsAddIncludeViewController.m; sourceTree = "<group>"; };
  423. A13BCFC31C3B491400C76527 /* ThingsAddStartViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThingsAddStartViewController.h; sourceTree = "<group>"; };
  424. A13BCFC41C3B491400C76527 /* ThingsAddStartViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThingsAddStartViewController.m; sourceTree = "<group>"; };
  425. A13BCFC51C3B491400C76527 /* ThingsAddViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThingsAddViewController.h; sourceTree = "<group>"; };
  426. A13BCFC61C3B491400C76527 /* ThingsAddViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThingsAddViewController.m; sourceTree = "<group>"; };
  427. A13BCFC71C3B491400C76527 /* ThingsDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThingsDetailViewController.h; sourceTree = "<group>"; };
  428. A13BCFC81C3B491400C76527 /* ThingsDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThingsDetailViewController.m; sourceTree = "<group>"; };
  429. A13BCFC91C3B491400C76527 /* ThingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThingsViewController.h; sourceTree = "<group>"; };
  430. A13BCFCA1C3B491400C76527 /* ThingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThingsViewController.m; sourceTree = "<group>"; };
  431. A13BCFD31C3B491400C76527 /* JDUUID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JDUUID.h; sourceTree = "<group>"; };
  432. A13BCFD41C3B491400C76527 /* JDUUID.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JDUUID.m; sourceTree = "<group>"; };
  433. A13BCFD51C3B491400C76527 /* KeychainItemWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KeychainItemWrapper.h; sourceTree = "<group>"; };
  434. A13BCFD61C3B491400C76527 /* KeychainItemWrapper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KeychainItemWrapper.m; sourceTree = "<group>"; };
  435. A13BCFD81C3B491400C76527 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = "<group>"; };
  436. A13BCFD91C3B491400C76527 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = "<group>"; };
  437. A13BD0741C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Common.storyboard; sourceTree = "<group>"; };
  438. A13BD0761C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/HomeHub.storyboard; sourceTree = "<group>"; };
  439. A13BD0781C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/HomeMember.storyboard; sourceTree = "<group>"; };
  440. A13BD07A1C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/Localizable.strings; sourceTree = "<group>"; };
  441. A13BD07C1C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Rules.storyboard; sourceTree = "<group>"; };
  442. A13BD07E1C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Settings.storyboard; sourceTree = "<group>"; };
  443. A13BD0801C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/SignUp.storyboard; sourceTree = "<group>"; };
  444. A13BD0821C3B492A00C76527 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Things.storyboard; sourceTree = "<group>"; };
  445. A13BD0921C3B531100C76527 /* Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Prefix.pch; sourceTree = "<group>"; };
  446. A13BD0BA1C3B563D00C76527 /* DaylightPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DaylightPopupView.h; sourceTree = "<group>"; };
  447. A13BD0BB1C3B563D00C76527 /* DaylightPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DaylightPopupView.m; sourceTree = "<group>"; };
  448. A13BD0BC1C3B563D00C76527 /* DaylightPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DaylightPopupView.xib; sourceTree = "<group>"; };
  449. A13BD0BD1C3B563D00C76527 /* ExternHeatPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExternHeatPopupView.h; sourceTree = "<group>"; };
  450. A13BD0BE1C3B563D00C76527 /* ExternHeatPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ExternHeatPopupView.m; sourceTree = "<group>"; };
  451. A13BD0BF1C3B563D00C76527 /* ExternHeatPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ExternHeatPopupView.xib; sourceTree = "<group>"; };
  452. A13BD0C01C3B563D00C76527 /* RulesConditionHomeModePopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RulesConditionHomeModePopupView.h; sourceTree = "<group>"; };
  453. A13BD0C11C3B563D00C76527 /* RulesConditionHomeModePopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RulesConditionHomeModePopupView.m; sourceTree = "<group>"; };
  454. A13BD0C21C3B563D00C76527 /* RulesConditionHomeModePopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RulesConditionHomeModePopupView.xib; sourceTree = "<group>"; };
  455. A13BD0C31C3B563D00C76527 /* RulesConditionHomeModeTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = RulesConditionHomeModeTableViewCell.xib; sourceTree = "<group>"; };
  456. A13BD0C41C3B563D00C76527 /* TemperaturePopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TemperaturePopupView.h; sourceTree = "<group>"; };
  457. A13BD0C51C3B563D00C76527 /* TemperaturePopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TemperaturePopupView.m; sourceTree = "<group>"; };
  458. A13BD0C61C3B563D00C76527 /* TemperaturePopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TemperaturePopupView.xib; sourceTree = "<group>"; };
  459. A13BD0C71C3B563D00C76527 /* TimePickerPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimePickerPopupView.h; sourceTree = "<group>"; };
  460. A13BD0C81C3B563D00C76527 /* TimePickerPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimePickerPopupView.m; sourceTree = "<group>"; };
  461. A13BD0C91C3B563D00C76527 /* TimePickerPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TimePickerPopupView.xib; sourceTree = "<group>"; };
  462. A13BD0CA1C3B563D00C76527 /* TriggerSelectPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TriggerSelectPopupView.h; sourceTree = "<group>"; };
  463. A13BD0CB1C3B563D00C76527 /* TriggerSelectPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TriggerSelectPopupView.m; sourceTree = "<group>"; };
  464. A13BD0CC1C3B563D00C76527 /* TriggerSelectPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = TriggerSelectPopupView.xib; sourceTree = "<group>"; };
  465. A13BD0CD1C3B563D00C76527 /* WeatherLocationPopupTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = WeatherLocationPopupTableViewCell.xib; sourceTree = "<group>"; };
  466. A13BD0CE1C3B563D00C76527 /* WeatherLocationPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WeatherLocationPopupView.h; sourceTree = "<group>"; };
  467. A13BD0CF1C3B563D00C76527 /* WeatherLocationPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WeatherLocationPopupView.m; sourceTree = "<group>"; };
  468. A13BD0D01C3B563D00C76527 /* WeatherLocationPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = WeatherLocationPopupView.xib; sourceTree = "<group>"; };
  469. A15D2CFA1C58598F0018D555 /* KNLayoutConstraint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KNLayoutConstraint.h; sourceTree = "<group>"; };
  470. A15D2CFB1C58598F0018D555 /* KNLayoutConstraint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KNLayoutConstraint.m; sourceTree = "<group>"; };
  471. A15D2CFD1C588FBB0018D555 /* KNView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KNView.h; sourceTree = "<group>"; };
  472. A15D2CFE1C588FBB0018D555 /* KNView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KNView.m; sourceTree = "<group>"; };
  473. A16A1CC21C71728400F92BC1 /* NetworkServiceHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkServiceHandler.h; sourceTree = "<group>"; };
  474. A16A1CC31C71728400F92BC1 /* NetworkServiceHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkServiceHandler.m; sourceTree = "<group>"; };
  475. A16D937B1C5600D300DC0DF1 /* DurationPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DurationPopupView.h; sourceTree = "<group>"; };
  476. A16D937C1C5600D300DC0DF1 /* DurationPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DurationPopupView.m; sourceTree = "<group>"; };
  477. A16D937D1C5600D300DC0DF1 /* DurationPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DurationPopupView.xib; sourceTree = "<group>"; };
  478. A191B4821C4495AD00DEBA91 /* WelcomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WelcomeViewController.h; sourceTree = "<group>"; };
  479. A191B4831C4495AE00DEBA91 /* WelcomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WelcomeViewController.m; sourceTree = "<group>"; };
  480. A191B4851C44985200DEBA91 /* UIWindow+Addtions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWindow+Addtions.h"; sourceTree = "<group>"; };
  481. A191B4861C44985200DEBA91 /* UIWindow+Addtions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWindow+Addtions.m"; sourceTree = "<group>"; };
  482. A191B48B1C4639F900DEBA91 /* AdminAuthPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AdminAuthPopupView.h; sourceTree = "<group>"; };
  483. A191B48C1C4639F900DEBA91 /* AdminAuthPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AdminAuthPopupView.m; sourceTree = "<group>"; };
  484. A191B48D1C4639F900DEBA91 /* AdminAuthPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AdminAuthPopupView.xib; sourceTree = "<group>"; };
  485. A1A454861C476CDE00BA805C /* ChangeNamePopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChangeNamePopupView.h; sourceTree = "<group>"; };
  486. A1A454871C476CDE00BA805C /* ChangeNamePopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChangeNamePopupView.m; sourceTree = "<group>"; };
  487. A1A454881C476CDE00BA805C /* ChangeNamePopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChangeNamePopupView.xib; sourceTree = "<group>"; };
  488. A1A4548B1C47736D00BA805C /* ConfirmPasswdPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConfirmPasswdPopupView.h; sourceTree = "<group>"; };
  489. A1A4548C1C47736D00BA805C /* ConfirmPasswdPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ConfirmPasswdPopupView.m; sourceTree = "<group>"; };
  490. A1A4548D1C47736D00BA805C /* ConfirmPasswdPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ConfirmPasswdPopupView.xib; sourceTree = "<group>"; };
  491. A1A454901C477ACD00BA805C /* ChangeEmailPopupView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChangeEmailPopupView.h; sourceTree = "<group>"; };
  492. A1A454911C477ACD00BA805C /* ChangeEmailPopupView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChangeEmailPopupView.m; sourceTree = "<group>"; };
  493. A1A454921C477ACD00BA805C /* ChangeEmailPopupView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChangeEmailPopupView.xib; sourceTree = "<group>"; };
  494. A1BC6EC61C3E578F00D957D9 /* CustomLabelButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomLabelButton.h; sourceTree = "<group>"; };
  495. A1BC6EC71C3E578F00D957D9 /* CustomLabelButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomLabelButton.m; sourceTree = "<group>"; };
  496. A1BC6EC91C3E57A000D957D9 /* CustomLabelButton.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CustomLabelButton.xib; sourceTree = "<group>"; };
  497. A1CC0BF41C3B8A2D00B05DA3 /* NSLayoutConstraint+Additions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+Additions.h"; sourceTree = "<group>"; };
  498. A1CC0BF51C3B8A2D00B05DA3 /* NSLayoutConstraint+Additions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+Additions.m"; sourceTree = "<group>"; };
  499. A507ABE31E5149EC0013786A /* OneCable.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = OneCable.entitlements; sourceTree = "<group>"; };
  500. A57656131E51823E002D0AE2 /* ReactiveObjC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ReactiveObjC.framework; path = Carthage/Build/iOS/ReactiveObjC.framework; sourceTree = "<group>"; };
  501. A576561A1E52EFF8002D0AE2 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  502. ADE7CA33EFEB615D1B6CB053 /* Pods-OneCable.adhoc.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OneCable.adhoc.xcconfig"; path = "Pods/Target Support Files/Pods-OneCable/Pods-OneCable.adhoc.xcconfig"; sourceTree = "<group>"; };
  503. D85E32D933C36C37A7CE9517 /* libPods-OneCable.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-OneCable.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  504. FE2DCDFBF6442768EBBE8107 /* Pods-OneCable.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-OneCable.debug.xcconfig"; path = "Pods/Target Support Files/Pods-OneCable/Pods-OneCable.debug.xcconfig"; sourceTree = "<group>"; };
  505. /* End PBXFileReference section */
  506. /* Begin PBXFrameworksBuildPhase section */
  507. A13BCE7B1C3B47A500C76527 /* Frameworks */ = {
  508. isa = PBXFrameworksBuildPhase;
  509. buildActionMask = 2147483647;
  510. files = (
  511. A57656141E51823E002D0AE2 /* ReactiveObjC.framework in Frameworks */,
  512. 2FD70D8B3678B2B51AD9E418 /* libPods-OneCable.a in Frameworks */,
  513. );
  514. runOnlyForDeploymentPostprocessing = 0;
  515. };
  516. A13BCE941C3B47A500C76527 /* Frameworks */ = {
  517. isa = PBXFrameworksBuildPhase;
  518. buildActionMask = 2147483647;
  519. files = (
  520. );
  521. runOnlyForDeploymentPostprocessing = 0;
  522. };
  523. /* End PBXFrameworksBuildPhase section */
  524. /* Begin PBXGroup section */
  525. A13BCE751C3B47A500C76527 = {
  526. isa = PBXGroup;
  527. children = (
  528. A13BCE801C3B47A500C76527 /* OneCable */,
  529. A13BCE9A1C3B47A500C76527 /* OneCableTests */,
  530. A13BCE7F1C3B47A500C76527 /* Products */,
  531. DEB5B7755A6EA6158E66C9E7 /* Pods */,
  532. A59A862A0C4079FD62248BAB /* Frameworks */,
  533. );
  534. sourceTree = "<group>";
  535. };
  536. A13BCE7F1C3B47A500C76527 /* Products */ = {
  537. isa = PBXGroup;
  538. children = (
  539. A13BCE7E1C3B47A500C76527 /* OneCable.app */,
  540. A13BCE971C3B47A500C76527 /* OneCableTests.xctest */,
  541. );
  542. name = Products;
  543. sourceTree = "<group>";
  544. };
  545. A13BCE801C3B47A500C76527 /* OneCable */ = {
  546. isa = PBXGroup;
  547. children = (
  548. A13BCFD11C3B491400C76527 /* Libraries */,
  549. A13BCEAD1C3B491300C76527 /* Classes */,
  550. A13BCEAC1C3B48E100C76527 /* Resources */,
  551. A13BCE811C3B47A500C76527 /* Supporting Files */,
  552. );
  553. path = OneCable;
  554. sourceTree = "<group>";
  555. };
  556. A13BCE811C3B47A500C76527 /* Supporting Files */ = {
  557. isa = PBXGroup;
  558. children = (
  559. A13BCE921C3B47A500C76527 /* Info.plist */,
  560. A13BD0921C3B531100C76527 /* Prefix.pch */,
  561. A13BCE821C3B47A500C76527 /* main.m */,
  562. );
  563. name = "Supporting Files";
  564. sourceTree = "<group>";
  565. };
  566. A13BCE9A1C3B47A500C76527 /* OneCableTests */ = {
  567. isa = PBXGroup;
  568. children = (
  569. A13BCE9B1C3B47A500C76527 /* OneCableTests.m */,
  570. A13BCE9D1C3B47A500C76527 /* Info.plist */,
  571. );
  572. path = OneCableTests;
  573. sourceTree = "<group>";
  574. };
  575. A13BCEAC1C3B48E100C76527 /* Resources */ = {
  576. isa = PBXGroup;
  577. children = (
  578. A507ABE31E5149EC0013786A /* OneCable.entitlements */,
  579. A13BCE8A1C3B47A500C76527 /* Main.storyboard */,
  580. A13BD07F1C3B492A00C76527 /* SignUp.storyboard */,
  581. A13BD0751C3B492A00C76527 /* HomeHub.storyboard */,
  582. A13BD0771C3B492A00C76527 /* HomeMember.storyboard */,
  583. A13BD0811C3B492A00C76527 /* Things.storyboard */,
  584. A13BD07B1C3B492A00C76527 /* Rules.storyboard */,
  585. A13BD07D1C3B492A00C76527 /* Settings.storyboard */,
  586. A13BD0731C3B492A00C76527 /* Common.storyboard */,
  587. A13BD0791C3B492A00C76527 /* Localizable.strings */,
  588. A13BCE8D1C3B47A500C76527 /* Assets.xcassets */,
  589. );
  590. name = Resources;
  591. sourceTree = "<group>";
  592. };
  593. A13BCEAD1C3B491300C76527 /* Classes */ = {
  594. isa = PBXGroup;
  595. children = (
  596. A13BCEB01C3B491300C76527 /* Categories */,
  597. A13BCEF71C3B491300C76527 /* CustomUI */,
  598. A13BCF1A1C3B491400C76527 /* Handler */,
  599. A13BCF211C3B491400C76527 /* Model */,
  600. A13BCF301C3B491400C76527 /* Util */,
  601. A13BCF3D1C3B491400C76527 /* ViewControllers */,
  602. A13BCECE1C3B491300C76527 /* CommonUI */,
  603. A13BCEAE1C3B491300C76527 /* AppDelegate.h */,
  604. A13BCEAF1C3B491300C76527 /* AppDelegate.m */,
  605. A13BCECD1C3B491300C76527 /* Common.h */,
  606. A13BCF191C3B491400C76527 /* Definitions.h */,
  607. A13BCF1D1C3B491400C76527 /* JDFacade.h */,
  608. A13BCF1E1C3B491400C76527 /* JDFacade.m */,
  609. A13BCF1F1C3B491400C76527 /* JDObject.h */,
  610. A13BCF201C3B491400C76527 /* JDObject.m */,
  611. );
  612. path = Classes;
  613. sourceTree = "<group>";
  614. };
  615. A13BCEB01C3B491300C76527 /* Categories */ = {
  616. isa = PBXGroup;
  617. children = (
  618. A13BCEB11C3B491300C76527 /* GTMNSString+HTML.h */,
  619. A13BCEB21C3B491300C76527 /* GTMNSString+HTML.m */,
  620. A13BCEB31C3B491300C76527 /* NSArray-Addtions.h */,
  621. A13BCEB41C3B491300C76527 /* NSArray-Addtions.m */,
  622. A1CC0BF41C3B8A2D00B05DA3 /* NSLayoutConstraint+Additions.h */,
  623. A1CC0BF51C3B8A2D00B05DA3 /* NSLayoutConstraint+Additions.m */,
  624. A13BCEB51C3B491300C76527 /* NSData+AESCrypt.h */,
  625. A13BCEB61C3B491300C76527 /* NSData+AESCrypt.m */,
  626. A13BCEB71C3B491300C76527 /* NSDate+Utilities.h */,
  627. A13BCEB81C3B491300C76527 /* NSDate+Utilities.m */,
  628. A13BCEB91C3B491300C76527 /* NSDictionary-Additions.h */,
  629. A13BCEBA1C3B491300C76527 /* NSDictionary-Additions.m */,
  630. A13BCEBB1C3B491300C76527 /* NSString-Addtions.h */,
  631. A13BCEBC1C3B491300C76527 /* NSString-Addtions.m */,
  632. A13BCEBD1C3B491300C76527 /* SortDictionary.h */,
  633. A13BCEBE1C3B491300C76527 /* SortDictionary.m */,
  634. A13BCEBF1C3B491300C76527 /* UIDevice-Reachability.h */,
  635. A13BCEC01C3B491300C76527 /* UIDevice-Reachability.m */,
  636. A13BCEC11C3B491300C76527 /* UIImage+Addtions.h */,
  637. A13BCEC21C3B491300C76527 /* UIImage+Addtions.m */,
  638. A13BCEC31C3B491300C76527 /* UITableView+EnumarateCells.h */,
  639. A13BCEC41C3B491300C76527 /* UITableView+EnumarateCells.m */,
  640. A13BCEC51C3B491300C76527 /* UIView+Additions.h */,
  641. A13BCEC61C3B491300C76527 /* UIView+Additions.m */,
  642. A13BCEC71C3B491300C76527 /* UIView+AutoLayoutDebugging.h */,
  643. A13BCEC81C3B491300C76527 /* UIView+AutoLayoutDebugging.m */,
  644. A13BCEC91C3B491300C76527 /* UIView+Toast.h */,
  645. A13BCECA1C3B491300C76527 /* UIView+Toast.m */,
  646. A13BCECB1C3B491300C76527 /* UIViewController-ActionSheetSimulation.h */,
  647. A13BCECC1C3B491300C76527 /* UIViewController-ActionSheetSimulation.m */,
  648. A191B4851C44985200DEBA91 /* UIWindow+Addtions.h */,
  649. A191B4861C44985200DEBA91 /* UIWindow+Addtions.m */,
  650. );
  651. path = Categories;
  652. sourceTree = "<group>";
  653. };
  654. A13BCECE1C3B491300C76527 /* CommonUI */ = {
  655. isa = PBXGroup;
  656. children = (
  657. A13BCED51C3B491300C76527 /* CommandClassControlView.h */,
  658. A13BCED61C3B491300C76527 /* CommandClassControlView.m */,
  659. A13BCED71C3B491300C76527 /* CommandClassControlView.xib */,
  660. A13BCECF1C3B491300C76527 /* CommandClassControlDetailView.h */,
  661. A13BCED01C3B491300C76527 /* CommandClassControlDetailView.m */,
  662. A13BCED11C3B491300C76527 /* CommandClassControlDetailView.xib */,
  663. A13BCED21C3B491300C76527 /* CommandClassControlNodeView.h */,
  664. A13BCED31C3B491300C76527 /* CommandClassControlNodeView.m */,
  665. A13BCED41C3B491300C76527 /* CommandClassControlNodeView.xib */,
  666. A13BCEDD1C3B491300C76527 /* DeviceSelectPopupView.h */,
  667. A13BCEDE1C3B491300C76527 /* DeviceSelectPopupView.m */,
  668. A13BCEDF1C3B491300C76527 /* DeviceSelectPopupView.xib */,
  669. A13BCEDC1C3B491300C76527 /* DeviceSelectPopupTableViewCell.xib */,
  670. A13BCED91C3B491300C76527 /* DeviceNodePopupView.h */,
  671. A13BCEDA1C3B491300C76527 /* DeviceNodePopupView.m */,
  672. A13BCEDB1C3B491300C76527 /* DeviceNodePopupView.xib */,
  673. A13BCED81C3B491300C76527 /* DeviceNodePopupTableViewCell.xib */,
  674. A13BCEE01C3B491300C76527 /* JDProgressHUD.h */,
  675. A13BCEE11C3B491300C76527 /* JDProgressHUD.m */,
  676. A13BCEE21C3B491300C76527 /* KNTableViewCell.h */,
  677. A13BCEE31C3B491300C76527 /* KNTableViewCell.m */,
  678. A15D2CFD1C588FBB0018D555 /* KNView.h */,
  679. A15D2CFE1C588FBB0018D555 /* KNView.m */,
  680. A13BCEE41C3B491300C76527 /* MultiLevelPopupView.h */,
  681. A13BCEE51C3B491300C76527 /* MultiLevelPopupView.m */,
  682. A13BCEE61C3B491300C76527 /* MultiLevelPopupView.xib */,
  683. A13BCEE71C3B491300C76527 /* NoContentView.h */,
  684. A13BCEE81C3B491300C76527 /* NoContentView.m */,
  685. A13BCEE91C3B491300C76527 /* NoContentView.xib */,
  686. A13BCEEA1C3B491300C76527 /* OptionPopOverViewController.h */,
  687. A13BCEEB1C3B491300C76527 /* OptionPopOverViewController.m */,
  688. A13BCEEC1C3B491300C76527 /* PopTableView.h */,
  689. A13BCEED1C3B491300C76527 /* PopTableView.m */,
  690. A13BCEEE1C3B491300C76527 /* PopTableView.xib */,
  691. A15D2CFA1C58598F0018D555 /* KNLayoutConstraint.h */,
  692. A15D2CFB1C58598F0018D555 /* KNLayoutConstraint.m */,
  693. );
  694. path = CommonUI;
  695. sourceTree = "<group>";
  696. };
  697. A13BCEF71C3B491300C76527 /* CustomUI */ = {
  698. isa = PBXGroup;
  699. children = (
  700. A13BCEF81C3B491300C76527 /* CustomAlertView.h */,
  701. A13BCEF91C3B491300C76527 /* CustomAlertView.m */,
  702. A13BCEFA1C3B491300C76527 /* CustomAlertView.xib */,
  703. A13BCEFB1C3B491300C76527 /* CustomButton.h */,
  704. A13BCEFC1C3B491300C76527 /* CustomButton.m */,
  705. A13BCEFD1C3B491300C76527 /* CustomCheckBox.h */,
  706. A13BCEFE1C3B491300C76527 /* CustomCheckBox.m */,
  707. A13BCEFF1C3B491300C76527 /* CustomImageView.h */,
  708. A13BCF001C3B491300C76527 /* CustomImageView.m */,
  709. A13BCF011C3B491300C76527 /* CustomLabel.h */,
  710. A13BCF021C3B491300C76527 /* CustomLabel.m */,
  711. A13BCF031C3B491300C76527 /* CustomLoadingView.h */,
  712. A13BCF041C3B491300C76527 /* CustomLoadingView.m */,
  713. A13BCF051C3B491300C76527 /* CustomPicker.h */,
  714. A13BCF061C3B491300C76527 /* CustomPicker.m */,
  715. A13BCF071C3B491300C76527 /* CustomRadioGroup.h */,
  716. A13BCF081C3B491300C76527 /* CustomRadioGroup.m */,
  717. A13BCF091C3B491300C76527 /* CustomShapeButton.h */,
  718. A13BCF0A1C3B491300C76527 /* CustomShapeButton.m */,
  719. A13BCF0B1C3B491300C76527 /* CustomSwitch.h */,
  720. A13BCF0C1C3B491300C76527 /* CustomSwitch.m */,
  721. A13BCF0D1C3B491300C76527 /* CustomTableView.h */,
  722. A13BCF0E1C3B491300C76527 /* CustomTableView.m */,
  723. A13BCF0F1C3B491300C76527 /* CustomTextField.h */,
  724. A13BCF101C3B491300C76527 /* CustomTextField.m */,
  725. A13BCF111C3B491400C76527 /* CustomTextView.h */,
  726. A13BCF121C3B491400C76527 /* CustomTextView.m */,
  727. A13BCF131C3B491400C76527 /* DatePickerButton.h */,
  728. A13BCF141C3B491400C76527 /* DatePickerButton.m */,
  729. A13BCF151C3B491400C76527 /* SelectButton.h */,
  730. A13BCF161C3B491400C76527 /* SelectButton.m */,
  731. A13BCF171C3B491400C76527 /* TimePickerButton.h */,
  732. A13BCF181C3B491400C76527 /* TimePickerButton.m */,
  733. A1BC6EC61C3E578F00D957D9 /* CustomLabelButton.h */,
  734. A1BC6EC71C3E578F00D957D9 /* CustomLabelButton.m */,
  735. A1BC6EC91C3E57A000D957D9 /* CustomLabelButton.xib */,
  736. );
  737. path = CustomUI;
  738. sourceTree = "<group>";
  739. };
  740. A13BCF1A1C3B491400C76527 /* Handler */ = {
  741. isa = PBXGroup;
  742. children = (
  743. A13BCF1B1C3B491400C76527 /* RequestHandler.h */,
  744. A13BCF1C1C3B491400C76527 /* RequestHandler.m */,
  745. A16A1CC21C71728400F92BC1 /* NetworkServiceHandler.h */,
  746. A16A1CC31C71728400F92BC1 /* NetworkServiceHandler.m */,
  747. );
  748. path = Handler;
  749. sourceTree = "<group>";
  750. };
  751. A13BCF211C3B491400C76527 /* Model */ = {
  752. isa = PBXGroup;
  753. children = (
  754. A13BCF221C3B491400C76527 /* DeviceModel.h */,
  755. A13BCF231C3B491400C76527 /* DeviceModel.m */,
  756. A13BCF241C3B491400C76527 /* ItemModel.h */,
  757. A13BCF251C3B491400C76527 /* ItemModel.m */,
  758. A13BCF261C3B491400C76527 /* JDJSONModel.h */,
  759. A13BCF271C3B491400C76527 /* JDJSONModel.m */,
  760. A13BCF281C3B491400C76527 /* LoginModel.h */,
  761. A13BCF291C3B491400C76527 /* LoginModel.m */,
  762. A13BCF2A1C3B491400C76527 /* ModeModel.h */,
  763. A13BCF2B1C3B491400C76527 /* ModeModel.m */,
  764. A13BCF2C1C3B491400C76527 /* RuleModel.h */,
  765. A13BCF2D1C3B491400C76527 /* RuleModel.m */,
  766. A13BCF2E1C3B491400C76527 /* SceneModel.h */,
  767. A13BCF2F1C3B491400C76527 /* SceneModel.m */,
  768. );
  769. path = Model;
  770. sourceTree = "<group>";
  771. };
  772. A13BCF301C3B491400C76527 /* Util */ = {
  773. isa = PBXGroup;
  774. children = (
  775. A13BCF311C3B491400C76527 /* CommonUtil.h */,
  776. A13BCF321C3B491400C76527 /* CommonUtil.m */,
  777. A13BCF331C3B491400C76527 /* CypherUtil.h */,
  778. A13BCF341C3B491400C76527 /* CypherUtil.m */,
  779. A13BCF351C3B491400C76527 /* ImageUtil.h */,
  780. A13BCF361C3B491400C76527 /* ImageUtil.m */,
  781. A13BCF371C3B491400C76527 /* JDUserDefaults.h */,
  782. A13BCF381C3B491400C76527 /* JDUserDefaults.m */,
  783. A13BCF391C3B491400C76527 /* UIDeviceUtil.h */,
  784. A13BCF3A1C3B491400C76527 /* UIDeviceUtil.m */,
  785. A13BCF3B1C3B491400C76527 /* ValidateUtil.h */,
  786. A13BCF3C1C3B491400C76527 /* ValidateUtil.m */,
  787. );
  788. path = Util;
  789. sourceTree = "<group>";
  790. };
  791. A13BCF3D1C3B491400C76527 /* ViewControllers */ = {
  792. isa = PBXGroup;
  793. children = (
  794. A13BCF611C3B491400C76527 /* MainScreens */,
  795. A13BCFA31C3B491400C76527 /* SignUpScreens */,
  796. A13BCF411C3B491400C76527 /* HomeHubScreens */,
  797. A13BCFAA1C3B491400C76527 /* ThingsScreens */,
  798. A13BCF581C3B491400C76527 /* HomeMemberScreens */,
  799. A13BCF791C3B491400C76527 /* RuelsScreens */,
  800. A13BCF851C3B491400C76527 /* SettingsScreens */,
  801. A13BCF3E1C3B491400C76527 /* CommonScreens */,
  802. A13BCF5D1C3B491400C76527 /* JDTableViewController.h */,
  803. A13BCF5E1C3B491400C76527 /* JDTableViewController.m */,
  804. A13BCF5F1C3B491400C76527 /* JDViewController.h */,
  805. A13BCF601C3B491400C76527 /* JDViewController.m */,
  806. );
  807. path = ViewControllers;
  808. sourceTree = "<group>";
  809. };
  810. A13BCF3E1C3B491400C76527 /* CommonScreens */ = {
  811. isa = PBXGroup;
  812. children = (
  813. A13BCF3F1C3B491400C76527 /* WebBrowseViewController.h */,
  814. A13BCF401C3B491400C76527 /* WebBrowseViewController.m */,
  815. );
  816. path = CommonScreens;
  817. sourceTree = "<group>";
  818. };
  819. A13BCF411C3B491400C76527 /* HomeHubScreens */ = {
  820. isa = PBXGroup;
  821. children = (
  822. A13BCF551C3B491400C76527 /* QRCodeViewController.h */,
  823. A13BCF561C3B491400C76527 /* QRCodeViewController.m */,
  824. A13BCF521C3B491400C76527 /* QRCodeInputPopupView.h */,
  825. A13BCF531C3B491400C76527 /* QRCodeInputPopupView.m */,
  826. A13BCF541C3B491400C76527 /* QRCodeInputPopupView.xib */,
  827. A13BCF481C3B491400C76527 /* HomeHubInitViewController.h */,
  828. A13BCF491C3B491400C76527 /* HomeHubInitViewController.m */,
  829. A13BCF421C3B491400C76527 /* HomeHubChangeViewController.h */,
  830. A13BCF431C3B491400C76527 /* HomeHubChangeViewController.m */,
  831. A13BCF501C3B491400C76527 /* HomeHubViewController.h */,
  832. A13BCF511C3B491400C76527 /* HomeHubViewController.m */,
  833. );
  834. path = HomeHubScreens;
  835. sourceTree = "<group>";
  836. };
  837. A13BCF581C3B491400C76527 /* HomeMemberScreens */ = {
  838. isa = PBXGroup;
  839. children = (
  840. A13BCF5B1C3B491400C76527 /* HomeMemberViewController.h */,
  841. A13BCF5C1C3B491400C76527 /* HomeMemberViewController.m */,
  842. A13BCF591C3B491400C76527 /* HomeMemberAddViewController.h */,
  843. A13BCF5A1C3B491400C76527 /* HomeMemberAddViewController.m */,
  844. );
  845. path = HomeMemberScreens;
  846. sourceTree = "<group>";
  847. };
  848. A13BCF611C3B491400C76527 /* MainScreens */ = {
  849. isa = PBXGroup;
  850. children = (
  851. A13BCF661C3B491400C76527 /* IntroViewController.h */,
  852. A13BCF671C3B491400C76527 /* IntroViewController.m */,
  853. A13BCF6F1C3B491400C76527 /* LoginViewController.h */,
  854. A13BCF701C3B491400C76527 /* LoginViewController.m */,
  855. A13BCF711C3B491400C76527 /* MainViewController.h */,
  856. A13BCF721C3B491400C76527 /* MainViewController.m */,
  857. A13BCF6D1C3B491400C76527 /* InvitationListViewController.h */,
  858. A13BCF6E1C3B491400C76527 /* InvitationListViewController.m */,
  859. A13BCF6B1C3B491400C76527 /* InvitationAnswerViewController.h */,
  860. A13BCF6C1C3B491400C76527 /* InvitationAnswerViewController.m */,
  861. A13BCF681C3B491400C76527 /* InvitationAnswerPopupView.h */,
  862. A13BCF691C3B491400C76527 /* InvitationAnswerPopupView.m */,
  863. A13BCF6A1C3B491400C76527 /* InvitationAnswerPopupView.xib */,
  864. A191B4821C4495AD00DEBA91 /* WelcomeViewController.h */,
  865. A191B4831C4495AE00DEBA91 /* WelcomeViewController.m */,
  866. A13BCF731C3B491400C76527 /* MessageBoxViewController.h */,
  867. A13BCF741C3B491400C76527 /* MessageBoxViewController.m */,
  868. A13BCF751C3B491400C76527 /* NoticeViewController.h */,
  869. A13BCF761C3B491400C76527 /* NoticeViewController.m */,
  870. A13BCF641C3B491400C76527 /* HomeModeUpdateViewController.h */,
  871. A13BCF651C3B491400C76527 /* HomeModeUpdateViewController.m */,
  872. A13BCF621C3B491400C76527 /* HomeModeSettingsViewController.h */,
  873. A13BCF631C3B491400C76527 /* HomeModeSettingsViewController.m */,
  874. A13BCF771C3B491400C76527 /* ResetPwdViewController.h */,
  875. A13BCF781C3B491400C76527 /* ResetPwdViewController.m */,
  876. );
  877. path = MainScreens;
  878. sourceTree = "<group>";
  879. };
  880. A13BCF791C3B491400C76527 /* RuelsScreens */ = {
  881. isa = PBXGroup;
  882. children = (
  883. A13BCF821C3B491400C76527 /* RulesViewController.h */,
  884. A13BCF831C3B491400C76527 /* RulesViewController.m */,
  885. A13BCF801C3B491400C76527 /* RulesDetailViewController.h */,
  886. A13BCF811C3B491400C76527 /* RulesDetailViewController.m */,
  887. A13BCF7C1C3B491400C76527 /* RulesAddViewController.h */,
  888. A13BCF7D1C3B491400C76527 /* RulesAddViewController.m */,
  889. A13BCF7A1C3B491400C76527 /* RulesAddCompleteViewController.h */,
  890. A13BCF7B1C3B491400C76527 /* RulesAddCompleteViewController.m */,
  891. A13BCF7E1C3B491400C76527 /* RulesConditionViewController.h */,
  892. A13BCF7F1C3B491400C76527 /* RulesConditionViewController.m */,
  893. A13BD0C01C3B563D00C76527 /* RulesConditionHomeModePopupView.h */,
  894. A13BD0C11C3B563D00C76527 /* RulesConditionHomeModePopupView.m */,
  895. A13BD0C21C3B563D00C76527 /* RulesConditionHomeModePopupView.xib */,
  896. A13BD0C31C3B563D00C76527 /* RulesConditionHomeModeTableViewCell.xib */,
  897. A13BD0CA1C3B563D00C76527 /* TriggerSelectPopupView.h */,
  898. A13BD0CB1C3B563D00C76527 /* TriggerSelectPopupView.m */,
  899. A13BD0CC1C3B563D00C76527 /* TriggerSelectPopupView.xib */,
  900. A13BD0C71C3B563D00C76527 /* TimePickerPopupView.h */,
  901. A13BD0C81C3B563D00C76527 /* TimePickerPopupView.m */,
  902. A13BD0C91C3B563D00C76527 /* TimePickerPopupView.xib */,
  903. A13BD0BA1C3B563D00C76527 /* DaylightPopupView.h */,
  904. A13BD0BB1C3B563D00C76527 /* DaylightPopupView.m */,
  905. A13BD0BC1C3B563D00C76527 /* DaylightPopupView.xib */,
  906. A13BD0C41C3B563D00C76527 /* TemperaturePopupView.h */,
  907. A13BD0C51C3B563D00C76527 /* TemperaturePopupView.m */,
  908. A13BD0C61C3B563D00C76527 /* TemperaturePopupView.xib */,
  909. A13BD0BD1C3B563D00C76527 /* ExternHeatPopupView.h */,
  910. A13BD0BE1C3B563D00C76527 /* ExternHeatPopupView.m */,
  911. A13BD0BF1C3B563D00C76527 /* ExternHeatPopupView.xib */,
  912. A13BD0CD1C3B563D00C76527 /* WeatherLocationPopupTableViewCell.xib */,
  913. A13BD0CE1C3B563D00C76527 /* WeatherLocationPopupView.h */,
  914. A13BD0CF1C3B563D00C76527 /* WeatherLocationPopupView.m */,
  915. A13BD0D01C3B563D00C76527 /* WeatherLocationPopupView.xib */,
  916. A16D937B1C5600D300DC0DF1 /* DurationPopupView.h */,
  917. A16D937C1C5600D300DC0DF1 /* DurationPopupView.m */,
  918. A16D937D1C5600D300DC0DF1 /* DurationPopupView.xib */,
  919. );
  920. path = RuelsScreens;
  921. sourceTree = "<group>";
  922. };
  923. A13BCF851C3B491400C76527 /* SettingsScreens */ = {
  924. isa = PBXGroup;
  925. children = (
  926. A13BCF9F1C3B491400C76527 /* SettingsViewController.h */,
  927. A13BCFA01C3B491400C76527 /* SettingsViewController.m */,
  928. A1A454861C476CDE00BA805C /* ChangeNamePopupView.h */,
  929. A1A454871C476CDE00BA805C /* ChangeNamePopupView.m */,
  930. A1A454881C476CDE00BA805C /* ChangeNamePopupView.xib */,
  931. A1A4548B1C47736D00BA805C /* ConfirmPasswdPopupView.h */,
  932. A1A4548C1C47736D00BA805C /* ConfirmPasswdPopupView.m */,
  933. A1A4548D1C47736D00BA805C /* ConfirmPasswdPopupView.xib */,
  934. A1A454901C477ACD00BA805C /* ChangeEmailPopupView.h */,
  935. A1A454911C477ACD00BA805C /* ChangeEmailPopupView.m */,
  936. A1A454921C477ACD00BA805C /* ChangeEmailPopupView.xib */,
  937. A13BCF9A1C3B491400C76527 /* PwdPopupView.h */,
  938. A13BCF9B1C3B491400C76527 /* PwdPopupView.m */,
  939. A13BCF9C1C3B491400C76527 /* PwdPopupView.xib */,
  940. A191B48B1C4639F900DEBA91 /* AdminAuthPopupView.h */,
  941. A191B48C1C4639F900DEBA91 /* AdminAuthPopupView.m */,
  942. A191B48D1C4639F900DEBA91 /* AdminAuthPopupView.xib */,
  943. A13BCF951C3B491400C76527 /* DeleteAccountPopupView.h */,
  944. A13BCF961C3B491400C76527 /* DeleteAccountPopupView.m */,
  945. A13BCF971C3B491400C76527 /* DeleteAccountPopupView.xib */,
  946. A13BCF981C3B491400C76527 /* GoodbyeViewController.h */,
  947. A13BCF991C3B491400C76527 /* GoodbyeViewController.m */,
  948. );
  949. path = SettingsScreens;
  950. sourceTree = "<group>";
  951. };
  952. A13BCFA31C3B491400C76527 /* SignUpScreens */ = {
  953. isa = PBXGroup;
  954. children = (
  955. A13BCFA41C3B491400C76527 /* AgreementViewController.h */,
  956. A13BCFA51C3B491400C76527 /* AgreementViewController.m */,
  957. A13BCFA81C3B491400C76527 /* SignUpViewController.h */,
  958. A13BCFA91C3B491400C76527 /* SignUpViewController.m */,
  959. A13BCFA61C3B491400C76527 /* NewMobileViewController.h */,
  960. A13BCFA71C3B491400C76527 /* NewMobileViewController.m */,
  961. );
  962. path = SignUpScreens;
  963. sourceTree = "<group>";
  964. };
  965. A13BCFAA1C3B491400C76527 /* ThingsScreens */ = {
  966. isa = PBXGroup;
  967. children = (
  968. A13BCFC91C3B491400C76527 /* ThingsViewController.h */,
  969. A13BCFCA1C3B491400C76527 /* ThingsViewController.m */,
  970. A13BCFC71C3B491400C76527 /* ThingsDetailViewController.h */,
  971. A13BCFC81C3B491400C76527 /* ThingsDetailViewController.m */,
  972. A13BCFB71C3B491400C76527 /* ModifySecureKeyPopupView.h */,
  973. A13BCFB81C3B491400C76527 /* ModifySecureKeyPopupView.m */,
  974. A13BCFB91C3B491400C76527 /* ModifySecureKeyPopupView.xib */,
  975. A13BCFC51C3B491400C76527 /* ThingsAddViewController.h */,
  976. A13BCFC61C3B491400C76527 /* ThingsAddViewController.m */,
  977. A13BCFC31C3B491400C76527 /* ThingsAddStartViewController.h */,
  978. A13BCFC41C3B491400C76527 /* ThingsAddStartViewController.m */,
  979. A13BCFC11C3B491400C76527 /* ThingsAddIncludeViewController.h */,
  980. A13BCFC21C3B491400C76527 /* ThingsAddIncludeViewController.m */,
  981. A13BCFBD1C3B491400C76527 /* ThingsAddCompleteViewController.h */,
  982. A13BCFBE1C3B491400C76527 /* ThingsAddCompleteViewController.m */,
  983. A13BCFBF1C3B491400C76527 /* ThingsAddFailViewController.h */,
  984. A13BCFC01C3B491400C76527 /* ThingsAddFailViewController.m */,
  985. A13BCFB41C3B491400C76527 /* ModifyDeviceNamePopupView.h */,
  986. A13BCFB51C3B491400C76527 /* ModifyDeviceNamePopupView.m */,
  987. A13BCFB61C3B491400C76527 /* ModifyDeviceNamePopupView.xib */,
  988. );
  989. path = ThingsScreens;
  990. sourceTree = "<group>";
  991. };
  992. A13BCFD11C3B491400C76527 /* Libraries */ = {
  993. isa = PBXGroup;
  994. children = (
  995. A13BCFD21C3B491400C76527 /* KeychainItemWrapper */,
  996. A13BCFD71C3B491400C76527 /* Reachability */,
  997. );
  998. path = Libraries;
  999. sourceTree = "<group>";
  1000. };
  1001. A13BCFD21C3B491400C76527 /* KeychainItemWrapper */ = {
  1002. isa = PBXGroup;
  1003. children = (
  1004. A13BCFD31C3B491400C76527 /* JDUUID.h */,
  1005. A13BCFD41C3B491400C76527 /* JDUUID.m */,
  1006. A13BCFD51C3B491400C76527 /* KeychainItemWrapper.h */,
  1007. A13BCFD61C3B491400C76527 /* KeychainItemWrapper.m */,
  1008. );
  1009. path = KeychainItemWrapper;
  1010. sourceTree = "<group>";
  1011. };
  1012. A13BCFD71C3B491400C76527 /* Reachability */ = {
  1013. isa = PBXGroup;
  1014. children = (
  1015. A13BCFD81C3B491400C76527 /* Reachability.h */,
  1016. A13BCFD91C3B491400C76527 /* Reachability.m */,
  1017. );
  1018. path = Reachability;
  1019. sourceTree = "<group>";
  1020. };
  1021. A59A862A0C4079FD62248BAB /* Frameworks */ = {
  1022. isa = PBXGroup;
  1023. children = (
  1024. A57656131E51823E002D0AE2 /* ReactiveObjC.framework */,
  1025. D85E32D933C36C37A7CE9517 /* libPods-OneCable.a */,
  1026. );
  1027. name = Frameworks;
  1028. sourceTree = "<group>";
  1029. };
  1030. DEB5B7755A6EA6158E66C9E7 /* Pods */ = {
  1031. isa = PBXGroup;
  1032. children = (
  1033. FE2DCDFBF6442768EBBE8107 /* Pods-OneCable.debug.xcconfig */,
  1034. 1FEE599D97C10ACB19408ACA /* Pods-OneCable.release.xcconfig */,
  1035. ADE7CA33EFEB615D1B6CB053 /* Pods-OneCable.adhoc.xcconfig */,
  1036. 55C040EE251C2C1BC9704BEC /* Pods-OneCable.product.xcconfig */,
  1037. );
  1038. name = Pods;
  1039. sourceTree = "<group>";
  1040. };
  1041. /* End PBXGroup section */
  1042. /* Begin PBXNativeTarget section */
  1043. A13BCE7D1C3B47A500C76527 /* OneCable */ = {
  1044. isa = PBXNativeTarget;
  1045. buildConfigurationList = A13BCEA01C3B47A500C76527 /* Build configuration list for PBXNativeTarget "OneCable" */;
  1046. buildPhases = (
  1047. D18445E3F4B77D67EB5C9CBE /* [CP] Check Pods Manifest.lock */,
  1048. A13BCE7A1C3B47A500C76527 /* Sources */,
  1049. A13BCE7B1C3B47A500C76527 /* Frameworks */,
  1050. A13BCE7C1C3B47A500C76527 /* Resources */,
  1051. 93ADEA80A8C04811E0886259 /* [CP] Embed Pods Frameworks */,
  1052. 27BC1E0D72C144B1471B5B4D /* [CP] Copy Pods Resources */,
  1053. A1A790F41C64B3B700C9382F /* ShellScript */,
  1054. A57656171E518255002D0AE2 /* Embed Frameworks */,
  1055. A57656181E518A1D002D0AE2 /* ShellScript */,
  1056. );
  1057. buildRules = (
  1058. );
  1059. dependencies = (
  1060. );
  1061. name = OneCable;
  1062. productName = SmartCity;
  1063. productReference = A13BCE7E1C3B47A500C76527 /* OneCable.app */;
  1064. productType = "com.apple.product-type.application";
  1065. };
  1066. A13BCE961C3B47A500C76527 /* OneCableTests */ = {
  1067. isa = PBXNativeTarget;
  1068. buildConfigurationList = A13BCEA31C3B47A500C76527 /* Build configuration list for PBXNativeTarget "OneCableTests" */;
  1069. buildPhases = (
  1070. A13BCE931C3B47A500C76527 /* Sources */,
  1071. A13BCE941C3B47A500C76527 /* Frameworks */,
  1072. A13BCE951C3B47A500C76527 /* Resources */,
  1073. );
  1074. buildRules = (
  1075. );
  1076. dependencies = (
  1077. A13BCE991C3B47A500C76527 /* PBXTargetDependency */,
  1078. );
  1079. name = OneCableTests;
  1080. productName = SmartCityTests;
  1081. productReference = A13BCE971C3B47A500C76527 /* OneCableTests.xctest */;
  1082. productType = "com.apple.product-type.bundle.unit-test";
  1083. };
  1084. /* End PBXNativeTarget section */
  1085. /* Begin PBXProject section */
  1086. A13BCE761C3B47A500C76527 /* Project object */ = {
  1087. isa = PBXProject;
  1088. attributes = {
  1089. LastUpgradeCheck = 0820;
  1090. ORGANIZATIONNAME = ntels;
  1091. TargetAttributes = {
  1092. A13BCE7D1C3B47A500C76527 = {
  1093. CreatedOnToolsVersion = 7.2;
  1094. DevelopmentTeam = EVQC6XFF7J;
  1095. ProvisioningStyle = Automatic;
  1096. SystemCapabilities = {
  1097. com.apple.Push = {
  1098. enabled = 1;
  1099. };
  1100. };
  1101. };
  1102. A13BCE961C3B47A500C76527 = {
  1103. CreatedOnToolsVersion = 7.2;
  1104. TestTargetID = A13BCE7D1C3B47A500C76527;
  1105. };
  1106. };
  1107. };
  1108. buildConfigurationList = A13BCE791C3B47A500C76527 /* Build configuration list for PBXProject "OneCable" */;
  1109. compatibilityVersion = "Xcode 3.2";
  1110. developmentRegion = English;
  1111. hasScannedForEncodings = 0;
  1112. knownRegions = (
  1113. en,
  1114. Base,
  1115. ko,
  1116. );
  1117. mainGroup = A13BCE751C3B47A500C76527;
  1118. productRefGroup = A13BCE7F1C3B47A500C76527 /* Products */;
  1119. projectDirPath = "";
  1120. projectRoot = "";
  1121. targets = (
  1122. A13BCE7D1C3B47A500C76527 /* OneCable */,
  1123. A13BCE961C3B47A500C76527 /* OneCableTests */,
  1124. );
  1125. };
  1126. /* End PBXProject section */
  1127. /* Begin PBXResourcesBuildPhase section */
  1128. A13BCE7C1C3B47A500C76527 /* Resources */ = {
  1129. isa = PBXResourcesBuildPhase;
  1130. buildActionMask = 2147483647;
  1131. files = (
  1132. A13BD0521C3B491400C76527 /* PwdPopupView.xib in Resources */,
  1133. A13BCFF81C3B491400C76527 /* MultiLevelPopupView.xib in Resources */,
  1134. A13BD0891C3B492A00C76527 /* SignUp.storyboard in Resources */,
  1135. A191B48F1C4639F900DEBA91 /* AdminAuthPopupView.xib in Resources */,
  1136. A13BD0841C3B492A00C76527 /* HomeHub.storyboard in Resources */,
  1137. A13BCE8E1C3B47A500C76527 /* Assets.xcassets in Resources */,
  1138. A13BD0881C3B492A00C76527 /* Settings.storyboard in Resources */,
  1139. A13BD0861C3B492A00C76527 /* Localizable.strings in Resources */,
  1140. A13BD0DE1C3B563D00C76527 /* WeatherLocationPopupTableViewCell.xib in Resources */,
  1141. A13BD0D91C3B563D00C76527 /* TemperaturePopupView.xib in Resources */,
  1142. A13BCFF21C3B491400C76527 /* DeviceSelectPopupTableViewCell.xib in Resources */,
  1143. A1BC6ECA1C3E57A000D957D9 /* CustomLabelButton.xib in Resources */,
  1144. A13BD0871C3B492A00C76527 /* Rules.storyboard in Resources */,
  1145. A1A454941C477ACD00BA805C /* ChangeEmailPopupView.xib in Resources */,
  1146. A13BD0391C3B491400C76527 /* InvitationAnswerPopupView.xib in Resources */,
  1147. A13BCFFD1C3B491400C76527 /* PopTableView.xib in Resources */,
  1148. A13BD0051C3B491400C76527 /* CustomAlertView.xib in Resources */,
  1149. A13BCFEA1C3B491400C76527 /* CommandClassControlDetailView.xib in Resources */,
  1150. A13BD0831C3B492A00C76527 /* Common.storyboard in Resources */,
  1151. A13BD04F1C3B491400C76527 /* DeleteAccountPopupView.xib in Resources */,
  1152. A13BD0601C3B491400C76527 /* ModifyDeviceNamePopupView.xib in Resources */,
  1153. A13BCFEE1C3B491400C76527 /* CommandClassControlView.xib in Resources */,
  1154. A13BCFEC1C3B491400C76527 /* CommandClassControlNodeView.xib in Resources */,
  1155. A13BD0621C3B491400C76527 /* ModifySecureKeyPopupView.xib in Resources */,
  1156. A13BD0DB1C3B563D00C76527 /* TimePickerPopupView.xib in Resources */,
  1157. A13BD0E01C3B563D00C76527 /* WeatherLocationPopupView.xib in Resources */,
  1158. A13BD08A1C3B492A00C76527 /* Things.storyboard in Resources */,
  1159. A1A4548F1C47736D00BA805C /* ConfirmPasswdPopupView.xib in Resources */,
  1160. A13BD0D71C3B563D00C76527 /* RulesConditionHomeModeTableViewCell.xib in Resources */,
  1161. A13BCFF11C3B491400C76527 /* DeviceNodePopupView.xib in Resources */,
  1162. A13BCFF41C3B491400C76527 /* DeviceSelectPopupView.xib in Resources */,
  1163. A13BCFFA1C3B491400C76527 /* NoContentView.xib in Resources */,
  1164. A13BCFEF1C3B491400C76527 /* DeviceNodePopupTableViewCell.xib in Resources */,
  1165. A13BCE8C1C3B47A500C76527 /* Main.storyboard in Resources */,
  1166. A13BD02F1C3B491400C76527 /* QRCodeInputPopupView.xib in Resources */,
  1167. A13BD0D41C3B563D00C76527 /* ExternHeatPopupView.xib in Resources */,
  1168. A13BD0D21C3B563D00C76527 /* DaylightPopupView.xib in Resources */,
  1169. A16D937F1C5600D300DC0DF1 /* DurationPopupView.xib in Resources */,
  1170. A1A4548A1C476CDE00BA805C /* ChangeNamePopupView.xib in Resources */,
  1171. A13BD0851C3B492A00C76527 /* HomeMember.storyboard in Resources */,
  1172. A13BD0DD1C3B563D00C76527 /* TriggerSelectPopupView.xib in Resources */,
  1173. A13BD0D61C3B563D00C76527 /* RulesConditionHomeModePopupView.xib in Resources */,
  1174. );
  1175. runOnlyForDeploymentPostprocessing = 0;
  1176. };
  1177. A13BCE951C3B47A500C76527 /* Resources */ = {
  1178. isa = PBXResourcesBuildPhase;
  1179. buildActionMask = 2147483647;
  1180. files = (
  1181. );
  1182. runOnlyForDeploymentPostprocessing = 0;
  1183. };
  1184. /* End PBXResourcesBuildPhase section */
  1185. /* Begin PBXShellScriptBuildPhase section */
  1186. 27BC1E0D72C144B1471B5B4D /* [CP] Copy Pods Resources */ = {
  1187. isa = PBXShellScriptBuildPhase;
  1188. buildActionMask = 2147483647;
  1189. files = (
  1190. );
  1191. inputPaths = (
  1192. );
  1193. name = "[CP] Copy Pods Resources";
  1194. outputPaths = (
  1195. );
  1196. runOnlyForDeploymentPostprocessing = 0;
  1197. shellPath = /bin/sh;
  1198. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-OneCable/Pods-OneCable-resources.sh\"\n";
  1199. showEnvVarsInLog = 0;
  1200. };
  1201. 93ADEA80A8C04811E0886259 /* [CP] Embed Pods Frameworks */ = {
  1202. isa = PBXShellScriptBuildPhase;
  1203. buildActionMask = 2147483647;
  1204. files = (
  1205. );
  1206. inputPaths = (
  1207. );
  1208. name = "[CP] Embed Pods Frameworks";
  1209. outputPaths = (
  1210. );
  1211. runOnlyForDeploymentPostprocessing = 0;
  1212. shellPath = /bin/sh;
  1213. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-OneCable/Pods-OneCable-frameworks.sh\"\n";
  1214. showEnvVarsInLog = 0;
  1215. };
  1216. A1A790F41C64B3B700C9382F /* ShellScript */ = {
  1217. isa = PBXShellScriptBuildPhase;
  1218. buildActionMask = 2147483647;
  1219. files = (
  1220. );
  1221. inputPaths = (
  1222. "$(SRCROOT)/Carthage/Build/iOS/ReactiveObjC.framework",
  1223. );
  1224. outputPaths = (
  1225. );
  1226. runOnlyForDeploymentPostprocessing = 0;
  1227. shellPath = /bin/sh;
  1228. shellScript = "/usr/local/bin/carthage copy-frameworks";
  1229. showEnvVarsInLog = 0;
  1230. };
  1231. A57656181E518A1D002D0AE2 /* ShellScript */ = {
  1232. isa = PBXShellScriptBuildPhase;
  1233. buildActionMask = 2147483647;
  1234. files = (
  1235. );
  1236. inputPaths = (
  1237. );
  1238. outputPaths = (
  1239. );
  1240. runOnlyForDeploymentPostprocessing = 0;
  1241. shellPath = /bin/sh;
  1242. shellScript = "./Fabric.framework/run 880f3dee7e6be7a796fab928aafeee250c7867e2 cd7015c4f4a84ac451c1239e79ac4d79f8789bf567e4a50643d45f604248b1e7";
  1243. };
  1244. D18445E3F4B77D67EB5C9CBE /* [CP] Check Pods Manifest.lock */ = {
  1245. isa = PBXShellScriptBuildPhase;
  1246. buildActionMask = 2147483647;
  1247. files = (
  1248. );
  1249. inputPaths = (
  1250. );
  1251. name = "[CP] Check Pods Manifest.lock";
  1252. outputPaths = (
  1253. );
  1254. runOnlyForDeploymentPostprocessing = 0;
  1255. shellPath = /bin/sh;
  1256. shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
  1257. showEnvVarsInLog = 0;
  1258. };
  1259. /* End PBXShellScriptBuildPhase section */
  1260. /* Begin PBXSourcesBuildPhase section */
  1261. A13BCE7A1C3B47A500C76527 /* Sources */ = {
  1262. isa = PBXSourcesBuildPhase;
  1263. buildActionMask = 2147483647;
  1264. files = (
  1265. A13BD0691C3B491400C76527 /* ThingsAddViewController.m in Sources */,
  1266. A13BCFDD1C3B491400C76527 /* NSData+AESCrypt.m in Sources */,
  1267. A13BD01B1C3B491400C76527 /* LoginModel.m in Sources */,
  1268. A13BD0201C3B491400C76527 /* CypherUtil.m in Sources */,
  1269. A1A454891C476CDE00BA805C /* ChangeNamePopupView.m in Sources */,
  1270. A13BD0501C3B491400C76527 /* GoodbyeViewController.m in Sources */,
  1271. A13BD0121C3B491400C76527 /* DatePickerButton.m in Sources */,
  1272. A13BD0661C3B491400C76527 /* ThingsAddFailViewController.m in Sources */,
  1273. A13BCFF01C3B491400C76527 /* DeviceNodePopupView.m in Sources */,
  1274. A13BD0421C3B491400C76527 /* RulesAddViewController.m in Sources */,
  1275. A13BD0081C3B491400C76527 /* CustomImageView.m in Sources */,
  1276. A13BCFF71C3B491400C76527 /* MultiLevelPopupView.m in Sources */,
  1277. A1A4548E1C47736D00BA805C /* ConfirmPasswdPopupView.m in Sources */,
  1278. A13BD00A1C3B491400C76527 /* CustomLoadingView.m in Sources */,
  1279. A13BD0D81C3B563D00C76527 /* TemperaturePopupView.m in Sources */,
  1280. A13BD03A1C3B491400C76527 /* InvitationAnswerViewController.m in Sources */,
  1281. A13BD0241C3B491400C76527 /* ValidateUtil.m in Sources */,
  1282. A13BD01D1C3B491400C76527 /* RuleModel.m in Sources */,
  1283. A1A454931C477ACD00BA805C /* ChangeEmailPopupView.m in Sources */,
  1284. A13BD0331C3B491400C76527 /* JDTableViewController.m in Sources */,
  1285. A13BD0191C3B491400C76527 /* ItemModel.m in Sources */,
  1286. A13BCFF51C3B491400C76527 /* JDProgressHUD.m in Sources */,
  1287. A13BD00B1C3B491400C76527 /* CustomPicker.m in Sources */,
  1288. A13BD0681C3B491400C76527 /* ThingsAddStartViewController.m in Sources */,
  1289. A13BD0301C3B491400C76527 /* QRCodeViewController.m in Sources */,
  1290. A13BD02E1C3B491400C76527 /* QRCodeInputPopupView.m in Sources */,
  1291. A13BD0371C3B491400C76527 /* IntroViewController.m in Sources */,
  1292. A13BCFE01C3B491400C76527 /* NSString-Addtions.m in Sources */,
  1293. A13BD0D51C3B563D00C76527 /* RulesConditionHomeModePopupView.m in Sources */,
  1294. A13BD0701C3B491400C76527 /* JDUUID.m in Sources */,
  1295. A13BD0581C3B491400C76527 /* SignUpViewController.m in Sources */,
  1296. A13BD03C1C3B491400C76527 /* LoginViewController.m in Sources */,
  1297. A13BCFED1C3B491400C76527 /* CommandClassControlView.m in Sources */,
  1298. A13BD0431C3B491400C76527 /* RulesConditionViewController.m in Sources */,
  1299. A13BD0D31C3B563D00C76527 /* ExternHeatPopupView.m in Sources */,
  1300. A13BCFE21C3B491400C76527 /* UIDevice-Reachability.m in Sources */,
  1301. A13BD01E1C3B491400C76527 /* SceneModel.m in Sources */,
  1302. A191B48E1C4639F900DEBA91 /* AdminAuthPopupView.m in Sources */,
  1303. A13BCFFB1C3B491400C76527 /* OptionPopOverViewController.m in Sources */,
  1304. A13BCFF31C3B491400C76527 /* DeviceSelectPopupView.m in Sources */,
  1305. A13BD02D1C3B491400C76527 /* HomeHubViewController.m in Sources */,
  1306. A13BD0381C3B491400C76527 /* InvitationAnswerPopupView.m in Sources */,
  1307. A13BCFE71C3B491400C76527 /* UIView+Toast.m in Sources */,
  1308. A13BCFF91C3B491400C76527 /* NoContentView.m in Sources */,
  1309. A13BCFE91C3B491400C76527 /* CommandClassControlDetailView.m in Sources */,
  1310. A15D2CFC1C58598F0018D555 /* KNLayoutConstraint.m in Sources */,
  1311. A13BD0361C3B491400C76527 /* HomeModeUpdateViewController.m in Sources */,
  1312. A13BD0351C3B491400C76527 /* HomeModeSettingsViewController.m in Sources */,
  1313. A13BD0511C3B491400C76527 /* PwdPopupView.m in Sources */,
  1314. A13BD05F1C3B491400C76527 /* ModifyDeviceNamePopupView.m in Sources */,
  1315. A13BD0071C3B491400C76527 /* CustomCheckBox.m in Sources */,
  1316. A13BD0721C3B491400C76527 /* Reachability.m in Sources */,
  1317. A13BCFDE1C3B491400C76527 /* NSDate+Utilities.m in Sources */,
  1318. A13BCFF61C3B491400C76527 /* KNTableViewCell.m in Sources */,
  1319. A13BD0DF1C3B563D00C76527 /* WeatherLocationPopupView.m in Sources */,
  1320. A13BD0341C3B491400C76527 /* JDViewController.m in Sources */,
  1321. A13BCFFC1C3B491400C76527 /* PopTableView.m in Sources */,
  1322. A15D2CFF1C588FBB0018D555 /* KNView.m in Sources */,
  1323. A191B4841C4495AE00DEBA91 /* WelcomeViewController.m in Sources */,
  1324. A13BD0541C3B491400C76527 /* SettingsViewController.m in Sources */,
  1325. A13BD0131C3B491400C76527 /* SelectButton.m in Sources */,
  1326. A1BC6EC81C3E578F00D957D9 /* CustomLabelButton.m in Sources */,
  1327. A13BD04E1C3B491400C76527 /* DeleteAccountPopupView.m in Sources */,
  1328. A13BD0111C3B491400C76527 /* CustomTextView.m in Sources */,
  1329. A13BD0451C3B491400C76527 /* RulesViewController.m in Sources */,
  1330. A13BD0401C3B491400C76527 /* ResetPwdViewController.m in Sources */,
  1331. A13BD0651C3B491400C76527 /* ThingsAddCompleteViewController.m in Sources */,
  1332. A13BD0671C3B491400C76527 /* ThingsAddIncludeViewController.m in Sources */,
  1333. A13BD00E1C3B491400C76527 /* CustomSwitch.m in Sources */,
  1334. A13BD0DA1C3B563D00C76527 /* TimePickerPopupView.m in Sources */,
  1335. A13BCFE61C3B491400C76527 /* UIView+AutoLayoutDebugging.m in Sources */,
  1336. A13BD0251C3B491400C76527 /* WebBrowseViewController.m in Sources */,
  1337. A13BD0061C3B491400C76527 /* CustomButton.m in Sources */,
  1338. A13BD0561C3B491400C76527 /* AgreementViewController.m in Sources */,
  1339. A13BD01F1C3B491400C76527 /* CommonUtil.m in Sources */,
  1340. A16A1CC41C71728400F92BC1 /* NetworkServiceHandler.m in Sources */,
  1341. A13BD0151C3B491400C76527 /* RequestHandler.m in Sources */,
  1342. A13BD0041C3B491400C76527 /* CustomAlertView.m in Sources */,
  1343. A13BD0441C3B491400C76527 /* RulesDetailViewController.m in Sources */,
  1344. A13BD0261C3B491400C76527 /* HomeHubChangeViewController.m in Sources */,
  1345. A13BCFDC1C3B491400C76527 /* NSArray-Addtions.m in Sources */,
  1346. A13BD0221C3B491400C76527 /* JDUserDefaults.m in Sources */,
  1347. A13BD0D11C3B563D00C76527 /* DaylightPopupView.m in Sources */,
  1348. A191B4871C44985200DEBA91 /* UIWindow+Addtions.m in Sources */,
  1349. A13BD0181C3B491400C76527 /* DeviceModel.m in Sources */,
  1350. A13BD00F1C3B491400C76527 /* CustomTableView.m in Sources */,
  1351. A13BCFDA1C3B491400C76527 /* AppDelegate.m in Sources */,
  1352. A13BD06A1C3B491400C76527 /* ThingsDetailViewController.m in Sources */,
  1353. A13BCFEB1C3B491400C76527 /* CommandClassControlNodeView.m in Sources */,
  1354. A13BD0161C3B491400C76527 /* JDFacade.m in Sources */,
  1355. A13BCFDF1C3B491400C76527 /* NSDictionary-Additions.m in Sources */,
  1356. A13BD0411C3B491400C76527 /* RulesAddCompleteViewController.m in Sources */,
  1357. A13BD0101C3B491400C76527 /* CustomTextField.m in Sources */,
  1358. A13BD00D1C3B491400C76527 /* CustomShapeButton.m in Sources */,
  1359. A13BD0231C3B491400C76527 /* UIDeviceUtil.m in Sources */,
  1360. A13BD01C1C3B491400C76527 /* ModeModel.m in Sources */,
  1361. A13BD0321C3B491400C76527 /* HomeMemberViewController.m in Sources */,
  1362. A13BD0211C3B491400C76527 /* ImageUtil.m in Sources */,
  1363. A13BD03D1C3B491400C76527 /* MainViewController.m in Sources */,
  1364. A13BCFE81C3B491400C76527 /* UIViewController-ActionSheetSimulation.m in Sources */,
  1365. A13BD0711C3B491400C76527 /* KeychainItemWrapper.m in Sources */,
  1366. A13BD0311C3B491400C76527 /* HomeMemberAddViewController.m in Sources */,
  1367. A1CC0BF61C3B8A2D00B05DA3 /* NSLayoutConstraint+Additions.m in Sources */,
  1368. A13BCFE11C3B491400C76527 /* SortDictionary.m in Sources */,
  1369. A13BD0291C3B491400C76527 /* HomeHubInitViewController.m in Sources */,
  1370. A13BCFE41C3B491400C76527 /* UITableView+EnumarateCells.m in Sources */,
  1371. A13BD03E1C3B491400C76527 /* MessageBoxViewController.m in Sources */,
  1372. A13BD0DC1C3B563D00C76527 /* TriggerSelectPopupView.m in Sources */,
  1373. A13BD0141C3B491400C76527 /* TimePickerButton.m in Sources */,
  1374. A13BCE831C3B47A500C76527 /* main.m in Sources */,
  1375. A13BD0571C3B491400C76527 /* NewMobileViewController.m in Sources */,
  1376. A13BD01A1C3B491400C76527 /* JDJSONModel.m in Sources */,
  1377. A13BD06B1C3B491400C76527 /* ThingsViewController.m in Sources */,
  1378. A13BD0611C3B491400C76527 /* ModifySecureKeyPopupView.m in Sources */,
  1379. A13BD0171C3B491400C76527 /* JDObject.m in Sources */,
  1380. A13BCFDB1C3B491400C76527 /* GTMNSString+HTML.m in Sources */,
  1381. A13BD03B1C3B491400C76527 /* InvitationListViewController.m in Sources */,
  1382. A13BCFE31C3B491400C76527 /* UIImage+Addtions.m in Sources */,
  1383. A16D937E1C5600D300DC0DF1 /* DurationPopupView.m in Sources */,
  1384. A13BCFE51C3B491400C76527 /* UIView+Additions.m in Sources */,
  1385. A13BD00C1C3B491400C76527 /* CustomRadioGroup.m in Sources */,
  1386. A13BD03F1C3B491400C76527 /* NoticeViewController.m in Sources */,
  1387. A13BD0091C3B491400C76527 /* CustomLabel.m in Sources */,
  1388. );
  1389. runOnlyForDeploymentPostprocessing = 0;
  1390. };
  1391. A13BCE931C3B47A500C76527 /* Sources */ = {
  1392. isa = PBXSourcesBuildPhase;
  1393. buildActionMask = 2147483647;
  1394. files = (
  1395. A13BCE9C1C3B47A500C76527 /* OneCableTests.m in Sources */,
  1396. );
  1397. runOnlyForDeploymentPostprocessing = 0;
  1398. };
  1399. /* End PBXSourcesBuildPhase section */
  1400. /* Begin PBXTargetDependency section */
  1401. A13BCE991C3B47A500C76527 /* PBXTargetDependency */ = {
  1402. isa = PBXTargetDependency;
  1403. target = A13BCE7D1C3B47A500C76527 /* OneCable */;
  1404. targetProxy = A13BCE981C3B47A500C76527 /* PBXContainerItemProxy */;
  1405. };
  1406. /* End PBXTargetDependency section */
  1407. /* Begin PBXVariantGroup section */
  1408. A13BCE8A1C3B47A500C76527 /* Main.storyboard */ = {
  1409. isa = PBXVariantGroup;
  1410. children = (
  1411. A13BCE8B1C3B47A500C76527 /* Base */,
  1412. );
  1413. name = Main.storyboard;
  1414. sourceTree = "<group>";
  1415. };
  1416. A13BD0731C3B492A00C76527 /* Common.storyboard */ = {
  1417. isa = PBXVariantGroup;
  1418. children = (
  1419. A13BD0741C3B492A00C76527 /* Base */,
  1420. );
  1421. name = Common.storyboard;
  1422. sourceTree = "<group>";
  1423. };
  1424. A13BD0751C3B492A00C76527 /* HomeHub.storyboard */ = {
  1425. isa = PBXVariantGroup;
  1426. children = (
  1427. A13BD0761C3B492A00C76527 /* Base */,
  1428. );
  1429. name = HomeHub.storyboard;
  1430. sourceTree = "<group>";
  1431. };
  1432. A13BD0771C3B492A00C76527 /* HomeMember.storyboard */ = {
  1433. isa = PBXVariantGroup;
  1434. children = (
  1435. A13BD0781C3B492A00C76527 /* Base */,
  1436. );
  1437. name = HomeMember.storyboard;
  1438. sourceTree = "<group>";
  1439. };
  1440. A13BD0791C3B492A00C76527 /* Localizable.strings */ = {
  1441. isa = PBXVariantGroup;
  1442. children = (
  1443. A13BD07A1C3B492A00C76527 /* Base */,
  1444. A576561A1E52EFF8002D0AE2 /* ko */,
  1445. );
  1446. name = Localizable.strings;
  1447. sourceTree = "<group>";
  1448. };
  1449. A13BD07B1C3B492A00C76527 /* Rules.storyboard */ = {
  1450. isa = PBXVariantGroup;
  1451. children = (
  1452. A13BD07C1C3B492A00C76527 /* Base */,
  1453. );
  1454. name = Rules.storyboard;
  1455. sourceTree = "<group>";
  1456. };
  1457. A13BD07D1C3B492A00C76527 /* Settings.storyboard */ = {
  1458. isa = PBXVariantGroup;
  1459. children = (
  1460. A13BD07E1C3B492A00C76527 /* Base */,
  1461. );
  1462. name = Settings.storyboard;
  1463. sourceTree = "<group>";
  1464. };
  1465. A13BD07F1C3B492A00C76527 /* SignUp.storyboard */ = {
  1466. isa = PBXVariantGroup;
  1467. children = (
  1468. A13BD0801C3B492A00C76527 /* Base */,
  1469. );
  1470. name = SignUp.storyboard;
  1471. sourceTree = "<group>";
  1472. };
  1473. A13BD0811C3B492A00C76527 /* Things.storyboard */ = {
  1474. isa = PBXVariantGroup;
  1475. children = (
  1476. A13BD0821C3B492A00C76527 /* Base */,
  1477. );
  1478. name = Things.storyboard;
  1479. sourceTree = "<group>";
  1480. };
  1481. /* End PBXVariantGroup section */
  1482. /* Begin XCBuildConfiguration section */
  1483. A13BCE9E1C3B47A500C76527 /* Debug */ = {
  1484. isa = XCBuildConfiguration;
  1485. buildSettings = {
  1486. ALWAYS_SEARCH_USER_PATHS = NO;
  1487. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1488. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1489. CLANG_CXX_LIBRARY = "libc++";
  1490. CLANG_ENABLE_MODULES = YES;
  1491. CLANG_ENABLE_OBJC_ARC = YES;
  1492. CLANG_WARN_BOOL_CONVERSION = YES;
  1493. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1494. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1495. CLANG_WARN_EMPTY_BODY = YES;
  1496. CLANG_WARN_ENUM_CONVERSION = YES;
  1497. CLANG_WARN_INFINITE_RECURSION = YES;
  1498. CLANG_WARN_INT_CONVERSION = YES;
  1499. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1500. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1501. CLANG_WARN_UNREACHABLE_CODE = YES;
  1502. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1503. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1504. COPY_PHASE_STRIP = NO;
  1505. DEBUG_INFORMATION_FORMAT = dwarf;
  1506. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1507. ENABLE_TESTABILITY = YES;
  1508. GCC_C_LANGUAGE_STANDARD = gnu99;
  1509. GCC_DYNAMIC_NO_PIC = NO;
  1510. GCC_NO_COMMON_BLOCKS = YES;
  1511. GCC_OPTIMIZATION_LEVEL = 0;
  1512. GCC_PREPROCESSOR_DEFINITIONS = (
  1513. "DEBUG=1",
  1514. "$(inherited)",
  1515. );
  1516. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1517. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1518. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1519. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1520. GCC_WARN_UNUSED_FUNCTION = YES;
  1521. GCC_WARN_UNUSED_VARIABLE = YES;
  1522. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1523. MTL_ENABLE_DEBUG_INFO = YES;
  1524. ONLY_ACTIVE_ARCH = YES;
  1525. SDKROOT = iphoneos;
  1526. };
  1527. name = Debug;
  1528. };
  1529. A13BCE9F1C3B47A500C76527 /* Release */ = {
  1530. isa = XCBuildConfiguration;
  1531. buildSettings = {
  1532. ALWAYS_SEARCH_USER_PATHS = NO;
  1533. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1534. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1535. CLANG_CXX_LIBRARY = "libc++";
  1536. CLANG_ENABLE_MODULES = YES;
  1537. CLANG_ENABLE_OBJC_ARC = YES;
  1538. CLANG_WARN_BOOL_CONVERSION = YES;
  1539. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1540. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1541. CLANG_WARN_EMPTY_BODY = YES;
  1542. CLANG_WARN_ENUM_CONVERSION = YES;
  1543. CLANG_WARN_INFINITE_RECURSION = YES;
  1544. CLANG_WARN_INT_CONVERSION = YES;
  1545. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1546. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1547. CLANG_WARN_UNREACHABLE_CODE = YES;
  1548. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1549. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1550. COPY_PHASE_STRIP = NO;
  1551. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1552. ENABLE_NS_ASSERTIONS = NO;
  1553. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1554. GCC_C_LANGUAGE_STANDARD = gnu99;
  1555. GCC_NO_COMMON_BLOCKS = YES;
  1556. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1557. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1558. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1559. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1560. GCC_WARN_UNUSED_FUNCTION = YES;
  1561. GCC_WARN_UNUSED_VARIABLE = YES;
  1562. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1563. MTL_ENABLE_DEBUG_INFO = NO;
  1564. SDKROOT = iphoneos;
  1565. VALIDATE_PRODUCT = YES;
  1566. };
  1567. name = Release;
  1568. };
  1569. A13BCEA11C3B47A500C76527 /* Debug */ = {
  1570. isa = XCBuildConfiguration;
  1571. baseConfigurationReference = FE2DCDFBF6442768EBBE8107 /* Pods-OneCable.debug.xcconfig */;
  1572. buildSettings = {
  1573. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1574. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Brand Assets";
  1575. CODE_SIGN_ENTITLEMENTS = OneCable/OneCable.entitlements;
  1576. CODE_SIGN_IDENTITY = "";
  1577. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1578. DEVELOPMENT_TEAM = EVQC6XFF7J;
  1579. ENABLE_TESTABILITY = NO;
  1580. FRAMEWORK_SEARCH_PATHS = (
  1581. "$(inherited)",
  1582. "$(PROJECT_DIR)/Carthage/Build/iOS",
  1583. "$(PROJECT_DIR)",
  1584. );
  1585. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1586. GCC_PREFIX_HEADER = OneCable/Prefix.pch;
  1587. GCC_PREPROCESSOR_DEFINITIONS = (
  1588. "$(inherited)",
  1589. "DEBUG_MODE=1",
  1590. );
  1591. INFOPLIST_FILE = OneCable/Info.plist;
  1592. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1593. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1594. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.adthomeservice;
  1595. PRODUCT_NAME = "$(TARGET_NAME)";
  1596. PROVISIONING_PROFILE = "";
  1597. };
  1598. name = Debug;
  1599. };
  1600. A13BCEA21C3B47A500C76527 /* Release */ = {
  1601. isa = XCBuildConfiguration;
  1602. baseConfigurationReference = 1FEE599D97C10ACB19408ACA /* Pods-OneCable.release.xcconfig */;
  1603. buildSettings = {
  1604. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1605. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Brand Assets";
  1606. CODE_SIGN_ENTITLEMENTS = OneCable/OneCable.entitlements;
  1607. CODE_SIGN_IDENTITY = "";
  1608. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1609. DEVELOPMENT_TEAM = EVQC6XFF7J;
  1610. FRAMEWORK_SEARCH_PATHS = (
  1611. "$(inherited)",
  1612. "$(PROJECT_DIR)/Carthage/Build/iOS",
  1613. "$(PROJECT_DIR)",
  1614. );
  1615. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1616. GCC_PREFIX_HEADER = OneCable/Prefix.pch;
  1617. GCC_PREPROCESSOR_DEFINITIONS = (
  1618. "$(inherited)",
  1619. "RELEASE_MODE=1",
  1620. );
  1621. INFOPLIST_FILE = OneCable/Info.plist;
  1622. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1623. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1624. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.adthomeservice;
  1625. PRODUCT_NAME = "$(TARGET_NAME)";
  1626. PROVISIONING_PROFILE = "";
  1627. };
  1628. name = Release;
  1629. };
  1630. A13BCEA41C3B47A500C76527 /* Debug */ = {
  1631. isa = XCBuildConfiguration;
  1632. buildSettings = {
  1633. BUNDLE_LOADER = "$(TEST_HOST)";
  1634. INFOPLIST_FILE = OneCableTests/Info.plist;
  1635. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1636. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.adthomeservice;
  1637. PRODUCT_NAME = "$(TARGET_NAME)";
  1638. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/OneCable.app/OneCable";
  1639. };
  1640. name = Debug;
  1641. };
  1642. A13BCEA51C3B47A500C76527 /* Release */ = {
  1643. isa = XCBuildConfiguration;
  1644. buildSettings = {
  1645. BUNDLE_LOADER = "$(TEST_HOST)";
  1646. INFOPLIST_FILE = OneCableTests/Info.plist;
  1647. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1648. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.adthomeservice;
  1649. PRODUCT_NAME = "$(TARGET_NAME)";
  1650. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/OneCable.app/OneCable";
  1651. };
  1652. name = Release;
  1653. };
  1654. A13BCEA61C3B47D500C76527 /* AdHoc */ = {
  1655. isa = XCBuildConfiguration;
  1656. buildSettings = {
  1657. ALWAYS_SEARCH_USER_PATHS = NO;
  1658. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1659. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1660. CLANG_CXX_LIBRARY = "libc++";
  1661. CLANG_ENABLE_MODULES = YES;
  1662. CLANG_ENABLE_OBJC_ARC = YES;
  1663. CLANG_WARN_BOOL_CONVERSION = YES;
  1664. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1665. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1666. CLANG_WARN_EMPTY_BODY = YES;
  1667. CLANG_WARN_ENUM_CONVERSION = YES;
  1668. CLANG_WARN_INFINITE_RECURSION = YES;
  1669. CLANG_WARN_INT_CONVERSION = YES;
  1670. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1671. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1672. CLANG_WARN_UNREACHABLE_CODE = YES;
  1673. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1674. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1675. COPY_PHASE_STRIP = NO;
  1676. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1677. ENABLE_NS_ASSERTIONS = NO;
  1678. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1679. GCC_C_LANGUAGE_STANDARD = gnu99;
  1680. GCC_NO_COMMON_BLOCKS = YES;
  1681. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1682. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1683. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1684. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1685. GCC_WARN_UNUSED_FUNCTION = YES;
  1686. GCC_WARN_UNUSED_VARIABLE = YES;
  1687. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1688. MTL_ENABLE_DEBUG_INFO = NO;
  1689. SDKROOT = iphoneos;
  1690. VALIDATE_PRODUCT = YES;
  1691. };
  1692. name = AdHoc;
  1693. };
  1694. A13BCEA71C3B47D500C76527 /* AdHoc */ = {
  1695. isa = XCBuildConfiguration;
  1696. baseConfigurationReference = ADE7CA33EFEB615D1B6CB053 /* Pods-OneCable.adhoc.xcconfig */;
  1697. buildSettings = {
  1698. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1699. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Brand Assets";
  1700. CODE_SIGN_ENTITLEMENTS = OneCable/OneCable.entitlements;
  1701. CODE_SIGN_IDENTITY = "";
  1702. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1703. DEVELOPMENT_TEAM = EVQC6XFF7J;
  1704. FRAMEWORK_SEARCH_PATHS = (
  1705. "$(inherited)",
  1706. "$(PROJECT_DIR)/Carthage/Build/iOS",
  1707. "$(PROJECT_DIR)",
  1708. );
  1709. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1710. GCC_PREFIX_HEADER = OneCable/Prefix.pch;
  1711. GCC_PREPROCESSOR_DEFINITIONS = (
  1712. "$(inherited)",
  1713. "ADHOC_MODE=1",
  1714. );
  1715. INFOPLIST_FILE = OneCable/Info.plist;
  1716. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1717. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1718. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.adthomeservice;
  1719. PRODUCT_NAME = "$(TARGET_NAME)";
  1720. PROVISIONING_PROFILE = "";
  1721. };
  1722. name = AdHoc;
  1723. };
  1724. A13BCEA81C3B47D500C76527 /* AdHoc */ = {
  1725. isa = XCBuildConfiguration;
  1726. buildSettings = {
  1727. BUNDLE_LOADER = "$(TEST_HOST)";
  1728. INFOPLIST_FILE = OneCableTests/Info.plist;
  1729. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1730. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.adthomeservice;
  1731. PRODUCT_NAME = "$(TARGET_NAME)";
  1732. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/OneCable.app/OneCable";
  1733. };
  1734. name = AdHoc;
  1735. };
  1736. A13BCEA91C3B47DC00C76527 /* Product */ = {
  1737. isa = XCBuildConfiguration;
  1738. buildSettings = {
  1739. ALWAYS_SEARCH_USER_PATHS = NO;
  1740. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  1741. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  1742. CLANG_CXX_LIBRARY = "libc++";
  1743. CLANG_ENABLE_MODULES = YES;
  1744. CLANG_ENABLE_OBJC_ARC = YES;
  1745. CLANG_WARN_BOOL_CONVERSION = YES;
  1746. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1747. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1748. CLANG_WARN_EMPTY_BODY = YES;
  1749. CLANG_WARN_ENUM_CONVERSION = YES;
  1750. CLANG_WARN_INFINITE_RECURSION = YES;
  1751. CLANG_WARN_INT_CONVERSION = YES;
  1752. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1753. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1754. CLANG_WARN_UNREACHABLE_CODE = YES;
  1755. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1756. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1757. COPY_PHASE_STRIP = NO;
  1758. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1759. ENABLE_NS_ASSERTIONS = NO;
  1760. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1761. GCC_C_LANGUAGE_STANDARD = gnu99;
  1762. GCC_NO_COMMON_BLOCKS = YES;
  1763. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1764. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1765. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1766. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1767. GCC_WARN_UNUSED_FUNCTION = YES;
  1768. GCC_WARN_UNUSED_VARIABLE = YES;
  1769. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1770. MTL_ENABLE_DEBUG_INFO = NO;
  1771. SDKROOT = iphoneos;
  1772. VALIDATE_PRODUCT = YES;
  1773. };
  1774. name = Product;
  1775. };
  1776. A13BCEAA1C3B47DC00C76527 /* Product */ = {
  1777. isa = XCBuildConfiguration;
  1778. baseConfigurationReference = 55C040EE251C2C1BC9704BEC /* Pods-OneCable.product.xcconfig */;
  1779. buildSettings = {
  1780. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1781. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "Brand Assets";
  1782. CODE_SIGN_ENTITLEMENTS = OneCable/OneCable.entitlements;
  1783. CODE_SIGN_IDENTITY = "";
  1784. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  1785. DEVELOPMENT_TEAM = EVQC6XFF7J;
  1786. FRAMEWORK_SEARCH_PATHS = (
  1787. "$(inherited)",
  1788. "$(PROJECT_DIR)/Carthage/Build/iOS",
  1789. "$(PROJECT_DIR)",
  1790. );
  1791. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1792. GCC_PREFIX_HEADER = OneCable/Prefix.pch;
  1793. GCC_PREPROCESSOR_DEFINITIONS = (
  1794. "$(inherited)",
  1795. "PRODUCT_MODE=1",
  1796. );
  1797. INFOPLIST_FILE = OneCable/Info.plist;
  1798. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  1799. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
  1800. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.adthomeservice;
  1801. PRODUCT_NAME = "$(TARGET_NAME)";
  1802. PROVISIONING_PROFILE = "";
  1803. };
  1804. name = Product;
  1805. };
  1806. A13BCEAB1C3B47DC00C76527 /* Product */ = {
  1807. isa = XCBuildConfiguration;
  1808. buildSettings = {
  1809. BUNDLE_LOADER = "$(TEST_HOST)";
  1810. INFOPLIST_FILE = OneCableTests/Info.plist;
  1811. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
  1812. PRODUCT_BUNDLE_IDENTIFIER = com.ntels.adthomeservice;
  1813. PRODUCT_NAME = "$(TARGET_NAME)";
  1814. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/OneCable.app/OneCable";
  1815. };
  1816. name = Product;
  1817. };
  1818. /* End XCBuildConfiguration section */
  1819. /* Begin XCConfigurationList section */
  1820. A13BCE791C3B47A500C76527 /* Build configuration list for PBXProject "OneCable" */ = {
  1821. isa = XCConfigurationList;
  1822. buildConfigurations = (
  1823. A13BCE9E1C3B47A500C76527 /* Debug */,
  1824. A13BCE9F1C3B47A500C76527 /* Release */,
  1825. A13BCEA61C3B47D500C76527 /* AdHoc */,
  1826. A13BCEA91C3B47DC00C76527 /* Product */,
  1827. );
  1828. defaultConfigurationIsVisible = 0;
  1829. defaultConfigurationName = Release;
  1830. };
  1831. A13BCEA01C3B47A500C76527 /* Build configuration list for PBXNativeTarget "OneCable" */ = {
  1832. isa = XCConfigurationList;
  1833. buildConfigurations = (
  1834. A13BCEA11C3B47A500C76527 /* Debug */,
  1835. A13BCEA21C3B47A500C76527 /* Release */,
  1836. A13BCEA71C3B47D500C76527 /* AdHoc */,
  1837. A13BCEAA1C3B47DC00C76527 /* Product */,
  1838. );
  1839. defaultConfigurationIsVisible = 0;
  1840. defaultConfigurationName = Release;
  1841. };
  1842. A13BCEA31C3B47A500C76527 /* Build configuration list for PBXNativeTarget "OneCableTests" */ = {
  1843. isa = XCConfigurationList;
  1844. buildConfigurations = (
  1845. A13BCEA41C3B47A500C76527 /* Debug */,
  1846. A13BCEA51C3B47A500C76527 /* Release */,
  1847. A13BCEA81C3B47D500C76527 /* AdHoc */,
  1848. A13BCEAB1C3B47DC00C76527 /* Product */,
  1849. );
  1850. defaultConfigurationIsVisible = 0;
  1851. defaultConfigurationName = Release;
  1852. };
  1853. /* End XCConfigurationList section */
  1854. };
  1855. rootObject = A13BCE761C3B47A500C76527 /* Project object */;
  1856. }