| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 48;
- objects = {
- /* Begin PBXBuildFile section */
- 18189A48226022DB00327157 /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A46226022DB00327157 /* OpenAL.framework */; };
- 18189A49226022DB00327157 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A47226022DB00327157 /* OpenGLES.framework */; };
- 18189A4B226022ED00327157 /* libresolv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A4A226022ED00327157 /* libresolv.tbd */; };
- 18189A4D226022F600327157 /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A4C226022F600327157 /* libiconv.tbd */; };
- 18189A4F226022FE00327157 /* libbz2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A4E226022FD00327157 /* libbz2.tbd */; };
- 18189A522260232400327157 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A502260232400327157 /* AVFoundation.framework */; };
- 18189A532260232400327157 /* AVKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A512260232400327157 /* AVKit.framework */; };
- 18189A552260232F00327157 /* AssetsLibrary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A542260232F00327157 /* AssetsLibrary.framework */; };
- 18189A582260233B00327157 /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A562260233B00327157 /* UserNotifications.framework */; };
- 18189A592260233B00327157 /* UserNotificationsUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A572260233B00327157 /* UserNotificationsUI.framework */; };
- 18189A5B2260236200327157 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A5A2260236200327157 /* AudioToolbox.framework */; };
- 18189A5D2260238600327157 /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A5C2260238600327157 /* CoreMedia.framework */; };
- 18189A5F2260239A00327157 /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A5E2260239900327157 /* MediaPlayer.framework */; };
- 18189A61226023B300327157 /* VideoToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A60226023B300327157 /* VideoToolbox.framework */; };
- 18189A632260343900327157 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189A622260343900327157 /* libsqlite3.0.tbd */; };
- 1818A11B2260422300327157 /* SystemResetConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E532260422100327157 /* SystemResetConfig.mm */; };
- 1818A11C2260422300327157 /* TimeSynDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E552260422100327157 /* TimeSynDataSource.m */; };
- 1818A11D2260422300327157 /* TimeSynConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E582260422100327157 /* TimeSynConfig.mm */; };
- 1818A11E2260422300327157 /* AlarmMessageInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E5A2260422100327157 /* AlarmMessageInfo.m */; };
- 1818A11F2260422300327157 /* AlarmMessageConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E5C2260422100327157 /* AlarmMessageConfig.mm */; };
- 1818A1202260422300327157 /* HumanDetectionConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E602260422100327157 /* HumanDetectionConfig.mm */; };
- 1818A1212260422300327157 /* CommonConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E622260422100327157 /* CommonConfig.mm */; };
- 1818A1222260422300327157 /* CloudVideoConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E672260422100327157 /* CloudVideoConfig.mm */; };
- 1818A1232260422300327157 /* CLouldVideoResource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E692260422100327157 /* CLouldVideoResource.m */; };
- 1818A1242260422300327157 /* XMAlarmMsgResource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E6B2260422100327157 /* XMAlarmMsgResource.m */; };
- 1818A1252260422300327157 /* CloudPhotoConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E6C2260422100327157 /* CloudPhotoConfig.mm */; };
- 1818A1262260422300327157 /* CloudAbilityDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E6F2260422200327157 /* CloudAbilityDataSource.m */; };
- 1818A1272260422300327157 /* CloudAbilityConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E722260422200327157 /* CloudAbilityConfig.mm */; };
- 1818A1282260422300327157 /* EncodeConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E762260422200327157 /* EncodeConfig.mm */; };
- 1818A1292260422300327157 /* EncodeDataSourse.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E772260422200327157 /* EncodeDataSourse.m */; };
- 1818A12A2260422300327157 /* VodeoRotainDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E792260422200327157 /* VodeoRotainDataSource.m */; };
- 1818A12B2260422300327157 /* VideoRotainConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E7A2260422200327157 /* VideoRotainConfig.mm */; };
- 1818A12C2260422300327157 /* DataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E7F2260422200327157 /* DataSource.m */; };
- 1818A12D2260422300327157 /* Storage.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E802260422200327157 /* Storage.m */; };
- 1818A12E2260422300327157 /* StorageConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E812260422200327157 /* StorageConfig.mm */; };
- 1818A12F2260422300327157 /* SystemInfoConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E852260422200327157 /* SystemInfoConfig.mm */; };
- 1818A1302260422300327157 /* RecordConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E892260422200327157 /* RecordConfig.mm */; };
- 1818A1312260422300327157 /* RecordDataSourse.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E8B2260422200327157 /* RecordDataSourse.m */; };
- 1818A1322260422300327157 /* AnalyzeDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189E8E2260422200327157 /* AnalyzeDataSource.m */; };
- 1818A1332260422300327157 /* AnalyzeConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E902260422200327157 /* AnalyzeConfig.mm */; };
- 1818A1342260422300327157 /* AlarmPIRConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E932260422200327157 /* AlarmPIRConfig.mm */; };
- 1818A1352260422300327157 /* AlarmDetectConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E962260422200327157 /* AlarmDetectConfig.mm */; };
- 1818A1362260422300327157 /* PasswordConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E992260422200327157 /* PasswordConfig.mm */; };
- 1818A1372260422300327157 /* SystemFunctionConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189E9B2260422200327157 /* SystemFunctionConfig.mm */; };
- 1818A1382260422300327157 /* UpgradeDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EA02260422200327157 /* UpgradeDataSource.m */; };
- 1818A1392260422300327157 /* UpgradeConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EA12260422200327157 /* UpgradeConfig.mm */; };
- 1818A13A2260422300327157 /* PictureInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EA42260422200327157 /* PictureInfo.m */; };
- 1818A13B2260422300327157 /* PictureFileDownloadConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EA62260422200327157 /* PictureFileDownloadConfig.mm */; };
- 1818A13C2260422300327157 /* PictureFileConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EA82260422200327157 /* PictureFileConfig.mm */; };
- 1818A13D2260422300327157 /* TimeInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EAD2260422200327157 /* TimeInfo.m */; };
- 1818A13E2260422300327157 /* VideoFileConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EAF2260422200327157 /* VideoFileConfig.mm */; };
- 1818A13F2260422300327157 /* VideoFileDownloadConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EB02260422200327157 /* VideoFileDownloadConfig.mm */; };
- 1818A1402260422300327157 /* RecordInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EB12260422200327157 /* RecordInfo.m */; };
- 1818A1412260422300327157 /* BuzzerConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EB42260422200327157 /* BuzzerConfig.mm */; };
- 1818A1422260422300327157 /* ShutDownTimeConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EB72260422200327157 /* ShutDownTimeConfig.mm */; };
- 1818A1432260422300327157 /* WaterMarkConfig.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EBA2260422200327157 /* WaterMarkConfig.mm */; };
- 1818A1442260422300327157 /* XYShowAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EBC2260422200327157 /* XYShowAlertView.m */; };
- 1818A1452260422300327157 /* AlarmManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EC02260422200327157 /* AlarmManager.mm */; };
- 1818A1462260422300327157 /* UserAccountModel.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EC22260422200327157 /* UserAccountModel.mm */; };
- 1818A1472260422300327157 /* DeviceManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EC62260422200327157 /* DeviceManager.mm */; };
- 1818A1482260422300327157 /* MessageUI.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189ECA2260422200327157 /* MessageUI.mm */; };
- 1818A1492260422300327157 /* LanguageManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189ECC2260422200327157 /* LanguageManager.mm */; };
- 1818A14A2260422300327157 /* UIView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189ECF2260422200327157 /* UIView+Layout.m */; };
- 1818A14B2260422300327157 /* NSDate+TimeCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189ED62260422200327157 /* NSDate+TimeCategory.m */; };
- 1818A14C2260422300327157 /* NSString+Category.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189ED82260422200327157 /* NSString+Category.m */; };
- 1818A14D2260422300327157 /* NSString+Path.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EDB2260422200327157 /* NSString+Path.m */; };
- 1818A14E2260422300327157 /* NSString+Extention.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EDC2260422200327157 /* NSString+Extention.m */; };
- 1818A14F2260422300327157 /* MyStringManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EDD2260422200327157 /* MyStringManager.m */; };
- 1818A1502260422300327157 /* GTMNSString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EDE2260422200327157 /* GTMNSString+HTML.m */; };
- 1818A1512260422300327157 /* FileControl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EE12260422200327157 /* FileControl.mm */; };
- 1818A1522260422300327157 /* NSUserDefaultData.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EE42260422200327157 /* NSUserDefaultData.m */; };
- 1818A1532260422300327157 /* LoginShowControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EE62260422200327157 /* LoginShowControl.m */; };
- 1818A1542260422300327157 /* CommonControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189EE92260422200327157 /* CommonControl.m */; };
- 1818A1552260422300327157 /* Recode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EEF2260422200327157 /* Recode.mm */; };
- 1818A1562260422300327157 /* TalkBackControl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EF22260422200327157 /* TalkBackControl.mm */; };
- 1818A1572260422300327157 /* MediaPlaybackControl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EF42260422200327157 /* MediaPlaybackControl.mm */; };
- 1818A1582260422300327157 /* MediaplayerControl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189EF52260422200327157 /* MediaplayerControl.mm */; };
- 1818A1592260422300327157 /* PlayToolImage.plist in Resources */ = {isa = PBXBuildFile; fileRef = 18189EF82260422200327157 /* PlayToolImage.plist */; };
- 1818A15A2260422300327157 /* error.plist in Resources */ = {isa = PBXBuildFile; fileRef = 18189EF92260422200327157 /* error.plist */; };
- 1818A15B2260422300327157 /* icon_hide_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189EFB2260422200327157 /* icon_hide_sel.png */; };
- 1818A15C2260422300327157 /* press_talk_selected_en.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189EFD2260422200327157 /* press_talk_selected_en.png */; };
- 1818A15D2260422300327157 /* btn_SD.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189EFE2260422200327157 /* btn_SD.png */; };
- 1818A15E2260422300327157 /* icon_close.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189EFF2260422200327157 /* icon_close.png */; };
- 1818A15F2260422300327157 /* btn_control_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F002260422200327157 /* btn_control_normal.png */; };
- 1818A1602260422300327157 /* btn_HD_F.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F012260422200327157 /* btn_HD_F.png */; };
- 1818A1612260422300327157 /* record_temp_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F022260422200327157 /* record_temp_normal.png */; };
- 1818A1622260422300327157 /* btn_minus_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F032260422200327157 /* btn_minus_normal.png */; };
- 1818A1632260422300327157 /* btn_HD_E.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F042260422200327157 /* btn_HD_E.png */; };
- 1818A1642260422300327157 /* talk_unselect.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F052260422200327157 /* talk_unselect.png */; };
- 1818A1652260422300327157 /* btn_record.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F062260422200327157 /* btn_record.png */; };
- 1818A1662260422300327157 /* btn_voice_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F072260422200327157 /* btn_voice_normal.png */; };
- 1818A1672260422300327157 /* press_talk_selected_sp.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F082260422200327157 /* press_talk_selected_sp.png */; };
- 1818A1682260422300327157 /* btn_control_left.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F092260422200327157 /* btn_control_left.png */; };
- 1818A1692260422300327157 /* press_talk_en.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F0A2260422200327157 /* press_talk_en.png */; };
- 1818A16A2260422300327157 /* btn_stop.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F0B2260422200327157 /* btn_stop.png */; };
- 1818A16B2260422300327157 /* ic_alarm.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F0C2260422200327157 /* ic_alarm.png */; };
- 1818A16C2260422300327157 /* btn_stop_select.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F0D2260422200327157 /* btn_stop_select.png */; };
- 1818A16D2260422300327157 /* press_talk_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F0E2260422200327157 /* press_talk_selected.png */; };
- 1818A16E2260422300327157 /* ptz_unselect.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F0F2260422200327157 /* ptz_unselect.png */; };
- 1818A16F2260422300327157 /* btn_voice_selected.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F102260422200327157 /* btn_voice_selected.png */; };
- 1818A1702260422300327157 /* btn_control_up.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F112260422200327157 /* btn_control_up.png */; };
- 1818A1712260422300327157 /* press_talk_sp.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F122260422200327157 /* press_talk_sp.png */; };
- 1818A1722260422300327157 /* btn_tool_recording.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F132260422200327157 /* btn_tool_recording.png */; };
- 1818A1732260422300327157 /* btn_SD_F.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F142260422200327157 /* btn_SD_F.png */; };
- 1818A1742260422300327157 /* talk_select.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F152260422200327157 /* talk_select.png */; };
- 1818A1752260422300327157 /* btn_plus_highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F162260422200327157 /* btn_plus_highlighted.png */; };
- 1818A1762260422300327157 /* btn_SD_E.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F172260422200327157 /* btn_SD_E.png */; };
- 1818A1772260422300327157 /* btn_pause.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F182260422200327157 /* btn_pause.png */; };
- 1818A1782260422300327157 /* btn_pause_select.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F192260422200327157 /* btn_pause_select.png */; };
- 1818A1792260422300327157 /* btn_control_down.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F1A2260422200327157 /* btn_control_down.png */; };
- 1818A17A2260422300327157 /* Speed_Select.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F1B2260422200327157 /* Speed_Select.png */; };
- 1818A17B2260422300327157 /* VR_Wall_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F1D2260422200327157 /* VR_Wall_nor.png */; };
- 1818A17C2260422300327157 /* VR-cylinder_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F1E2260422200327157 /* VR-cylinder_sel.png */; };
- 1818A17D2260422300327157 /* VR_180_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F1F2260422200327157 /* VR_180_sel.png */; };
- 1818A17E2260422300327157 /* VR-Ceiling_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F202260422200327157 /* VR-Ceiling_nor.png */; };
- 1818A17F2260422300327157 /* VR-close_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F212260422200327157 /* VR-close_nor.png */; };
- 1818A1802260422300327157 /* VR-rectangle_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F222260422200327157 /* VR-rectangle_sel.png */; };
- 1818A1812260422300327157 /* VR-tow_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F232260422200327157 /* VR-tow_sel.png */; };
- 1818A1822260422300327157 /* VR-ball bowl_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F242260422200327157 /* VR-ball bowl_nor.png */; };
- 1818A1832260422300327157 /* VR_ball hat_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F252260422200327157 /* VR_ball hat_nor.png */; };
- 1818A1842260422300327157 /* VR_Ball_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F262260422200327157 /* VR_Ball_sel.png */; };
- 1818A1852260422300327157 /* VR-four_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F272260422200327157 /* VR-four_nor.png */; };
- 1818A1862260422300327157 /* 180_3R_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F282260422200327157 /* 180_3R_sel.png */; };
- 1818A1872260422300327157 /* VR-cylinder_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F292260422200327157 /* VR-cylinder_nor.png */; };
- 1818A1882260422300327157 /* VR_180_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F2A2260422200327157 /* VR_180_nor.png */; };
- 1818A1892260422300327157 /* VR-Ceiling_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F2B2260422200327157 /* VR-Ceiling_sel.png */; };
- 1818A18A2260422300327157 /* VR-rectangle_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F2C2260422200327157 /* VR-rectangle_nor.png */; };
- 1818A18B2260422300327157 /* VR_Wall_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F2D2260422200327157 /* VR_Wall_sel.png */; };
- 1818A18C2260422300327157 /* VR_Ball_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F2E2260422200327157 /* VR_Ball_nor.png */; };
- 1818A18D2260422300327157 /* VR-four_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F2F2260422200327157 /* VR-four_sel.png */; };
- 1818A18E2260422300327157 /* 180_3R_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F302260422200327157 /* 180_3R_nor.png */; };
- 1818A18F2260422300327157 /* VR-ball bowl_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F312260422200327157 /* VR-ball bowl_sel.png */; };
- 1818A1902260422300327157 /* VR-tow_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F322260422200327157 /* VR-tow_nor.png */; };
- 1818A1912260422300327157 /* 360VR-ins_default.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F332260422200327157 /* 360VR-ins_default.png */; };
- 1818A1922260422300327157 /* VR_ball hat_sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F342260422200327157 /* VR_ball hat_sel.png */; };
- 1818A1932260422300327157 /* press_talk.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F352260422200327157 /* press_talk.png */; };
- 1818A1942260422300327157 /* btn_minus_highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F362260422200327157 /* btn_minus_highlighted.png */; };
- 1818A1952260422300327157 /* btn_recording.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F372260422200327157 /* btn_recording.png */; };
- 1818A1962260422300327157 /* btn_plus_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F382260422200327157 /* btn_plus_normal.png */; };
- 1818A1972260422300327157 /* btn_HD.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F392260422200327157 /* btn_HD.png */; };
- 1818A1982260422300327157 /* btn_control_right.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F3A2260422200327157 /* btn_control_right.png */; };
- 1818A1992260422300327157 /* btn_camera_normal.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F3B2260422200327157 /* btn_camera_normal.png */; };
- 1818A19A2260422300327157 /* QRCode.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F3C2260422200327157 /* QRCode.png */; };
- 1818A19B2260422300327157 /* radar_search_sign.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F3D2260422200327157 /* radar_search_sign.png */; };
- 1818A19C2260422300327157 /* radar_search_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F3E2260422200327157 /* radar_search_bg.png */; };
- 1818A19D2260422300327157 /* sel.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F3F2260422200327157 /* sel.png */; };
- 1818A19E2260422300327157 /* icon_funsdk.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F402260422200327157 /* icon_funsdk.png */; };
- 1818A19F2260422300327157 /* icon_hide_nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F412260422200327157 /* icon_hide_nor.png */; };
- 1818A1A02260422300327157 /* ic_wake_green.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F432260422200327157 /* ic_wake_green.png */; };
- 1818A1A12260422300327157 /* offline.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F452260422200327157 /* offline.png */; };
- 1818A1A22260422300327157 /* sleepnotwakeup.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F472260422200327157 /* sleepnotwakeup.png */; };
- 1818A1A32260422300327157 /* Prepare_sleep.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F492260422200327157 /* Prepare_sleep.png */; };
- 1818A1A42260422300327157 /* online.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F4B2260422200327157 /* online.png */; };
- 1818A1A52260422300327157 /* ic_sleep.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F4D2260422200327157 /* ic_sleep.png */; };
- 1818A1A62260422300327157 /* sleepnotwakeup_zh.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F552260422200327157 /* sleepnotwakeup_zh.png */; };
- 1818A1A72260422300327157 /* nor.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F622260422200327157 /* nor.png */; };
- 1818A1A82260422300327157 /* xmjp_camera.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F642260422200327157 /* xmjp_camera.png */; };
- 1818A1A92260422300327157 /* xmjp_seye.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F652260422200327157 /* xmjp_seye.png */; };
- 1818A1AA2260422300327157 /* xmjp_mov.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F662260422200327157 /* xmjp_mov.png */; };
- 1818A1AB2260422300327157 /* xmjp_car.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F672260422200327157 /* xmjp_car.png */; };
- 1818A1AC2260422300327157 /* xmjp_socket.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F682260422200327157 /* xmjp_socket.png */; };
- 1818A1AD2260422300327157 /* xmjp_bulb.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F692260422200327157 /* xmjp_bulb.png */; };
- 1818A1AE2260422300327157 /* xmjp_fbulb.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F6A2260422200327157 /* xmjp_fbulb.png */; };
- 1818A1AF2260422300327157 /* xmjp_rotot.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F6B2260422200327157 /* xmjp_rotot.png */; };
- 1818A1B02260422300327157 /* xmjp_feye.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F6C2260422200327157 /* xmjp_feye.png */; };
- 1818A1B12260422300327157 /* xmjp_cloudbox_klok.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F6D2260422200327157 /* xmjp_cloudbox_klok.png */; };
- 1818A1B22260422300327157 /* xmjp_beye.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F6E2260422200327157 /* xmjp_beye.png */; };
- 1818A1B32260422300327157 /* xmjp_cloudbox.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F6F2260422200327157 /* xmjp_cloudbox.png */; };
- 1818A1B42260422300327157 /* xmjp_bob.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F702260422200327157 /* xmjp_bob.png */; };
- 1818A1B52260422300327157 /* xmjp_bulbsocket.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F712260422200327157 /* xmjp_bulbsocket.png */; };
- 1818A1B62260422300327157 /* Local_Settings.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F722260422200327157 /* Local_Settings.png */; };
- 1818A1B72260422300327157 /* phone2.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F732260422200327157 /* phone2.png */; };
- 1818A1B82260422300327157 /* new_back.png in Resources */ = {isa = PBXBuildFile; fileRef = 18189F742260422200327157 /* new_back.png */; };
- 1818A1B92260422300327157 /* libstdc++.6.0.9.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189F762260422200327157 /* libstdc++.6.0.9.tbd */; };
- 1818A1BA2260422300327157 /* libfisheye.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189F782260422200327157 /* libfisheye.a */; };
- 1818A1BB2260422300327157 /* libFSCalendar.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189F792260422200327157 /* libFSCalendar.a */; };
- 1818A1BC2260422300327157 /* SVProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189F7B2260422200327157 /* SVProgressHUD.m */; };
- 1818A1BD2260422300327157 /* SVProgressHUD.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 18189F7C2260422200327157 /* SVProgressHUD.bundle */; };
- 1818A1BE2260422300327157 /* XMNetInterface.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189F7E2260422200327157 /* XMNetInterface.framework */; };
- 1818A1BF2260422300327157 /* FunSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18189F7F2260422200327157 /* FunSDK.framework */; };
- 1818A1C02260422300327157 /* en.txt in Resources */ = {isa = PBXBuildFile; fileRef = 18189F812260422200327157 /* en.txt */; };
- 1818A1C12260422300327157 /* zh_CN.txt in Resources */ = {isa = PBXBuildFile; fileRef = 18189F822260422200327157 /* zh_CN.txt */; };
- 1818A1C22260422300327157 /* BaseViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189F852260422200327157 /* BaseViewController.mm */; };
- 1818A1C32260422300327157 /* ConfigControllerBase.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189F872260422200327157 /* ConfigControllerBase.mm */; };
- 1818A1C42260422300327157 /* FunMsgListener.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189F8A2260422200327157 /* FunMsgListener.mm */; };
- 1818A1C52260422300327157 /* SDKInitializeModel.mm in Sources */ = {isa = PBXBuildFile; fileRef = 18189F8C2260422200327157 /* SDKInitializeModel.mm */; };
- 1818A1C62260422300327157 /* TimeQuery.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189FD92260422200327157 /* TimeQuery.m */; };
- 1818A1C72260422300327157 /* DevicelistArchiveModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189FF62260422200327157 /* DevicelistArchiveModel.m */; };
- 1818A1C82260422300327157 /* ObSystemFunction.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189FFA2260422200327157 /* ObSystemFunction.m */; };
- 1818A1C92260422300327157 /* ObSysteminfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189FFB2260422200327157 /* ObSysteminfo.m */; };
- 1818A1CA2260422300327157 /* DeviceControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 18189FFD2260422200327157 /* DeviceControl.m */; };
- 1818A1CB2260422300327157 /* DeviceObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0002260422200327157 /* DeviceObject.m */; };
- 1818A1CC2260422300327157 /* ObjectCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0012260422200327157 /* ObjectCoder.m */; };
- 1818A1CD2260422300327157 /* ChannelObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0052260422200327157 /* ChannelObject.m */; };
- 1818A1CE2260422300327157 /* UpgradeDeviceViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A00C2260422200327157 /* UpgradeDeviceViewController.mm */; };
- 1818A1CF2260422300327157 /* ItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A00D2260422200327157 /* ItemViewController.m */; };
- 1818A1D02260422300327157 /* WaterMarkViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A00F2260422200327157 /* WaterMarkViewController.mm */; };
- 1818A1D12260422300327157 /* ShutDownTimeViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0122260422200327157 /* ShutDownTimeViewController.mm */; };
- 1818A1D22260422300327157 /* AlarmMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0172260422200327157 /* AlarmMessageCell.m */; };
- 1818A1D32260422300327157 /* AlarmMessageViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0182260422200327157 /* AlarmMessageViewController.mm */; };
- 1818A1D42260422300327157 /* AlarmMessagePicViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0192260422200327157 /* AlarmMessagePicViewController.m */; };
- 1818A1D52260422300327157 /* EncodeItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A01D2260422200327157 /* EncodeItemViewController.m */; };
- 1818A1D62260422300327157 /* EncodeViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A01E2260422200327157 /* EncodeViewController.mm */; };
- 1818A1D72260422300327157 /* EncodeConfigTableviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0202260422200327157 /* EncodeConfigTableviewCell.m */; };
- 1818A1D82260422300327157 /* HumanDetectionViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0252260422200327157 /* HumanDetectionViewController.mm */; };
- 1818A1D92260422300327157 /* PasswordView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0282260422200327157 /* PasswordView.m */; };
- 1818A1DA2260422300327157 /* PasswordViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A02A2260422200327157 /* PasswordViewController.mm */; };
- 1818A1DB2260422300327157 /* ItemTableviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A02C2260422200327157 /* ItemTableviewCell.m */; };
- 1818A1DC2260422300327157 /* SensorListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A02E2260422200327157 /* SensorListCell.m */; };
- 1818A1DD2260422300327157 /* SensorDeviceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0302260422200327157 /* SensorDeviceModel.m */; };
- 1818A1DE2260422300327157 /* CAAnimation+WAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0332260422200327157 /* CAAnimation+WAnimation.m */; };
- 1818A1DF2260422300327157 /* UIBarButtonItem+WZLBadge.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0382260422200327157 /* UIBarButtonItem+WZLBadge.m */; };
- 1818A1E02260422300327157 /* UITabBarItem+WZLBadge.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0392260422200327157 /* UITabBarItem+WZLBadge.m */; };
- 1818A1E12260422300327157 /* UIView+WZLBadge.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A03F2260422200327157 /* UIView+WZLBadge.m */; };
- 1818A1E22260422300327157 /* XMWallSwitchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0402260422200327157 /* XMWallSwitchView.m */; };
- 1818A1E32260422300327157 /* UIColor+Util.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0432260422200327157 /* UIColor+Util.m */; };
- 1818A1E42260422300327157 /* XMLinkWallSwitchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0472260422200327157 /* XMLinkWallSwitchCell.m */; };
- 1818A1E52260422300327157 /* SensorlistVCViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0492260422200327157 /* SensorlistVCViewController.mm */; };
- 1818A1E62260422300327157 /* AlarmConfigTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A04E2260422200327157 /* AlarmConfigTableViewCell.m */; };
- 1818A1E72260422300327157 /* AlarmDetectViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0502260422200327157 /* AlarmDetectViewController.mm */; };
- 1818A1E82260422300327157 /* AlarmLevelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0512260422200327157 /* AlarmLevelViewController.m */; };
- 1818A1E92260422300327157 /* DeviceConfigViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0522260422200327157 /* DeviceConfigViewController.mm */; };
- 1818A1EA2260422300327157 /* AnalyzerViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0552260422200327157 /* AnalyzerViewController.mm */; };
- 1818A1EB2260422300327157 /* RecordViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0572260422200327157 /* RecordViewController.mm */; };
- 1818A1EC2260422300327157 /* BuzzerViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A05B2260422200327157 /* BuzzerViewController.mm */; };
- 1818A1ED2260422300327157 /* EncodingFormatViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A05D2260422200327157 /* EncodingFormatViewController.mm */; };
- 1818A1EF2260422300327157 /* StorageViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0612260422200327157 /* StorageViewController.mm */; };
- 1818A1F02260422300327157 /* TimeSynViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0652260422200327157 /* TimeSynViewController.mm */; };
- 1818A1F12260422300327157 /* DeviceconfigTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0672260422200327157 /* DeviceconfigTableViewCell.m */; };
- 1818A1F22260422300327157 /* AboutDeviceViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A06A2260422200327157 /* AboutDeviceViewController.mm */; };
- 1818A1F32260422300327157 /* VideoFileViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A06D2260422200327157 /* VideoFileViewController.mm */; };
- 1818A1F42260422300327157 /* PictureFileViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A06E2260422200327157 /* PictureFileViewController.m */; };
- 1818A1F52260422300327157 /* MonthPictureViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0712260422200327157 /* MonthPictureViewController.mm */; };
- 1818A1F62260422300327157 /* PictureDownloadViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0742260422200327157 /* PictureDownloadViewController.mm */; };
- 1818A1F72260422300327157 /* PictureSearchViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0752260422200327157 /* PictureSearchViewController.mm */; };
- 1818A1F82260422300327157 /* ByFileViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A07A2260422200327157 /* ByFileViewController.mm */; };
- 1818A1F92260422300327157 /* DownloadViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A07B2260422200327157 /* DownloadViewController.mm */; };
- 1818A1FA2260422300327157 /* MonthFileViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A07E2260422200327157 /* MonthFileViewController.mm */; };
- 1818A1FB2260422300327157 /* ByTimeViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A07F2260422200327157 /* ByTimeViewController.mm */; };
- 1818A1FC2260422300327157 /* ParamViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0832260422200327157 /* ParamViewController.mm */; };
- 1818A1FD2260422300327157 /* CloudServerViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0852260422200327157 /* CloudServerViewController.mm */; };
- 1818A1FE2260422300327157 /* CloudAbilityViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0872260422200327157 /* CloudAbilityViewController.mm */; };
- 1818A1FF2260422300327157 /* CloudPhotoDownloadViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A08A2260422200327157 /* CloudPhotoDownloadViewController.mm */; };
- 1818A2002260422300327157 /* CloudphotoDayVController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A08C2260422200327157 /* CloudphotoDayVController.mm */; };
- 1818A2012260422300327157 /* CloudPhotoViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A08D2260422200327157 /* CloudPhotoViewController.mm */; };
- 1818A2022260422300327157 /* CloudVideoDownloadViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0922260422200327157 /* CloudVideoDownloadViewController.mm */; };
- 1818A2032260422300327157 /* CloudVideoDayViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0942260422200327157 /* CloudVideoDayViewController.mm */; };
- 1818A2042260422300327157 /* CloudVideoViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0952260422200327157 /* CloudVideoViewController.mm */; };
- 1818A2052260422300327157 /* MainViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0992260422200327157 /* MainViewController.mm */; };
- 1818A2062260422300327157 /* DeviceAddViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A09A2260422200327157 /* DeviceAddViewController.m */; };
- 1818A2072260422300327157 /* AccountViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A09B2260422200327157 /* AccountViewController.mm */; };
- 1818A2082260422300327157 /* CYGLKView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0A02260422200327157 /* CYGLKView.m */; };
- 1818A2092260422300327157 /* XMPlayerVC.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0A22260422200327157 /* XMPlayerVC.mm */; };
- 1818A20A2260422300327157 /* PhotosViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0A42260422200327157 /* PhotosViewController.mm */; };
- 1818A20B2260422300327157 /* DeviceListViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0A72260422200327157 /* DeviceListViewController.mm */; };
- 1818A20C2260422300327157 /* DeviceListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0AB2260422200327157 /* DeviceListTableViewCell.m */; };
- 1818A20D2260422300327157 /* DeviceInfoEditViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0AD2260422200327157 /* DeviceInfoEditViewController.mm */; };
- 1818A20E2260422300327157 /* FishPlayControl.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0AF2260422200327157 /* FishPlayControl.mm */; };
- 1818A20F2260422300327157 /* PlayViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0B12260422200327157 /* PlayViewController.mm */; };
- 1818A2102260422300327157 /* PlayCloudVideoViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0B22260422200327157 /* PlayCloudVideoViewController.mm */; };
- 1818A2112260422300327157 /* ProgressBackView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0B42260422200327157 /* ProgressBackView.mm */; };
- 1818A2122260422300327157 /* DateSelectView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0B52260422200327157 /* DateSelectView.m */; };
- 1818A2132260422300327157 /* MyProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0B92260422200327157 /* MyProgressView.m */; };
- 1818A2142260422300327157 /* PlayBackViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0BB2260422200327157 /* PlayBackViewController.mm */; };
- 1818A2152260422300327157 /* PlayFunctionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0BD2260422200327157 /* PlayFunctionView.m */; };
- 1818A2162260422300327157 /* PTZView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0C02260422200327157 /* PTZView.m */; };
- 1818A2172260422300327157 /* PlayMenuView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0C12260422200327157 /* PlayMenuView.m */; };
- 1818A2182260422300327157 /* PlayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0C22260422200327157 /* PlayView.m */; };
- 1818A2192260422300327157 /* TalkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0C42260422300327157 /* TalkView.m */; };
- 1818A21A2260422300327157 /* UILabelOutLined.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0CD2260422300327157 /* UILabelOutLined.m */; };
- 1818A21B2260422300327157 /* VRFunctionView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0D22260422300327157 /* VRFunctionView.mm */; };
- 1818A21C2260422300327157 /* FishEyeVideoVC.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0D32260422300327157 /* FishEyeVideoVC.mm */; };
- 1818A21D2260422300327157 /* VRGLViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0D42260422300327157 /* VRGLViewController.mm */; };
- 1818A21E2260422300327157 /* HardVRViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0DB2260422300327157 /* HardVRViewController.mm */; };
- 1818A21F2260422300327157 /* PrivacyPolicyVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0DE2260422300327157 /* PrivacyPolicyVC.m */; };
- 1818A2202260422300327157 /* PasswordSaveViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0DF2260422300327157 /* PasswordSaveViewController.m */; };
- 1818A2212260422300327157 /* UserInfoView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0E52260422300327157 /* UserInfoView.m */; };
- 1818A2222260422300327157 /* ForgetPasswordView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0E82260422300327157 /* ForgetPasswordView.m */; };
- 1818A2232260422300327157 /* ForgetPasswordViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0E92260422300327157 /* ForgetPasswordViewController.mm */; };
- 1818A2242260422300327157 /* ChangePasswordView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0EC2260422300327157 /* ChangePasswordView.m */; };
- 1818A2252260422300327157 /* UserInfoViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0EE2260422300327157 /* UserInfoViewController.mm */; };
- 1818A2262260422300327157 /* UserInputCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0F22260422300327157 /* UserInputCell.m */; };
- 1818A2272260422300327157 /* UserInfoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0F32260422300327157 /* UserInfoCell.m */; };
- 1818A2282260422300327157 /* UserBindView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0F62260422300327157 /* UserBindView.m */; };
- 1818A2292260422300327157 /* RegisterViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0F82260422300327157 /* RegisterViewController.mm */; };
- 1818A22A2260422300327157 /* UserBindViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0F92260422300327157 /* UserBindViewController.mm */; };
- 1818A22B2260422300327157 /* RegisterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0FC2260422300327157 /* RegisterView.m */; };
- 1818A22C2260422300327157 /* LoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1818A0FD2260422300327157 /* LoginViewController.xib */; };
- 1818A22D2260422300327157 /* LoginViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0FE2260422300327157 /* LoginViewController.mm */; };
- 1818A22E2260422300327157 /* ChangePasswordViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A0FF2260422300327157 /* ChangePasswordViewController.mm */; };
- 1818A22F2260422300327157 /* IPAddViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1032260422300327157 /* IPAddViewController.mm */; };
- 1818A2302260422300327157 /* APLoginConfigVC.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1042260422300327157 /* APLoginConfigVC.mm */; };
- 1818A2312260422300327157 /* SerialNumAddViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1052260422300327157 /* SerialNumAddViewController.mm */; };
- 1818A2322260422300327157 /* OriginalScaner.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1062260422300327157 /* OriginalScaner.mm */; };
- 1818A2332260422300327157 /* QuickConfigurationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A10E2260422300327157 /* QuickConfigurationView.m */; };
- 1818A2342260422300327157 /* QuickConfigurationViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A10F2260422300327157 /* QuickConfigurationViewController.mm */; };
- 1818A2352260422300327157 /* AddDeviceInputCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1112260422300327157 /* AddDeviceInputCell.m */; };
- 1818A2362260422300327157 /* SearchDeviceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1122260422300327157 /* SearchDeviceCell.m */; };
- 1818A2372260422300327157 /* LANSearchViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1152260422300327157 /* LANSearchViewController.mm */; };
- 1818A2382260422300327157 /* MyRadarView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1182260422300327157 /* MyRadarView.m */; };
- 1818A2392260422300327157 /* ScanAnimationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1818A1192260422300327157 /* ScanAnimationView.m */; };
- 1818A23B226042B500327157 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1818A23A226042B500327157 /* AdSupport.framework */; };
- C604BFF321DF33760001BC82 /* DeveceDetail_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C604BFF221DF33760001BC82 /* DeveceDetail_VC.m */; };
- C604BFF721DF43540001BC82 /* PlaceList_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C604BFF621DF43540001BC82 /* PlaceList_VC.m */; };
- C604BFFB21DF459B0001BC82 /* ManageDeveceList_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C604BFFA21DF459B0001BC82 /* ManageDeveceList_VC.m */; };
- C604C00321DF47CE0001BC82 /* FireAlarm_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C604C00221DF47CE0001BC82 /* FireAlarm_VC.m */; };
- C604C00721DF48840001BC82 /* PushManage_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C604C00621DF48840001BC82 /* PushManage_VC.m */; };
- C604C00B21DF48E60001BC82 /* ProblemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C604C00A21DF48E60001BC82 /* ProblemViewController.m */; };
- C604C00F21DF499B0001BC82 /* Service_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C604C00E21DF499B0001BC82 /* Service_VC.m */; };
- C604C01221DF674D0001BC82 /* CustomPlaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = C604C01121DF674D0001BC82 /* CustomPlaceView.m */; };
- C604C01821DF81DF0001BC82 /* DetailDeveceList_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C604C01721DF81DF0001BC82 /* DetailDeveceList_VC.m */; };
- C60E3F78225B1CCA003C1541 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = C60E3F77225B1CCA003C1541 /* MBProgressHUD.m */; };
- C60E3F8A225B3F36003C1541 /* CustomAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = C60E3F89225B3F36003C1541 /* CustomAlertView.m */; };
- C60F0C03223B4F26004446AA /* Protcol_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C60F0C02223B4F26004446AA /* Protcol_VC.m */; };
- C60F0C0F223B5104004446AA /* privacy_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C60F0C0E223B5104004446AA /* privacy_VC.m */; };
- C6114BBB225DA07E00D6BCE4 /* SXAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = C6114BB9225DA07C00D6BCE4 /* SXAlert.m */; };
- C6114BBD225DBAFC00D6BCE4 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6114BBC225DBAED00D6BCE4 /* QuartzCore.framework */; };
- C6114BC0225E105600D6BCE4 /* CheckMessage_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6114BBF225E105600D6BCE4 /* CheckMessage_VC.m */; };
- C6119B3921E2E996008B44BE /* SubmitInformation_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6119B3821E2E996008B44BE /* SubmitInformation_VC.m */; };
- C6119B4321E3477A008B44BE /* CommitMessage_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6119B4221E3477A008B44BE /* CommitMessage_VC.m */; };
- C615004F21D7083F00FEBA22 /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = C615004E21D7083F00FEBA22 /* AppDelegate.mm */; settings = {COMPILER_FLAGS = "-objc"; }; };
- C615005221D7083F00FEBA22 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C615005121D7083F00FEBA22 /* ViewController.m */; };
- C615005521D7083F00FEBA22 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C615005321D7083F00FEBA22 /* Main.storyboard */; };
- C615005D21D7083F00FEBA22 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = C615005C21D7083F00FEBA22 /* main.m */; };
- C615006721D7084000FEBA22 /* Haishenghai_masterTests.m in Sources */ = {isa = PBXBuildFile; fileRef = C615006621D7084000FEBA22 /* Haishenghai_masterTests.m */; };
- C615007221D7084000FEBA22 /* Haishenghai_masterUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = C615007121D7084000FEBA22 /* Haishenghai_masterUITests.m */; };
- C615008C21D70C5800FEBA22 /* BaseLogin_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C615008B21D70C5800FEBA22 /* BaseLogin_VC.m */; };
- C615009B21D720A500FEBA22 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C615009A21D720A400FEBA22 /* Assets.xcassets */; };
- C6184825224A2975006A586B /* FireNoticeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6184824224A2975006A586B /* FireNoticeModel.m */; };
- C6184830224B684E006A586B /* fireAlarm.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = C618482F224B684D006A586B /* fireAlarm.mp3 */; };
- C618E43721E0472500A65353 /* ZDYAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = C618E43621E0472500A65353 /* ZDYAlertView.m */; };
- C618E43A21E04F5E00A65353 /* DeveceTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C618E43921E04F5E00A65353 /* DeveceTableCell.m */; };
- C618E44021E05D9200A65353 /* TableheaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = C618E43F21E05D9200A65353 /* TableheaderView.m */; };
- C618E44321E0615400A65353 /* Contacts_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C618E44221E0615400A65353 /* Contacts_VC.m */; };
- C62678D821E0873A00F146BC /* MessageTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C62678D721E0873A00F146BC /* MessageTableCell.m */; };
- C62F19BF223C9561001696B2 /* UserRegister_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C62F19BE223C9561001696B2 /* UserRegister_VC.m */; };
- C62F19C1223C9579001696B2 /* UserLogin_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C62F19C0223C9579001696B2 /* UserLogin_VC.m */; };
- C62F19C4223CF825001696B2 /* troubleSiteModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C62F19C3223CF825001696B2 /* troubleSiteModel.m */; };
- C63D540D222A2C92002723EB /* Setting_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C63D540C222A2C92002723EB /* Setting_VC.m */; };
- C63F6BE621F2B0DD00868CE6 /* DetailTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C63F6BE521F2B0DD00868CE6 /* DetailTableViewCell.m */; };
- C640782F21E1FF580070B632 /* FireManage_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C640782E21E1FF580070B632 /* FireManage_VC.m */; };
- C6413D3C21E1A3BF00605186 /* Recorddetail_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6413D3B21E1A3BF00605186 /* Recorddetail_VC.m */; };
- C643407621EAD887006A5D72 /* PersonCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C643407521EAD887006A5D72 /* PersonCell.m */; };
- C6457D7421FAAB2D00CD6276 /* DeveceTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C6457D7321FAAB2D00CD6276 /* DeveceTableViewController.m */; };
- C6457D7721FAAB3F00CD6276 /* SiteTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C6457D7621FAAB3F00CD6276 /* SiteTableViewController.m */; };
- C6457D7D21FAFEB000CD6276 /* About_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6457D7C21FAFEB000CD6276 /* About_VC.m */; };
- C64701612223EC24009D2FCF /* BottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = C64701602223EC24009D2FCF /* BottomView.m */; };
- C6472CC221F6C2A600F5CD09 /* PlaceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6472CC121F6C2A600F5CD09 /* PlaceModel.m */; };
- C6472CC521F6E3D100F5CD09 /* deveceListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6472CC421F6E3D100F5CD09 /* deveceListModel.m */; };
- C6472CC821F71B5400F5CD09 /* uploadModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6472CC621F71B5300F5CD09 /* uploadModel.m */; };
- C6478F7621F5ABD1004BB536 /* deveceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6478F7521F5ABD1004BB536 /* deveceModel.m */; };
- C64F21512226586400DBD297 /* SelectBoxView.m in Sources */ = {isa = PBXBuildFile; fileRef = C64F21502226586400DBD297 /* SelectBoxView.m */; };
- C64FE3D421F4271000ACFCA1 /* EditLocationVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C64FE3D321F4271000ACFCA1 /* EditLocationVC.m */; };
- C65726DE21D8A10D0013E52F /* ResetPassword_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C65726DD21D8A10D0013E52F /* ResetPassword_VC.m */; };
- C65726E521D8ACAA0013E52F /* Person_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C65726E421D8ACAA0013E52F /* Person_VC.m */; };
- C65726E821D8ACF10013E52F /* Message_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C65726E721D8ACF10013E52F /* Message_VC.m */; };
- C65726EB21D8AD1F0013E52F /* DeveceList_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C65726EA21D8AD1F0013E52F /* DeveceList_VC.m */; };
- C6576FF82217A2A00022B990 /* contactModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6576FF52217A2A00022B990 /* contactModel.m */; };
- C6576FF92217A2A00022B990 /* troubleDeveceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C6576FF62217A2A00022B990 /* troubleDeveceModel.m */; };
- C6576FFC22182A6C0022B990 /* NSMutableDictionary+NullSaf.m in Sources */ = {isa = PBXBuildFile; fileRef = C6576FFB22182A6C0022B990 /* NSMutableDictionary+NullSaf.m */; };
- C65FCE4321DDE1E400CA21F8 /* popViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C65FCE4221DDE1E400CA21F8 /* popViewController.m */; };
- C65FCE4621DDF9C000CA21F8 /* AddDevece_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C65FCE4521DDF9C000CA21F8 /* AddDevece_VC.m */; };
- C65FCE6821DE1F7900CA21F8 /* CollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C65FCE6721DE1F7900CA21F8 /* CollectionViewCell.m */; };
- C65FCE7321DE225F00CA21F8 /* ScanViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C65FCE7221DE225F00CA21F8 /* ScanViewController.m */; };
- C6615DC321E9BA4F0067BF83 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DC221E9BA330067BF83 /* SystemConfiguration.framework */; };
- C6615DC521E9BA730067BF83 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DC421E9BA620067BF83 /* CoreTelephony.framework */; };
- C6615DC721E9BAC10067BF83 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DC621E9BAB70067BF83 /* Security.framework */; };
- C6615DC921E9BADB0067BF83 /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DC821E9BAD30067BF83 /* GLKit.framework */; };
- C6615DCB21E9BAEB0067BF83 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DCA21E9BAEB0067BF83 /* libz.tbd */; };
- C6615DCD21E9BAF90067BF83 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DCC21E9BAF90067BF83 /* libc++.tbd */; };
- C6615DD221E9BE350067BF83 /* AMap.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C6615DD121E9BE350067BF83 /* AMap.bundle */; };
- C6615DD521E9C6CD0067BF83 /* AMapSearchKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DD421E9C6CC0067BF83 /* AMapSearchKit.framework */; };
- C6615DD821E9C7520067BF83 /* AMapFoundationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DD621E9C74C0067BF83 /* AMapFoundationKit.framework */; };
- C6615DD921E9C7520067BF83 /* MAMapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DD721E9C7520067BF83 /* MAMapKit.framework */; };
- C6615DDB21E9CF170067BF83 /* AMapLocationKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DDA21E9CF170067BF83 /* AMapLocationKit.framework */; };
- C6615DDD21E9CFD60067BF83 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C6615DDC21E9CFC70067BF83 /* ExternalAccessory.framework */; };
- C668A3022238A63500F866B0 /* detatilDeviceModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C668A3012238A63500F866B0 /* detatilDeviceModel.m */; };
- C66E858E21EEEF17001997E0 /* popMenuView.m in Sources */ = {isa = PBXBuildFile; fileRef = C66E858C21EEEF16001997E0 /* popMenuView.m */; };
- C6834EBC21F9605500E2DA26 /* LeftTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C6834EBB21F9605500E2DA26 /* LeftTableCell.m */; };
- C6834EBF21F9607200E2DA26 /* RightTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C6834EBE21F9607200E2DA26 /* RightTableCell.m */; };
- C687A04B21E71905003485B6 /* PlaceDetail_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C687A04A21E71905003485B6 /* PlaceDetail_VC.m */; };
- C687A04E21E7380A003485B6 /* FireAlarmCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C687A04D21E7380A003485B6 /* FireAlarmCell.m */; };
- C687A05121E73DC2003485B6 /* DeveceListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C687A05021E73DC2003485B6 /* DeveceListCell.m */; };
- C687A05421E74685003485B6 /* PushManageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C687A05321E74685003485B6 /* PushManageCell.m */; };
- C6C071D42255D66900474188 /* DataSourceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C6C071D22255D66800474188 /* DataSourceManager.m */; };
- C6C071D72255EECF00474188 /* SitTabCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C6C071D62255EECE00474188 /* SitTabCell.m */; };
- C6C071D92255FE3200474188 /* THDatePickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = C6C071D82255FE3200474188 /* THDatePickerView.m */; };
- C6ED0E0A21DDBD580064FEAB /* Addplace_VC.m in Sources */ = {isa = PBXBuildFile; fileRef = C6ED0E0921DDBD580064FEAB /* Addplace_VC.m */; };
- C6F75F4321E4435E00D1B606 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C6F75F4221E4435E00D1B606 /* LaunchScreen.storyboard */; };
- E56AAE1437FDC705A2AE1E75 /* libPods-Haishenghai-master.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 057E4FF4BB19D559388E05C8 /* libPods-Haishenghai-master.a */; };
- /* End PBXBuildFile section */
- /* Begin PBXContainerItemProxy section */
- C615006321D7084000FEBA22 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = C615004221D7083F00FEBA22 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = C615004921D7083F00FEBA22;
- remoteInfo = "Haishenghai-master";
- };
- C615006E21D7084000FEBA22 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = C615004221D7083F00FEBA22 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = C615004921D7083F00FEBA22;
- remoteInfo = "Haishenghai-master";
- };
- /* End PBXContainerItemProxy section */
- /* Begin PBXFileReference section */
- 057E4FF4BB19D559388E05C8 /* libPods-Haishenghai-master.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Haishenghai-master.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 18189A46226022DB00327157 /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = System/Library/Frameworks/OpenAL.framework; sourceTree = SDKROOT; };
- 18189A47226022DB00327157 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
- 18189A4A226022ED00327157 /* libresolv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libresolv.tbd; path = usr/lib/libresolv.tbd; sourceTree = SDKROOT; };
- 18189A4C226022F600327157 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
- 18189A4E226022FD00327157 /* libbz2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libbz2.tbd; path = usr/lib/libbz2.tbd; sourceTree = SDKROOT; };
- 18189A502260232400327157 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
- 18189A512260232400327157 /* AVKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVKit.framework; path = System/Library/Frameworks/AVKit.framework; sourceTree = SDKROOT; };
- 18189A542260232F00327157 /* AssetsLibrary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = System/Library/Frameworks/AssetsLibrary.framework; sourceTree = SDKROOT; };
- 18189A562260233B00327157 /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
- 18189A572260233B00327157 /* UserNotificationsUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotificationsUI.framework; path = System/Library/Frameworks/UserNotificationsUI.framework; sourceTree = SDKROOT; };
- 18189A5A2260236200327157 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
- 18189A5C2260238600327157 /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
- 18189A5E2260239900327157 /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
- 18189A60226023B300327157 /* VideoToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VideoToolbox.framework; path = System/Library/Frameworks/VideoToolbox.framework; sourceTree = SDKROOT; };
- 18189A622260343900327157 /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
- 18189E522260422100327157 /* SystemResetConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemResetConfig.h; sourceTree = "<group>"; };
- 18189E532260422100327157 /* SystemResetConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SystemResetConfig.mm; sourceTree = "<group>"; };
- 18189E552260422100327157 /* TimeSynDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimeSynDataSource.m; sourceTree = "<group>"; };
- 18189E562260422100327157 /* TimeSynConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeSynConfig.h; sourceTree = "<group>"; };
- 18189E572260422100327157 /* TimeSynDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeSynDataSource.h; sourceTree = "<group>"; };
- 18189E582260422100327157 /* TimeSynConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TimeSynConfig.mm; sourceTree = "<group>"; };
- 18189E5A2260422100327157 /* AlarmMessageInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AlarmMessageInfo.m; sourceTree = "<group>"; };
- 18189E5B2260422100327157 /* AlarmMessageConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmMessageConfig.h; sourceTree = "<group>"; };
- 18189E5C2260422100327157 /* AlarmMessageConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AlarmMessageConfig.mm; sourceTree = "<group>"; };
- 18189E5D2260422100327157 /* AlarmMessageInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmMessageInfo.h; sourceTree = "<group>"; };
- 18189E5F2260422100327157 /* HumanDetectionConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HumanDetectionConfig.h; sourceTree = "<group>"; };
- 18189E602260422100327157 /* HumanDetectionConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = HumanDetectionConfig.mm; sourceTree = "<group>"; };
- 18189E622260422100327157 /* CommonConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CommonConfig.mm; sourceTree = "<group>"; };
- 18189E632260422100327157 /* CommonConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommonConfig.h; sourceTree = "<group>"; };
- 18189E662260422100327157 /* CLouldVideoResource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CLouldVideoResource.h; sourceTree = "<group>"; };
- 18189E672260422100327157 /* CloudVideoConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudVideoConfig.mm; sourceTree = "<group>"; };
- 18189E682260422100327157 /* CloudVideoConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudVideoConfig.h; sourceTree = "<group>"; };
- 18189E692260422100327157 /* CLouldVideoResource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CLouldVideoResource.m; sourceTree = "<group>"; };
- 18189E6B2260422100327157 /* XMAlarmMsgResource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMAlarmMsgResource.m; sourceTree = "<group>"; };
- 18189E6C2260422100327157 /* CloudPhotoConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudPhotoConfig.mm; sourceTree = "<group>"; };
- 18189E6D2260422200327157 /* XMAlarmMsgResource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMAlarmMsgResource.h; sourceTree = "<group>"; };
- 18189E6E2260422200327157 /* CloudPhotoConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudPhotoConfig.h; sourceTree = "<group>"; };
- 18189E6F2260422200327157 /* CloudAbilityDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CloudAbilityDataSource.m; sourceTree = "<group>"; };
- 18189E702260422200327157 /* CloudAbilityConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudAbilityConfig.h; sourceTree = "<group>"; };
- 18189E712260422200327157 /* CloudAbilityDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudAbilityDataSource.h; sourceTree = "<group>"; };
- 18189E722260422200327157 /* CloudAbilityConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudAbilityConfig.mm; sourceTree = "<group>"; };
- 18189E742260422200327157 /* EncodeConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeConfig.h; sourceTree = "<group>"; };
- 18189E752260422200327157 /* EncodeDataSourse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeDataSourse.h; sourceTree = "<group>"; };
- 18189E762260422200327157 /* EncodeConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = EncodeConfig.mm; sourceTree = "<group>"; };
- 18189E772260422200327157 /* EncodeDataSourse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EncodeDataSourse.m; sourceTree = "<group>"; };
- 18189E792260422200327157 /* VodeoRotainDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VodeoRotainDataSource.m; sourceTree = "<group>"; };
- 18189E7A2260422200327157 /* VideoRotainConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = VideoRotainConfig.mm; sourceTree = "<group>"; };
- 18189E7B2260422200327157 /* VideoRotainConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoRotainConfig.h; sourceTree = "<group>"; };
- 18189E7C2260422200327157 /* VodeoRotainDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VodeoRotainDataSource.h; sourceTree = "<group>"; };
- 18189E7E2260422200327157 /* StorageConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StorageConfig.h; sourceTree = "<group>"; };
- 18189E7F2260422200327157 /* DataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DataSource.m; sourceTree = "<group>"; };
- 18189E802260422200327157 /* Storage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Storage.m; sourceTree = "<group>"; };
- 18189E812260422200327157 /* StorageConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = StorageConfig.mm; sourceTree = "<group>"; };
- 18189E822260422200327157 /* Storage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Storage.h; sourceTree = "<group>"; };
- 18189E832260422200327157 /* DataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataSource.h; sourceTree = "<group>"; };
- 18189E852260422200327157 /* SystemInfoConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SystemInfoConfig.mm; sourceTree = "<group>"; };
- 18189E862260422200327157 /* SystemInfoConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemInfoConfig.h; sourceTree = "<group>"; };
- 18189E882260422200327157 /* RecordDataSourse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordDataSourse.h; sourceTree = "<group>"; };
- 18189E892260422200327157 /* RecordConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RecordConfig.mm; sourceTree = "<group>"; };
- 18189E8A2260422200327157 /* RecordConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordConfig.h; sourceTree = "<group>"; };
- 18189E8B2260422200327157 /* RecordDataSourse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecordDataSourse.m; sourceTree = "<group>"; };
- 18189E8D2260422200327157 /* AnalyzeDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnalyzeDataSource.h; sourceTree = "<group>"; };
- 18189E8E2260422200327157 /* AnalyzeDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnalyzeDataSource.m; sourceTree = "<group>"; };
- 18189E8F2260422200327157 /* AnalyzeConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnalyzeConfig.h; sourceTree = "<group>"; };
- 18189E902260422200327157 /* AnalyzeConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AnalyzeConfig.mm; sourceTree = "<group>"; };
- 18189E922260422200327157 /* AlarmPIRConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmPIRConfig.h; sourceTree = "<group>"; };
- 18189E932260422200327157 /* AlarmPIRConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AlarmPIRConfig.mm; sourceTree = "<group>"; };
- 18189E952260422200327157 /* AlarmDetectConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmDetectConfig.h; sourceTree = "<group>"; };
- 18189E962260422200327157 /* AlarmDetectConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AlarmDetectConfig.mm; sourceTree = "<group>"; };
- 18189E982260422200327157 /* PasswordConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordConfig.h; sourceTree = "<group>"; };
- 18189E992260422200327157 /* PasswordConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PasswordConfig.mm; sourceTree = "<group>"; };
- 18189E9B2260422200327157 /* SystemFunctionConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SystemFunctionConfig.mm; sourceTree = "<group>"; };
- 18189E9C2260422200327157 /* SystemFunctionConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemFunctionConfig.h; sourceTree = "<group>"; };
- 18189E9E2260422200327157 /* UpgradeConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UpgradeConfig.h; sourceTree = "<group>"; };
- 18189E9F2260422200327157 /* UpgradeDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UpgradeDataSource.h; sourceTree = "<group>"; };
- 18189EA02260422200327157 /* UpgradeDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UpgradeDataSource.m; sourceTree = "<group>"; };
- 18189EA12260422200327157 /* UpgradeConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = UpgradeConfig.mm; sourceTree = "<group>"; };
- 18189EA42260422200327157 /* PictureInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PictureInfo.m; sourceTree = "<group>"; };
- 18189EA52260422200327157 /* PictureFileConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureFileConfig.h; sourceTree = "<group>"; };
- 18189EA62260422200327157 /* PictureFileDownloadConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PictureFileDownloadConfig.mm; sourceTree = "<group>"; };
- 18189EA72260422200327157 /* PictureInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureInfo.h; sourceTree = "<group>"; };
- 18189EA82260422200327157 /* PictureFileConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PictureFileConfig.mm; sourceTree = "<group>"; };
- 18189EA92260422200327157 /* PictureFileDownloadConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureFileDownloadConfig.h; sourceTree = "<group>"; };
- 18189EAB2260422200327157 /* VideoFileDownloadConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoFileDownloadConfig.h; sourceTree = "<group>"; };
- 18189EAC2260422200327157 /* VideoFileConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoFileConfig.h; sourceTree = "<group>"; };
- 18189EAD2260422200327157 /* TimeInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimeInfo.m; sourceTree = "<group>"; };
- 18189EAE2260422200327157 /* RecordInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordInfo.h; sourceTree = "<group>"; };
- 18189EAF2260422200327157 /* VideoFileConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = VideoFileConfig.mm; sourceTree = "<group>"; };
- 18189EB02260422200327157 /* VideoFileDownloadConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = VideoFileDownloadConfig.mm; sourceTree = "<group>"; };
- 18189EB12260422200327157 /* RecordInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecordInfo.m; sourceTree = "<group>"; };
- 18189EB22260422200327157 /* TimeInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeInfo.h; sourceTree = "<group>"; };
- 18189EB42260422200327157 /* BuzzerConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = BuzzerConfig.mm; sourceTree = "<group>"; };
- 18189EB52260422200327157 /* BuzzerConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BuzzerConfig.h; sourceTree = "<group>"; };
- 18189EB72260422200327157 /* ShutDownTimeConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ShutDownTimeConfig.mm; sourceTree = "<group>"; };
- 18189EB82260422200327157 /* ShutDownTimeConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShutDownTimeConfig.h; sourceTree = "<group>"; };
- 18189EBA2260422200327157 /* WaterMarkConfig.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WaterMarkConfig.mm; sourceTree = "<group>"; };
- 18189EBB2260422200327157 /* WaterMarkConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WaterMarkConfig.h; sourceTree = "<group>"; };
- 18189EBC2260422200327157 /* XYShowAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XYShowAlertView.m; sourceTree = "<group>"; };
- 18189EBF2260422200327157 /* AlarmManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmManager.h; sourceTree = "<group>"; };
- 18189EC02260422200327157 /* AlarmManager.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AlarmManager.mm; sourceTree = "<group>"; };
- 18189EC22260422200327157 /* UserAccountModel.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = UserAccountModel.mm; sourceTree = "<group>"; };
- 18189EC32260422200327157 /* UserAccountModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserAccountModel.h; sourceTree = "<group>"; };
- 18189EC52260422200327157 /* DeviceManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceManager.h; sourceTree = "<group>"; };
- 18189EC62260422200327157 /* DeviceManager.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DeviceManager.mm; sourceTree = "<group>"; };
- 18189EC92260422200327157 /* MessageUI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageUI.h; sourceTree = "<group>"; };
- 18189ECA2260422200327157 /* MessageUI.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MessageUI.mm; sourceTree = "<group>"; };
- 18189ECC2260422200327157 /* LanguageManager.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = LanguageManager.mm; sourceTree = "<group>"; };
- 18189ECD2260422200327157 /* LanguageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LanguageManager.h; sourceTree = "<group>"; };
- 18189ECF2260422200327157 /* UIView+Layout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Layout.m"; sourceTree = "<group>"; };
- 18189ED02260422200327157 /* UIView+Layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Layout.h"; sourceTree = "<group>"; };
- 18189ED22260422200327157 /* NSString+Category.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Category.h"; sourceTree = "<group>"; };
- 18189ED32260422200327157 /* MyStringManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyStringManager.h; sourceTree = "<group>"; };
- 18189ED42260422200327157 /* NSString+Extention.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Extention.h"; sourceTree = "<group>"; };
- 18189ED52260422200327157 /* NSString+Path.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Path.h"; sourceTree = "<group>"; };
- 18189ED62260422200327157 /* NSDate+TimeCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+TimeCategory.m"; sourceTree = "<group>"; };
- 18189ED72260422200327157 /* GTMNSString+HTML.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GTMNSString+HTML.h"; sourceTree = "<group>"; };
- 18189ED82260422200327157 /* NSString+Category.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Category.m"; sourceTree = "<group>"; };
- 18189ED92260422200327157 /* GTMDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = "<group>"; };
- 18189EDA2260422200327157 /* NSDate+TimeCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+TimeCategory.h"; sourceTree = "<group>"; };
- 18189EDB2260422200327157 /* NSString+Path.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Path.m"; sourceTree = "<group>"; };
- 18189EDC2260422200327157 /* NSString+Extention.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Extention.m"; sourceTree = "<group>"; };
- 18189EDD2260422200327157 /* MyStringManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyStringManager.m; sourceTree = "<group>"; };
- 18189EDE2260422200327157 /* GTMNSString+HTML.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "GTMNSString+HTML.m"; sourceTree = "<group>"; };
- 18189EE02260422200327157 /* FileControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileControl.h; sourceTree = "<group>"; };
- 18189EE12260422200327157 /* FileControl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = FileControl.mm; sourceTree = "<group>"; };
- 18189EE32260422200327157 /* NSUserDefaultData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NSUserDefaultData.h; sourceTree = "<group>"; };
- 18189EE42260422200327157 /* NSUserDefaultData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NSUserDefaultData.m; sourceTree = "<group>"; };
- 18189EE62260422200327157 /* LoginShowControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginShowControl.m; sourceTree = "<group>"; };
- 18189EE72260422200327157 /* CommonControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommonControl.h; sourceTree = "<group>"; };
- 18189EE82260422200327157 /* LoginShowControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginShowControl.h; sourceTree = "<group>"; };
- 18189EE92260422200327157 /* CommonControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CommonControl.m; sourceTree = "<group>"; };
- 18189EEA2260422200327157 /* XYShowAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XYShowAlertView.h; sourceTree = "<group>"; };
- 18189EEC2260422200327157 /* MediaPlaybackControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaPlaybackControl.h; sourceTree = "<group>"; };
- 18189EED2260422200327157 /* VideoContentDefination.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoContentDefination.h; sourceTree = "<group>"; };
- 18189EEF2260422200327157 /* Recode.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = Recode.mm; sourceTree = "<group>"; };
- 18189EF02260422200327157 /* TalkBackControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TalkBackControl.h; sourceTree = "<group>"; };
- 18189EF12260422200327157 /* Recode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Recode.h; sourceTree = "<group>"; };
- 18189EF22260422200327157 /* TalkBackControl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TalkBackControl.mm; sourceTree = "<group>"; };
- 18189EF32260422200327157 /* MediaplayerControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaplayerControl.h; sourceTree = "<group>"; };
- 18189EF42260422200327157 /* MediaPlaybackControl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MediaPlaybackControl.mm; sourceTree = "<group>"; };
- 18189EF52260422200327157 /* MediaplayerControl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MediaplayerControl.mm; sourceTree = "<group>"; };
- 18189EF82260422200327157 /* PlayToolImage.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = PlayToolImage.plist; sourceTree = "<group>"; };
- 18189EF92260422200327157 /* error.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = error.plist; sourceTree = "<group>"; };
- 18189EFB2260422200327157 /* icon_hide_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_hide_sel.png; sourceTree = "<group>"; };
- 18189EFD2260422200327157 /* press_talk_selected_en.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = press_talk_selected_en.png; sourceTree = "<group>"; };
- 18189EFE2260422200327157 /* btn_SD.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_SD.png; sourceTree = "<group>"; };
- 18189EFF2260422200327157 /* icon_close.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_close.png; sourceTree = "<group>"; };
- 18189F002260422200327157 /* btn_control_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_control_normal.png; sourceTree = "<group>"; };
- 18189F012260422200327157 /* btn_HD_F.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_HD_F.png; sourceTree = "<group>"; };
- 18189F022260422200327157 /* record_temp_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = record_temp_normal.png; sourceTree = "<group>"; };
- 18189F032260422200327157 /* btn_minus_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_minus_normal.png; sourceTree = "<group>"; };
- 18189F042260422200327157 /* btn_HD_E.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_HD_E.png; sourceTree = "<group>"; };
- 18189F052260422200327157 /* talk_unselect.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = talk_unselect.png; sourceTree = "<group>"; };
- 18189F062260422200327157 /* btn_record.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_record.png; sourceTree = "<group>"; };
- 18189F072260422200327157 /* btn_voice_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_voice_normal.png; sourceTree = "<group>"; };
- 18189F082260422200327157 /* press_talk_selected_sp.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = press_talk_selected_sp.png; sourceTree = "<group>"; };
- 18189F092260422200327157 /* btn_control_left.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_control_left.png; sourceTree = "<group>"; };
- 18189F0A2260422200327157 /* press_talk_en.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = press_talk_en.png; sourceTree = "<group>"; };
- 18189F0B2260422200327157 /* btn_stop.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_stop.png; sourceTree = "<group>"; };
- 18189F0C2260422200327157 /* ic_alarm.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ic_alarm.png; sourceTree = "<group>"; };
- 18189F0D2260422200327157 /* btn_stop_select.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_stop_select.png; sourceTree = "<group>"; };
- 18189F0E2260422200327157 /* press_talk_selected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = press_talk_selected.png; sourceTree = "<group>"; };
- 18189F0F2260422200327157 /* ptz_unselect.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ptz_unselect.png; sourceTree = "<group>"; };
- 18189F102260422200327157 /* btn_voice_selected.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_voice_selected.png; sourceTree = "<group>"; };
- 18189F112260422200327157 /* btn_control_up.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_control_up.png; sourceTree = "<group>"; };
- 18189F122260422200327157 /* press_talk_sp.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = press_talk_sp.png; sourceTree = "<group>"; };
- 18189F132260422200327157 /* btn_tool_recording.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_tool_recording.png; sourceTree = "<group>"; };
- 18189F142260422200327157 /* btn_SD_F.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_SD_F.png; sourceTree = "<group>"; };
- 18189F152260422200327157 /* talk_select.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = talk_select.png; sourceTree = "<group>"; };
- 18189F162260422200327157 /* btn_plus_highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_plus_highlighted.png; sourceTree = "<group>"; };
- 18189F172260422200327157 /* btn_SD_E.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_SD_E.png; sourceTree = "<group>"; };
- 18189F182260422200327157 /* btn_pause.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_pause.png; sourceTree = "<group>"; };
- 18189F192260422200327157 /* btn_pause_select.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_pause_select.png; sourceTree = "<group>"; };
- 18189F1A2260422200327157 /* btn_control_down.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_control_down.png; sourceTree = "<group>"; };
- 18189F1B2260422200327157 /* Speed_Select.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Speed_Select.png; sourceTree = "<group>"; };
- 18189F1D2260422200327157 /* VR_Wall_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VR_Wall_nor.png; sourceTree = "<group>"; };
- 18189F1E2260422200327157 /* VR-cylinder_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-cylinder_sel.png"; sourceTree = "<group>"; };
- 18189F1F2260422200327157 /* VR_180_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VR_180_sel.png; sourceTree = "<group>"; };
- 18189F202260422200327157 /* VR-Ceiling_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-Ceiling_nor.png"; sourceTree = "<group>"; };
- 18189F212260422200327157 /* VR-close_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-close_nor.png"; sourceTree = "<group>"; };
- 18189F222260422200327157 /* VR-rectangle_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-rectangle_sel.png"; sourceTree = "<group>"; };
- 18189F232260422200327157 /* VR-tow_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-tow_sel.png"; sourceTree = "<group>"; };
- 18189F242260422200327157 /* VR-ball bowl_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-ball bowl_nor.png"; sourceTree = "<group>"; };
- 18189F252260422200327157 /* VR_ball hat_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR_ball hat_nor.png"; sourceTree = "<group>"; };
- 18189F262260422200327157 /* VR_Ball_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VR_Ball_sel.png; sourceTree = "<group>"; };
- 18189F272260422200327157 /* VR-four_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-four_nor.png"; sourceTree = "<group>"; };
- 18189F282260422200327157 /* 180_3R_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 180_3R_sel.png; sourceTree = "<group>"; };
- 18189F292260422200327157 /* VR-cylinder_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-cylinder_nor.png"; sourceTree = "<group>"; };
- 18189F2A2260422200327157 /* VR_180_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VR_180_nor.png; sourceTree = "<group>"; };
- 18189F2B2260422200327157 /* VR-Ceiling_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-Ceiling_sel.png"; sourceTree = "<group>"; };
- 18189F2C2260422200327157 /* VR-rectangle_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-rectangle_nor.png"; sourceTree = "<group>"; };
- 18189F2D2260422200327157 /* VR_Wall_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VR_Wall_sel.png; sourceTree = "<group>"; };
- 18189F2E2260422200327157 /* VR_Ball_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = VR_Ball_nor.png; sourceTree = "<group>"; };
- 18189F2F2260422200327157 /* VR-four_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-four_sel.png"; sourceTree = "<group>"; };
- 18189F302260422200327157 /* 180_3R_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = 180_3R_nor.png; sourceTree = "<group>"; };
- 18189F312260422200327157 /* VR-ball bowl_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-ball bowl_sel.png"; sourceTree = "<group>"; };
- 18189F322260422200327157 /* VR-tow_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR-tow_nor.png"; sourceTree = "<group>"; };
- 18189F332260422200327157 /* 360VR-ins_default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "360VR-ins_default.png"; sourceTree = "<group>"; };
- 18189F342260422200327157 /* VR_ball hat_sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "VR_ball hat_sel.png"; sourceTree = "<group>"; };
- 18189F352260422200327157 /* press_talk.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = press_talk.png; sourceTree = "<group>"; };
- 18189F362260422200327157 /* btn_minus_highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_minus_highlighted.png; sourceTree = "<group>"; };
- 18189F372260422200327157 /* btn_recording.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_recording.png; sourceTree = "<group>"; };
- 18189F382260422200327157 /* btn_plus_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_plus_normal.png; sourceTree = "<group>"; };
- 18189F392260422200327157 /* btn_HD.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_HD.png; sourceTree = "<group>"; };
- 18189F3A2260422200327157 /* btn_control_right.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_control_right.png; sourceTree = "<group>"; };
- 18189F3B2260422200327157 /* btn_camera_normal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = btn_camera_normal.png; sourceTree = "<group>"; };
- 18189F3C2260422200327157 /* QRCode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = QRCode.png; sourceTree = "<group>"; };
- 18189F3D2260422200327157 /* radar_search_sign.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radar_search_sign.png; sourceTree = "<group>"; };
- 18189F3E2260422200327157 /* radar_search_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = radar_search_bg.png; sourceTree = "<group>"; };
- 18189F3F2260422200327157 /* sel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sel.png; sourceTree = "<group>"; };
- 18189F402260422200327157 /* icon_funsdk.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_funsdk.png; sourceTree = "<group>"; };
- 18189F412260422200327157 /* icon_hide_nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = icon_hide_nor.png; sourceTree = "<group>"; };
- 18189F442260422200327157 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/ic_wake_green.png"; sourceTree = "<group>"; };
- 18189F462260422200327157 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/offline.png"; sourceTree = "<group>"; };
- 18189F482260422200327157 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/sleepnotwakeup.png"; sourceTree = "<group>"; };
- 18189F4A2260422200327157 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/Prepare_sleep.png"; sourceTree = "<group>"; };
- 18189F4C2260422200327157 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/online.png"; sourceTree = "<group>"; };
- 18189F4E2260422200327157 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/ic_sleep.png"; sourceTree = "<group>"; };
- 18189F4F2260422200327157 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = en.lproj/ic_wake_green.png; sourceTree = "<group>"; };
- 18189F502260422200327157 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = en.lproj/offline.png; sourceTree = "<group>"; };
- 18189F512260422200327157 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = en.lproj/sleepnotwakeup.png; sourceTree = "<group>"; };
- 18189F522260422200327157 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = en.lproj/Prepare_sleep.png; sourceTree = "<group>"; };
- 18189F532260422200327157 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = en.lproj/online.png; sourceTree = "<group>"; };
- 18189F542260422200327157 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = en.lproj/ic_sleep.png; sourceTree = "<group>"; };
- 18189F552260422200327157 /* sleepnotwakeup_zh.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sleepnotwakeup_zh.png; sourceTree = "<group>"; };
- 18189F562260422200327157 /* Base */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Base; path = Base.lproj/ic_wake_green.png; sourceTree = "<group>"; };
- 18189F572260422200327157 /* Base */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Base; path = Base.lproj/offline.png; sourceTree = "<group>"; };
- 18189F582260422200327157 /* Base */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Base; path = Base.lproj/sleepnotwakeup.png; sourceTree = "<group>"; };
- 18189F592260422200327157 /* Base */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Base; path = Base.lproj/Prepare_sleep.png; sourceTree = "<group>"; };
- 18189F5A2260422200327157 /* Base */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Base; path = Base.lproj/online.png; sourceTree = "<group>"; };
- 18189F5B2260422200327157 /* Base */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Base; path = Base.lproj/ic_sleep.png; sourceTree = "<group>"; };
- 18189F5C2260422200327157 /* zh-Hans-CN */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans-CN"; path = "zh-Hans-CN.lproj/ic_wake_green.png"; sourceTree = "<group>"; };
- 18189F5D2260422200327157 /* zh-Hans-CN */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans-CN"; path = "zh-Hans-CN.lproj/offline.png"; sourceTree = "<group>"; };
- 18189F5E2260422200327157 /* zh-Hans-CN */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans-CN"; path = "zh-Hans-CN.lproj/sleepnotwakeup.png"; sourceTree = "<group>"; };
- 18189F5F2260422200327157 /* zh-Hans-CN */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans-CN"; path = "zh-Hans-CN.lproj/Prepare_sleep.png"; sourceTree = "<group>"; };
- 18189F602260422200327157 /* zh-Hans-CN */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans-CN"; path = "zh-Hans-CN.lproj/online.png"; sourceTree = "<group>"; };
- 18189F612260422200327157 /* zh-Hans-CN */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans-CN"; path = "zh-Hans-CN.lproj/ic_sleep.png"; sourceTree = "<group>"; };
- 18189F622260422200327157 /* nor.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = nor.png; sourceTree = "<group>"; };
- 18189F642260422200327157 /* xmjp_camera.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_camera.png; sourceTree = "<group>"; };
- 18189F652260422200327157 /* xmjp_seye.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_seye.png; sourceTree = "<group>"; };
- 18189F662260422200327157 /* xmjp_mov.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_mov.png; sourceTree = "<group>"; };
- 18189F672260422200327157 /* xmjp_car.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_car.png; sourceTree = "<group>"; };
- 18189F682260422200327157 /* xmjp_socket.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_socket.png; sourceTree = "<group>"; };
- 18189F692260422200327157 /* xmjp_bulb.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_bulb.png; sourceTree = "<group>"; };
- 18189F6A2260422200327157 /* xmjp_fbulb.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_fbulb.png; sourceTree = "<group>"; };
- 18189F6B2260422200327157 /* xmjp_rotot.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_rotot.png; sourceTree = "<group>"; };
- 18189F6C2260422200327157 /* xmjp_feye.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_feye.png; sourceTree = "<group>"; };
- 18189F6D2260422200327157 /* xmjp_cloudbox_klok.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_cloudbox_klok.png; sourceTree = "<group>"; };
- 18189F6E2260422200327157 /* xmjp_beye.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_beye.png; sourceTree = "<group>"; };
- 18189F6F2260422200327157 /* xmjp_cloudbox.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_cloudbox.png; sourceTree = "<group>"; };
- 18189F702260422200327157 /* xmjp_bob.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_bob.png; sourceTree = "<group>"; };
- 18189F712260422200327157 /* xmjp_bulbsocket.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = xmjp_bulbsocket.png; sourceTree = "<group>"; };
- 18189F722260422200327157 /* Local_Settings.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Local_Settings.png; sourceTree = "<group>"; };
- 18189F732260422200327157 /* phone2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = phone2.png; sourceTree = "<group>"; };
- 18189F742260422200327157 /* new_back.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = new_back.png; sourceTree = "<group>"; };
- 18189F762260422200327157 /* libstdc++.6.0.9.tbd */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.text-based-dylib-definition"; path = "libstdc++.6.0.9.tbd"; sourceTree = "<group>"; };
- 18189F782260422200327157 /* libfisheye.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libfisheye.a; sourceTree = "<group>"; };
- 18189F792260422200327157 /* libFSCalendar.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libFSCalendar.a; sourceTree = "<group>"; };
- 18189F7A2260422200327157 /* SVProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVProgressHUD.h; sourceTree = "<group>"; };
- 18189F7B2260422200327157 /* SVProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SVProgressHUD.m; sourceTree = "<group>"; };
- 18189F7C2260422200327157 /* SVProgressHUD.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = SVProgressHUD.bundle; sourceTree = "<group>"; };
- 18189F7E2260422200327157 /* XMNetInterface.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = XMNetInterface.framework; sourceTree = "<group>"; };
- 18189F7F2260422200327157 /* FunSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = FunSDK.framework; sourceTree = "<group>"; };
- 18189F812260422200327157 /* en.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = en.txt; sourceTree = "<group>"; };
- 18189F822260422200327157 /* zh_CN.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = zh_CN.txt; sourceTree = "<group>"; };
- 18189F852260422200327157 /* BaseViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = BaseViewController.mm; sourceTree = "<group>"; };
- 18189F862260422200327157 /* SDKInitializeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDKInitializeModel.h; sourceTree = "<group>"; };
- 18189F872260422200327157 /* ConfigControllerBase.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ConfigControllerBase.mm; sourceTree = "<group>"; };
- 18189F882260422200327157 /* FunMsgListener.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FunMsgListener.h; sourceTree = "<group>"; };
- 18189F892260422200327157 /* ConfigControllerBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ConfigControllerBase.h; sourceTree = "<group>"; };
- 18189F8A2260422200327157 /* FunMsgListener.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = FunMsgListener.mm; sourceTree = "<group>"; };
- 18189F8B2260422200327157 /* BaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseViewController.h; sourceTree = "<group>"; };
- 18189F8C2260422200327157 /* SDKInitializeModel.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SDKInitializeModel.mm; sourceTree = "<group>"; };
- 18189F8F2260422200327157 /* OPSCalendar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OPSCalendar.h; sourceTree = "<group>"; };
- 18189F912260422200327157 /* PirTimeSectionTwo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PirTimeSectionTwo.h; sourceTree = "<group>"; };
- 18189F922260422200327157 /* Alarm_PIR.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Alarm_PIR.h; sourceTree = "<group>"; };
- 18189F932260422200327157 /* PirTimeSection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PirTimeSection.h; sourceTree = "<group>"; };
- 18189F942260422200327157 /* PirTimeSectionOne.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PirTimeSectionOne.h; sourceTree = "<group>"; };
- 18189F962260422200327157 /* ExtRecord.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExtRecord.h; sourceTree = "<group>"; };
- 18189F972260422200327157 /* SupportExtRecord.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SupportExtRecord.h; sourceTree = "<group>"; };
- 18189F982260422200327157 /* Record.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Record.h; sourceTree = "<group>"; };
- 18189F9A2260422200327157 /* Detect_HumanDetectionDVR.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Detect_HumanDetectionDVR.h; sourceTree = "<group>"; };
- 18189F9C2260422200327157 /* OtherFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OtherFunction.h; sourceTree = "<group>"; };
- 18189F9D2260422200327157 /* CommFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommFunction.h; sourceTree = "<group>"; };
- 18189F9E2260422200327157 /* SystemFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemFunction.h; sourceTree = "<group>"; };
- 18189F9F2260422200327157 /* EncodeFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeFunction.h; sourceTree = "<group>"; };
- 18189FA02260422200327157 /* MobileDVR.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MobileDVR.h; sourceTree = "<group>"; };
- 18189FA12260422200327157 /* AlarmFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmFunction.h; sourceTree = "<group>"; };
- 18189FA22260422200327157 /* InputMethod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InputMethod.h; sourceTree = "<group>"; };
- 18189FA32260422200327157 /* NetServerFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetServerFunction.h; sourceTree = "<group>"; };
- 18189FA42260422200327157 /* TipShow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TipShow.h; sourceTree = "<group>"; };
- 18189FA52260422200327157 /* PreviewFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PreviewFunction.h; sourceTree = "<group>"; };
- 18189FA72260422200327157 /* NetUse_DigitalAbility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetUse_DigitalAbility.h; sourceTree = "<group>"; };
- 18189FA82260422200327157 /* DSTStart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DSTStart.h; sourceTree = "<group>"; };
- 18189FA92260422200327157 /* NetUse_DigitalEncode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetUse_DigitalEncode.h; sourceTree = "<group>"; };
- 18189FAA2260422200327157 /* EncodeCapability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeCapability.h; sourceTree = "<group>"; };
- 18189FAB2260422200327157 /* CombEncodeInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CombEncodeInfo.h; sourceTree = "<group>"; };
- 18189FAC2260422200327157 /* Audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Audio.h; sourceTree = "<group>"; };
- 18189FAD2260422200327157 /* MainFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainFormat.h; sourceTree = "<group>"; };
- 18189FAE2260422200327157 /* Simplify_Encode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Simplify_Encode.h; sourceTree = "<group>"; };
- 18189FAF2260422200327157 /* EncodeInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeInfo.h; sourceTree = "<group>"; };
- 18189FB02260422200327157 /* Video.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Video.h; sourceTree = "<group>"; };
- 18189FB12260422200327157 /* DSTEnd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DSTEnd.h; sourceTree = "<group>"; };
- 18189FB22260422200327157 /* ability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ability.h; sourceTree = "<group>"; };
- 18189FB32260422200327157 /* General_Location.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = General_Location.h; sourceTree = "<group>"; };
- 18189FB42260422200327157 /* ExtraFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExtraFormat.h; sourceTree = "<group>"; };
- 18189FB62260422200327157 /* GainParam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GainParam.h; sourceTree = "<group>"; };
- 18189FB72260422200327157 /* Camera_Param.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Camera_Param.h; sourceTree = "<group>"; };
- 18189FB82260422200327157 /* ExposureParam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExposureParam.h; sourceTree = "<group>"; };
- 18189FBA2260422200327157 /* OPStorageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OPStorageManager.h; sourceTree = "<group>"; };
- 18189FBB2260422200327157 /* StorageGlobal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StorageGlobal.h; sourceTree = "<group>"; };
- 18189FBC2260422200327157 /* Partition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Partition.h; sourceTree = "<group>"; };
- 18189FBD2260422200327157 /* StorageInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StorageInfo.h; sourceTree = "<group>"; };
- 18189FBF2260422200327157 /* NetWork_Wifi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetWork_Wifi.h; sourceTree = "<group>"; };
- 18189FC02260422200327157 /* NetWork_NetDHCP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetWork_NetDHCP.h; sourceTree = "<group>"; };
- 18189FC22260422200327157 /* SystemInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemInfo.h; sourceTree = "<group>"; };
- 18189FC32260422200327157 /* OPDefaultConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OPDefaultConfig.h; sourceTree = "<group>"; };
- 18189FC42260422200327157 /* SystemFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemFunction.h; sourceTree = "<group>"; };
- 18189FC52260422200327157 /* General_General.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = General_General.h; sourceTree = "<group>"; };
- 18189FC72260422200327157 /* AVEnc_VideoWidget.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AVEnc_VideoWidget.h; sourceTree = "<group>"; };
- 18189FC82260422200327157 /* ChannelTitle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChannelTitle.h; sourceTree = "<group>"; };
- 18189FC92260422200327157 /* TimeTitleAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeTitleAttribute.h; sourceTree = "<group>"; };
- 18189FCA2260422200327157 /* ChannelTitleAttribute.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChannelTitleAttribute.h; sourceTree = "<group>"; };
- 18189FCB2260422200327157 /* fVideo_OsdLogo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fVideo_OsdLogo.h; sourceTree = "<group>"; };
- 18189FCD2260422200327157 /* ModifyPassword.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPassword.h; sourceTree = "<group>"; };
- 18189FCF2260422200327157 /* Detect_MotionDetect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Detect_MotionDetect.h; sourceTree = "<group>"; };
- 18189FD02260422200327157 /* Detect_LossDetect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Detect_LossDetect.h; sourceTree = "<group>"; };
- 18189FD12260422200327157 /* Detect_BlindDetect.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Detect_BlindDetect.h; sourceTree = "<group>"; };
- 18189FD32260422200327157 /* Park_AdjustInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Park_AdjustInfo.h; sourceTree = "<group>"; };
- 18189FD42260422200327157 /* Points.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Points.h; sourceTree = "<group>"; };
- 18189FD52260422200327157 /* CarInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CarInfo.h; sourceTree = "<group>"; };
- 18189FD72260422200327157 /* System_TimeZone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = System_TimeZone.h; sourceTree = "<group>"; };
- 18189FD82260422200327157 /* TimeQuery.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeQuery.h; sourceTree = "<group>"; };
- 18189FD92260422200327157 /* TimeQuery.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TimeQuery.m; sourceTree = "<group>"; };
- 18189FDB2260422200327157 /* TripWireRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TripWireRule.h; sourceTree = "<group>"; };
- 18189FDC2260422200327157 /* PerimeterRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PerimeterRule.h; sourceTree = "<group>"; };
- 18189FDD2260422200327157 /* RuleConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RuleConfig.h; sourceTree = "<group>"; };
- 18189FDE2260422200327157 /* EventHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EventHandler.h; sourceTree = "<group>"; };
- 18189FDF2260422200327157 /* TripWire.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TripWire.h; sourceTree = "<group>"; };
- 18189FE02260422200327157 /* Boundary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Boundary.h; sourceTree = "<group>"; };
- 18189FE12260422200327157 /* Detect_Analyze.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Detect_Analyze.h; sourceTree = "<group>"; };
- 18189FE22260422200327157 /* StolenRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StolenRule.h; sourceTree = "<group>"; };
- 18189FE32260422200327157 /* SubRgC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SubRgC.h; sourceTree = "<group>"; };
- 18189FE42260422200327157 /* SpclRgs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SpclRgs.h; sourceTree = "<group>"; };
- 18189FE52260422200327157 /* AbandumRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AbandumRule.h; sourceTree = "<group>"; };
- 18189FE62260422200327157 /* StartPt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StartPt.h; sourceTree = "<group>"; };
- 18189FE72260422200327157 /* LimitPara.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LimitPara.h; sourceTree = "<group>"; };
- 18189FE82260422200327157 /* PEARule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PEARule.h; sourceTree = "<group>"; };
- 18189FE92260422200327157 /* SubRgB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SubRgB.h; sourceTree = "<group>"; };
- 18189FEA2260422200327157 /* OscRg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OscRg.h; sourceTree = "<group>"; };
- 18189FEB2260422200327157 /* CPCRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CPCRule.h; sourceTree = "<group>"; };
- 18189FEC2260422200327157 /* NoParkingRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoParkingRule.h; sourceTree = "<group>"; };
- 18189FED2260422200327157 /* SubRgA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SubRgA.h; sourceTree = "<group>"; };
- 18189FEE2260422200327157 /* Line.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Line.h; sourceTree = "<group>"; };
- 18189FEF2260422200327157 /* Points.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Points.h; sourceTree = "<group>"; };
- 18189FF02260422200327157 /* EndPt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EndPt.h; sourceTree = "<group>"; };
- 18189FF12260422200327157 /* Limit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Limit.h; sourceTree = "<group>"; };
- 18189FF22260422200327157 /* AVDRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AVDRule.h; sourceTree = "<group>"; };
- 18189FF32260422200327157 /* OscPara.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OscPara.h; sourceTree = "<group>"; };
- 18189FF42260422200327157 /* OSCRule.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OSCRule.h; sourceTree = "<group>"; };
- 18189FF62260422200327157 /* DevicelistArchiveModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DevicelistArchiveModel.m; sourceTree = "<group>"; };
- 18189FF72260422200327157 /* DeviceControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceControl.h; sourceTree = "<group>"; };
- 18189FF92260422200327157 /* ObSysteminfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ObSysteminfo.h; sourceTree = "<group>"; };
- 18189FFA2260422200327157 /* ObSystemFunction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ObSystemFunction.m; sourceTree = "<group>"; };
- 18189FFB2260422200327157 /* ObSysteminfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ObSysteminfo.m; sourceTree = "<group>"; };
- 18189FFC2260422200327157 /* ObSystemFunction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ObSystemFunction.h; sourceTree = "<group>"; };
- 18189FFD2260422200327157 /* DeviceControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceControl.m; sourceTree = "<group>"; };
- 18189FFE2260422200327157 /* DevicelistArchiveModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DevicelistArchiveModel.h; sourceTree = "<group>"; };
- 1818A0002260422200327157 /* DeviceObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceObject.m; sourceTree = "<group>"; };
- 1818A0012260422200327157 /* ObjectCoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ObjectCoder.m; sourceTree = "<group>"; };
- 1818A0022260422200327157 /* ChannelObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChannelObject.h; sourceTree = "<group>"; };
- 1818A0032260422200327157 /* ObjectCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ObjectCoder.h; sourceTree = "<group>"; };
- 1818A0042260422200327157 /* DeviceObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceObject.h; sourceTree = "<group>"; };
- 1818A0052260422200327157 /* ChannelObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChannelObject.m; sourceTree = "<group>"; };
- 1818A0082260422200327157 /* DeviceConfigViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceConfigViewController.h; sourceTree = "<group>"; };
- 1818A0092260422200327157 /* DeviceconfigTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceconfigTableViewCell.h; sourceTree = "<group>"; };
- 1818A00B2260422200327157 /* UpgradeDeviceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UpgradeDeviceViewController.h; sourceTree = "<group>"; };
- 1818A00C2260422200327157 /* UpgradeDeviceViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = UpgradeDeviceViewController.mm; sourceTree = "<group>"; };
- 1818A00D2260422200327157 /* ItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ItemViewController.m; sourceTree = "<group>"; };
- 1818A00F2260422200327157 /* WaterMarkViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WaterMarkViewController.mm; sourceTree = "<group>"; };
- 1818A0102260422200327157 /* WaterMarkViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WaterMarkViewController.h; sourceTree = "<group>"; };
- 1818A0122260422200327157 /* ShutDownTimeViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ShutDownTimeViewController.mm; sourceTree = "<group>"; };
- 1818A0132260422200327157 /* ShutDownTimeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShutDownTimeViewController.h; sourceTree = "<group>"; };
- 1818A0162260422200327157 /* AlarmMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmMessageCell.h; sourceTree = "<group>"; };
- 1818A0172260422200327157 /* AlarmMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AlarmMessageCell.m; sourceTree = "<group>"; };
- 1818A0182260422200327157 /* AlarmMessageViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AlarmMessageViewController.mm; sourceTree = "<group>"; };
- 1818A0192260422200327157 /* AlarmMessagePicViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AlarmMessagePicViewController.m; sourceTree = "<group>"; };
- 1818A01A2260422200327157 /* AlarmMessagePicViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmMessagePicViewController.h; sourceTree = "<group>"; };
- 1818A01B2260422200327157 /* AlarmMessageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmMessageViewController.h; sourceTree = "<group>"; };
- 1818A01D2260422200327157 /* EncodeItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EncodeItemViewController.m; sourceTree = "<group>"; };
- 1818A01E2260422200327157 /* EncodeViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = EncodeViewController.mm; sourceTree = "<group>"; };
- 1818A0202260422200327157 /* EncodeConfigTableviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EncodeConfigTableviewCell.m; sourceTree = "<group>"; };
- 1818A0212260422200327157 /* EncodeConfigTableviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeConfigTableviewCell.h; sourceTree = "<group>"; };
- 1818A0222260422200327157 /* EncodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeViewController.h; sourceTree = "<group>"; };
- 1818A0232260422200327157 /* EncodeItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodeItemViewController.h; sourceTree = "<group>"; };
- 1818A0252260422200327157 /* HumanDetectionViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = HumanDetectionViewController.mm; sourceTree = "<group>"; };
- 1818A0262260422200327157 /* HumanDetectionViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HumanDetectionViewController.h; sourceTree = "<group>"; };
- 1818A0282260422200327157 /* PasswordView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PasswordView.m; sourceTree = "<group>"; };
- 1818A0292260422200327157 /* PasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordViewController.h; sourceTree = "<group>"; };
- 1818A02A2260422200327157 /* PasswordViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PasswordViewController.mm; sourceTree = "<group>"; };
- 1818A02B2260422200327157 /* PasswordView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordView.h; sourceTree = "<group>"; };
- 1818A02C2260422200327157 /* ItemTableviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ItemTableviewCell.m; sourceTree = "<group>"; };
- 1818A02E2260422200327157 /* SensorListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SensorListCell.m; sourceTree = "<group>"; };
- 1818A02F2260422200327157 /* UIColor+Util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Util.h"; sourceTree = "<group>"; };
- 1818A0302260422200327157 /* SensorDeviceModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SensorDeviceModel.m; sourceTree = "<group>"; };
- 1818A0332260422200327157 /* CAAnimation+WAnimation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CAAnimation+WAnimation.m"; sourceTree = "<group>"; };
- 1818A0342260422200327157 /* CAAnimation+WAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CAAnimation+WAnimation.h"; sourceTree = "<group>"; };
- 1818A0362260422200327157 /* UIBarButtonItem+WZLBadge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIBarButtonItem+WZLBadge.h"; sourceTree = "<group>"; };
- 1818A0372260422200327157 /* UITabBarItem+WZLBadge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITabBarItem+WZLBadge.h"; sourceTree = "<group>"; };
- 1818A0382260422200327157 /* UIBarButtonItem+WZLBadge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIBarButtonItem+WZLBadge.m"; sourceTree = "<group>"; };
- 1818A0392260422200327157 /* UITabBarItem+WZLBadge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITabBarItem+WZLBadge.m"; sourceTree = "<group>"; };
- 1818A03A2260422200327157 /* WZLBadgeImport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WZLBadgeImport.h; sourceTree = "<group>"; };
- 1818A03C2260422200327157 /* WZLBadgeProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WZLBadgeProtocol.h; sourceTree = "<group>"; };
- 1818A03E2260422200327157 /* UIView+WZLBadge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+WZLBadge.h"; sourceTree = "<group>"; };
- 1818A03F2260422200327157 /* UIView+WZLBadge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+WZLBadge.m"; sourceTree = "<group>"; };
- 1818A0402260422200327157 /* XMWallSwitchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMWallSwitchView.m; sourceTree = "<group>"; };
- 1818A0412260422200327157 /* XMLinkWallSwitchCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMLinkWallSwitchCell.h; sourceTree = "<group>"; };
- 1818A0422260422200327157 /* SensorListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SensorListCell.h; sourceTree = "<group>"; };
- 1818A0432260422200327157 /* UIColor+Util.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Util.m"; sourceTree = "<group>"; };
- 1818A0442260422200327157 /* SensorlistVCViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SensorlistVCViewController.h; sourceTree = "<group>"; };
- 1818A0452260422200327157 /* SensorDeviceModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SensorDeviceModel.h; sourceTree = "<group>"; };
- 1818A0462260422200327157 /* SensorInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SensorInfo.h; sourceTree = "<group>"; };
- 1818A0472260422200327157 /* XMLinkWallSwitchCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = XMLinkWallSwitchCell.m; sourceTree = "<group>"; };
- 1818A0482260422200327157 /* XMWallSwitchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMWallSwitchView.h; sourceTree = "<group>"; };
- 1818A0492260422200327157 /* SensorlistVCViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SensorlistVCViewController.mm; sourceTree = "<group>"; };
- 1818A04B2260422200327157 /* AlarmLevelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmLevelViewController.h; sourceTree = "<group>"; };
- 1818A04C2260422200327157 /* AlarmDetectViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmDetectViewController.h; sourceTree = "<group>"; };
- 1818A04E2260422200327157 /* AlarmConfigTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AlarmConfigTableViewCell.m; sourceTree = "<group>"; };
- 1818A04F2260422200327157 /* AlarmConfigTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AlarmConfigTableViewCell.h; sourceTree = "<group>"; };
- 1818A0502260422200327157 /* AlarmDetectViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AlarmDetectViewController.mm; sourceTree = "<group>"; };
- 1818A0512260422200327157 /* AlarmLevelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AlarmLevelViewController.m; sourceTree = "<group>"; };
- 1818A0522260422200327157 /* DeviceConfigViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DeviceConfigViewController.mm; sourceTree = "<group>"; };
- 1818A0542260422200327157 /* AnalyzerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnalyzerViewController.h; sourceTree = "<group>"; };
- 1818A0552260422200327157 /* AnalyzerViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AnalyzerViewController.mm; sourceTree = "<group>"; };
- 1818A0572260422200327157 /* RecordViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RecordViewController.mm; sourceTree = "<group>"; };
- 1818A0582260422200327157 /* RecordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordViewController.h; sourceTree = "<group>"; };
- 1818A05A2260422200327157 /* BuzzerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BuzzerViewController.h; sourceTree = "<group>"; };
- 1818A05B2260422200327157 /* BuzzerViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = BuzzerViewController.mm; sourceTree = "<group>"; };
- 1818A05D2260422200327157 /* EncodingFormatViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = EncodingFormatViewController.mm; sourceTree = "<group>"; };
- 1818A05F2260422200327157 /* EncodingFormatViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EncodingFormatViewController.h; sourceTree = "<group>"; };
- 1818A0612260422200327157 /* StorageViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = StorageViewController.mm; sourceTree = "<group>"; };
- 1818A0622260422200327157 /* StorageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StorageViewController.h; sourceTree = "<group>"; };
- 1818A0632260422200327157 /* ItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ItemViewController.h; sourceTree = "<group>"; };
- 1818A0652260422200327157 /* TimeSynViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TimeSynViewController.mm; sourceTree = "<group>"; };
- 1818A0662260422200327157 /* TimeSynViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TimeSynViewController.h; sourceTree = "<group>"; };
- 1818A0672260422200327157 /* DeviceconfigTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceconfigTableViewCell.m; sourceTree = "<group>"; };
- 1818A0682260422200327157 /* ItemTableviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ItemTableviewCell.h; sourceTree = "<group>"; };
- 1818A06A2260422200327157 /* AboutDeviceViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AboutDeviceViewController.mm; sourceTree = "<group>"; };
- 1818A06B2260422200327157 /* AboutDeviceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutDeviceViewController.h; sourceTree = "<group>"; };
- 1818A06D2260422200327157 /* VideoFileViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = VideoFileViewController.mm; sourceTree = "<group>"; };
- 1818A06E2260422200327157 /* PictureFileViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PictureFileViewController.m; sourceTree = "<group>"; };
- 1818A0702260422200327157 /* PictureDownloadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureDownloadViewController.h; sourceTree = "<group>"; };
- 1818A0712260422200327157 /* MonthPictureViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MonthPictureViewController.mm; sourceTree = "<group>"; };
- 1818A0722260422200327157 /* PictureSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureSearchViewController.h; sourceTree = "<group>"; };
- 1818A0732260422200327157 /* MonthPictureViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MonthPictureViewController.h; sourceTree = "<group>"; };
- 1818A0742260422200327157 /* PictureDownloadViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PictureDownloadViewController.mm; sourceTree = "<group>"; };
- 1818A0752260422200327157 /* PictureSearchViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PictureSearchViewController.mm; sourceTree = "<group>"; };
- 1818A0762260422200327157 /* VideoFileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoFileViewController.h; sourceTree = "<group>"; };
- 1818A0782260422200327157 /* DownloadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DownloadViewController.h; sourceTree = "<group>"; };
- 1818A0792260422200327157 /* MonthFileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MonthFileViewController.h; sourceTree = "<group>"; };
- 1818A07A2260422200327157 /* ByFileViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ByFileViewController.mm; sourceTree = "<group>"; };
- 1818A07B2260422200327157 /* DownloadViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DownloadViewController.mm; sourceTree = "<group>"; };
- 1818A07C2260422200327157 /* ByTimeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ByTimeViewController.h; sourceTree = "<group>"; };
- 1818A07D2260422200327157 /* ByFileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ByFileViewController.h; sourceTree = "<group>"; };
- 1818A07E2260422200327157 /* MonthFileViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MonthFileViewController.mm; sourceTree = "<group>"; };
- 1818A07F2260422200327157 /* ByTimeViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ByTimeViewController.mm; sourceTree = "<group>"; };
- 1818A0802260422200327157 /* PictureFileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PictureFileViewController.h; sourceTree = "<group>"; };
- 1818A0822260422200327157 /* ParamViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ParamViewController.h; sourceTree = "<group>"; };
- 1818A0832260422200327157 /* ParamViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ParamViewController.mm; sourceTree = "<group>"; };
- 1818A0852260422200327157 /* CloudServerViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudServerViewController.mm; sourceTree = "<group>"; };
- 1818A0862260422200327157 /* CloudAbilityViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudAbilityViewController.h; sourceTree = "<group>"; };
- 1818A0872260422200327157 /* CloudAbilityViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudAbilityViewController.mm; sourceTree = "<group>"; };
- 1818A0892260422200327157 /* CloudPhotoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudPhotoViewController.h; sourceTree = "<group>"; };
- 1818A08A2260422200327157 /* CloudPhotoDownloadViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudPhotoDownloadViewController.mm; sourceTree = "<group>"; };
- 1818A08B2260422200327157 /* CloudphotoDayVController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudphotoDayVController.h; sourceTree = "<group>"; };
- 1818A08C2260422200327157 /* CloudphotoDayVController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudphotoDayVController.mm; sourceTree = "<group>"; };
- 1818A08D2260422200327157 /* CloudPhotoViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudPhotoViewController.mm; sourceTree = "<group>"; };
- 1818A08E2260422200327157 /* CloudPhotoDownloadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudPhotoDownloadViewController.h; sourceTree = "<group>"; };
- 1818A08F2260422200327157 /* CloudServerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudServerViewController.h; sourceTree = "<group>"; };
- 1818A0912260422200327157 /* CloudVideoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudVideoViewController.h; sourceTree = "<group>"; };
- 1818A0922260422200327157 /* CloudVideoDownloadViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudVideoDownloadViewController.mm; sourceTree = "<group>"; };
- 1818A0932260422200327157 /* CloudVideoDayViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudVideoDayViewController.h; sourceTree = "<group>"; };
- 1818A0942260422200327157 /* CloudVideoDayViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudVideoDayViewController.mm; sourceTree = "<group>"; };
- 1818A0952260422200327157 /* CloudVideoViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = CloudVideoViewController.mm; sourceTree = "<group>"; };
- 1818A0962260422200327157 /* CloudVideoDownloadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CloudVideoDownloadViewController.h; sourceTree = "<group>"; };
- 1818A0982260422200327157 /* DeviceAddViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceAddViewController.h; sourceTree = "<group>"; };
- 1818A0992260422200327157 /* MainViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = MainViewController.mm; sourceTree = "<group>"; };
- 1818A09A2260422200327157 /* DeviceAddViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceAddViewController.m; sourceTree = "<group>"; };
- 1818A09B2260422200327157 /* AccountViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AccountViewController.mm; sourceTree = "<group>"; };
- 1818A09C2260422200327157 /* MainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainViewController.h; sourceTree = "<group>"; };
- 1818A09D2260422200327157 /* AccountViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccountViewController.h; sourceTree = "<group>"; };
- 1818A0A02260422200327157 /* CYGLKView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CYGLKView.m; sourceTree = "<group>"; };
- 1818A0A12260422200327157 /* CYGLKView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYGLKView.h; sourceTree = "<group>"; };
- 1818A0A22260422200327157 /* XMPlayerVC.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = XMPlayerVC.mm; sourceTree = "<group>"; };
- 1818A0A32260422200327157 /* XMPlayerVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = XMPlayerVC.h; sourceTree = "<group>"; };
- 1818A0A42260422200327157 /* PhotosViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PhotosViewController.mm; sourceTree = "<group>"; };
- 1818A0A52260422200327157 /* PhotosViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotosViewController.h; sourceTree = "<group>"; };
- 1818A0A72260422200327157 /* DeviceListViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DeviceListViewController.mm; sourceTree = "<group>"; };
- 1818A0A82260422200327157 /* DeviceInfoEditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceInfoEditViewController.h; sourceTree = "<group>"; };
- 1818A0AA2260422200327157 /* DeviceListTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceListTableViewCell.h; sourceTree = "<group>"; };
- 1818A0AB2260422200327157 /* DeviceListTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceListTableViewCell.m; sourceTree = "<group>"; };
- 1818A0AC2260422200327157 /* DeviceListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceListViewController.h; sourceTree = "<group>"; };
- 1818A0AD2260422200327157 /* DeviceInfoEditViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = DeviceInfoEditViewController.mm; sourceTree = "<group>"; };
- 1818A0AF2260422200327157 /* FishPlayControl.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = FishPlayControl.mm; sourceTree = "<group>"; };
- 1818A0B02260422200327157 /* PlayBackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayBackViewController.h; sourceTree = "<group>"; };
- 1818A0B12260422200327157 /* PlayViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PlayViewController.mm; sourceTree = "<group>"; };
- 1818A0B22260422200327157 /* PlayCloudVideoViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PlayCloudVideoViewController.mm; sourceTree = "<group>"; };
- 1818A0B42260422200327157 /* ProgressBackView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ProgressBackView.mm; sourceTree = "<group>"; };
- 1818A0B52260422200327157 /* DateSelectView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DateSelectView.m; sourceTree = "<group>"; };
- 1818A0B62260422200327157 /* MyProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyProgressView.h; sourceTree = "<group>"; };
- 1818A0B72260422200327157 /* ProgressBackView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProgressBackView.h; sourceTree = "<group>"; };
- 1818A0B82260422200327157 /* DateSelectView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DateSelectView.h; sourceTree = "<group>"; };
- 1818A0B92260422200327157 /* MyProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyProgressView.m; sourceTree = "<group>"; };
- 1818A0BA2260422200327157 /* PlayCloudVideoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayCloudVideoViewController.h; sourceTree = "<group>"; };
- 1818A0BB2260422200327157 /* PlayBackViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = PlayBackViewController.mm; sourceTree = "<group>"; };
- 1818A0BD2260422200327157 /* PlayFunctionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayFunctionView.m; sourceTree = "<group>"; };
- 1818A0BE2260422200327157 /* TalkView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TalkView.h; sourceTree = "<group>"; };
- 1818A0BF2260422200327157 /* PlayView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayView.h; sourceTree = "<group>"; };
- 1818A0C02260422200327157 /* PTZView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PTZView.m; sourceTree = "<group>"; };
- 1818A0C12260422200327157 /* PlayMenuView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayMenuView.m; sourceTree = "<group>"; };
- 1818A0C22260422200327157 /* PlayView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlayView.m; sourceTree = "<group>"; };
- 1818A0C32260422300327157 /* PlayFunctionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayFunctionView.h; sourceTree = "<group>"; };
- 1818A0C42260422300327157 /* TalkView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TalkView.m; sourceTree = "<group>"; };
- 1818A0C52260422300327157 /* PTZView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PTZView.h; sourceTree = "<group>"; };
- 1818A0C62260422300327157 /* PlayMenuView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayMenuView.h; sourceTree = "<group>"; };
- 1818A0C72260422300327157 /* FishPlayControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FishPlayControl.h; sourceTree = "<group>"; };
- 1818A0C82260422300327157 /* PlayViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlayViewController.h; sourceTree = "<group>"; };
- 1818A0CA2260422300327157 /* FishEyeVideoVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FishEyeVideoVC.h; sourceTree = "<group>"; };
- 1818A0CB2260422300327157 /* fisheye.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fisheye.h; sourceTree = "<group>"; };
- 1818A0CC2260422300327157 /* errordef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = errordef.h; sourceTree = "<group>"; };
- 1818A0CD2260422300327157 /* UILabelOutLined.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UILabelOutLined.m; sourceTree = "<group>"; };
- 1818A0CE2260422300327157 /* VRSoft.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VRSoft.h; sourceTree = "<group>"; };
- 1818A0CF2260422300327157 /* fisheye_opengl_errordef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fisheye_opengl_errordef.h; sourceTree = "<group>"; };
- 1818A0D02260422300327157 /* VRGLViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VRGLViewController.h; sourceTree = "<group>"; };
- 1818A0D12260422300327157 /* fisheye_opengl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fisheye_opengl.h; sourceTree = "<group>"; };
- 1818A0D22260422300327157 /* VRFunctionView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = VRFunctionView.mm; sourceTree = "<group>"; };
- 1818A0D32260422300327157 /* FishEyeVideoVC.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = FishEyeVideoVC.mm; sourceTree = "<group>"; };
- 1818A0D42260422300327157 /* VRGLViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = VRGLViewController.mm; sourceTree = "<group>"; };
- 1818A0D52260422300327157 /* fisheye_errordef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fisheye_errordef.h; sourceTree = "<group>"; };
- 1818A0D62260422300327157 /* VRFunctionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VRFunctionView.h; sourceTree = "<group>"; };
- 1818A0D72260422300327157 /* HardVRViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HardVRViewController.h; sourceTree = "<group>"; };
- 1818A0D82260422300327157 /* VRSoftDef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VRSoftDef.h; sourceTree = "<group>"; };
- 1818A0D92260422300327157 /* UILabelOutLined.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UILabelOutLined.h; sourceTree = "<group>"; };
- 1818A0DA2260422300327157 /* typedef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = typedef.h; sourceTree = "<group>"; };
- 1818A0DB2260422300327157 /* HardVRViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = HardVRViewController.mm; sourceTree = "<group>"; };
- 1818A0DD2260422300327157 /* ChangePasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChangePasswordViewController.h; sourceTree = "<group>"; };
- 1818A0DE2260422300327157 /* PrivacyPolicyVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PrivacyPolicyVC.m; sourceTree = "<group>"; };
- 1818A0DF2260422300327157 /* PasswordSaveViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PasswordSaveViewController.m; sourceTree = "<group>"; };
- 1818A0E02260422300327157 /* UserInfoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfoViewController.h; sourceTree = "<group>"; };
- 1818A0E12260422300327157 /* UserBindViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserBindViewController.h; sourceTree = "<group>"; };
- 1818A0E22260422300327157 /* ForgetPasswordViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ForgetPasswordViewController.h; sourceTree = "<group>"; };
- 1818A0E42260422300327157 /* UserInfoView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfoView.h; sourceTree = "<group>"; };
- 1818A0E52260422300327157 /* UserInfoView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfoView.m; sourceTree = "<group>"; };
- 1818A0E72260422300327157 /* ForgetPasswordView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ForgetPasswordView.h; sourceTree = "<group>"; };
- 1818A0E82260422300327157 /* ForgetPasswordView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ForgetPasswordView.m; sourceTree = "<group>"; };
- 1818A0E92260422300327157 /* ForgetPasswordViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ForgetPasswordViewController.mm; sourceTree = "<group>"; };
- 1818A0EA2260422300327157 /* PasswordSaveViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordSaveViewController.h; sourceTree = "<group>"; };
- 1818A0EC2260422300327157 /* ChangePasswordView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChangePasswordView.m; sourceTree = "<group>"; };
- 1818A0ED2260422300327157 /* ChangePasswordView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChangePasswordView.h; sourceTree = "<group>"; };
- 1818A0EE2260422300327157 /* UserInfoViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = UserInfoViewController.mm; sourceTree = "<group>"; };
- 1818A0F02260422300327157 /* UserInputCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInputCell.h; sourceTree = "<group>"; };
- 1818A0F12260422300327157 /* UserInfoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfoCell.h; sourceTree = "<group>"; };
- 1818A0F22260422300327157 /* UserInputCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInputCell.m; sourceTree = "<group>"; };
- 1818A0F32260422300327157 /* UserInfoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfoCell.m; sourceTree = "<group>"; };
- 1818A0F52260422300327157 /* UserBindView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserBindView.h; sourceTree = "<group>"; };
- 1818A0F62260422300327157 /* UserBindView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserBindView.m; sourceTree = "<group>"; };
- 1818A0F72260422300327157 /* PrivacyPolicyVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrivacyPolicyVC.h; sourceTree = "<group>"; };
- 1818A0F82260422300327157 /* RegisterViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RegisterViewController.mm; sourceTree = "<group>"; };
- 1818A0F92260422300327157 /* UserBindViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = UserBindViewController.mm; sourceTree = "<group>"; };
- 1818A0FB2260422300327157 /* RegisterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegisterView.h; sourceTree = "<group>"; };
- 1818A0FC2260422300327157 /* RegisterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RegisterView.m; sourceTree = "<group>"; };
- 1818A0FD2260422300327157 /* LoginViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginViewController.xib; sourceTree = "<group>"; };
- 1818A0FE2260422300327157 /* LoginViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = LoginViewController.mm; sourceTree = "<group>"; };
- 1818A0FF2260422300327157 /* ChangePasswordViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = ChangePasswordViewController.mm; sourceTree = "<group>"; };
- 1818A1002260422300327157 /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
- 1818A1012260422300327157 /* RegisterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegisterViewController.h; sourceTree = "<group>"; };
- 1818A1032260422300327157 /* IPAddViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = IPAddViewController.mm; sourceTree = "<group>"; };
- 1818A1042260422300327157 /* APLoginConfigVC.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = APLoginConfigVC.mm; sourceTree = "<group>"; };
- 1818A1052260422300327157 /* SerialNumAddViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SerialNumAddViewController.mm; sourceTree = "<group>"; };
- 1818A1062260422300327157 /* OriginalScaner.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = OriginalScaner.mm; sourceTree = "<group>"; };
- 1818A1072260422300327157 /* SerialNumAddViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SerialNumAddViewController.h; sourceTree = "<group>"; };
- 1818A1082260422300327157 /* APLoginConfigVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APLoginConfigVC.h; sourceTree = "<group>"; };
- 1818A1092260422300327157 /* MyRadarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyRadarView.h; sourceTree = "<group>"; };
- 1818A10A2260422300327157 /* OriginalScaner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OriginalScaner.h; sourceTree = "<group>"; };
- 1818A10B2260422300327157 /* ScanAnimationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ScanAnimationView.h; sourceTree = "<group>"; };
- 1818A10D2260422300327157 /* QuickConfigurationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuickConfigurationView.h; sourceTree = "<group>"; };
- 1818A10E2260422300327157 /* QuickConfigurationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QuickConfigurationView.m; sourceTree = "<group>"; };
- 1818A10F2260422300327157 /* QuickConfigurationViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = QuickConfigurationViewController.mm; sourceTree = "<group>"; };
- 1818A1112260422300327157 /* AddDeviceInputCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddDeviceInputCell.m; sourceTree = "<group>"; };
- 1818A1122260422300327157 /* SearchDeviceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchDeviceCell.m; sourceTree = "<group>"; };
- 1818A1132260422300327157 /* AddDeviceInputCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddDeviceInputCell.h; sourceTree = "<group>"; };
- 1818A1142260422300327157 /* SearchDeviceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchDeviceCell.h; sourceTree = "<group>"; };
- 1818A1152260422300327157 /* LANSearchViewController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = LANSearchViewController.mm; sourceTree = "<group>"; };
- 1818A1162260422300327157 /* LANSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LANSearchViewController.h; sourceTree = "<group>"; };
- 1818A1172260422300327157 /* IPAddViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IPAddViewController.h; sourceTree = "<group>"; };
- 1818A1182260422300327157 /* MyRadarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyRadarView.m; sourceTree = "<group>"; };
- 1818A1192260422300327157 /* ScanAnimationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ScanAnimationView.m; sourceTree = "<group>"; };
- 1818A11A2260422300327157 /* QuickConfigurationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QuickConfigurationViewController.h; sourceTree = "<group>"; };
- 1818A23A226042B500327157 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
- 6A9E328D76A8A71C94C8091A /* Pods-Haishenghai-master.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Haishenghai-master.release.xcconfig"; path = "Pods/Target Support Files/Pods-Haishenghai-master/Pods-Haishenghai-master.release.xcconfig"; sourceTree = "<group>"; };
- 9BE3BA4CD1BDF2DADB10D96F /* Pods-Haishenghai-master.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Haishenghai-master.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Haishenghai-master/Pods-Haishenghai-master.debug.xcconfig"; sourceTree = "<group>"; };
- C604BFF121DF33760001BC82 /* DeveceDetail_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeveceDetail_VC.h; sourceTree = "<group>"; };
- C604BFF221DF33760001BC82 /* DeveceDetail_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DeveceDetail_VC.m; sourceTree = "<group>"; };
- C604BFF521DF43540001BC82 /* PlaceList_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlaceList_VC.h; sourceTree = "<group>"; };
- C604BFF621DF43540001BC82 /* PlaceList_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PlaceList_VC.m; sourceTree = "<group>"; };
- C604BFF921DF459B0001BC82 /* ManageDeveceList_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ManageDeveceList_VC.h; sourceTree = "<group>"; };
- C604BFFA21DF459B0001BC82 /* ManageDeveceList_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ManageDeveceList_VC.m; sourceTree = "<group>"; };
- C604C00121DF47CE0001BC82 /* FireAlarm_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FireAlarm_VC.h; sourceTree = "<group>"; };
- C604C00221DF47CE0001BC82 /* FireAlarm_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FireAlarm_VC.m; sourceTree = "<group>"; };
- C604C00521DF48840001BC82 /* PushManage_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PushManage_VC.h; sourceTree = "<group>"; };
- C604C00621DF48840001BC82 /* PushManage_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PushManage_VC.m; sourceTree = "<group>"; };
- C604C00921DF48E60001BC82 /* ProblemViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ProblemViewController.h; sourceTree = "<group>"; };
- C604C00A21DF48E60001BC82 /* ProblemViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ProblemViewController.m; sourceTree = "<group>"; };
- C604C00D21DF499B0001BC82 /* Service_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Service_VC.h; sourceTree = "<group>"; };
- C604C00E21DF499B0001BC82 /* Service_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Service_VC.m; sourceTree = "<group>"; };
- C604C01021DF674D0001BC82 /* CustomPlaceView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CustomPlaceView.h; sourceTree = "<group>"; };
- C604C01121DF674D0001BC82 /* CustomPlaceView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CustomPlaceView.m; sourceTree = "<group>"; };
- C604C01621DF81DF0001BC82 /* DetailDeveceList_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DetailDeveceList_VC.h; sourceTree = "<group>"; };
- C604C01721DF81DF0001BC82 /* DetailDeveceList_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DetailDeveceList_VC.m; sourceTree = "<group>"; };
- C60E3F76225B1CBE003C1541 /* MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
- C60E3F77225B1CCA003C1541 /* MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
- C60E3F88225B3F36003C1541 /* CustomAlertView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CustomAlertView.h; sourceTree = "<group>"; };
- C60E3F89225B3F36003C1541 /* CustomAlertView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CustomAlertView.m; sourceTree = "<group>"; };
- C60F0C01223B4F25004446AA /* Protcol_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Protcol_VC.h; sourceTree = "<group>"; };
- C60F0C02223B4F26004446AA /* Protcol_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Protcol_VC.m; sourceTree = "<group>"; };
- C60F0C0D223B5104004446AA /* privacy_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = privacy_VC.h; sourceTree = "<group>"; };
- C60F0C0E223B5104004446AA /* privacy_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = privacy_VC.m; sourceTree = "<group>"; };
- C60F0C10223B5231004446AA /* QuickLook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuickLook.framework; path = System/Library/Frameworks/QuickLook.framework; sourceTree = SDKROOT; };
- C6114BB9225DA07C00D6BCE4 /* SXAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SXAlert.m; sourceTree = "<group>"; };
- C6114BBA225DA07D00D6BCE4 /* SXAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SXAlert.h; sourceTree = "<group>"; };
- C6114BBC225DBAED00D6BCE4 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
- C6114BBE225E105600D6BCE4 /* CheckMessage_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CheckMessage_VC.h; sourceTree = "<group>"; };
- C6114BBF225E105600D6BCE4 /* CheckMessage_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CheckMessage_VC.m; sourceTree = "<group>"; };
- C6119B3721E2E996008B44BE /* SubmitInformation_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SubmitInformation_VC.h; sourceTree = "<group>"; };
- C6119B3821E2E996008B44BE /* SubmitInformation_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SubmitInformation_VC.m; sourceTree = "<group>"; };
- C6119B4121E3477A008B44BE /* CommitMessage_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CommitMessage_VC.h; sourceTree = "<group>"; };
- C6119B4221E3477A008B44BE /* CommitMessage_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CommitMessage_VC.m; sourceTree = "<group>"; };
- C615004A21D7083F00FEBA22 /* Haishenghai-master.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Haishenghai-master.app"; sourceTree = BUILT_PRODUCTS_DIR; };
- C615004D21D7083F00FEBA22 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
- C615004E21D7083F00FEBA22 /* AppDelegate.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = AppDelegate.mm; sourceTree = "<group>"; };
- C615005021D7083F00FEBA22 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
- C615005121D7083F00FEBA22 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
- C615005421D7083F00FEBA22 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
- C615005B21D7083F00FEBA22 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- C615005C21D7083F00FEBA22 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- C615006221D7084000FEBA22 /* Haishenghai-masterTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Haishenghai-masterTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
- C615006621D7084000FEBA22 /* Haishenghai_masterTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Haishenghai_masterTests.m; sourceTree = "<group>"; };
- C615006821D7084000FEBA22 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- C615006D21D7084000FEBA22 /* Haishenghai-masterUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Haishenghai-masterUITests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
- C615007121D7084000FEBA22 /* Haishenghai_masterUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Haishenghai_masterUITests.m; sourceTree = "<group>"; };
- C615007321D7084000FEBA22 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- C615008A21D70C5800FEBA22 /* BaseLogin_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseLogin_VC.h; sourceTree = "<group>"; };
- C615008B21D70C5800FEBA22 /* BaseLogin_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BaseLogin_VC.m; sourceTree = "<group>"; };
- C615009A21D720A400FEBA22 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
- C6184823224A2975006A586B /* FireNoticeModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FireNoticeModel.h; sourceTree = "<group>"; };
- C6184824224A2975006A586B /* FireNoticeModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FireNoticeModel.m; sourceTree = "<group>"; };
- C618482F224B684D006A586B /* fireAlarm.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = fireAlarm.mp3; sourceTree = "<group>"; };
- C618E43521E0472500A65353 /* ZDYAlertView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ZDYAlertView.h; sourceTree = "<group>"; };
- C618E43621E0472500A65353 /* ZDYAlertView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ZDYAlertView.m; sourceTree = "<group>"; };
- C618E43821E04F5E00A65353 /* DeveceTableCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeveceTableCell.h; sourceTree = "<group>"; };
- C618E43921E04F5E00A65353 /* DeveceTableCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DeveceTableCell.m; sourceTree = "<group>"; };
- C618E43E21E05D9200A65353 /* TableheaderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TableheaderView.h; sourceTree = "<group>"; };
- C618E43F21E05D9200A65353 /* TableheaderView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TableheaderView.m; sourceTree = "<group>"; };
- C618E44121E0615400A65353 /* Contacts_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Contacts_VC.h; sourceTree = "<group>"; };
- C618E44221E0615400A65353 /* Contacts_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Contacts_VC.m; sourceTree = "<group>"; };
- C62678D621E0873A00F146BC /* MessageTableCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MessageTableCell.h; sourceTree = "<group>"; };
- C62678D721E0873A00F146BC /* MessageTableCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MessageTableCell.m; sourceTree = "<group>"; };
- C62F19BE223C9561001696B2 /* UserRegister_VC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserRegister_VC.m; sourceTree = "<group>"; };
- C62F19C0223C9579001696B2 /* UserLogin_VC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserLogin_VC.m; sourceTree = "<group>"; };
- C62F19C2223CF825001696B2 /* troubleSiteModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = troubleSiteModel.h; sourceTree = "<group>"; };
- C62F19C3223CF825001696B2 /* troubleSiteModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = troubleSiteModel.m; sourceTree = "<group>"; };
- C63D540B222A2C92002723EB /* Setting_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Setting_VC.h; sourceTree = "<group>"; };
- C63D540C222A2C92002723EB /* Setting_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Setting_VC.m; sourceTree = "<group>"; };
- C63F6BE421F2B0DD00868CE6 /* DetailTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DetailTableViewCell.h; sourceTree = "<group>"; };
- C63F6BE521F2B0DD00868CE6 /* DetailTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DetailTableViewCell.m; sourceTree = "<group>"; };
- C640782D21E1FF580070B632 /* FireManage_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FireManage_VC.h; sourceTree = "<group>"; };
- C640782E21E1FF580070B632 /* FireManage_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FireManage_VC.m; sourceTree = "<group>"; };
- C6413D3A21E1A3BF00605186 /* Recorddetail_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Recorddetail_VC.h; sourceTree = "<group>"; };
- C6413D3B21E1A3BF00605186 /* Recorddetail_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Recorddetail_VC.m; sourceTree = "<group>"; };
- C643407421EAD887006A5D72 /* PersonCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PersonCell.h; sourceTree = "<group>"; };
- C643407521EAD887006A5D72 /* PersonCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PersonCell.m; sourceTree = "<group>"; };
- C6457D7221FAAB2D00CD6276 /* DeveceTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeveceTableViewController.h; sourceTree = "<group>"; };
- C6457D7321FAAB2D00CD6276 /* DeveceTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DeveceTableViewController.m; sourceTree = "<group>"; };
- C6457D7521FAAB3F00CD6276 /* SiteTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SiteTableViewController.h; sourceTree = "<group>"; };
- C6457D7621FAAB3F00CD6276 /* SiteTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SiteTableViewController.m; sourceTree = "<group>"; };
- C6457D7B21FAFEB000CD6276 /* About_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = About_VC.h; sourceTree = "<group>"; };
- C6457D7C21FAFEB000CD6276 /* About_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = About_VC.m; sourceTree = "<group>"; };
- C647015F2223EC24009D2FCF /* BottomView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BottomView.h; sourceTree = "<group>"; };
- C64701602223EC24009D2FCF /* BottomView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BottomView.m; sourceTree = "<group>"; };
- C6472CC021F6C2A600F5CD09 /* PlaceModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlaceModel.h; sourceTree = "<group>"; };
- C6472CC121F6C2A600F5CD09 /* PlaceModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PlaceModel.m; sourceTree = "<group>"; };
- C6472CC321F6E3D100F5CD09 /* deveceListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = deveceListModel.h; sourceTree = "<group>"; };
- C6472CC421F6E3D100F5CD09 /* deveceListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = deveceListModel.m; sourceTree = "<group>"; };
- C6472CC621F71B5300F5CD09 /* uploadModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = uploadModel.m; sourceTree = "<group>"; };
- C6472CC721F71B5400F5CD09 /* uploadModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = uploadModel.h; sourceTree = "<group>"; };
- C6478F7421F5ABD1004BB536 /* deveceModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = deveceModel.h; sourceTree = "<group>"; };
- C6478F7521F5ABD1004BB536 /* deveceModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = deveceModel.m; sourceTree = "<group>"; };
- C64F214F2226586400DBD297 /* SelectBoxView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SelectBoxView.h; sourceTree = "<group>"; };
- C64F21502226586400DBD297 /* SelectBoxView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SelectBoxView.m; sourceTree = "<group>"; };
- C64FE3D221F4271000ACFCA1 /* EditLocationVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EditLocationVC.h; sourceTree = "<group>"; };
- C64FE3D321F4271000ACFCA1 /* EditLocationVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EditLocationVC.m; sourceTree = "<group>"; };
- C65726DC21D8A10D0013E52F /* ResetPassword_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ResetPassword_VC.h; sourceTree = "<group>"; };
- C65726DD21D8A10D0013E52F /* ResetPassword_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ResetPassword_VC.m; sourceTree = "<group>"; };
- C65726E321D8ACAA0013E52F /* Person_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Person_VC.h; sourceTree = "<group>"; };
- C65726E421D8ACAA0013E52F /* Person_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Person_VC.m; sourceTree = "<group>"; };
- C65726E621D8ACF10013E52F /* Message_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Message_VC.h; sourceTree = "<group>"; };
- C65726E721D8ACF10013E52F /* Message_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Message_VC.m; sourceTree = "<group>"; };
- C65726E921D8AD1F0013E52F /* DeveceList_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeveceList_VC.h; sourceTree = "<group>"; };
- C65726EA21D8AD1F0013E52F /* DeveceList_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DeveceList_VC.m; sourceTree = "<group>"; };
- C6576FF42217A2A00022B990 /* contactModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = contactModel.h; sourceTree = "<group>"; };
- C6576FF52217A2A00022B990 /* contactModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = contactModel.m; sourceTree = "<group>"; };
- C6576FF62217A2A00022B990 /* troubleDeveceModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = troubleDeveceModel.m; sourceTree = "<group>"; };
- C6576FF72217A2A00022B990 /* troubleDeveceModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = troubleDeveceModel.h; sourceTree = "<group>"; };
- C6576FFA22182A6B0022B990 /* NSMutableDictionary+NullSaf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableDictionary+NullSaf.h"; sourceTree = "<group>"; };
- C6576FFB22182A6C0022B990 /* NSMutableDictionary+NullSaf.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableDictionary+NullSaf.m"; sourceTree = "<group>"; };
- C65FCE4121DDE1E400CA21F8 /* popViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = popViewController.h; sourceTree = "<group>"; };
- C65FCE4221DDE1E400CA21F8 /* popViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = popViewController.m; sourceTree = "<group>"; };
- C65FCE4421DDF9C000CA21F8 /* AddDevece_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AddDevece_VC.h; sourceTree = "<group>"; };
- C65FCE4521DDF9C000CA21F8 /* AddDevece_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AddDevece_VC.m; sourceTree = "<group>"; };
- C65FCE6621DE1F7900CA21F8 /* CollectionViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CollectionViewCell.h; sourceTree = "<group>"; };
- C65FCE6721DE1F7900CA21F8 /* CollectionViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CollectionViewCell.m; sourceTree = "<group>"; };
- C65FCE7121DE225F00CA21F8 /* ScanViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ScanViewController.h; sourceTree = "<group>"; };
- C65FCE7221DE225F00CA21F8 /* ScanViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ScanViewController.m; sourceTree = "<group>"; };
- C6615DC221E9BA330067BF83 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
- C6615DC421E9BA620067BF83 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
- C6615DC621E9BAB70067BF83 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
- C6615DC821E9BAD30067BF83 /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
- C6615DCA21E9BAEB0067BF83 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
- C6615DCC21E9BAF90067BF83 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
- C6615DD021E9BDD60067BF83 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
- C6615DD121E9BE350067BF83 /* AMap.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = AMap.bundle; sourceTree = "<group>"; };
- C6615DD421E9C6CC0067BF83 /* AMapSearchKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapSearchKit.framework; sourceTree = "<group>"; };
- C6615DD621E9C74C0067BF83 /* AMapFoundationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapFoundationKit.framework; sourceTree = "<group>"; };
- C6615DD721E9C7520067BF83 /* MAMapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = MAMapKit.framework; sourceTree = "<group>"; };
- C6615DDA21E9CF170067BF83 /* AMapLocationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapLocationKit.framework; sourceTree = "<group>"; };
- C6615DDC21E9CFC70067BF83 /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = System/Library/Frameworks/ExternalAccessory.framework; sourceTree = SDKROOT; };
- C668A3002238A63500F866B0 /* detatilDeviceModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = detatilDeviceModel.h; sourceTree = "<group>"; };
- C668A3012238A63500F866B0 /* detatilDeviceModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = detatilDeviceModel.m; sourceTree = "<group>"; };
- C66E858C21EEEF16001997E0 /* popMenuView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = popMenuView.m; sourceTree = "<group>"; };
- C66E858D21EEEF17001997E0 /* popMenuView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = popMenuView.h; sourceTree = "<group>"; };
- C6834EBA21F9605500E2DA26 /* LeftTableCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LeftTableCell.h; sourceTree = "<group>"; };
- C6834EBB21F9605500E2DA26 /* LeftTableCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LeftTableCell.m; sourceTree = "<group>"; };
- C6834EBD21F9607200E2DA26 /* RightTableCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RightTableCell.h; sourceTree = "<group>"; };
- C6834EBE21F9607200E2DA26 /* RightTableCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RightTableCell.m; sourceTree = "<group>"; };
- C68433132240EBF9001D789D /* Haishenghai-master.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "Haishenghai-master.entitlements"; sourceTree = "<group>"; };
- C687A04921E71905003485B6 /* PlaceDetail_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PlaceDetail_VC.h; sourceTree = "<group>"; };
- C687A04A21E71905003485B6 /* PlaceDetail_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PlaceDetail_VC.m; sourceTree = "<group>"; };
- C687A04C21E7380A003485B6 /* FireAlarmCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FireAlarmCell.h; sourceTree = "<group>"; };
- C687A04D21E7380A003485B6 /* FireAlarmCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FireAlarmCell.m; sourceTree = "<group>"; };
- C687A04F21E73DC2003485B6 /* DeveceListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DeveceListCell.h; sourceTree = "<group>"; };
- C687A05021E73DC2003485B6 /* DeveceListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DeveceListCell.m; sourceTree = "<group>"; };
- C687A05221E74685003485B6 /* PushManageCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PushManageCell.h; sourceTree = "<group>"; };
- C687A05321E74685003485B6 /* PushManageCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PushManageCell.m; sourceTree = "<group>"; };
- C68BEE8821D7589D00639184 /* Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Header.h; sourceTree = "<group>"; };
- C68BEE8C21D75B4300639184 /* UserLogin_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserLogin_VC.h; sourceTree = "<group>"; };
- C68BEE8F21D75B8900639184 /* UserRegister_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserRegister_VC.h; sourceTree = "<group>"; };
- C6C071CF2254C44100474188 /* THDatePickerView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = THDatePickerView.h; sourceTree = "<group>"; };
- C6C071D22255D66800474188 /* DataSourceManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DataSourceManager.m; sourceTree = "<group>"; };
- C6C071D32255D66900474188 /* DataSourceManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DataSourceManager.h; sourceTree = "<group>"; };
- C6C071D52255EEC800474188 /* SitTabCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SitTabCell.h; sourceTree = "<group>"; };
- C6C071D62255EECE00474188 /* SitTabCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SitTabCell.m; sourceTree = "<group>"; };
- C6C071D82255FE3200474188 /* THDatePickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = THDatePickerView.m; sourceTree = "<group>"; };
- C6ED0E0821DDBD580064FEAB /* Addplace_VC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Addplace_VC.h; sourceTree = "<group>"; };
- C6ED0E0921DDBD580064FEAB /* Addplace_VC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Addplace_VC.m; sourceTree = "<group>"; };
- C6F75F4221E4435E00D1B606 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- C615004721D7083F00FEBA22 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 1818A23B226042B500327157 /* AdSupport.framework in Frameworks */,
- 18189A632260343900327157 /* libsqlite3.0.tbd in Frameworks */,
- 18189A61226023B300327157 /* VideoToolbox.framework in Frameworks */,
- 1818A1BF2260422300327157 /* FunSDK.framework in Frameworks */,
- C6615DC921E9BADB0067BF83 /* GLKit.framework in Frameworks */,
- 18189A5F2260239A00327157 /* MediaPlayer.framework in Frameworks */,
- 1818A1BB2260422300327157 /* libFSCalendar.a in Frameworks */,
- 18189A5D2260238600327157 /* CoreMedia.framework in Frameworks */,
- 18189A5B2260236200327157 /* AudioToolbox.framework in Frameworks */,
- 18189A582260233B00327157 /* UserNotifications.framework in Frameworks */,
- 18189A592260233B00327157 /* UserNotificationsUI.framework in Frameworks */,
- 18189A552260232F00327157 /* AssetsLibrary.framework in Frameworks */,
- 18189A522260232400327157 /* AVFoundation.framework in Frameworks */,
- 18189A532260232400327157 /* AVKit.framework in Frameworks */,
- C6615DCB21E9BAEB0067BF83 /* libz.tbd in Frameworks */,
- 18189A4F226022FE00327157 /* libbz2.tbd in Frameworks */,
- 18189A4D226022F600327157 /* libiconv.tbd in Frameworks */,
- 1818A1B92260422300327157 /* libstdc++.6.0.9.tbd in Frameworks */,
- 18189A4B226022ED00327157 /* libresolv.tbd in Frameworks */,
- 1818A1BE2260422300327157 /* XMNetInterface.framework in Frameworks */,
- 18189A48226022DB00327157 /* OpenAL.framework in Frameworks */,
- 18189A49226022DB00327157 /* OpenGLES.framework in Frameworks */,
- C6114BBD225DBAFC00D6BCE4 /* QuartzCore.framework in Frameworks */,
- C6615DDD21E9CFD60067BF83 /* ExternalAccessory.framework in Frameworks */,
- C6615DDB21E9CF170067BF83 /* AMapLocationKit.framework in Frameworks */,
- 1818A1BA2260422300327157 /* libfisheye.a in Frameworks */,
- C6615DD521E9C6CD0067BF83 /* AMapSearchKit.framework in Frameworks */,
- C6615DD821E9C7520067BF83 /* AMapFoundationKit.framework in Frameworks */,
- C6615DD921E9C7520067BF83 /* MAMapKit.framework in Frameworks */,
- C6615DC721E9BAC10067BF83 /* Security.framework in Frameworks */,
- C6615DC521E9BA730067BF83 /* CoreTelephony.framework in Frameworks */,
- C6615DC321E9BA4F0067BF83 /* SystemConfiguration.framework in Frameworks */,
- C6615DCD21E9BAF90067BF83 /* libc++.tbd in Frameworks */,
- E56AAE1437FDC705A2AE1E75 /* libPods-Haishenghai-master.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C615005F21D7084000FEBA22 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C615006A21D7084000FEBA22 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- 18189E4F2260422100327157 /* tool */ = {
- isa = PBXGroup;
- children = (
- 18189E502260422100327157 /* DeviceConfigManager */,
- 18189EBC2260422200327157 /* XYShowAlertView.m */,
- 18189EBD2260422200327157 /* AccountManager */,
- 18189EC72260422200327157 /* Common */,
- 18189EEA2260422200327157 /* XYShowAlertView.h */,
- 18189EEB2260422200327157 /* MediaPlayControl */,
- 18189EF62260422200327157 /* sdk相关 */,
- 18189F832260422200327157 /* SDKBaseFile */,
- 18189FF52260422200327157 /* Device */,
- 1818A0062260422200327157 /* ViewController */,
- );
- path = tool;
- sourceTree = SOURCE_ROOT;
- };
- 18189E502260422100327157 /* DeviceConfigManager */ = {
- isa = PBXGroup;
- children = (
- 18189E512260422100327157 /* SystemResetConfig */,
- 18189E542260422100327157 /* TimeConfig */,
- 18189E592260422100327157 /* AlarmMessageConfig */,
- 18189E5E2260422100327157 /* HumanDetectionConfig */,
- 18189E612260422100327157 /* CommonConfig */,
- 18189E642260422100327157 /* CloudAbilityConfig */,
- 18189E732260422200327157 /* EncodeConfig */,
- 18189E782260422200327157 /* VideoRotationConfig */,
- 18189E7D2260422200327157 /* StorageConfig */,
- 18189E842260422200327157 /* SystemInfoConfig */,
- 18189E872260422200327157 /* RecordConfig */,
- 18189E8C2260422200327157 /* AnalyzeConfig */,
- 18189E912260422200327157 /* AlarmPIRConfig */,
- 18189E942260422200327157 /* AlarmDetectConfig */,
- 18189E972260422200327157 /* PasswordConfig */,
- 18189E9A2260422200327157 /* SystemFunctionConfig */,
- 18189E9D2260422200327157 /* UpgradeConfig */,
- 18189EA22260422200327157 /* DeviceFile */,
- 18189EB32260422200327157 /* BuzzerConfig */,
- 18189EB62260422200327157 /* ShutDowmTimeConfig */,
- 18189EB92260422200327157 /* WaterMarkConfig */,
- );
- path = DeviceConfigManager;
- sourceTree = "<group>";
- };
- 18189E512260422100327157 /* SystemResetConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E522260422100327157 /* SystemResetConfig.h */,
- 18189E532260422100327157 /* SystemResetConfig.mm */,
- );
- path = SystemResetConfig;
- sourceTree = "<group>";
- };
- 18189E542260422100327157 /* TimeConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E552260422100327157 /* TimeSynDataSource.m */,
- 18189E562260422100327157 /* TimeSynConfig.h */,
- 18189E572260422100327157 /* TimeSynDataSource.h */,
- 18189E582260422100327157 /* TimeSynConfig.mm */,
- );
- path = TimeConfig;
- sourceTree = "<group>";
- };
- 18189E592260422100327157 /* AlarmMessageConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E5A2260422100327157 /* AlarmMessageInfo.m */,
- 18189E5B2260422100327157 /* AlarmMessageConfig.h */,
- 18189E5C2260422100327157 /* AlarmMessageConfig.mm */,
- 18189E5D2260422100327157 /* AlarmMessageInfo.h */,
- );
- path = AlarmMessageConfig;
- sourceTree = "<group>";
- };
- 18189E5E2260422100327157 /* HumanDetectionConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E5F2260422100327157 /* HumanDetectionConfig.h */,
- 18189E602260422100327157 /* HumanDetectionConfig.mm */,
- );
- path = HumanDetectionConfig;
- sourceTree = "<group>";
- };
- 18189E612260422100327157 /* CommonConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E622260422100327157 /* CommonConfig.mm */,
- 18189E632260422100327157 /* CommonConfig.h */,
- );
- path = CommonConfig;
- sourceTree = "<group>";
- };
- 18189E642260422100327157 /* CloudAbilityConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E652260422100327157 /* CloudVideoConfig */,
- 18189E6A2260422100327157 /* CloudPhotoConfg */,
- 18189E6F2260422200327157 /* CloudAbilityDataSource.m */,
- 18189E702260422200327157 /* CloudAbilityConfig.h */,
- 18189E712260422200327157 /* CloudAbilityDataSource.h */,
- 18189E722260422200327157 /* CloudAbilityConfig.mm */,
- );
- path = CloudAbilityConfig;
- sourceTree = "<group>";
- };
- 18189E652260422100327157 /* CloudVideoConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E662260422100327157 /* CLouldVideoResource.h */,
- 18189E672260422100327157 /* CloudVideoConfig.mm */,
- 18189E682260422100327157 /* CloudVideoConfig.h */,
- 18189E692260422100327157 /* CLouldVideoResource.m */,
- );
- path = CloudVideoConfig;
- sourceTree = "<group>";
- };
- 18189E6A2260422100327157 /* CloudPhotoConfg */ = {
- isa = PBXGroup;
- children = (
- 18189E6B2260422100327157 /* XMAlarmMsgResource.m */,
- 18189E6C2260422100327157 /* CloudPhotoConfig.mm */,
- 18189E6D2260422200327157 /* XMAlarmMsgResource.h */,
- 18189E6E2260422200327157 /* CloudPhotoConfig.h */,
- );
- path = CloudPhotoConfg;
- sourceTree = "<group>";
- };
- 18189E732260422200327157 /* EncodeConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E742260422200327157 /* EncodeConfig.h */,
- 18189E752260422200327157 /* EncodeDataSourse.h */,
- 18189E762260422200327157 /* EncodeConfig.mm */,
- 18189E772260422200327157 /* EncodeDataSourse.m */,
- );
- path = EncodeConfig;
- sourceTree = "<group>";
- };
- 18189E782260422200327157 /* VideoRotationConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E792260422200327157 /* VodeoRotainDataSource.m */,
- 18189E7A2260422200327157 /* VideoRotainConfig.mm */,
- 18189E7B2260422200327157 /* VideoRotainConfig.h */,
- 18189E7C2260422200327157 /* VodeoRotainDataSource.h */,
- );
- path = VideoRotationConfig;
- sourceTree = "<group>";
- };
- 18189E7D2260422200327157 /* StorageConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E7E2260422200327157 /* StorageConfig.h */,
- 18189E7F2260422200327157 /* DataSource.m */,
- 18189E802260422200327157 /* Storage.m */,
- 18189E812260422200327157 /* StorageConfig.mm */,
- 18189E822260422200327157 /* Storage.h */,
- 18189E832260422200327157 /* DataSource.h */,
- );
- path = StorageConfig;
- sourceTree = "<group>";
- };
- 18189E842260422200327157 /* SystemInfoConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E852260422200327157 /* SystemInfoConfig.mm */,
- 18189E862260422200327157 /* SystemInfoConfig.h */,
- );
- path = SystemInfoConfig;
- sourceTree = "<group>";
- };
- 18189E872260422200327157 /* RecordConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E882260422200327157 /* RecordDataSourse.h */,
- 18189E892260422200327157 /* RecordConfig.mm */,
- 18189E8A2260422200327157 /* RecordConfig.h */,
- 18189E8B2260422200327157 /* RecordDataSourse.m */,
- );
- path = RecordConfig;
- sourceTree = "<group>";
- };
- 18189E8C2260422200327157 /* AnalyzeConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E8D2260422200327157 /* AnalyzeDataSource.h */,
- 18189E8E2260422200327157 /* AnalyzeDataSource.m */,
- 18189E8F2260422200327157 /* AnalyzeConfig.h */,
- 18189E902260422200327157 /* AnalyzeConfig.mm */,
- );
- path = AnalyzeConfig;
- sourceTree = "<group>";
- };
- 18189E912260422200327157 /* AlarmPIRConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E922260422200327157 /* AlarmPIRConfig.h */,
- 18189E932260422200327157 /* AlarmPIRConfig.mm */,
- );
- path = AlarmPIRConfig;
- sourceTree = "<group>";
- };
- 18189E942260422200327157 /* AlarmDetectConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E952260422200327157 /* AlarmDetectConfig.h */,
- 18189E962260422200327157 /* AlarmDetectConfig.mm */,
- );
- path = AlarmDetectConfig;
- sourceTree = "<group>";
- };
- 18189E972260422200327157 /* PasswordConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E982260422200327157 /* PasswordConfig.h */,
- 18189E992260422200327157 /* PasswordConfig.mm */,
- );
- path = PasswordConfig;
- sourceTree = "<group>";
- };
- 18189E9A2260422200327157 /* SystemFunctionConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E9B2260422200327157 /* SystemFunctionConfig.mm */,
- 18189E9C2260422200327157 /* SystemFunctionConfig.h */,
- );
- path = SystemFunctionConfig;
- sourceTree = "<group>";
- };
- 18189E9D2260422200327157 /* UpgradeConfig */ = {
- isa = PBXGroup;
- children = (
- 18189E9E2260422200327157 /* UpgradeConfig.h */,
- 18189E9F2260422200327157 /* UpgradeDataSource.h */,
- 18189EA02260422200327157 /* UpgradeDataSource.m */,
- 18189EA12260422200327157 /* UpgradeConfig.mm */,
- );
- path = UpgradeConfig;
- sourceTree = "<group>";
- };
- 18189EA22260422200327157 /* DeviceFile */ = {
- isa = PBXGroup;
- children = (
- 18189EA32260422200327157 /* PictureFileConfig */,
- 18189EAA2260422200327157 /* VideoFileConfig */,
- );
- path = DeviceFile;
- sourceTree = "<group>";
- };
- 18189EA32260422200327157 /* PictureFileConfig */ = {
- isa = PBXGroup;
- children = (
- 18189EA42260422200327157 /* PictureInfo.m */,
- 18189EA52260422200327157 /* PictureFileConfig.h */,
- 18189EA62260422200327157 /* PictureFileDownloadConfig.mm */,
- 18189EA72260422200327157 /* PictureInfo.h */,
- 18189EA82260422200327157 /* PictureFileConfig.mm */,
- 18189EA92260422200327157 /* PictureFileDownloadConfig.h */,
- );
- path = PictureFileConfig;
- sourceTree = "<group>";
- };
- 18189EAA2260422200327157 /* VideoFileConfig */ = {
- isa = PBXGroup;
- children = (
- 18189EAB2260422200327157 /* VideoFileDownloadConfig.h */,
- 18189EAC2260422200327157 /* VideoFileConfig.h */,
- 18189EAD2260422200327157 /* TimeInfo.m */,
- 18189EAE2260422200327157 /* RecordInfo.h */,
- 18189EAF2260422200327157 /* VideoFileConfig.mm */,
- 18189EB02260422200327157 /* VideoFileDownloadConfig.mm */,
- 18189EB12260422200327157 /* RecordInfo.m */,
- 18189EB22260422200327157 /* TimeInfo.h */,
- );
- path = VideoFileConfig;
- sourceTree = "<group>";
- };
- 18189EB32260422200327157 /* BuzzerConfig */ = {
- isa = PBXGroup;
- children = (
- 18189EB42260422200327157 /* BuzzerConfig.mm */,
- 18189EB52260422200327157 /* BuzzerConfig.h */,
- );
- path = BuzzerConfig;
- sourceTree = "<group>";
- };
- 18189EB62260422200327157 /* ShutDowmTimeConfig */ = {
- isa = PBXGroup;
- children = (
- 18189EB72260422200327157 /* ShutDownTimeConfig.mm */,
- 18189EB82260422200327157 /* ShutDownTimeConfig.h */,
- );
- path = ShutDowmTimeConfig;
- sourceTree = "<group>";
- };
- 18189EB92260422200327157 /* WaterMarkConfig */ = {
- isa = PBXGroup;
- children = (
- 18189EBA2260422200327157 /* WaterMarkConfig.mm */,
- 18189EBB2260422200327157 /* WaterMarkConfig.h */,
- );
- path = WaterMarkConfig;
- sourceTree = "<group>";
- };
- 18189EBD2260422200327157 /* AccountManager */ = {
- isa = PBXGroup;
- children = (
- 18189EBE2260422200327157 /* AlarmManager */,
- 18189EC12260422200327157 /* UserAccountManager */,
- 18189EC42260422200327157 /* DeviceManager */,
- );
- path = AccountManager;
- sourceTree = "<group>";
- };
- 18189EBE2260422200327157 /* AlarmManager */ = {
- isa = PBXGroup;
- children = (
- 18189EBF2260422200327157 /* AlarmManager.h */,
- 18189EC02260422200327157 /* AlarmManager.mm */,
- );
- path = AlarmManager;
- sourceTree = "<group>";
- };
- 18189EC12260422200327157 /* UserAccountManager */ = {
- isa = PBXGroup;
- children = (
- 18189EC22260422200327157 /* UserAccountModel.mm */,
- 18189EC32260422200327157 /* UserAccountModel.h */,
- );
- path = UserAccountManager;
- sourceTree = "<group>";
- };
- 18189EC42260422200327157 /* DeviceManager */ = {
- isa = PBXGroup;
- children = (
- 18189EC52260422200327157 /* DeviceManager.h */,
- 18189EC62260422200327157 /* DeviceManager.mm */,
- );
- path = DeviceManager;
- sourceTree = "<group>";
- };
- 18189EC72260422200327157 /* Common */ = {
- isa = PBXGroup;
- children = (
- 18189EC82260422200327157 /* MessgaeStringUI */,
- 18189ECB2260422200327157 /* LanguageControl */,
- 18189ECE2260422200327157 /* Utils */,
- 18189ED12260422200327157 /* NSStringControl */,
- 18189EDF2260422200327157 /* FileControl */,
- 18189EE22260422200327157 /* NSUserDefault */,
- 18189EE52260422200327157 /* LoginControl */,
- );
- path = Common;
- sourceTree = "<group>";
- };
- 18189EC82260422200327157 /* MessgaeStringUI */ = {
- isa = PBXGroup;
- children = (
- 18189EC92260422200327157 /* MessageUI.h */,
- 18189ECA2260422200327157 /* MessageUI.mm */,
- );
- path = MessgaeStringUI;
- sourceTree = "<group>";
- };
- 18189ECB2260422200327157 /* LanguageControl */ = {
- isa = PBXGroup;
- children = (
- 18189ECC2260422200327157 /* LanguageManager.mm */,
- 18189ECD2260422200327157 /* LanguageManager.h */,
- );
- path = LanguageControl;
- sourceTree = "<group>";
- };
- 18189ECE2260422200327157 /* Utils */ = {
- isa = PBXGroup;
- children = (
- 18189ECF2260422200327157 /* UIView+Layout.m */,
- 18189ED02260422200327157 /* UIView+Layout.h */,
- );
- path = Utils;
- sourceTree = "<group>";
- };
- 18189ED12260422200327157 /* NSStringControl */ = {
- isa = PBXGroup;
- children = (
- 18189ED22260422200327157 /* NSString+Category.h */,
- 18189ED32260422200327157 /* MyStringManager.h */,
- 18189ED42260422200327157 /* NSString+Extention.h */,
- 18189ED52260422200327157 /* NSString+Path.h */,
- 18189ED62260422200327157 /* NSDate+TimeCategory.m */,
- 18189ED72260422200327157 /* GTMNSString+HTML.h */,
- 18189ED82260422200327157 /* NSString+Category.m */,
- 18189ED92260422200327157 /* GTMDefines.h */,
- 18189EDA2260422200327157 /* NSDate+TimeCategory.h */,
- 18189EDB2260422200327157 /* NSString+Path.m */,
- 18189EDC2260422200327157 /* NSString+Extention.m */,
- 18189EDD2260422200327157 /* MyStringManager.m */,
- 18189EDE2260422200327157 /* GTMNSString+HTML.m */,
- );
- path = NSStringControl;
- sourceTree = "<group>";
- };
- 18189EDF2260422200327157 /* FileControl */ = {
- isa = PBXGroup;
- children = (
- 18189EE02260422200327157 /* FileControl.h */,
- 18189EE12260422200327157 /* FileControl.mm */,
- );
- path = FileControl;
- sourceTree = "<group>";
- };
- 18189EE22260422200327157 /* NSUserDefault */ = {
- isa = PBXGroup;
- children = (
- 18189EE32260422200327157 /* NSUserDefaultData.h */,
- 18189EE42260422200327157 /* NSUserDefaultData.m */,
- );
- path = NSUserDefault;
- sourceTree = "<group>";
- };
- 18189EE52260422200327157 /* LoginControl */ = {
- isa = PBXGroup;
- children = (
- 18189EE62260422200327157 /* LoginShowControl.m */,
- 18189EE72260422200327157 /* CommonControl.h */,
- 18189EE82260422200327157 /* LoginShowControl.h */,
- 18189EE92260422200327157 /* CommonControl.m */,
- );
- path = LoginControl;
- sourceTree = "<group>";
- };
- 18189EEB2260422200327157 /* MediaPlayControl */ = {
- isa = PBXGroup;
- children = (
- 18189EEC2260422200327157 /* MediaPlaybackControl.h */,
- 18189EED2260422200327157 /* VideoContentDefination.h */,
- 18189EEE2260422200327157 /* TalkControl */,
- 18189EF32260422200327157 /* MediaplayerControl.h */,
- 18189EF42260422200327157 /* MediaPlaybackControl.mm */,
- 18189EF52260422200327157 /* MediaplayerControl.mm */,
- );
- path = MediaPlayControl;
- sourceTree = "<group>";
- };
- 18189EEE2260422200327157 /* TalkControl */ = {
- isa = PBXGroup;
- children = (
- 18189EEF2260422200327157 /* Recode.mm */,
- 18189EF02260422200327157 /* TalkBackControl.h */,
- 18189EF12260422200327157 /* Recode.h */,
- 18189EF22260422200327157 /* TalkBackControl.mm */,
- );
- path = TalkControl;
- sourceTree = "<group>";
- };
- 18189EF62260422200327157 /* sdk相关 */ = {
- isa = PBXGroup;
- children = (
- 18189EF72260422200327157 /* plist */,
- 18189EFA2260422200327157 /* ImageSource */,
- 18189F752260422200327157 /* Libraries */,
- 18189F7D2260422200327157 /* library */,
- 18189F802260422200327157 /* language */,
- );
- path = "sdk相关";
- sourceTree = "<group>";
- };
- 18189EF72260422200327157 /* plist */ = {
- isa = PBXGroup;
- children = (
- 18189EF82260422200327157 /* PlayToolImage.plist */,
- 18189EF92260422200327157 /* error.plist */,
- );
- path = plist;
- sourceTree = "<group>";
- };
- 18189EFA2260422200327157 /* ImageSource */ = {
- isa = PBXGroup;
- children = (
- 18189EFB2260422200327157 /* icon_hide_sel.png */,
- 18189EFC2260422200327157 /* MediaplayerImage */,
- 18189F3C2260422200327157 /* QRCode.png */,
- 18189F3D2260422200327157 /* radar_search_sign.png */,
- 18189F3E2260422200327157 /* radar_search_bg.png */,
- 18189F3F2260422200327157 /* sel.png */,
- 18189F402260422200327157 /* icon_funsdk.png */,
- 18189F412260422200327157 /* icon_hide_nor.png */,
- 18189F422260422200327157 /* StateImage */,
- 18189F622260422200327157 /* nor.png */,
- 18189F632260422200327157 /* DeviceImage */,
- 18189F722260422200327157 /* Local_Settings.png */,
- 18189F732260422200327157 /* phone2.png */,
- 18189F742260422200327157 /* new_back.png */,
- );
- path = ImageSource;
- sourceTree = "<group>";
- };
- 18189EFC2260422200327157 /* MediaplayerImage */ = {
- isa = PBXGroup;
- children = (
- 18189EFD2260422200327157 /* press_talk_selected_en.png */,
- 18189EFE2260422200327157 /* btn_SD.png */,
- 18189EFF2260422200327157 /* icon_close.png */,
- 18189F002260422200327157 /* btn_control_normal.png */,
- 18189F012260422200327157 /* btn_HD_F.png */,
- 18189F022260422200327157 /* record_temp_normal.png */,
- 18189F032260422200327157 /* btn_minus_normal.png */,
- 18189F042260422200327157 /* btn_HD_E.png */,
- 18189F052260422200327157 /* talk_unselect.png */,
- 18189F062260422200327157 /* btn_record.png */,
- 18189F072260422200327157 /* btn_voice_normal.png */,
- 18189F082260422200327157 /* press_talk_selected_sp.png */,
- 18189F092260422200327157 /* btn_control_left.png */,
- 18189F0A2260422200327157 /* press_talk_en.png */,
- 18189F0B2260422200327157 /* btn_stop.png */,
- 18189F0C2260422200327157 /* ic_alarm.png */,
- 18189F0D2260422200327157 /* btn_stop_select.png */,
- 18189F0E2260422200327157 /* press_talk_selected.png */,
- 18189F0F2260422200327157 /* ptz_unselect.png */,
- 18189F102260422200327157 /* btn_voice_selected.png */,
- 18189F112260422200327157 /* btn_control_up.png */,
- 18189F122260422200327157 /* press_talk_sp.png */,
- 18189F132260422200327157 /* btn_tool_recording.png */,
- 18189F142260422200327157 /* btn_SD_F.png */,
- 18189F152260422200327157 /* talk_select.png */,
- 18189F162260422200327157 /* btn_plus_highlighted.png */,
- 18189F172260422200327157 /* btn_SD_E.png */,
- 18189F182260422200327157 /* btn_pause.png */,
- 18189F192260422200327157 /* btn_pause_select.png */,
- 18189F1A2260422200327157 /* btn_control_down.png */,
- 18189F1B2260422200327157 /* Speed_Select.png */,
- 18189F1C2260422200327157 /* FishImage */,
- 18189F352260422200327157 /* press_talk.png */,
- 18189F362260422200327157 /* btn_minus_highlighted.png */,
- 18189F372260422200327157 /* btn_recording.png */,
- 18189F382260422200327157 /* btn_plus_normal.png */,
- 18189F392260422200327157 /* btn_HD.png */,
- 18189F3A2260422200327157 /* btn_control_right.png */,
- 18189F3B2260422200327157 /* btn_camera_normal.png */,
- );
- path = MediaplayerImage;
- sourceTree = "<group>";
- };
- 18189F1C2260422200327157 /* FishImage */ = {
- isa = PBXGroup;
- children = (
- 18189F1D2260422200327157 /* VR_Wall_nor.png */,
- 18189F1E2260422200327157 /* VR-cylinder_sel.png */,
- 18189F1F2260422200327157 /* VR_180_sel.png */,
- 18189F202260422200327157 /* VR-Ceiling_nor.png */,
- 18189F212260422200327157 /* VR-close_nor.png */,
- 18189F222260422200327157 /* VR-rectangle_sel.png */,
- 18189F232260422200327157 /* VR-tow_sel.png */,
- 18189F242260422200327157 /* VR-ball bowl_nor.png */,
- 18189F252260422200327157 /* VR_ball hat_nor.png */,
- 18189F262260422200327157 /* VR_Ball_sel.png */,
- 18189F272260422200327157 /* VR-four_nor.png */,
- 18189F282260422200327157 /* 180_3R_sel.png */,
- 18189F292260422200327157 /* VR-cylinder_nor.png */,
- 18189F2A2260422200327157 /* VR_180_nor.png */,
- 18189F2B2260422200327157 /* VR-Ceiling_sel.png */,
- 18189F2C2260422200327157 /* VR-rectangle_nor.png */,
- 18189F2D2260422200327157 /* VR_Wall_sel.png */,
- 18189F2E2260422200327157 /* VR_Ball_nor.png */,
- 18189F2F2260422200327157 /* VR-four_sel.png */,
- 18189F302260422200327157 /* 180_3R_nor.png */,
- 18189F312260422200327157 /* VR-ball bowl_sel.png */,
- 18189F322260422200327157 /* VR-tow_nor.png */,
- 18189F332260422200327157 /* 360VR-ins_default.png */,
- 18189F342260422200327157 /* VR_ball hat_sel.png */,
- );
- path = FishImage;
- sourceTree = "<group>";
- };
- 18189F422260422200327157 /* StateImage */ = {
- isa = PBXGroup;
- children = (
- 18189F432260422200327157 /* ic_wake_green.png */,
- 18189F452260422200327157 /* offline.png */,
- 18189F472260422200327157 /* sleepnotwakeup.png */,
- 18189F492260422200327157 /* Prepare_sleep.png */,
- 18189F4B2260422200327157 /* online.png */,
- 18189F4D2260422200327157 /* ic_sleep.png */,
- 18189F552260422200327157 /* sleepnotwakeup_zh.png */,
- );
- path = StateImage;
- sourceTree = "<group>";
- };
- 18189F632260422200327157 /* DeviceImage */ = {
- isa = PBXGroup;
- children = (
- 18189F642260422200327157 /* xmjp_camera.png */,
- 18189F652260422200327157 /* xmjp_seye.png */,
- 18189F662260422200327157 /* xmjp_mov.png */,
- 18189F672260422200327157 /* xmjp_car.png */,
- 18189F682260422200327157 /* xmjp_socket.png */,
- 18189F692260422200327157 /* xmjp_bulb.png */,
- 18189F6A2260422200327157 /* xmjp_fbulb.png */,
- 18189F6B2260422200327157 /* xmjp_rotot.png */,
- 18189F6C2260422200327157 /* xmjp_feye.png */,
- 18189F6D2260422200327157 /* xmjp_cloudbox_klok.png */,
- 18189F6E2260422200327157 /* xmjp_beye.png */,
- 18189F6F2260422200327157 /* xmjp_cloudbox.png */,
- 18189F702260422200327157 /* xmjp_bob.png */,
- 18189F712260422200327157 /* xmjp_bulbsocket.png */,
- );
- path = DeviceImage;
- sourceTree = "<group>";
- };
- 18189F752260422200327157 /* Libraries */ = {
- isa = PBXGroup;
- children = (
- 18189F762260422200327157 /* libstdc++.6.0.9.tbd */,
- 18189F772260422200327157 /* 鱼眼库 */,
- 18189F7A2260422200327157 /* SVProgressHUD.h */,
- 18189F7B2260422200327157 /* SVProgressHUD.m */,
- 18189F7C2260422200327157 /* SVProgressHUD.bundle */,
- );
- path = Libraries;
- sourceTree = "<group>";
- };
- 18189F772260422200327157 /* 鱼眼库 */ = {
- isa = PBXGroup;
- children = (
- 18189F782260422200327157 /* libfisheye.a */,
- 18189F792260422200327157 /* libFSCalendar.a */,
- );
- path = "鱼眼库";
- sourceTree = "<group>";
- };
- 18189F7D2260422200327157 /* library */ = {
- isa = PBXGroup;
- children = (
- 18189F7E2260422200327157 /* XMNetInterface.framework */,
- 18189F7F2260422200327157 /* FunSDK.framework */,
- );
- path = library;
- sourceTree = "<group>";
- };
- 18189F802260422200327157 /* language */ = {
- isa = PBXGroup;
- children = (
- 18189F812260422200327157 /* en.txt */,
- 18189F822260422200327157 /* zh_CN.txt */,
- );
- path = language;
- sourceTree = "<group>";
- };
- 18189F832260422200327157 /* SDKBaseFile */ = {
- isa = PBXGroup;
- children = (
- 18189F842260422200327157 /* Base */,
- 18189F8D2260422200327157 /* JsonHeader */,
- );
- path = SDKBaseFile;
- sourceTree = "<group>";
- };
- 18189F842260422200327157 /* Base */ = {
- isa = PBXGroup;
- children = (
- 18189F852260422200327157 /* BaseViewController.mm */,
- 18189F862260422200327157 /* SDKInitializeModel.h */,
- 18189F872260422200327157 /* ConfigControllerBase.mm */,
- 18189F882260422200327157 /* FunMsgListener.h */,
- 18189F892260422200327157 /* ConfigControllerBase.h */,
- 18189F8A2260422200327157 /* FunMsgListener.mm */,
- 18189F8B2260422200327157 /* BaseViewController.h */,
- 18189F8C2260422200327157 /* SDKInitializeModel.mm */,
- );
- path = Base;
- sourceTree = "<group>";
- };
- 18189F8D2260422200327157 /* JsonHeader */ = {
- isa = PBXGroup;
- children = (
- 18189F8E2260422200327157 /* OPSCalendar */,
- 18189F902260422200327157 /* AlarmPIR */,
- 18189F952260422200327157 /* Record */,
- 18189F992260422200327157 /* HumanDetection */,
- 18189F9B2260422200327157 /* Capability */,
- 18189FA62260422200327157 /* Encode */,
- 18189FB52260422200327157 /* Param */,
- 18189FB92260422200327157 /* Storage */,
- 18189FBE2260422200327157 /* NetWorkWI-FI */,
- 18189FC12260422200327157 /* Common */,
- 18189FC62260422200327157 /* WaterMark */,
- 18189FCC2260422200327157 /* ModifyPassword */,
- 18189FCE2260422200327157 /* AlarmDetect */,
- 18189FD22260422200327157 /* CarPark */,
- 18189FD62260422200327157 /* TimeSyn */,
- 18189FDA2260422200327157 /* Analyzer */,
- );
- path = JsonHeader;
- sourceTree = "<group>";
- };
- 18189F8E2260422200327157 /* OPSCalendar */ = {
- isa = PBXGroup;
- children = (
- 18189F8F2260422200327157 /* OPSCalendar.h */,
- );
- path = OPSCalendar;
- sourceTree = "<group>";
- };
- 18189F902260422200327157 /* AlarmPIR */ = {
- isa = PBXGroup;
- children = (
- 18189F912260422200327157 /* PirTimeSectionTwo.h */,
- 18189F922260422200327157 /* Alarm_PIR.h */,
- 18189F932260422200327157 /* PirTimeSection.h */,
- 18189F942260422200327157 /* PirTimeSectionOne.h */,
- );
- path = AlarmPIR;
- sourceTree = "<group>";
- };
- 18189F952260422200327157 /* Record */ = {
- isa = PBXGroup;
- children = (
- 18189F962260422200327157 /* ExtRecord.h */,
- 18189F972260422200327157 /* SupportExtRecord.h */,
- 18189F982260422200327157 /* Record.h */,
- );
- path = Record;
- sourceTree = "<group>";
- };
- 18189F992260422200327157 /* HumanDetection */ = {
- isa = PBXGroup;
- children = (
- 18189F9A2260422200327157 /* Detect_HumanDetectionDVR.h */,
- );
- path = HumanDetection;
- sourceTree = "<group>";
- };
- 18189F9B2260422200327157 /* Capability */ = {
- isa = PBXGroup;
- children = (
- 18189F9C2260422200327157 /* OtherFunction.h */,
- 18189F9D2260422200327157 /* CommFunction.h */,
- 18189F9E2260422200327157 /* SystemFunction.h */,
- 18189F9F2260422200327157 /* EncodeFunction.h */,
- 18189FA02260422200327157 /* MobileDVR.h */,
- 18189FA12260422200327157 /* AlarmFunction.h */,
- 18189FA22260422200327157 /* InputMethod.h */,
- 18189FA32260422200327157 /* NetServerFunction.h */,
- 18189FA42260422200327157 /* TipShow.h */,
- 18189FA52260422200327157 /* PreviewFunction.h */,
- );
- path = Capability;
- sourceTree = "<group>";
- };
- 18189FA62260422200327157 /* Encode */ = {
- isa = PBXGroup;
- children = (
- 18189FA72260422200327157 /* NetUse_DigitalAbility.h */,
- 18189FA82260422200327157 /* DSTStart.h */,
- 18189FA92260422200327157 /* NetUse_DigitalEncode.h */,
- 18189FAA2260422200327157 /* EncodeCapability.h */,
- 18189FAB2260422200327157 /* CombEncodeInfo.h */,
- 18189FAC2260422200327157 /* Audio.h */,
- 18189FAD2260422200327157 /* MainFormat.h */,
- 18189FAE2260422200327157 /* Simplify_Encode.h */,
- 18189FAF2260422200327157 /* EncodeInfo.h */,
- 18189FB02260422200327157 /* Video.h */,
- 18189FB12260422200327157 /* DSTEnd.h */,
- 18189FB22260422200327157 /* ability.h */,
- 18189FB32260422200327157 /* General_Location.h */,
- 18189FB42260422200327157 /* ExtraFormat.h */,
- );
- path = Encode;
- sourceTree = "<group>";
- };
- 18189FB52260422200327157 /* Param */ = {
- isa = PBXGroup;
- children = (
- 18189FB62260422200327157 /* GainParam.h */,
- 18189FB72260422200327157 /* Camera_Param.h */,
- 18189FB82260422200327157 /* ExposureParam.h */,
- );
- path = Param;
- sourceTree = "<group>";
- };
- 18189FB92260422200327157 /* Storage */ = {
- isa = PBXGroup;
- children = (
- 18189FBA2260422200327157 /* OPStorageManager.h */,
- 18189FBB2260422200327157 /* StorageGlobal.h */,
- 18189FBC2260422200327157 /* Partition.h */,
- 18189FBD2260422200327157 /* StorageInfo.h */,
- );
- path = Storage;
- sourceTree = "<group>";
- };
- 18189FBE2260422200327157 /* NetWorkWI-FI */ = {
- isa = PBXGroup;
- children = (
- 18189FBF2260422200327157 /* NetWork_Wifi.h */,
- 18189FC02260422200327157 /* NetWork_NetDHCP.h */,
- );
- path = "NetWorkWI-FI";
- sourceTree = "<group>";
- };
- 18189FC12260422200327157 /* Common */ = {
- isa = PBXGroup;
- children = (
- 18189FC22260422200327157 /* SystemInfo.h */,
- 18189FC32260422200327157 /* OPDefaultConfig.h */,
- 18189FC42260422200327157 /* SystemFunction.h */,
- 18189FC52260422200327157 /* General_General.h */,
- );
- path = Common;
- sourceTree = "<group>";
- };
- 18189FC62260422200327157 /* WaterMark */ = {
- isa = PBXGroup;
- children = (
- 18189FC72260422200327157 /* AVEnc_VideoWidget.h */,
- 18189FC82260422200327157 /* ChannelTitle.h */,
- 18189FC92260422200327157 /* TimeTitleAttribute.h */,
- 18189FCA2260422200327157 /* ChannelTitleAttribute.h */,
- 18189FCB2260422200327157 /* fVideo_OsdLogo.h */,
- );
- path = WaterMark;
- sourceTree = "<group>";
- };
- 18189FCC2260422200327157 /* ModifyPassword */ = {
- isa = PBXGroup;
- children = (
- 18189FCD2260422200327157 /* ModifyPassword.h */,
- );
- path = ModifyPassword;
- sourceTree = "<group>";
- };
- 18189FCE2260422200327157 /* AlarmDetect */ = {
- isa = PBXGroup;
- children = (
- 18189FCF2260422200327157 /* Detect_MotionDetect.h */,
- 18189FD02260422200327157 /* Detect_LossDetect.h */,
- 18189FD12260422200327157 /* Detect_BlindDetect.h */,
- );
- path = AlarmDetect;
- sourceTree = "<group>";
- };
- 18189FD22260422200327157 /* CarPark */ = {
- isa = PBXGroup;
- children = (
- 18189FD32260422200327157 /* Park_AdjustInfo.h */,
- 18189FD42260422200327157 /* Points.h */,
- 18189FD52260422200327157 /* CarInfo.h */,
- );
- path = CarPark;
- sourceTree = "<group>";
- };
- 18189FD62260422200327157 /* TimeSyn */ = {
- isa = PBXGroup;
- children = (
- 18189FD72260422200327157 /* System_TimeZone.h */,
- 18189FD82260422200327157 /* TimeQuery.h */,
- 18189FD92260422200327157 /* TimeQuery.m */,
- );
- path = TimeSyn;
- sourceTree = "<group>";
- };
- 18189FDA2260422200327157 /* Analyzer */ = {
- isa = PBXGroup;
- children = (
- 18189FDB2260422200327157 /* TripWireRule.h */,
- 18189FDC2260422200327157 /* PerimeterRule.h */,
- 18189FDD2260422200327157 /* RuleConfig.h */,
- 18189FDE2260422200327157 /* EventHandler.h */,
- 18189FDF2260422200327157 /* TripWire.h */,
- 18189FE02260422200327157 /* Boundary.h */,
- 18189FE12260422200327157 /* Detect_Analyze.h */,
- 18189FE22260422200327157 /* StolenRule.h */,
- 18189FE32260422200327157 /* SubRgC.h */,
- 18189FE42260422200327157 /* SpclRgs.h */,
- 18189FE52260422200327157 /* AbandumRule.h */,
- 18189FE62260422200327157 /* StartPt.h */,
- 18189FE72260422200327157 /* LimitPara.h */,
- 18189FE82260422200327157 /* PEARule.h */,
- 18189FE92260422200327157 /* SubRgB.h */,
- 18189FEA2260422200327157 /* OscRg.h */,
- 18189FEB2260422200327157 /* CPCRule.h */,
- 18189FEC2260422200327157 /* NoParkingRule.h */,
- 18189FED2260422200327157 /* SubRgA.h */,
- 18189FEE2260422200327157 /* Line.h */,
- 18189FEF2260422200327157 /* Points.h */,
- 18189FF02260422200327157 /* EndPt.h */,
- 18189FF12260422200327157 /* Limit.h */,
- 18189FF22260422200327157 /* AVDRule.h */,
- 18189FF32260422200327157 /* OscPara.h */,
- 18189FF42260422200327157 /* OSCRule.h */,
- );
- path = Analyzer;
- sourceTree = "<group>";
- };
- 18189FF52260422200327157 /* Device */ = {
- isa = PBXGroup;
- children = (
- 18189FF62260422200327157 /* DevicelistArchiveModel.m */,
- 18189FF72260422200327157 /* DeviceControl.h */,
- 18189FF82260422200327157 /* DeviceInfo */,
- 18189FFD2260422200327157 /* DeviceControl.m */,
- 18189FFE2260422200327157 /* DevicelistArchiveModel.h */,
- 18189FFF2260422200327157 /* DeviceAndChannel */,
- );
- path = Device;
- sourceTree = "<group>";
- };
- 18189FF82260422200327157 /* DeviceInfo */ = {
- isa = PBXGroup;
- children = (
- 18189FF92260422200327157 /* ObSysteminfo.h */,
- 18189FFA2260422200327157 /* ObSystemFunction.m */,
- 18189FFB2260422200327157 /* ObSysteminfo.m */,
- 18189FFC2260422200327157 /* ObSystemFunction.h */,
- );
- path = DeviceInfo;
- sourceTree = "<group>";
- };
- 18189FFF2260422200327157 /* DeviceAndChannel */ = {
- isa = PBXGroup;
- children = (
- 1818A0002260422200327157 /* DeviceObject.m */,
- 1818A0012260422200327157 /* ObjectCoder.m */,
- 1818A0022260422200327157 /* ChannelObject.h */,
- 1818A0032260422200327157 /* ObjectCoder.h */,
- 1818A0042260422200327157 /* DeviceObject.h */,
- 1818A0052260422200327157 /* ChannelObject.m */,
- );
- path = DeviceAndChannel;
- sourceTree = "<group>";
- };
- 1818A0062260422200327157 /* ViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0072260422200327157 /* DeviceConfigViewController */,
- 1818A0972260422200327157 /* MainViewController */,
- 1818A09E2260422200327157 /* PhotosViewController */,
- 1818A0A62260422200327157 /* DeviceListViewController */,
- 1818A0AE2260422200327157 /* PlayViewController */,
- 1818A0DC2260422300327157 /* AccountViewController */,
- 1818A1022260422300327157 /* DeviceAddViewController */,
- );
- path = ViewController;
- sourceTree = "<group>";
- };
- 1818A0072260422200327157 /* DeviceConfigViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0082260422200327157 /* DeviceConfigViewController.h */,
- 1818A0522260422200327157 /* DeviceConfigViewController.mm */,
- 1818A0092260422200327157 /* DeviceconfigTableViewCell.h */,
- 1818A0672260422200327157 /* DeviceconfigTableViewCell.m */,
- 1818A0682260422200327157 /* ItemTableviewCell.h */,
- 1818A02C2260422200327157 /* ItemTableviewCell.m */,
- 1818A0632260422200327157 /* ItemViewController.h */,
- 1818A00D2260422200327157 /* ItemViewController.m */,
- 1818A00A2260422200327157 /* UpgradeDeviceViewController */,
- 1818A00E2260422200327157 /* WaterMarkViewController */,
- 1818A0112260422200327157 /* ShutDowmTimeViewController */,
- 1818A0142260422200327157 /* AlarmMessageViewController */,
- 1818A01C2260422200327157 /* EncodeViewController */,
- 1818A0242260422200327157 /* HumanDetectionViewController */,
- 1818A0272260422200327157 /* PasswordViewController */,
- 1818A02D2260422200327157 /* SensorConfigVC */,
- 1818A04A2260422200327157 /* AlarmViewController */,
- 1818A0532260422200327157 /* AnalyzerViewController */,
- 1818A0562260422200327157 /* RecordViewController */,
- 1818A0592260422200327157 /* BuzzerViewController */,
- 1818A05C2260422200327157 /* EncodingFormatViewController */,
- 1818A0602260422200327157 /* StorageViewController */,
- 1818A0642260422200327157 /* TimeSynViewController */,
- 1818A0692260422200327157 /* AboutDeviceViewController */,
- 1818A06C2260422200327157 /* DeviceFileViewController */,
- 1818A0812260422200327157 /* ParamViewController */,
- 1818A0842260422200327157 /* CloudAbilityViewController */,
- );
- path = DeviceConfigViewController;
- sourceTree = "<group>";
- };
- 1818A00A2260422200327157 /* UpgradeDeviceViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A00B2260422200327157 /* UpgradeDeviceViewController.h */,
- 1818A00C2260422200327157 /* UpgradeDeviceViewController.mm */,
- );
- path = UpgradeDeviceViewController;
- sourceTree = "<group>";
- };
- 1818A00E2260422200327157 /* WaterMarkViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A00F2260422200327157 /* WaterMarkViewController.mm */,
- 1818A0102260422200327157 /* WaterMarkViewController.h */,
- );
- path = WaterMarkViewController;
- sourceTree = "<group>";
- };
- 1818A0112260422200327157 /* ShutDowmTimeViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0122260422200327157 /* ShutDownTimeViewController.mm */,
- 1818A0132260422200327157 /* ShutDownTimeViewController.h */,
- );
- path = ShutDowmTimeViewController;
- sourceTree = "<group>";
- };
- 1818A0142260422200327157 /* AlarmMessageViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0152260422200327157 /* AlarmMessageCell */,
- 1818A0182260422200327157 /* AlarmMessageViewController.mm */,
- 1818A0192260422200327157 /* AlarmMessagePicViewController.m */,
- 1818A01A2260422200327157 /* AlarmMessagePicViewController.h */,
- 1818A01B2260422200327157 /* AlarmMessageViewController.h */,
- );
- path = AlarmMessageViewController;
- sourceTree = "<group>";
- };
- 1818A0152260422200327157 /* AlarmMessageCell */ = {
- isa = PBXGroup;
- children = (
- 1818A0162260422200327157 /* AlarmMessageCell.h */,
- 1818A0172260422200327157 /* AlarmMessageCell.m */,
- );
- path = AlarmMessageCell;
- sourceTree = "<group>";
- };
- 1818A01C2260422200327157 /* EncodeViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0232260422200327157 /* EncodeItemViewController.h */,
- 1818A01D2260422200327157 /* EncodeItemViewController.m */,
- 1818A0222260422200327157 /* EncodeViewController.h */,
- 1818A01E2260422200327157 /* EncodeViewController.mm */,
- 1818A01F2260422200327157 /* Cell */,
- );
- path = EncodeViewController;
- sourceTree = "<group>";
- };
- 1818A01F2260422200327157 /* Cell */ = {
- isa = PBXGroup;
- children = (
- 1818A0202260422200327157 /* EncodeConfigTableviewCell.m */,
- 1818A0212260422200327157 /* EncodeConfigTableviewCell.h */,
- );
- path = Cell;
- sourceTree = "<group>";
- };
- 1818A0242260422200327157 /* HumanDetectionViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0252260422200327157 /* HumanDetectionViewController.mm */,
- 1818A0262260422200327157 /* HumanDetectionViewController.h */,
- );
- path = HumanDetectionViewController;
- sourceTree = "<group>";
- };
- 1818A0272260422200327157 /* PasswordViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0282260422200327157 /* PasswordView.m */,
- 1818A0292260422200327157 /* PasswordViewController.h */,
- 1818A02A2260422200327157 /* PasswordViewController.mm */,
- 1818A02B2260422200327157 /* PasswordView.h */,
- );
- path = PasswordViewController;
- sourceTree = "<group>";
- };
- 1818A02D2260422200327157 /* SensorConfigVC */ = {
- isa = PBXGroup;
- children = (
- 1818A02E2260422200327157 /* SensorListCell.m */,
- 1818A02F2260422200327157 /* UIColor+Util.h */,
- 1818A0302260422200327157 /* SensorDeviceModel.m */,
- 1818A0312260422200327157 /* WZLBadge */,
- 1818A0402260422200327157 /* XMWallSwitchView.m */,
- 1818A0412260422200327157 /* XMLinkWallSwitchCell.h */,
- 1818A0422260422200327157 /* SensorListCell.h */,
- 1818A0432260422200327157 /* UIColor+Util.m */,
- 1818A0442260422200327157 /* SensorlistVCViewController.h */,
- 1818A0452260422200327157 /* SensorDeviceModel.h */,
- 1818A0462260422200327157 /* SensorInfo.h */,
- 1818A0472260422200327157 /* XMLinkWallSwitchCell.m */,
- 1818A0482260422200327157 /* XMWallSwitchView.h */,
- 1818A0492260422200327157 /* SensorlistVCViewController.mm */,
- );
- path = SensorConfigVC;
- sourceTree = "<group>";
- };
- 1818A0312260422200327157 /* WZLBadge */ = {
- isa = PBXGroup;
- children = (
- 1818A0322260422200327157 /* CategorySupport */,
- 1818A0352260422200327157 /* BarItem */,
- 1818A03A2260422200327157 /* WZLBadgeImport.h */,
- 1818A03B2260422200327157 /* Protocol */,
- 1818A03D2260422200327157 /* View */,
- );
- path = WZLBadge;
- sourceTree = "<group>";
- };
- 1818A0322260422200327157 /* CategorySupport */ = {
- isa = PBXGroup;
- children = (
- 1818A0332260422200327157 /* CAAnimation+WAnimation.m */,
- 1818A0342260422200327157 /* CAAnimation+WAnimation.h */,
- );
- path = CategorySupport;
- sourceTree = "<group>";
- };
- 1818A0352260422200327157 /* BarItem */ = {
- isa = PBXGroup;
- children = (
- 1818A0362260422200327157 /* UIBarButtonItem+WZLBadge.h */,
- 1818A0372260422200327157 /* UITabBarItem+WZLBadge.h */,
- 1818A0382260422200327157 /* UIBarButtonItem+WZLBadge.m */,
- 1818A0392260422200327157 /* UITabBarItem+WZLBadge.m */,
- );
- path = BarItem;
- sourceTree = "<group>";
- };
- 1818A03B2260422200327157 /* Protocol */ = {
- isa = PBXGroup;
- children = (
- 1818A03C2260422200327157 /* WZLBadgeProtocol.h */,
- );
- path = Protocol;
- sourceTree = "<group>";
- };
- 1818A03D2260422200327157 /* View */ = {
- isa = PBXGroup;
- children = (
- 1818A03E2260422200327157 /* UIView+WZLBadge.h */,
- 1818A03F2260422200327157 /* UIView+WZLBadge.m */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 1818A04A2260422200327157 /* AlarmViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A04B2260422200327157 /* AlarmLevelViewController.h */,
- 1818A04C2260422200327157 /* AlarmDetectViewController.h */,
- 1818A04D2260422200327157 /* DefaultTableViewCell */,
- 1818A0502260422200327157 /* AlarmDetectViewController.mm */,
- 1818A0512260422200327157 /* AlarmLevelViewController.m */,
- );
- path = AlarmViewController;
- sourceTree = "<group>";
- };
- 1818A04D2260422200327157 /* DefaultTableViewCell */ = {
- isa = PBXGroup;
- children = (
- 1818A04E2260422200327157 /* AlarmConfigTableViewCell.m */,
- 1818A04F2260422200327157 /* AlarmConfigTableViewCell.h */,
- );
- path = DefaultTableViewCell;
- sourceTree = "<group>";
- };
- 1818A0532260422200327157 /* AnalyzerViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0542260422200327157 /* AnalyzerViewController.h */,
- 1818A0552260422200327157 /* AnalyzerViewController.mm */,
- );
- path = AnalyzerViewController;
- sourceTree = "<group>";
- };
- 1818A0562260422200327157 /* RecordViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0572260422200327157 /* RecordViewController.mm */,
- 1818A0582260422200327157 /* RecordViewController.h */,
- );
- path = RecordViewController;
- sourceTree = "<group>";
- };
- 1818A0592260422200327157 /* BuzzerViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A05A2260422200327157 /* BuzzerViewController.h */,
- 1818A05B2260422200327157 /* BuzzerViewController.mm */,
- );
- path = BuzzerViewController;
- sourceTree = "<group>";
- };
- 1818A05C2260422200327157 /* EncodingFormatViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A05D2260422200327157 /* EncodingFormatViewController.mm */,
- 1818A05F2260422200327157 /* EncodingFormatViewController.h */,
- );
- path = EncodingFormatViewController;
- sourceTree = "<group>";
- };
- 1818A0602260422200327157 /* StorageViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0612260422200327157 /* StorageViewController.mm */,
- 1818A0622260422200327157 /* StorageViewController.h */,
- );
- path = StorageViewController;
- sourceTree = "<group>";
- };
- 1818A0642260422200327157 /* TimeSynViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0652260422200327157 /* TimeSynViewController.mm */,
- 1818A0662260422200327157 /* TimeSynViewController.h */,
- );
- path = TimeSynViewController;
- sourceTree = "<group>";
- };
- 1818A0692260422200327157 /* AboutDeviceViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A06A2260422200327157 /* AboutDeviceViewController.mm */,
- 1818A06B2260422200327157 /* AboutDeviceViewController.h */,
- );
- path = AboutDeviceViewController;
- sourceTree = "<group>";
- };
- 1818A06C2260422200327157 /* DeviceFileViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A06D2260422200327157 /* VideoFileViewController.mm */,
- 1818A06E2260422200327157 /* PictureFileViewController.m */,
- 1818A06F2260422200327157 /* PictureFileViewController */,
- 1818A0762260422200327157 /* VideoFileViewController.h */,
- 1818A0772260422200327157 /* VideoFileViewController */,
- 1818A0802260422200327157 /* PictureFileViewController.h */,
- );
- path = DeviceFileViewController;
- sourceTree = "<group>";
- };
- 1818A06F2260422200327157 /* PictureFileViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0702260422200327157 /* PictureDownloadViewController.h */,
- 1818A0712260422200327157 /* MonthPictureViewController.mm */,
- 1818A0722260422200327157 /* PictureSearchViewController.h */,
- 1818A0732260422200327157 /* MonthPictureViewController.h */,
- 1818A0742260422200327157 /* PictureDownloadViewController.mm */,
- 1818A0752260422200327157 /* PictureSearchViewController.mm */,
- );
- path = PictureFileViewController;
- sourceTree = "<group>";
- };
- 1818A0772260422200327157 /* VideoFileViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0782260422200327157 /* DownloadViewController.h */,
- 1818A0792260422200327157 /* MonthFileViewController.h */,
- 1818A07A2260422200327157 /* ByFileViewController.mm */,
- 1818A07B2260422200327157 /* DownloadViewController.mm */,
- 1818A07C2260422200327157 /* ByTimeViewController.h */,
- 1818A07D2260422200327157 /* ByFileViewController.h */,
- 1818A07E2260422200327157 /* MonthFileViewController.mm */,
- 1818A07F2260422200327157 /* ByTimeViewController.mm */,
- );
- path = VideoFileViewController;
- sourceTree = "<group>";
- };
- 1818A0812260422200327157 /* ParamViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0822260422200327157 /* ParamViewController.h */,
- 1818A0832260422200327157 /* ParamViewController.mm */,
- );
- path = ParamViewController;
- sourceTree = "<group>";
- };
- 1818A0842260422200327157 /* CloudAbilityViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0852260422200327157 /* CloudServerViewController.mm */,
- 1818A0862260422200327157 /* CloudAbilityViewController.h */,
- 1818A0872260422200327157 /* CloudAbilityViewController.mm */,
- 1818A0882260422200327157 /* CloudPhotoServerViewController */,
- 1818A08F2260422200327157 /* CloudServerViewController.h */,
- 1818A0902260422200327157 /* CloudVideoServerViewController */,
- );
- path = CloudAbilityViewController;
- sourceTree = "<group>";
- };
- 1818A0882260422200327157 /* CloudPhotoServerViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0892260422200327157 /* CloudPhotoViewController.h */,
- 1818A08A2260422200327157 /* CloudPhotoDownloadViewController.mm */,
- 1818A08B2260422200327157 /* CloudphotoDayVController.h */,
- 1818A08C2260422200327157 /* CloudphotoDayVController.mm */,
- 1818A08D2260422200327157 /* CloudPhotoViewController.mm */,
- 1818A08E2260422200327157 /* CloudPhotoDownloadViewController.h */,
- );
- path = CloudPhotoServerViewController;
- sourceTree = "<group>";
- };
- 1818A0902260422200327157 /* CloudVideoServerViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0912260422200327157 /* CloudVideoViewController.h */,
- 1818A0922260422200327157 /* CloudVideoDownloadViewController.mm */,
- 1818A0932260422200327157 /* CloudVideoDayViewController.h */,
- 1818A0942260422200327157 /* CloudVideoDayViewController.mm */,
- 1818A0952260422200327157 /* CloudVideoViewController.mm */,
- 1818A0962260422200327157 /* CloudVideoDownloadViewController.h */,
- );
- path = CloudVideoServerViewController;
- sourceTree = "<group>";
- };
- 1818A0972260422200327157 /* MainViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0982260422200327157 /* DeviceAddViewController.h */,
- 1818A09A2260422200327157 /* DeviceAddViewController.m */,
- 1818A09C2260422200327157 /* MainViewController.h */,
- 1818A0992260422200327157 /* MainViewController.mm */,
- 1818A09D2260422200327157 /* AccountViewController.h */,
- 1818A09B2260422200327157 /* AccountViewController.mm */,
- );
- path = MainViewController;
- sourceTree = "<group>";
- };
- 1818A09E2260422200327157 /* PhotosViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A09F2260422200327157 /* H265PlayViewController */,
- 1818A0A42260422200327157 /* PhotosViewController.mm */,
- 1818A0A52260422200327157 /* PhotosViewController.h */,
- );
- path = PhotosViewController;
- sourceTree = "<group>";
- };
- 1818A09F2260422200327157 /* H265PlayViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0A02260422200327157 /* CYGLKView.m */,
- 1818A0A12260422200327157 /* CYGLKView.h */,
- 1818A0A22260422200327157 /* XMPlayerVC.mm */,
- 1818A0A32260422200327157 /* XMPlayerVC.h */,
- );
- path = H265PlayViewController;
- sourceTree = "<group>";
- };
- 1818A0A62260422200327157 /* DeviceListViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0AC2260422200327157 /* DeviceListViewController.h */,
- 1818A0A72260422200327157 /* DeviceListViewController.mm */,
- 1818A0A82260422200327157 /* DeviceInfoEditViewController.h */,
- 1818A0AD2260422200327157 /* DeviceInfoEditViewController.mm */,
- 1818A0A92260422200327157 /* Cell */,
- );
- path = DeviceListViewController;
- sourceTree = "<group>";
- };
- 1818A0A92260422200327157 /* Cell */ = {
- isa = PBXGroup;
- children = (
- 1818A0AA2260422200327157 /* DeviceListTableViewCell.h */,
- 1818A0AB2260422200327157 /* DeviceListTableViewCell.m */,
- );
- path = Cell;
- sourceTree = "<group>";
- };
- 1818A0AE2260422200327157 /* PlayViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A0AF2260422200327157 /* FishPlayControl.mm */,
- 1818A0B02260422200327157 /* PlayBackViewController.h */,
- 1818A0B12260422200327157 /* PlayViewController.mm */,
- 1818A0B22260422200327157 /* PlayCloudVideoViewController.mm */,
- 1818A0B32260422200327157 /* PlayBackView */,
- 1818A0BA2260422200327157 /* PlayCloudVideoViewController.h */,
- 1818A0BB2260422200327157 /* PlayBackViewController.mm */,
- 1818A0BC2260422200327157 /* FunctionView */,
- 1818A0C72260422300327157 /* FishPlayControl.h */,
- 1818A0C82260422300327157 /* PlayViewController.h */,
- 1818A0C92260422300327157 /* 鱼眼相关 */,
- );
- path = PlayViewController;
- sourceTree = "<group>";
- };
- 1818A0B32260422200327157 /* PlayBackView */ = {
- isa = PBXGroup;
- children = (
- 1818A0B42260422200327157 /* ProgressBackView.mm */,
- 1818A0B52260422200327157 /* DateSelectView.m */,
- 1818A0B62260422200327157 /* MyProgressView.h */,
- 1818A0B72260422200327157 /* ProgressBackView.h */,
- 1818A0B82260422200327157 /* DateSelectView.h */,
- 1818A0B92260422200327157 /* MyProgressView.m */,
- );
- path = PlayBackView;
- sourceTree = "<group>";
- };
- 1818A0BC2260422200327157 /* FunctionView */ = {
- isa = PBXGroup;
- children = (
- 1818A0BD2260422200327157 /* PlayFunctionView.m */,
- 1818A0BE2260422200327157 /* TalkView.h */,
- 1818A0BF2260422200327157 /* PlayView.h */,
- 1818A0C02260422200327157 /* PTZView.m */,
- 1818A0C12260422200327157 /* PlayMenuView.m */,
- 1818A0C22260422200327157 /* PlayView.m */,
- 1818A0C32260422300327157 /* PlayFunctionView.h */,
- 1818A0C42260422300327157 /* TalkView.m */,
- 1818A0C52260422300327157 /* PTZView.h */,
- 1818A0C62260422300327157 /* PlayMenuView.h */,
- );
- path = FunctionView;
- sourceTree = "<group>";
- };
- 1818A0C92260422300327157 /* 鱼眼相关 */ = {
- isa = PBXGroup;
- children = (
- 1818A0CA2260422300327157 /* FishEyeVideoVC.h */,
- 1818A0CB2260422300327157 /* fisheye.h */,
- 1818A0CC2260422300327157 /* errordef.h */,
- 1818A0CD2260422300327157 /* UILabelOutLined.m */,
- 1818A0CE2260422300327157 /* VRSoft.h */,
- 1818A0CF2260422300327157 /* fisheye_opengl_errordef.h */,
- 1818A0D02260422300327157 /* VRGLViewController.h */,
- 1818A0D12260422300327157 /* fisheye_opengl.h */,
- 1818A0D22260422300327157 /* VRFunctionView.mm */,
- 1818A0D32260422300327157 /* FishEyeVideoVC.mm */,
- 1818A0D42260422300327157 /* VRGLViewController.mm */,
- 1818A0D52260422300327157 /* fisheye_errordef.h */,
- 1818A0D62260422300327157 /* VRFunctionView.h */,
- 1818A0D72260422300327157 /* HardVRViewController.h */,
- 1818A0D82260422300327157 /* VRSoftDef.h */,
- 1818A0D92260422300327157 /* UILabelOutLined.h */,
- 1818A0DA2260422300327157 /* typedef.h */,
- 1818A0DB2260422300327157 /* HardVRViewController.mm */,
- );
- path = "鱼眼相关";
- sourceTree = "<group>";
- };
- 1818A0DC2260422300327157 /* AccountViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A1002260422300327157 /* LoginViewController.h */,
- 1818A0FE2260422300327157 /* LoginViewController.mm */,
- 1818A0FD2260422300327157 /* LoginViewController.xib */,
- 1818A0DD2260422300327157 /* ChangePasswordViewController.h */,
- 1818A0FF2260422300327157 /* ChangePasswordViewController.mm */,
- 1818A0F72260422300327157 /* PrivacyPolicyVC.h */,
- 1818A0DE2260422300327157 /* PrivacyPolicyVC.m */,
- 1818A0EA2260422300327157 /* PasswordSaveViewController.h */,
- 1818A0DF2260422300327157 /* PasswordSaveViewController.m */,
- 1818A0E02260422300327157 /* UserInfoViewController.h */,
- 1818A0EE2260422300327157 /* UserInfoViewController.mm */,
- 1818A0E12260422300327157 /* UserBindViewController.h */,
- 1818A0F92260422300327157 /* UserBindViewController.mm */,
- 1818A0E22260422300327157 /* ForgetPasswordViewController.h */,
- 1818A0E92260422300327157 /* ForgetPasswordViewController.mm */,
- 1818A1012260422300327157 /* RegisterViewController.h */,
- 1818A0F82260422300327157 /* RegisterViewController.mm */,
- 1818A0E32260422300327157 /* UserInfoView */,
- 1818A0E62260422300327157 /* ForgetPasswordView */,
- 1818A0EB2260422300327157 /* ChangePasswordView */,
- 1818A0EF2260422300327157 /* Cell */,
- 1818A0F42260422300327157 /* UserBindView */,
- 1818A0FA2260422300327157 /* RegisterView */,
- );
- path = AccountViewController;
- sourceTree = "<group>";
- };
- 1818A0E32260422300327157 /* UserInfoView */ = {
- isa = PBXGroup;
- children = (
- 1818A0E42260422300327157 /* UserInfoView.h */,
- 1818A0E52260422300327157 /* UserInfoView.m */,
- );
- path = UserInfoView;
- sourceTree = "<group>";
- };
- 1818A0E62260422300327157 /* ForgetPasswordView */ = {
- isa = PBXGroup;
- children = (
- 1818A0E72260422300327157 /* ForgetPasswordView.h */,
- 1818A0E82260422300327157 /* ForgetPasswordView.m */,
- );
- path = ForgetPasswordView;
- sourceTree = "<group>";
- };
- 1818A0EB2260422300327157 /* ChangePasswordView */ = {
- isa = PBXGroup;
- children = (
- 1818A0EC2260422300327157 /* ChangePasswordView.m */,
- 1818A0ED2260422300327157 /* ChangePasswordView.h */,
- );
- path = ChangePasswordView;
- sourceTree = "<group>";
- };
- 1818A0EF2260422300327157 /* Cell */ = {
- isa = PBXGroup;
- children = (
- 1818A0F02260422300327157 /* UserInputCell.h */,
- 1818A0F12260422300327157 /* UserInfoCell.h */,
- 1818A0F22260422300327157 /* UserInputCell.m */,
- 1818A0F32260422300327157 /* UserInfoCell.m */,
- );
- path = Cell;
- sourceTree = "<group>";
- };
- 1818A0F42260422300327157 /* UserBindView */ = {
- isa = PBXGroup;
- children = (
- 1818A0F52260422300327157 /* UserBindView.h */,
- 1818A0F62260422300327157 /* UserBindView.m */,
- );
- path = UserBindView;
- sourceTree = "<group>";
- };
- 1818A0FA2260422300327157 /* RegisterView */ = {
- isa = PBXGroup;
- children = (
- 1818A0FB2260422300327157 /* RegisterView.h */,
- 1818A0FC2260422300327157 /* RegisterView.m */,
- );
- path = RegisterView;
- sourceTree = "<group>";
- };
- 1818A1022260422300327157 /* DeviceAddViewController */ = {
- isa = PBXGroup;
- children = (
- 1818A1072260422300327157 /* SerialNumAddViewController.h */,
- 1818A1052260422300327157 /* SerialNumAddViewController.mm */,
- 1818A1172260422300327157 /* IPAddViewController.h */,
- 1818A1032260422300327157 /* IPAddViewController.mm */,
- 1818A1082260422300327157 /* APLoginConfigVC.h */,
- 1818A1042260422300327157 /* APLoginConfigVC.mm */,
- 1818A1062260422300327157 /* OriginalScaner.mm */,
- 1818A1092260422300327157 /* MyRadarView.h */,
- 1818A1182260422300327157 /* MyRadarView.m */,
- 1818A10A2260422300327157 /* OriginalScaner.h */,
- 1818A10B2260422300327157 /* ScanAnimationView.h */,
- 1818A1192260422300327157 /* ScanAnimationView.m */,
- 1818A11A2260422300327157 /* QuickConfigurationViewController.h */,
- 1818A10F2260422300327157 /* QuickConfigurationViewController.mm */,
- 1818A10C2260422300327157 /* QuickConfigurationView */,
- 1818A1102260422300327157 /* Cell */,
- 1818A1152260422300327157 /* LANSearchViewController.mm */,
- 1818A1162260422300327157 /* LANSearchViewController.h */,
- );
- path = DeviceAddViewController;
- sourceTree = "<group>";
- };
- 1818A10C2260422300327157 /* QuickConfigurationView */ = {
- isa = PBXGroup;
- children = (
- 1818A10D2260422300327157 /* QuickConfigurationView.h */,
- 1818A10E2260422300327157 /* QuickConfigurationView.m */,
- );
- path = QuickConfigurationView;
- sourceTree = "<group>";
- };
- 1818A1102260422300327157 /* Cell */ = {
- isa = PBXGroup;
- children = (
- 1818A1112260422300327157 /* AddDeviceInputCell.m */,
- 1818A1122260422300327157 /* SearchDeviceCell.m */,
- 1818A1132260422300327157 /* AddDeviceInputCell.h */,
- 1818A1142260422300327157 /* SearchDeviceCell.h */,
- );
- path = Cell;
- sourceTree = "<group>";
- };
- AEF071EBEC5A0E68E742F913 /* Pods */ = {
- isa = PBXGroup;
- children = (
- 9BE3BA4CD1BDF2DADB10D96F /* Pods-Haishenghai-master.debug.xcconfig */,
- 6A9E328D76A8A71C94C8091A /* Pods-Haishenghai-master.release.xcconfig */,
- );
- name = Pods;
- sourceTree = "<group>";
- };
- C604BFF421DF42DF0001BC82 /* ManagePlace */ = {
- isa = PBXGroup;
- children = (
- C604BFF521DF43540001BC82 /* PlaceList_VC.h */,
- C604BFF621DF43540001BC82 /* PlaceList_VC.m */,
- C687A04921E71905003485B6 /* PlaceDetail_VC.h */,
- C687A04A21E71905003485B6 /* PlaceDetail_VC.m */,
- );
- path = ManagePlace;
- sourceTree = "<group>";
- };
- C604BFF821DF446B0001BC82 /* ManageDevece */ = {
- isa = PBXGroup;
- children = (
- C604BFF921DF459B0001BC82 /* ManageDeveceList_VC.h */,
- C604BFFA21DF459B0001BC82 /* ManageDeveceList_VC.m */,
- );
- path = ManageDevece;
- sourceTree = "<group>";
- };
- C604C00021DF474C0001BC82 /* FireAlarm */ = {
- isa = PBXGroup;
- children = (
- C604C00121DF47CE0001BC82 /* FireAlarm_VC.h */,
- C604C00221DF47CE0001BC82 /* FireAlarm_VC.m */,
- );
- path = FireAlarm;
- sourceTree = "<group>";
- };
- C604C00421DF48580001BC82 /* PushManagement */ = {
- isa = PBXGroup;
- children = (
- C604C00521DF48840001BC82 /* PushManage_VC.h */,
- C604C00621DF48840001BC82 /* PushManage_VC.m */,
- );
- path = PushManagement;
- sourceTree = "<group>";
- };
- C604C00821DF48C30001BC82 /* Questions */ = {
- isa = PBXGroup;
- children = (
- C604C00921DF48E60001BC82 /* ProblemViewController.h */,
- C604C00A21DF48E60001BC82 /* ProblemViewController.m */,
- );
- path = Questions;
- sourceTree = "<group>";
- };
- C604C00C21DF495E0001BC82 /* CustomerService */ = {
- isa = PBXGroup;
- children = (
- C604C00D21DF499B0001BC82 /* Service_VC.h */,
- C604C00E21DF499B0001BC82 /* Service_VC.m */,
- );
- path = CustomerService;
- sourceTree = "<group>";
- };
- C60F0C00223B4EBD004446AA /* people */ = {
- isa = PBXGroup;
- children = (
- C65726E321D8ACAA0013E52F /* Person_VC.h */,
- C65726E421D8ACAA0013E52F /* Person_VC.m */,
- C63D540B222A2C92002723EB /* Setting_VC.h */,
- C63D540C222A2C92002723EB /* Setting_VC.m */,
- C6457D7B21FAFEB000CD6276 /* About_VC.h */,
- C6457D7C21FAFEB000CD6276 /* About_VC.m */,
- C60F0C01223B4F25004446AA /* Protcol_VC.h */,
- C60F0C02223B4F26004446AA /* Protcol_VC.m */,
- C60F0C0D223B5104004446AA /* privacy_VC.h */,
- C60F0C0E223B5104004446AA /* privacy_VC.m */,
- );
- path = people;
- sourceTree = "<group>";
- };
- C60FC1A621E86C40004EC4C3 /* HttpManager */ = {
- isa = PBXGroup;
- children = (
- C6114BBA225DA07D00D6BCE4 /* SXAlert.h */,
- C6114BB9225DA07C00D6BCE4 /* SXAlert.m */,
- C6C071D32255D66900474188 /* DataSourceManager.h */,
- C6C071D22255D66800474188 /* DataSourceManager.m */,
- C6576FFA22182A6B0022B990 /* NSMutableDictionary+NullSaf.h */,
- C6576FFB22182A6C0022B990 /* NSMutableDictionary+NullSaf.m */,
- );
- path = HttpManager;
- sourceTree = "<group>";
- };
- C615004121D7083F00FEBA22 = {
- isa = PBXGroup;
- children = (
- C615004C21D7083F00FEBA22 /* Haishenghai-master */,
- C615006521D7084000FEBA22 /* Haishenghai-masterTests */,
- C615007021D7084000FEBA22 /* Haishenghai-masterUITests */,
- C615004B21D7083F00FEBA22 /* Products */,
- AEF071EBEC5A0E68E742F913 /* Pods */,
- C71F25DA0AC004E2929F3A88 /* Frameworks */,
- );
- sourceTree = "<group>";
- };
- C615004B21D7083F00FEBA22 /* Products */ = {
- isa = PBXGroup;
- children = (
- C615004A21D7083F00FEBA22 /* Haishenghai-master.app */,
- C615006221D7084000FEBA22 /* Haishenghai-masterTests.xctest */,
- C615006D21D7084000FEBA22 /* Haishenghai-masterUITests.xctest */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- C615004C21D7083F00FEBA22 /* Haishenghai-master */ = {
- isa = PBXGroup;
- children = (
- 18189E4F2260422100327157 /* tool */,
- C618482F224B684D006A586B /* fireAlarm.mp3 */,
- C60E3F76225B1CBE003C1541 /* MBProgressHUD.h */,
- C60E3F77225B1CCA003C1541 /* MBProgressHUD.m */,
- C68433132240EBF9001D789D /* Haishenghai-master.entitlements */,
- C6615DBD21E9B9890067BF83 /* MapLib */,
- C60FC1A621E86C40004EC4C3 /* HttpManager */,
- C615007F21D708F900FEBA22 /* model */,
- C615008121D7095200FEBA22 /* Views */,
- C615008221D7096500FEBA22 /* ViewControllers */,
- C615004D21D7083F00FEBA22 /* AppDelegate.h */,
- C615004E21D7083F00FEBA22 /* AppDelegate.mm */,
- C615005021D7083F00FEBA22 /* ViewController.h */,
- C615005121D7083F00FEBA22 /* ViewController.m */,
- C615005321D7083F00FEBA22 /* Main.storyboard */,
- C615009A21D720A400FEBA22 /* Assets.xcassets */,
- C6F75F4221E4435E00D1B606 /* LaunchScreen.storyboard */,
- C615005B21D7083F00FEBA22 /* Info.plist */,
- C615005C21D7083F00FEBA22 /* main.m */,
- C68BEE8821D7589D00639184 /* Header.h */,
- );
- path = "Haishenghai-master";
- sourceTree = "<group>";
- };
- C615006521D7084000FEBA22 /* Haishenghai-masterTests */ = {
- isa = PBXGroup;
- children = (
- C615006621D7084000FEBA22 /* Haishenghai_masterTests.m */,
- C615006821D7084000FEBA22 /* Info.plist */,
- );
- path = "Haishenghai-masterTests";
- sourceTree = "<group>";
- };
- C615007021D7084000FEBA22 /* Haishenghai-masterUITests */ = {
- isa = PBXGroup;
- children = (
- C615007121D7084000FEBA22 /* Haishenghai_masterUITests.m */,
- C615007321D7084000FEBA22 /* Info.plist */,
- );
- path = "Haishenghai-masterUITests";
- sourceTree = "<group>";
- };
- C615007F21D708F900FEBA22 /* model */ = {
- isa = PBXGroup;
- children = (
- C6576FF42217A2A00022B990 /* contactModel.h */,
- C6576FF52217A2A00022B990 /* contactModel.m */,
- C6576FF72217A2A00022B990 /* troubleDeveceModel.h */,
- C6576FF62217A2A00022B990 /* troubleDeveceModel.m */,
- C6472CC721F71B5400F5CD09 /* uploadModel.h */,
- C6472CC621F71B5300F5CD09 /* uploadModel.m */,
- C6478F7421F5ABD1004BB536 /* deveceModel.h */,
- C6478F7521F5ABD1004BB536 /* deveceModel.m */,
- C6472CC321F6E3D100F5CD09 /* deveceListModel.h */,
- C6472CC421F6E3D100F5CD09 /* deveceListModel.m */,
- C668A3002238A63500F866B0 /* detatilDeviceModel.h */,
- C668A3012238A63500F866B0 /* detatilDeviceModel.m */,
- C6472CC021F6C2A600F5CD09 /* PlaceModel.h */,
- C6472CC121F6C2A600F5CD09 /* PlaceModel.m */,
- C62F19C2223CF825001696B2 /* troubleSiteModel.h */,
- C62F19C3223CF825001696B2 /* troubleSiteModel.m */,
- C6184823224A2975006A586B /* FireNoticeModel.h */,
- C6184824224A2975006A586B /* FireNoticeModel.m */,
- );
- path = model;
- sourceTree = "<group>";
- };
- C615008121D7095200FEBA22 /* Views */ = {
- isa = PBXGroup;
- children = (
- C6C071CF2254C44100474188 /* THDatePickerView.h */,
- C6C071D82255FE3200474188 /* THDatePickerView.m */,
- C64F214F2226586400DBD297 /* SelectBoxView.h */,
- C64F21502226586400DBD297 /* SelectBoxView.m */,
- C63F6BE421F2B0DD00868CE6 /* DetailTableViewCell.h */,
- C63F6BE521F2B0DD00868CE6 /* DetailTableViewCell.m */,
- C66E858D21EEEF17001997E0 /* popMenuView.h */,
- C66E858C21EEEF16001997E0 /* popMenuView.m */,
- C604C01021DF674D0001BC82 /* CustomPlaceView.h */,
- C604C01121DF674D0001BC82 /* CustomPlaceView.m */,
- C618E43521E0472500A65353 /* ZDYAlertView.h */,
- C618E43621E0472500A65353 /* ZDYAlertView.m */,
- C618E43821E04F5E00A65353 /* DeveceTableCell.h */,
- C618E43921E04F5E00A65353 /* DeveceTableCell.m */,
- C618E43E21E05D9200A65353 /* TableheaderView.h */,
- C618E43F21E05D9200A65353 /* TableheaderView.m */,
- C62678D621E0873A00F146BC /* MessageTableCell.h */,
- C62678D721E0873A00F146BC /* MessageTableCell.m */,
- C687A04C21E7380A003485B6 /* FireAlarmCell.h */,
- C687A04D21E7380A003485B6 /* FireAlarmCell.m */,
- C687A04F21E73DC2003485B6 /* DeveceListCell.h */,
- C687A05021E73DC2003485B6 /* DeveceListCell.m */,
- C687A05221E74685003485B6 /* PushManageCell.h */,
- C687A05321E74685003485B6 /* PushManageCell.m */,
- C643407421EAD887006A5D72 /* PersonCell.h */,
- C643407521EAD887006A5D72 /* PersonCell.m */,
- C6834EBA21F9605500E2DA26 /* LeftTableCell.h */,
- C6834EBB21F9605500E2DA26 /* LeftTableCell.m */,
- C6834EBD21F9607200E2DA26 /* RightTableCell.h */,
- C6834EBE21F9607200E2DA26 /* RightTableCell.m */,
- C647015F2223EC24009D2FCF /* BottomView.h */,
- C64701602223EC24009D2FCF /* BottomView.m */,
- C6C071D52255EEC800474188 /* SitTabCell.h */,
- C6C071D62255EECE00474188 /* SitTabCell.m */,
- );
- path = Views;
- sourceTree = "<group>";
- };
- C615008221D7096500FEBA22 /* ViewControllers */ = {
- isa = PBXGroup;
- children = (
- C65FCE3D21DDE18900CA21F8 /* ZYView */,
- C65726DF21D8AB1F0013E52F /* Place */,
- C65726E021D8ABF40013E52F /* Device */,
- C65726E121D8AC000013E52F /* Message */,
- C65726E221D8AC2A0013E52F /* Person */,
- C615008921D70C2600FEBA22 /* Login */,
- );
- path = ViewControllers;
- sourceTree = "<group>";
- };
- C615008921D70C2600FEBA22 /* Login */ = {
- isa = PBXGroup;
- children = (
- C615008A21D70C5800FEBA22 /* BaseLogin_VC.h */,
- C615008B21D70C5800FEBA22 /* BaseLogin_VC.m */,
- C68BEE8C21D75B4300639184 /* UserLogin_VC.h */,
- C62F19C0223C9579001696B2 /* UserLogin_VC.m */,
- C68BEE8F21D75B8900639184 /* UserRegister_VC.h */,
- C62F19BE223C9561001696B2 /* UserRegister_VC.m */,
- C65726DC21D8A10D0013E52F /* ResetPassword_VC.h */,
- C65726DD21D8A10D0013E52F /* ResetPassword_VC.m */,
- );
- path = Login;
- sourceTree = "<group>";
- };
- C65726DF21D8AB1F0013E52F /* Place */ = {
- isa = PBXGroup;
- children = (
- C6ED0E0821DDBD580064FEAB /* Addplace_VC.h */,
- C6ED0E0921DDBD580064FEAB /* Addplace_VC.m */,
- C65FCE4421DDF9C000CA21F8 /* AddDevece_VC.h */,
- C65FCE4521DDF9C000CA21F8 /* AddDevece_VC.m */,
- C65FCE7121DE225F00CA21F8 /* ScanViewController.h */,
- C65FCE7221DE225F00CA21F8 /* ScanViewController.m */,
- C64FE3D221F4271000ACFCA1 /* EditLocationVC.h */,
- C64FE3D321F4271000ACFCA1 /* EditLocationVC.m */,
- C618E44121E0615400A65353 /* Contacts_VC.h */,
- C618E44221E0615400A65353 /* Contacts_VC.m */,
- );
- path = Place;
- sourceTree = "<group>";
- };
- C65726E021D8ABF40013E52F /* Device */ = {
- isa = PBXGroup;
- children = (
- C65726E921D8AD1F0013E52F /* DeveceList_VC.h */,
- C65726EA21D8AD1F0013E52F /* DeveceList_VC.m */,
- C604C01621DF81DF0001BC82 /* DetailDeveceList_VC.h */,
- C604C01721DF81DF0001BC82 /* DetailDeveceList_VC.m */,
- C604BFF121DF33760001BC82 /* DeveceDetail_VC.h */,
- C604BFF221DF33760001BC82 /* DeveceDetail_VC.m */,
- );
- path = Device;
- sourceTree = "<group>";
- };
- C65726E121D8AC000013E52F /* Message */ = {
- isa = PBXGroup;
- children = (
- C65726E621D8ACF10013E52F /* Message_VC.h */,
- C65726E721D8ACF10013E52F /* Message_VC.m */,
- C6413D3A21E1A3BF00605186 /* Recorddetail_VC.h */,
- C6413D3B21E1A3BF00605186 /* Recorddetail_VC.m */,
- C640782D21E1FF580070B632 /* FireManage_VC.h */,
- C640782E21E1FF580070B632 /* FireManage_VC.m */,
- C6119B3721E2E996008B44BE /* SubmitInformation_VC.h */,
- C6119B3821E2E996008B44BE /* SubmitInformation_VC.m */,
- C6119B4121E3477A008B44BE /* CommitMessage_VC.h */,
- C6119B4221E3477A008B44BE /* CommitMessage_VC.m */,
- C6114BBE225E105600D6BCE4 /* CheckMessage_VC.h */,
- C6114BBF225E105600D6BCE4 /* CheckMessage_VC.m */,
- );
- path = Message;
- sourceTree = "<group>";
- };
- C65726E221D8AC2A0013E52F /* Person */ = {
- isa = PBXGroup;
- children = (
- C60F0C00223B4EBD004446AA /* people */,
- C604C00C21DF495E0001BC82 /* CustomerService */,
- C604C00821DF48C30001BC82 /* Questions */,
- C604C00421DF48580001BC82 /* PushManagement */,
- C604C00021DF474C0001BC82 /* FireAlarm */,
- C604BFF821DF446B0001BC82 /* ManageDevece */,
- C604BFF421DF42DF0001BC82 /* ManagePlace */,
- );
- path = Person;
- sourceTree = "<group>";
- };
- C65FCE3D21DDE18900CA21F8 /* ZYView */ = {
- isa = PBXGroup;
- children = (
- C65FCE4121DDE1E400CA21F8 /* popViewController.h */,
- C65FCE4221DDE1E400CA21F8 /* popViewController.m */,
- C65FCE6621DE1F7900CA21F8 /* CollectionViewCell.h */,
- C65FCE6721DE1F7900CA21F8 /* CollectionViewCell.m */,
- C6457D7521FAAB3F00CD6276 /* SiteTableViewController.h */,
- C6457D7621FAAB3F00CD6276 /* SiteTableViewController.m */,
- C6457D7221FAAB2D00CD6276 /* DeveceTableViewController.h */,
- C6457D7321FAAB2D00CD6276 /* DeveceTableViewController.m */,
- C60E3F88225B3F36003C1541 /* CustomAlertView.h */,
- C60E3F89225B3F36003C1541 /* CustomAlertView.m */,
- );
- path = ZYView;
- sourceTree = "<group>";
- };
- C6615DBD21E9B9890067BF83 /* MapLib */ = {
- isa = PBXGroup;
- children = (
- C6615DDA21E9CF170067BF83 /* AMapLocationKit.framework */,
- C6615DD621E9C74C0067BF83 /* AMapFoundationKit.framework */,
- C6615DD721E9C7520067BF83 /* MAMapKit.framework */,
- C6615DD421E9C6CC0067BF83 /* AMapSearchKit.framework */,
- C6615DD121E9BE350067BF83 /* AMap.bundle */,
- );
- path = MapLib;
- sourceTree = "<group>";
- };
- C71F25DA0AC004E2929F3A88 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 1818A23A226042B500327157 /* AdSupport.framework */,
- 18189A622260343900327157 /* libsqlite3.0.tbd */,
- 18189A60226023B300327157 /* VideoToolbox.framework */,
- 18189A5E2260239900327157 /* MediaPlayer.framework */,
- 18189A5C2260238600327157 /* CoreMedia.framework */,
- 18189A5A2260236200327157 /* AudioToolbox.framework */,
- 18189A562260233B00327157 /* UserNotifications.framework */,
- 18189A572260233B00327157 /* UserNotificationsUI.framework */,
- 18189A542260232F00327157 /* AssetsLibrary.framework */,
- 18189A502260232400327157 /* AVFoundation.framework */,
- 18189A512260232400327157 /* AVKit.framework */,
- 18189A4E226022FD00327157 /* libbz2.tbd */,
- 18189A4C226022F600327157 /* libiconv.tbd */,
- 18189A4A226022ED00327157 /* libresolv.tbd */,
- 18189A46226022DB00327157 /* OpenAL.framework */,
- 18189A47226022DB00327157 /* OpenGLES.framework */,
- C6114BBC225DBAED00D6BCE4 /* QuartzCore.framework */,
- C60F0C10223B5231004446AA /* QuickLook.framework */,
- C6615DDC21E9CFC70067BF83 /* ExternalAccessory.framework */,
- C6615DD021E9BDD60067BF83 /* CoreLocation.framework */,
- C6615DCC21E9BAF90067BF83 /* libc++.tbd */,
- C6615DCA21E9BAEB0067BF83 /* libz.tbd */,
- C6615DC821E9BAD30067BF83 /* GLKit.framework */,
- C6615DC621E9BAB70067BF83 /* Security.framework */,
- C6615DC421E9BA620067BF83 /* CoreTelephony.framework */,
- C6615DC221E9BA330067BF83 /* SystemConfiguration.framework */,
- 057E4FF4BB19D559388E05C8 /* libPods-Haishenghai-master.a */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXNativeTarget section */
- C615004921D7083F00FEBA22 /* Haishenghai-master */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = C615007621D7084000FEBA22 /* Build configuration list for PBXNativeTarget "Haishenghai-master" */;
- buildPhases = (
- 7778CBA06F56F007B1C952ED /* [CP] Check Pods Manifest.lock */,
- C615004621D7083F00FEBA22 /* Sources */,
- C615004721D7083F00FEBA22 /* Frameworks */,
- C615004821D7083F00FEBA22 /* Resources */,
- 53D4718F1A8281A34ADAC3CC /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "Haishenghai-master";
- productName = "Haishenghai-master";
- productReference = C615004A21D7083F00FEBA22 /* Haishenghai-master.app */;
- productType = "com.apple.product-type.application";
- };
- C615006121D7084000FEBA22 /* Haishenghai-masterTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = C615007921D7084000FEBA22 /* Build configuration list for PBXNativeTarget "Haishenghai-masterTests" */;
- buildPhases = (
- C615005E21D7084000FEBA22 /* Sources */,
- C615005F21D7084000FEBA22 /* Frameworks */,
- C615006021D7084000FEBA22 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- C615006421D7084000FEBA22 /* PBXTargetDependency */,
- );
- name = "Haishenghai-masterTests";
- productName = "Haishenghai-masterTests";
- productReference = C615006221D7084000FEBA22 /* Haishenghai-masterTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- C615006C21D7084000FEBA22 /* Haishenghai-masterUITests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = C615007C21D7084000FEBA22 /* Build configuration list for PBXNativeTarget "Haishenghai-masterUITests" */;
- buildPhases = (
- C615006921D7084000FEBA22 /* Sources */,
- C615006A21D7084000FEBA22 /* Frameworks */,
- C615006B21D7084000FEBA22 /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- C615006F21D7084000FEBA22 /* PBXTargetDependency */,
- );
- name = "Haishenghai-masterUITests";
- productName = "Haishenghai-masterUITests";
- productReference = C615006D21D7084000FEBA22 /* Haishenghai-masterUITests.xctest */;
- productType = "com.apple.product-type.bundle.ui-testing";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- C615004221D7083F00FEBA22 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 0910;
- ORGANIZATIONNAME = "Haishenghai intelligence network technology";
- TargetAttributes = {
- C615004921D7083F00FEBA22 = {
- CreatedOnToolsVersion = 9.1;
- ProvisioningStyle = Automatic;
- SystemCapabilities = {
- com.apple.BackgroundModes = {
- enabled = 1;
- };
- com.apple.Push = {
- enabled = 1;
- };
- };
- };
- C615006121D7084000FEBA22 = {
- CreatedOnToolsVersion = 9.1;
- ProvisioningStyle = Automatic;
- TestTargetID = C615004921D7083F00FEBA22;
- };
- C615006C21D7084000FEBA22 = {
- CreatedOnToolsVersion = 9.1;
- ProvisioningStyle = Automatic;
- TestTargetID = C615004921D7083F00FEBA22;
- };
- };
- };
- buildConfigurationList = C615004521D7083F00FEBA22 /* Build configuration list for PBXProject "Haishenghai-master" */;
- compatibilityVersion = "Xcode 8.0";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- "zh-Hans",
- "zh-Hans-CN",
- );
- mainGroup = C615004121D7083F00FEBA22;
- productRefGroup = C615004B21D7083F00FEBA22 /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- C615004921D7083F00FEBA22 /* Haishenghai-master */,
- C615006121D7084000FEBA22 /* Haishenghai-masterTests */,
- C615006C21D7084000FEBA22 /* Haishenghai-masterUITests */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXResourcesBuildPhase section */
- C615004821D7083F00FEBA22 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 1818A1B42260422300327157 /* xmjp_bob.png in Resources */,
- 1818A1902260422300327157 /* VR-tow_nor.png in Resources */,
- 1818A15E2260422300327157 /* icon_close.png in Resources */,
- 1818A1B32260422300327157 /* xmjp_cloudbox.png in Resources */,
- 1818A1812260422300327157 /* VR-tow_sel.png in Resources */,
- 1818A22C2260422300327157 /* LoginViewController.xib in Resources */,
- 1818A18F2260422300327157 /* VR-ball bowl_sel.png in Resources */,
- 1818A16C2260422300327157 /* btn_stop_select.png in Resources */,
- 1818A1822260422300327157 /* VR-ball bowl_nor.png in Resources */,
- 1818A1B02260422300327157 /* xmjp_feye.png in Resources */,
- 1818A18B2260422300327157 /* VR_Wall_sel.png in Resources */,
- 1818A1642260422300327157 /* talk_unselect.png in Resources */,
- 1818A19F2260422300327157 /* icon_hide_nor.png in Resources */,
- 1818A1862260422300327157 /* 180_3R_sel.png in Resources */,
- 1818A1762260422300327157 /* btn_SD_E.png in Resources */,
- C615009B21D720A500FEBA22 /* Assets.xcassets in Resources */,
- 1818A1752260422300327157 /* btn_plus_highlighted.png in Resources */,
- 1818A1952260422300327157 /* btn_recording.png in Resources */,
- 1818A1632260422300327157 /* btn_HD_E.png in Resources */,
- 1818A1992260422300327157 /* btn_camera_normal.png in Resources */,
- 1818A1BD2260422300327157 /* SVProgressHUD.bundle in Resources */,
- 1818A1A92260422300327157 /* xmjp_seye.png in Resources */,
- 1818A1B62260422300327157 /* Local_Settings.png in Resources */,
- 1818A19B2260422300327157 /* radar_search_sign.png in Resources */,
- 1818A1B12260422300327157 /* xmjp_cloudbox_klok.png in Resources */,
- 1818A1882260422300327157 /* VR_180_nor.png in Resources */,
- 1818A1C12260422300327157 /* zh_CN.txt in Resources */,
- 1818A1AB2260422300327157 /* xmjp_car.png in Resources */,
- 1818A15B2260422300327157 /* icon_hide_sel.png in Resources */,
- 1818A15A2260422300327157 /* error.plist in Resources */,
- 1818A15D2260422300327157 /* btn_SD.png in Resources */,
- 1818A1892260422300327157 /* VR-Ceiling_sel.png in Resources */,
- 1818A19A2260422300327157 /* QRCode.png in Resources */,
- 1818A1A22260422300327157 /* sleepnotwakeup.png in Resources */,
- 1818A15C2260422300327157 /* press_talk_selected_en.png in Resources */,
- 1818A17A2260422300327157 /* Speed_Select.png in Resources */,
- 1818A1602260422300327157 /* btn_HD_F.png in Resources */,
- 1818A16F2260422300327157 /* btn_voice_selected.png in Resources */,
- 1818A1782260422300327157 /* btn_pause_select.png in Resources */,
- 1818A1982260422300327157 /* btn_control_right.png in Resources */,
- 1818A1B52260422300327157 /* xmjp_bulbsocket.png in Resources */,
- 1818A1742260422300327157 /* talk_select.png in Resources */,
- 1818A18C2260422300327157 /* VR_Ball_nor.png in Resources */,
- 1818A16D2260422300327157 /* press_talk_selected.png in Resources */,
- 1818A1A72260422300327157 /* nor.png in Resources */,
- 1818A18D2260422300327157 /* VR-four_sel.png in Resources */,
- 1818A1832260422300327157 /* VR_ball hat_nor.png in Resources */,
- C6184830224B684E006A586B /* fireAlarm.mp3 in Resources */,
- 1818A1B72260422300327157 /* phone2.png in Resources */,
- 1818A1A82260422300327157 /* xmjp_camera.png in Resources */,
- 1818A1B82260422300327157 /* new_back.png in Resources */,
- 1818A1A12260422300327157 /* offline.png in Resources */,
- 1818A1802260422300327157 /* VR-rectangle_sel.png in Resources */,
- 1818A1922260422300327157 /* VR_ball hat_sel.png in Resources */,
- 1818A1662260422300327157 /* btn_voice_normal.png in Resources */,
- 1818A1592260422300327157 /* PlayToolImage.plist in Resources */,
- 1818A18E2260422300327157 /* 180_3R_nor.png in Resources */,
- C6615DD221E9BE350067BF83 /* AMap.bundle in Resources */,
- 1818A1AF2260422300327157 /* xmjp_rotot.png in Resources */,
- 1818A1912260422300327157 /* 360VR-ins_default.png in Resources */,
- 1818A19E2260422300327157 /* icon_funsdk.png in Resources */,
- 1818A1682260422300327157 /* btn_control_left.png in Resources */,
- 1818A1872260422300327157 /* VR-cylinder_nor.png in Resources */,
- 1818A1A52260422300327157 /* ic_sleep.png in Resources */,
- 1818A17E2260422300327157 /* VR-Ceiling_nor.png in Resources */,
- 1818A17C2260422300327157 /* VR-cylinder_sel.png in Resources */,
- 1818A17F2260422300327157 /* VR-close_nor.png in Resources */,
- 1818A1622260422300327157 /* btn_minus_normal.png in Resources */,
- 1818A1792260422300327157 /* btn_control_down.png in Resources */,
- 1818A19C2260422300327157 /* radar_search_bg.png in Resources */,
- 1818A1A42260422300327157 /* online.png in Resources */,
- 1818A1AD2260422300327157 /* xmjp_bulb.png in Resources */,
- 1818A1772260422300327157 /* btn_pause.png in Resources */,
- 1818A1A02260422300327157 /* ic_wake_green.png in Resources */,
- 1818A1712260422300327157 /* press_talk_sp.png in Resources */,
- 1818A16E2260422300327157 /* ptz_unselect.png in Resources */,
- 1818A15F2260422300327157 /* btn_control_normal.png in Resources */,
- 1818A1852260422300327157 /* VR-four_nor.png in Resources */,
- 1818A1A32260422300327157 /* Prepare_sleep.png in Resources */,
- 1818A1842260422300327157 /* VR_Ball_sel.png in Resources */,
- 1818A1722260422300327157 /* btn_tool_recording.png in Resources */,
- 1818A1672260422300327157 /* press_talk_selected_sp.png in Resources */,
- 1818A1612260422300327157 /* record_temp_normal.png in Resources */,
- 1818A17B2260422300327157 /* VR_Wall_nor.png in Resources */,
- 1818A1A62260422300327157 /* sleepnotwakeup_zh.png in Resources */,
- 1818A1962260422300327157 /* btn_plus_normal.png in Resources */,
- 1818A1692260422300327157 /* press_talk_en.png in Resources */,
- 1818A17D2260422300327157 /* VR_180_sel.png in Resources */,
- 1818A19D2260422300327157 /* sel.png in Resources */,
- 1818A1C02260422300327157 /* en.txt in Resources */,
- 1818A1942260422300327157 /* btn_minus_highlighted.png in Resources */,
- 1818A1652260422300327157 /* btn_record.png in Resources */,
- C6F75F4321E4435E00D1B606 /* LaunchScreen.storyboard in Resources */,
- 1818A1932260422300327157 /* press_talk.png in Resources */,
- 1818A16A2260422300327157 /* btn_stop.png in Resources */,
- C615005521D7083F00FEBA22 /* Main.storyboard in Resources */,
- 1818A1702260422300327157 /* btn_control_up.png in Resources */,
- 1818A1972260422300327157 /* btn_HD.png in Resources */,
- 1818A1B22260422300327157 /* xmjp_beye.png in Resources */,
- 1818A1732260422300327157 /* btn_SD_F.png in Resources */,
- 1818A1AE2260422300327157 /* xmjp_fbulb.png in Resources */,
- 1818A16B2260422300327157 /* ic_alarm.png in Resources */,
- 1818A1AA2260422300327157 /* xmjp_mov.png in Resources */,
- 1818A1AC2260422300327157 /* xmjp_socket.png in Resources */,
- 1818A18A2260422300327157 /* VR-rectangle_nor.png in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C615006021D7084000FEBA22 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C615006B21D7084000FEBA22 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXShellScriptBuildPhase section */
- 53D4718F1A8281A34ADAC3CC /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${SRCROOT}/Pods/Target Support Files/Pods-Haishenghai-master/Pods-Haishenghai-master-resources.sh",
- "${PODS_ROOT}/MJRefresh/MJRefresh/MJRefresh.bundle",
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MJRefresh.bundle",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Haishenghai-master/Pods-Haishenghai-master-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 7778CBA06F56F007B1C952ED /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-Haishenghai-master-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/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# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- /* End PBXShellScriptBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- C615004621D7083F00FEBA22 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C62F19BF223C9561001696B2 /* UserRegister_VC.m in Sources */,
- C64FE3D421F4271000ACFCA1 /* EditLocationVC.m in Sources */,
- 1818A1C92260422300327157 /* ObSysteminfo.m in Sources */,
- 1818A1E62260422300327157 /* AlarmConfigTableViewCell.m in Sources */,
- 1818A1362260422300327157 /* PasswordConfig.mm in Sources */,
- 1818A1E42260422300327157 /* XMLinkWallSwitchCell.m in Sources */,
- 1818A1C82260422300327157 /* ObSystemFunction.m in Sources */,
- 1818A1F92260422300327157 /* DownloadViewController.mm in Sources */,
- 1818A1FC2260422300327157 /* ParamViewController.mm in Sources */,
- 1818A20B2260422300327157 /* DeviceListViewController.mm in Sources */,
- 1818A2202260422300327157 /* PasswordSaveViewController.m in Sources */,
- C604BFFB21DF459B0001BC82 /* ManageDeveceList_VC.m in Sources */,
- 1818A1D82260422300327157 /* HumanDetectionViewController.mm in Sources */,
- 1818A2132260422300327157 /* MyProgressView.m in Sources */,
- 1818A2272260422300327157 /* UserInfoCell.m in Sources */,
- C6576FF92217A2A00022B990 /* troubleDeveceModel.m in Sources */,
- 1818A1CF2260422300327157 /* ItemViewController.m in Sources */,
- 1818A22B2260422300327157 /* RegisterView.m in Sources */,
- C65FCE7321DE225F00CA21F8 /* ScanViewController.m in Sources */,
- 1818A1342260422300327157 /* AlarmPIRConfig.mm in Sources */,
- C6C071D92255FE3200474188 /* THDatePickerView.m in Sources */,
- 1818A14A2260422300327157 /* UIView+Layout.m in Sources */,
- 1818A2362260422300327157 /* SearchDeviceCell.m in Sources */,
- 1818A1D62260422300327157 /* EncodeViewController.mm in Sources */,
- C62F19C4223CF825001696B2 /* troubleSiteModel.m in Sources */,
- C604C01821DF81DF0001BC82 /* DetailDeveceList_VC.m in Sources */,
- 1818A2242260422300327157 /* ChangePasswordView.m in Sources */,
- 1818A14D2260422300327157 /* NSString+Path.m in Sources */,
- 1818A2302260422300327157 /* APLoginConfigVC.mm in Sources */,
- 1818A2152260422300327157 /* PlayFunctionView.m in Sources */,
- C64F21512226586400DBD297 /* SelectBoxView.m in Sources */,
- 1818A2032260422300327157 /* CloudVideoDayViewController.mm in Sources */,
- C6457D7421FAAB2D00CD6276 /* DeveceTableViewController.m in Sources */,
- 1818A1E32260422300327157 /* UIColor+Util.m in Sources */,
- 1818A11F2260422300327157 /* AlarmMessageConfig.mm in Sources */,
- 1818A1BC2260422300327157 /* SVProgressHUD.m in Sources */,
- 1818A2312260422300327157 /* SerialNumAddViewController.mm in Sources */,
- 1818A2382260422300327157 /* MyRadarView.m in Sources */,
- 1818A2082260422300327157 /* CYGLKView.m in Sources */,
- C618E43721E0472500A65353 /* ZDYAlertView.m in Sources */,
- 1818A1FD2260422300327157 /* CloudServerViewController.mm in Sources */,
- 1818A1E12260422300327157 /* UIView+WZLBadge.m in Sources */,
- 1818A1572260422300327157 /* MediaPlaybackControl.mm in Sources */,
- 1818A1582260422300327157 /* MediaplayerControl.mm in Sources */,
- 1818A11E2260422300327157 /* AlarmMessageInfo.m in Sources */,
- 1818A2342260422300327157 /* QuickConfigurationViewController.mm in Sources */,
- 1818A2162260422300327157 /* PTZView.m in Sources */,
- C615008C21D70C5800FEBA22 /* BaseLogin_VC.m in Sources */,
- 1818A1F22260422300327157 /* AboutDeviceViewController.mm in Sources */,
- 1818A12D2260422300327157 /* Storage.m in Sources */,
- 1818A1332260422300327157 /* AnalyzeConfig.mm in Sources */,
- C687A04E21E7380A003485B6 /* FireAlarmCell.m in Sources */,
- C6834EBF21F9607200E2DA26 /* RightTableCell.m in Sources */,
- 1818A1542260422300327157 /* CommonControl.m in Sources */,
- C65726E821D8ACF10013E52F /* Message_VC.m in Sources */,
- 1818A14F2260422300327157 /* MyStringManager.m in Sources */,
- 1818A1F62260422300327157 /* PictureDownloadViewController.mm in Sources */,
- 1818A1D22260422300327157 /* AlarmMessageCell.m in Sources */,
- 1818A1202260422300327157 /* HumanDetectionConfig.mm in Sources */,
- C6114BC0225E105600D6BCE4 /* CheckMessage_VC.m in Sources */,
- 1818A1262260422300327157 /* CloudAbilityDataSource.m in Sources */,
- 1818A1E82260422300327157 /* AlarmLevelViewController.m in Sources */,
- 1818A1462260422300327157 /* UserAccountModel.mm in Sources */,
- 1818A1F82260422300327157 /* ByFileViewController.mm in Sources */,
- 1818A2392260422300327157 /* ScanAnimationView.m in Sources */,
- 1818A1F52260422300327157 /* MonthPictureViewController.mm in Sources */,
- C618E44021E05D9200A65353 /* TableheaderView.m in Sources */,
- C65FCE4321DDE1E400CA21F8 /* popViewController.m in Sources */,
- 1818A1252260422300327157 /* CloudPhotoConfig.mm in Sources */,
- 1818A2112260422300327157 /* ProgressBackView.mm in Sources */,
- 1818A1282260422300327157 /* EncodeConfig.mm in Sources */,
- 1818A2292260422300327157 /* RegisterViewController.mm in Sources */,
- 1818A1E02260422300327157 /* UITabBarItem+WZLBadge.m in Sources */,
- 1818A1EC2260422300327157 /* BuzzerViewController.mm in Sources */,
- 1818A13A2260422300327157 /* PictureInfo.m in Sources */,
- 1818A2332260422300327157 /* QuickConfigurationView.m in Sources */,
- 1818A22E2260422300327157 /* ChangePasswordViewController.mm in Sources */,
- 1818A1DA2260422300327157 /* PasswordViewController.mm in Sources */,
- 1818A1C52260422300327157 /* SDKInitializeModel.mm in Sources */,
- 1818A1F12260422300327157 /* DeviceconfigTableViewCell.m in Sources */,
- 1818A2092260422300327157 /* XMPlayerVC.mm in Sources */,
- 1818A1322260422300327157 /* AnalyzeDataSource.m in Sources */,
- 1818A1EF2260422300327157 /* StorageViewController.mm in Sources */,
- C6472CC221F6C2A600F5CD09 /* PlaceModel.m in Sources */,
- 1818A13F2260422300327157 /* VideoFileDownloadConfig.mm in Sources */,
- 1818A1EB2260422300327157 /* RecordViewController.mm in Sources */,
- 1818A1482260422300327157 /* MessageUI.mm in Sources */,
- C604C01221DF674D0001BC82 /* CustomPlaceView.m in Sources */,
- 1818A14B2260422300327157 /* NSDate+TimeCategory.m in Sources */,
- C64701612223EC24009D2FCF /* BottomView.m in Sources */,
- 1818A1F42260422300327157 /* PictureFileViewController.m in Sources */,
- 1818A1FB2260422300327157 /* ByTimeViewController.mm in Sources */,
- C65FCE6821DE1F7900CA21F8 /* CollectionViewCell.m in Sources */,
- 1818A14E2260422300327157 /* NSString+Extention.m in Sources */,
- C6576FF82217A2A00022B990 /* contactModel.m in Sources */,
- 1818A1242260422300327157 /* XMAlarmMsgResource.m in Sources */,
- C60E3F78225B1CCA003C1541 /* MBProgressHUD.m in Sources */,
- 1818A1CC2260422300327157 /* ObjectCoder.m in Sources */,
- 1818A1F32260422300327157 /* VideoFileViewController.mm in Sources */,
- 1818A1CD2260422300327157 /* ChannelObject.m in Sources */,
- 1818A1502260422300327157 /* GTMNSString+HTML.m in Sources */,
- 1818A1372260422300327157 /* SystemFunctionConfig.mm in Sources */,
- 1818A13D2260422300327157 /* TimeInfo.m in Sources */,
- 1818A13E2260422300327157 /* VideoFileConfig.mm in Sources */,
- 1818A12A2260422300327157 /* VodeoRotainDataSource.m in Sources */,
- 1818A1D42260422300327157 /* AlarmMessagePicViewController.m in Sources */,
- C6114BBB225DA07E00D6BCE4 /* SXAlert.m in Sources */,
- 1818A2372260422300327157 /* LANSearchViewController.mm in Sources */,
- C63D540D222A2C92002723EB /* Setting_VC.m in Sources */,
- 1818A12E2260422300327157 /* StorageConfig.mm in Sources */,
- 1818A2072260422300327157 /* AccountViewController.mm in Sources */,
- 1818A2182260422300327157 /* PlayView.m in Sources */,
- C615005221D7083F00FEBA22 /* ViewController.m in Sources */,
- 1818A22A2260422300327157 /* UserBindViewController.mm in Sources */,
- 1818A1D52260422300327157 /* EncodeItemViewController.m in Sources */,
- C6119B4321E3477A008B44BE /* CommitMessage_VC.m in Sources */,
- C65726DE21D8A10D0013E52F /* ResetPassword_VC.m in Sources */,
- 1818A1412260422300327157 /* BuzzerConfig.mm in Sources */,
- C6457D7721FAAB3F00CD6276 /* SiteTableViewController.m in Sources */,
- 1818A11B2260422300327157 /* SystemResetConfig.mm in Sources */,
- 1818A1D02260422300327157 /* WaterMarkViewController.mm in Sources */,
- 1818A11D2260422300327157 /* TimeSynConfig.mm in Sources */,
- 1818A1352260422300327157 /* AlarmDetectConfig.mm in Sources */,
- 1818A2282260422300327157 /* UserBindView.m in Sources */,
- 1818A2252260422300327157 /* UserInfoViewController.mm in Sources */,
- C60F0C0F223B5104004446AA /* privacy_VC.m in Sources */,
- C643407621EAD887006A5D72 /* PersonCell.m in Sources */,
- 1818A1D12260422300327157 /* ShutDownTimeViewController.mm in Sources */,
- 1818A1DB2260422300327157 /* ItemTableviewCell.m in Sources */,
- C6184825224A2975006A586B /* FireNoticeModel.m in Sources */,
- 1818A2232260422300327157 /* ForgetPasswordViewController.mm in Sources */,
- 1818A1292260422300327157 /* EncodeDataSourse.m in Sources */,
- 1818A1FE2260422300327157 /* CloudAbilityViewController.mm in Sources */,
- 1818A13B2260422300327157 /* PictureFileDownloadConfig.mm in Sources */,
- C615005D21D7083F00FEBA22 /* main.m in Sources */,
- 1818A14C2260422300327157 /* NSString+Category.m in Sources */,
- 1818A1432260422300327157 /* WaterMarkConfig.mm in Sources */,
- 1818A1222260422300327157 /* CloudVideoConfig.mm in Sources */,
- 1818A2012260422300327157 /* CloudPhotoViewController.mm in Sources */,
- 1818A1392260422300327157 /* UpgradeConfig.mm in Sources */,
- 1818A1C32260422300327157 /* ConfigControllerBase.mm in Sources */,
- 1818A2192260422300327157 /* TalkView.m in Sources */,
- C65726E521D8ACAA0013E52F /* Person_VC.m in Sources */,
- C687A05121E73DC2003485B6 /* DeveceListCell.m in Sources */,
- C63F6BE621F2B0DD00868CE6 /* DetailTableViewCell.m in Sources */,
- 1818A1442260422300327157 /* XYShowAlertView.m in Sources */,
- 1818A20E2260422300327157 /* FishPlayControl.mm in Sources */,
- 1818A2102260422300327157 /* PlayCloudVideoViewController.mm in Sources */,
- 1818A11C2260422300327157 /* TimeSynDataSource.m in Sources */,
- 1818A12C2260422300327157 /* DataSource.m in Sources */,
- 1818A21E2260422300327157 /* HardVRViewController.mm in Sources */,
- C65FCE4621DDF9C000CA21F8 /* AddDevece_VC.m in Sources */,
- C668A3022238A63500F866B0 /* detatilDeviceModel.m in Sources */,
- 1818A1D32260422300327157 /* AlarmMessageViewController.mm in Sources */,
- C60F0C03223B4F26004446AA /* Protcol_VC.m in Sources */,
- 1818A2212260422300327157 /* UserInfoView.m in Sources */,
- C640782F21E1FF580070B632 /* FireManage_VC.m in Sources */,
- 1818A21A2260422300327157 /* UILabelOutLined.m in Sources */,
- 1818A2002260422300327157 /* CloudphotoDayVController.mm in Sources */,
- 1818A1522260422300327157 /* NSUserDefaultData.m in Sources */,
- 1818A1452260422300327157 /* AlarmManager.mm in Sources */,
- C66E858E21EEEF17001997E0 /* popMenuView.m in Sources */,
- 1818A1E92260422300327157 /* DeviceConfigViewController.mm in Sources */,
- 1818A2142260422300327157 /* PlayBackViewController.mm in Sources */,
- C62F19C1223C9579001696B2 /* UserLogin_VC.m in Sources */,
- 1818A21F2260422300327157 /* PrivacyPolicyVC.m in Sources */,
- 1818A13C2260422300327157 /* PictureFileConfig.mm in Sources */,
- C604C00721DF48840001BC82 /* PushManage_VC.m in Sources */,
- 1818A1E52260422300327157 /* SensorlistVCViewController.mm in Sources */,
- C6576FFC22182A6C0022B990 /* NSMutableDictionary+NullSaf.m in Sources */,
- 1818A1492260422300327157 /* LanguageManager.mm in Sources */,
- 1818A1ED2260422300327157 /* EncodingFormatViewController.mm in Sources */,
- 1818A1D92260422300327157 /* PasswordView.m in Sources */,
- 1818A1F72260422300327157 /* PictureSearchViewController.mm in Sources */,
- 1818A2062260422300327157 /* DeviceAddViewController.m in Sources */,
- 1818A1552260422300327157 /* Recode.mm in Sources */,
- C6ED0E0A21DDBD580064FEAB /* Addplace_VC.m in Sources */,
- 1818A1DC2260422300327157 /* SensorListCell.m in Sources */,
- C6834EBC21F9605500E2DA26 /* LeftTableCell.m in Sources */,
- 1818A1472260422300327157 /* DeviceManager.mm in Sources */,
- 1818A2222260422300327157 /* ForgetPasswordView.m in Sources */,
- 1818A1C62260422300327157 /* TimeQuery.m in Sources */,
- 1818A1E22260422300327157 /* XMWallSwitchView.m in Sources */,
- C604C00321DF47CE0001BC82 /* FireAlarm_VC.m in Sources */,
- 1818A1422260422300327157 /* ShutDownTimeConfig.mm in Sources */,
- C618E44321E0615400A65353 /* Contacts_VC.m in Sources */,
- C6119B3921E2E996008B44BE /* SubmitInformation_VC.m in Sources */,
- 1818A1DE2260422300327157 /* CAAnimation+WAnimation.m in Sources */,
- 1818A1DD2260422300327157 /* SensorDeviceModel.m in Sources */,
- C6C071D72255EECF00474188 /* SitTabCell.m in Sources */,
- 1818A1CE2260422300327157 /* UpgradeDeviceViewController.mm in Sources */,
- 1818A2172260422300327157 /* PlayMenuView.m in Sources */,
- C604C00B21DF48E60001BC82 /* ProblemViewController.m in Sources */,
- 1818A1C22260422300327157 /* BaseViewController.mm in Sources */,
- 1818A2022260422300327157 /* CloudVideoDownloadViewController.mm in Sources */,
- 1818A1E72260422300327157 /* AlarmDetectViewController.mm in Sources */,
- 1818A20A2260422300327157 /* PhotosViewController.mm in Sources */,
- 1818A1512260422300327157 /* FileControl.mm in Sources */,
- 1818A1312260422300327157 /* RecordDataSourse.m in Sources */,
- C687A05421E74685003485B6 /* PushManageCell.m in Sources */,
- 1818A1232260422300327157 /* CLouldVideoResource.m in Sources */,
- 1818A1C72260422300327157 /* DevicelistArchiveModel.m in Sources */,
- C6413D3C21E1A3BF00605186 /* Recorddetail_VC.m in Sources */,
- 1818A1D72260422300327157 /* EncodeConfigTableviewCell.m in Sources */,
- C6472CC521F6E3D100F5CD09 /* deveceListModel.m in Sources */,
- 1818A21B2260422300327157 /* VRFunctionView.mm in Sources */,
- 1818A2262260422300327157 /* UserInputCell.m in Sources */,
- C604C00F21DF499B0001BC82 /* Service_VC.m in Sources */,
- C60E3F8A225B3F36003C1541 /* CustomAlertView.m in Sources */,
- 1818A2352260422300327157 /* AddDeviceInputCell.m in Sources */,
- 1818A20C2260422300327157 /* DeviceListTableViewCell.m in Sources */,
- 1818A22D2260422300327157 /* LoginViewController.mm in Sources */,
- 1818A2052260422300327157 /* MainViewController.mm in Sources */,
- 1818A2122260422300327157 /* DateSelectView.m in Sources */,
- 1818A21D2260422300327157 /* VRGLViewController.mm in Sources */,
- 1818A1302260422300327157 /* RecordConfig.mm in Sources */,
- 1818A1CA2260422300327157 /* DeviceControl.m in Sources */,
- C618E43A21E04F5E00A65353 /* DeveceTableCell.m in Sources */,
- 1818A12F2260422300327157 /* SystemInfoConfig.mm in Sources */,
- 1818A2322260422300327157 /* OriginalScaner.mm in Sources */,
- C62678D821E0873A00F146BC /* MessageTableCell.m in Sources */,
- 1818A1FF2260422300327157 /* CloudPhotoDownloadViewController.mm in Sources */,
- C6478F7621F5ABD1004BB536 /* deveceModel.m in Sources */,
- 1818A1FA2260422300327157 /* MonthFileViewController.mm in Sources */,
- 1818A21C2260422300327157 /* FishEyeVideoVC.mm in Sources */,
- C604BFF721DF43540001BC82 /* PlaceList_VC.m in Sources */,
- C65726EB21D8AD1F0013E52F /* DeveceList_VC.m in Sources */,
- C687A04B21E71905003485B6 /* PlaceDetail_VC.m in Sources */,
- 1818A1DF2260422300327157 /* UIBarButtonItem+WZLBadge.m in Sources */,
- 1818A1F02260422300327157 /* TimeSynViewController.mm in Sources */,
- C6457D7D21FAFEB000CD6276 /* About_VC.m in Sources */,
- 1818A20F2260422300327157 /* PlayViewController.mm in Sources */,
- 1818A1EA2260422300327157 /* AnalyzerViewController.mm in Sources */,
- 1818A1532260422300327157 /* LoginShowControl.m in Sources */,
- 1818A1212260422300327157 /* CommonConfig.mm in Sources */,
- C6472CC821F71B5400F5CD09 /* uploadModel.m in Sources */,
- 1818A1562260422300327157 /* TalkBackControl.mm in Sources */,
- 1818A1272260422300327157 /* CloudAbilityConfig.mm in Sources */,
- C6C071D42255D66900474188 /* DataSourceManager.m in Sources */,
- 1818A20D2260422300327157 /* DeviceInfoEditViewController.mm in Sources */,
- 1818A12B2260422300327157 /* VideoRotainConfig.mm in Sources */,
- C615004F21D7083F00FEBA22 /* AppDelegate.mm in Sources */,
- C604BFF321DF33760001BC82 /* DeveceDetail_VC.m in Sources */,
- 1818A1402260422300327157 /* RecordInfo.m in Sources */,
- 1818A2042260422300327157 /* CloudVideoViewController.mm in Sources */,
- 1818A1382260422300327157 /* UpgradeDataSource.m in Sources */,
- 1818A1C42260422300327157 /* FunMsgListener.mm in Sources */,
- 1818A1CB2260422300327157 /* DeviceObject.m in Sources */,
- 1818A22F2260422300327157 /* IPAddViewController.mm in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C615005E21D7084000FEBA22 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C615006721D7084000FEBA22 /* Haishenghai_masterTests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- C615006921D7084000FEBA22 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C615007221D7084000FEBA22 /* Haishenghai_masterUITests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXTargetDependency section */
- C615006421D7084000FEBA22 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = C615004921D7083F00FEBA22 /* Haishenghai-master */;
- targetProxy = C615006321D7084000FEBA22 /* PBXContainerItemProxy */;
- };
- C615006F21D7084000FEBA22 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = C615004921D7083F00FEBA22 /* Haishenghai-master */;
- targetProxy = C615006E21D7084000FEBA22 /* PBXContainerItemProxy */;
- };
- /* End PBXTargetDependency section */
- /* Begin PBXVariantGroup section */
- 18189F432260422200327157 /* ic_wake_green.png */ = {
- isa = PBXVariantGroup;
- children = (
- 18189F442260422200327157 /* zh-Hans */,
- 18189F4F2260422200327157 /* en */,
- 18189F562260422200327157 /* Base */,
- 18189F5C2260422200327157 /* zh-Hans-CN */,
- );
- name = ic_wake_green.png;
- sourceTree = "<group>";
- };
- 18189F452260422200327157 /* offline.png */ = {
- isa = PBXVariantGroup;
- children = (
- 18189F462260422200327157 /* zh-Hans */,
- 18189F502260422200327157 /* en */,
- 18189F572260422200327157 /* Base */,
- 18189F5D2260422200327157 /* zh-Hans-CN */,
- );
- name = offline.png;
- sourceTree = "<group>";
- };
- 18189F472260422200327157 /* sleepnotwakeup.png */ = {
- isa = PBXVariantGroup;
- children = (
- 18189F482260422200327157 /* zh-Hans */,
- 18189F512260422200327157 /* en */,
- 18189F582260422200327157 /* Base */,
- 18189F5E2260422200327157 /* zh-Hans-CN */,
- );
- name = sleepnotwakeup.png;
- sourceTree = "<group>";
- };
- 18189F492260422200327157 /* Prepare_sleep.png */ = {
- isa = PBXVariantGroup;
- children = (
- 18189F4A2260422200327157 /* zh-Hans */,
- 18189F522260422200327157 /* en */,
- 18189F592260422200327157 /* Base */,
- 18189F5F2260422200327157 /* zh-Hans-CN */,
- );
- name = Prepare_sleep.png;
- sourceTree = "<group>";
- };
- 18189F4B2260422200327157 /* online.png */ = {
- isa = PBXVariantGroup;
- children = (
- 18189F4C2260422200327157 /* zh-Hans */,
- 18189F532260422200327157 /* en */,
- 18189F5A2260422200327157 /* Base */,
- 18189F602260422200327157 /* zh-Hans-CN */,
- );
- name = online.png;
- sourceTree = "<group>";
- };
- 18189F4D2260422200327157 /* ic_sleep.png */ = {
- isa = PBXVariantGroup;
- children = (
- 18189F4E2260422200327157 /* zh-Hans */,
- 18189F542260422200327157 /* en */,
- 18189F5B2260422200327157 /* Base */,
- 18189F612260422200327157 /* zh-Hans-CN */,
- );
- name = ic_sleep.png;
- sourceTree = "<group>";
- };
- C615005321D7083F00FEBA22 /* Main.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- C615005421D7083F00FEBA22 /* Base */,
- );
- name = Main.storyboard;
- sourceTree = "<group>";
- };
- /* End PBXVariantGroup section */
- /* Begin XCBuildConfiguration section */
- C615007421D7084000FEBA22 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 11.1;
- MTL_ENABLE_DEBUG_INFO = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- };
- name = Debug;
- };
- C615007521D7084000FEBA22 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 11.1;
- MTL_ENABLE_DEBUG_INFO = NO;
- SDKROOT = iphoneos;
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- C615007721D7084000FEBA22 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 9BE3BA4CD1BDF2DADB10D96F /* Pods-Haishenghai-master.debug.xcconfig */;
- buildSettings = {
- ARCHS = "$(ARCHS_STANDARD)";
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "LaunchImage-1";
- CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
- CLANG_CXX_LIBRARY = "compiler-default";
- CODE_SIGN_ENTITLEMENTS = "Haishenghai-master/Haishenghai-master.entitlements";
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = 65TFNSL3BL;
- ENABLE_BITCODE = NO;
- ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/Haishenghai-master/MapLib",
- "$(PROJECT_DIR)/雄迈摄像头/sdk相关/Libraries",
- "$(PROJECT_DIR)/雄迈摄像头/sdk相关/library",
- "$(PROJECT_DIR)/Haishenghai-master/tool/sdk相关/library",
- "$(PROJECT_DIR)/tool/sdk相关/library",
- );
- GCC_C_LANGUAGE_STANDARD = "compiler-default";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- "COCOAPODS=1",
- "OS_IOS=1",
- "FORMAL=1",
- );
- INFOPLIST_FILE = "Haishenghai-master/Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 10.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/雄迈摄像头/sdk相关/Libraries",
- "$(PROJECT_DIR)/雄迈摄像头/sdk相关/Libraries/鱼眼库",
- "$(PROJECT_DIR)/Haishenghai-master/tool/sdk相关/Libraries",
- "$(PROJECT_DIR)/Haishenghai-master/tool/sdk相关/Libraries/鱼眼库",
- "$(PROJECT_DIR)/tool/sdk相关/Libraries",
- "$(PROJECT_DIR)/tool/sdk相关/Libraries/鱼眼库",
- );
- ONLY_ACTIVE_ARCH = YES;
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-l\"AFNetworking\"",
- "-l\"Masonry\"",
- "-framework",
- "\"CoreGraphics\"",
- "-framework",
- "\"Foundation\"",
- "-framework",
- "\"MobileCoreServices\"",
- "-framework",
- "\"Security\"",
- "-framework",
- "\"SystemConfiguration\"",
- "-framework",
- "\"UIKit\"",
- "-ObjC",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "com.Haishenghai-intelligence-network-technology.Haishenghai-master";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = 1;
- };
- name = Debug;
- };
- C615007821D7084000FEBA22 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 6A9E328D76A8A71C94C8091A /* Pods-Haishenghai-master.release.xcconfig */;
- buildSettings = {
- ARCHS = "$(ARCHS_STANDARD)";
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = "LaunchImage-1";
- CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
- CLANG_CXX_LIBRARY = "compiler-default";
- CODE_SIGN_ENTITLEMENTS = "Haishenghai-master/Haishenghai-master.entitlements";
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = 65TFNSL3BL;
- ENABLE_BITCODE = NO;
- ENABLE_TESTABILITY = NO;
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/Haishenghai-master/MapLib",
- "$(PROJECT_DIR)/雄迈摄像头/sdk相关/Libraries",
- "$(PROJECT_DIR)/雄迈摄像头/sdk相关/library",
- "$(PROJECT_DIR)/Haishenghai-master/tool/sdk相关/library",
- "$(PROJECT_DIR)/tool/sdk相关/library",
- );
- GCC_C_LANGUAGE_STANDARD = "compiler-default";
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- "COCOAPODS=1",
- "FORMAL=1",
- "OS_IOS=1",
- );
- INFOPLIST_FILE = "Haishenghai-master/Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 10.0;
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "$(PROJECT_DIR)/雄迈摄像头/sdk相关/Libraries",
- "$(PROJECT_DIR)/雄迈摄像头/sdk相关/Libraries/鱼眼库",
- "$(PROJECT_DIR)/Haishenghai-master/tool/sdk相关/Libraries",
- "$(PROJECT_DIR)/Haishenghai-master/tool/sdk相关/Libraries/鱼眼库",
- "$(PROJECT_DIR)/tool/sdk相关/Libraries",
- "$(PROJECT_DIR)/tool/sdk相关/Libraries/鱼眼库",
- );
- ONLY_ACTIVE_ARCH = YES;
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-ObjC",
- "-l\"AFNetworking\"",
- "-l\"Masonry\"",
- "-framework",
- "\"CoreGraphics\"",
- "-framework",
- "\"Foundation\"",
- "-framework",
- "\"MobileCoreServices\"",
- "-framework",
- "\"Security\"",
- "-framework",
- "\"SystemConfiguration\"",
- "-framework",
- "\"UIKit\"",
- "-ObjC",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "com.Haishenghai-intelligence-network-technology.Haishenghai-master";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = 1;
- };
- name = Release;
- };
- C615007A21D7084000FEBA22 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CODE_SIGN_STYLE = Automatic;
- INFOPLIST_FILE = "Haishenghai-masterTests/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- PRODUCT_BUNDLE_IDENTIFIER = "com.Haishenghai-intelligence-network-technology.Haishenghai-masterTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Haishenghai-master.app/Haishenghai-master";
- };
- name = Debug;
- };
- C615007B21D7084000FEBA22 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CODE_SIGN_STYLE = Automatic;
- INFOPLIST_FILE = "Haishenghai-masterTests/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- PRODUCT_BUNDLE_IDENTIFIER = "com.Haishenghai-intelligence-network-technology.Haishenghai-masterTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Haishenghai-master.app/Haishenghai-master";
- };
- name = Release;
- };
- C615007D21D7084000FEBA22 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = 65TFNSL3BL;
- INFOPLIST_FILE = "Haishenghai-masterUITests/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- PRODUCT_BUNDLE_IDENTIFIER = "com.Haishenghai-intelligence-network-technology.Haishenghai-masterUITests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_TARGET_NAME = "Haishenghai-master";
- };
- name = Debug;
- };
- C615007E21D7084000FEBA22 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = 65TFNSL3BL;
- INFOPLIST_FILE = "Haishenghai-masterUITests/Info.plist";
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
- PRODUCT_BUNDLE_IDENTIFIER = "com.Haishenghai-intelligence-network-technology.Haishenghai-masterUITests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_TARGET_NAME = "Haishenghai-master";
- };
- name = Release;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- C615004521D7083F00FEBA22 /* Build configuration list for PBXProject "Haishenghai-master" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- C615007421D7084000FEBA22 /* Debug */,
- C615007521D7084000FEBA22 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- C615007621D7084000FEBA22 /* Build configuration list for PBXNativeTarget "Haishenghai-master" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- C615007721D7084000FEBA22 /* Debug */,
- C615007821D7084000FEBA22 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- C615007921D7084000FEBA22 /* Build configuration list for PBXNativeTarget "Haishenghai-masterTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- C615007A21D7084000FEBA22 /* Debug */,
- C615007B21D7084000FEBA22 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- C615007C21D7084000FEBA22 /* Build configuration list for PBXNativeTarget "Haishenghai-masterUITests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- C615007D21D7084000FEBA22 /* Debug */,
- C615007E21D7084000FEBA22 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- /* End XCConfigurationList section */
- };
- rootObject = C615004221D7083F00FEBA22 /* Project object */;
- }
|