project.pbxproj 141 KB

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