project.pbxproj 140 KB

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