123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
- /* Begin PBXBuildFile section */
- 29125E5617492219003F03E5 /* index.html in Resources */ = {isa = PBXBuildFile; fileRef = 29125E5417492219003F03E5 /* index.html */; };
- 2915540117490A1E00B86CAD /* DDData.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553EB17490A1E00B86CAD /* DDData.m */; };
- 2915540217490A1E00B86CAD /* DDNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553ED17490A1E00B86CAD /* DDNumber.m */; };
- 2915540317490A1E00B86CAD /* DDRange.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553EF17490A1E00B86CAD /* DDRange.m */; };
- 2915540417490A1E00B86CAD /* HTTPAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F117490A1E00B86CAD /* HTTPAuthenticationRequest.m */; };
- 2915540517490A1E00B86CAD /* HTTPConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F317490A1E00B86CAD /* HTTPConnection.m */; };
- 2915540617490A1E00B86CAD /* HTTPMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F617490A1E00B86CAD /* HTTPMessage.m */; };
- 2915540717490A1E00B86CAD /* HTTPServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F917490A1E00B86CAD /* HTTPServer.m */; };
- 2915540817490A1E00B86CAD /* MultipartFormDataParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553FC17490A1E00B86CAD /* MultipartFormDataParser.m */; };
- 2915540917490A1E00B86CAD /* MultipartMessageHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553FE17490A1E00B86CAD /* MultipartMessageHeader.m */; };
- 2915540A17490A1E00B86CAD /* MultipartMessageHeaderField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915540017490A1E00B86CAD /* MultipartMessageHeaderField.m */; };
- 2915542217490A9C00B86CAD /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915540E17490A9C00B86CAD /* GCDAsyncSocket.m */; };
- 2915542417490A9C00B86CAD /* DDAbstractDatabaseLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541217490A9C00B86CAD /* DDAbstractDatabaseLogger.m */; };
- 2915542517490A9C00B86CAD /* DDASLLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541417490A9C00B86CAD /* DDASLLogger.m */; };
- 2915542617490A9C00B86CAD /* DDFileLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541617490A9C00B86CAD /* DDFileLogger.m */; };
- 2915542717490A9C00B86CAD /* DDLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541817490A9C00B86CAD /* DDLog.m */; };
- 2915542817490A9C00B86CAD /* DDTTYLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541A17490A9C00B86CAD /* DDTTYLogger.m */; };
- 2915542917490A9C00B86CAD /* ContextFilterLogFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541D17490A9C00B86CAD /* ContextFilterLogFormatter.m */; };
- 2915542A17490A9C00B86CAD /* DispatchQueueLogFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541F17490A9C00B86CAD /* DispatchQueueLogFormatter.m */; };
- 2915543B17490B9C00B86CAD /* HTTPAsyncFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915542E17490B9C00B86CAD /* HTTPAsyncFileResponse.m */; };
- 2915543C17490B9C00B86CAD /* HTTPDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543017490B9C00B86CAD /* HTTPDataResponse.m */; };
- 2915543D17490B9C00B86CAD /* HTTPDynamicFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543217490B9C00B86CAD /* HTTPDynamicFileResponse.m */; };
- 2915543E17490B9C00B86CAD /* HTTPErrorResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543417490B9C00B86CAD /* HTTPErrorResponse.m */; };
- 2915543F17490B9C00B86CAD /* HTTPFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543617490B9C00B86CAD /* HTTPFileResponse.m */; };
- 2915544017490B9C00B86CAD /* HTTPRedirectResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543817490B9C00B86CAD /* HTTPRedirectResponse.m */; };
- 2915544117490B9C00B86CAD /* WebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543A17490B9C00B86CAD /* WebSocket.m */; };
- 2915544317490D4A00B86CAD /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2915544217490D4A00B86CAD /* Security.framework */; };
- 293DF2F417494F8200BB880F /* DropboxSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D05ADEA174945CE0087550C /* DropboxSDK.framework */; };
- 7AC8629D1765DC560011611A /* style.css in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629B1765DC560011611A /* style.css */; };
- 7AC862A61765E9510011611A /* jquery-1.10.1.min.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */; };
- 7AC862A71765E9510011611A /* jquery.fileupload.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629F1765E90C0011611A /* jquery.fileupload.js */; };
- 7AC862A81765E9510011611A /* jquery.iframe-transport.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */; };
- 7AC862A91765E9510011611A /* jquery.ui.widget.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC862A11765E90C0011611A /* jquery.ui.widget.js */; };
- 7D00161C177056B700649F27 /* main.js in Resources */ = {isa = PBXBuildFile; fileRef = 7D00161A17704DAC00649F27 /* main.js */; };
- 7D0699D617CB1FAE00713BEB /* Settings@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C017CB1FAE00713BEB /* Settings@2x.png */; };
- 7D0699D717CB1FAE00713BEB /* TVShows.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C117CB1FAE00713BEB /* TVShows.png */; };
- 7D0699D817CB1FAE00713BEB /* TVShows@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C217CB1FAE00713BEB /* TVShows@2x.png */; };
- 7D0699D917CB1FAE00713BEB /* WifiUp.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C317CB1FAE00713BEB /* WifiUp.png */; };
- 7D0699DA17CB1FAE00713BEB /* WifiUp@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C417CB1FAE00713BEB /* WifiUp@2x.png */; };
- 7D0699DB17CB1FAE00713BEB /* WifiUpOn.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C517CB1FAE00713BEB /* WifiUpOn.png */; };
- 7D0699DC17CB1FAE00713BEB /* WifiUpOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C617CB1FAE00713BEB /* WifiUpOn@2x.png */; };
- 7D0699DD17CB1FAE00713BEB /* Dropbox@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C717CB1FAE00713BEB /* Dropbox@2x.png */; };
- 7D0699DE17CB1FAE00713BEB /* Local.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C817CB1FAE00713BEB /* Local.png */; };
- 7D0699DF17CB1FAE00713BEB /* Local@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C917CB1FAE00713BEB /* Local@2x.png */; };
- 7D0699E017CB1FAE00713BEB /* MusicAlbums.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CA17CB1FAE00713BEB /* MusicAlbums.png */; };
- 7D0699E117CB1FAE00713BEB /* MusicAlbums@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CB17CB1FAE00713BEB /* MusicAlbums@2x.png */; };
- 7D0699E217CB1FAE00713BEB /* OpenNetStream.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CC17CB1FAE00713BEB /* OpenNetStream.png */; };
- 7D0699E317CB1FAE00713BEB /* OpenNetStream@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CD17CB1FAE00713BEB /* OpenNetStream@2x.png */; };
- 7D0699E417CB1FAE00713BEB /* Settings.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CE17CB1FAE00713BEB /* Settings.png */; };
- 7D0699E517CB1FAE00713BEB /* About.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CF17CB1FAE00713BEB /* About.png */; };
- 7D0699E617CB1FAE00713BEB /* About@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D017CB1FAE00713BEB /* About@2x.png */; };
- 7D0699E717CB1FAE00713BEB /* AllFiles.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D117CB1FAE00713BEB /* AllFiles.png */; };
- 7D0699E817CB1FAE00713BEB /* AllFiles@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D217CB1FAE00713BEB /* AllFiles@2x.png */; };
- 7D0699E917CB1FAE00713BEB /* Downloads.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D317CB1FAE00713BEB /* Downloads.png */; };
- 7D0699EA17CB1FAE00713BEB /* Downloads@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D417CB1FAE00713BEB /* Downloads@2x.png */; };
- 7D0699EB17CB1FAE00713BEB /* Dropbox.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D517CB1FAE00713BEB /* Dropbox.png */; };
- 7D07F708175665ED00CDE21C /* navBarBackground@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F706175665ED00CDE21C /* navBarBackground@2x.png */; };
- 7D07F709175665ED00CDE21C /* navBarBackground.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F707175665ED00CDE21C /* navBarBackground.png */; };
- 7D07F70C175669A800CDE21C /* button.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70A175669A800CDE21C /* button.png */; };
- 7D07F70D175669A800CDE21C /* button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70B175669A800CDE21C /* button@2x.png */; };
- 7D07F710175669D800CDE21C /* buttonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70E175669D800CDE21C /* buttonHighlight.png */; };
- 7D07F711175669D800CDE21C /* buttonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70F175669D800CDE21C /* buttonHighlight@2x.png */; };
- 7D07F71417566C4A00CDE21C /* menuCone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71217566C4A00CDE21C /* menuCone.png */; };
- 7D07F71517566C4A00CDE21C /* menuCone@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71317566C4A00CDE21C /* menuCone@2x.png */; };
- 7D07F71E175673D100CDE21C /* menuBtnBckHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71A175673D100CDE21C /* menuBtnBckHighlight@2x.png */; };
- 7D07F71F175673D100CDE21C /* menuBtnBck@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71B175673D100CDE21C /* menuBtnBck@2x.png */; };
- 7D07F720175673D100CDE21C /* menuBtnBckHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71C175673D100CDE21C /* menuBtnBckHighlight.png */; };
- 7D07F721175673D100CDE21C /* menuBtnBck.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71D175673D100CDE21C /* menuBtnBck.png */; };
- 7D07F726175688D300CDE21C /* doneButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F722175688D300CDE21C /* doneButton.png */; };
- 7D07F727175688D300CDE21C /* doneButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F723175688D300CDE21C /* doneButton@2x.png */; };
- 7D07F728175688D300CDE21C /* doneButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F724175688D300CDE21C /* doneButtonHighlight.png */; };
- 7D07F729175688D300CDE21C /* doneButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F725175688D300CDE21C /* doneButtonHighlight@2x.png */; };
- 7D07F72E175691CC00CDE21C /* backButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72A175691CB00CDE21C /* backButton.png */; };
- 7D07F72F175691CC00CDE21C /* backButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72B175691CC00CDE21C /* backButton@2x.png */; };
- 7D07F730175691CC00CDE21C /* backButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72C175691CC00CDE21C /* backButtonHighlight.png */; };
- 7D07F731175691CC00CDE21C /* backButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72D175691CC00CDE21C /* backButtonHighlight@2x.png */; };
- 7D16035D17BF9FE600F29B34 /* sudHeaderBg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035917BF9FE600F29B34 /* sudHeaderBg.png */; };
- 7D16035E17BF9FE600F29B34 /* sudHeaderBg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035A17BF9FE600F29B34 /* sudHeaderBg@2x.png */; };
- 7D16035F17BF9FE600F29B34 /* headerSidebar@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035B17BF9FE600F29B34 /* headerSidebar@2x.png */; };
- 7D16036017BF9FE600F29B34 /* headerSidebar.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035C17BF9FE600F29B34 /* headerSidebar.png */; };
- 7D1AC3041762996100BD2EB5 /* resetIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC3021762996100BD2EB5 /* resetIcon.png */; };
- 7D1AC3051762996100BD2EB5 /* resetIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC3031762996100BD2EB5 /* resetIcon@2x.png */; };
- 7D1AC30817629AB600BD2EB5 /* ratioIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30617629AB600BD2EB5 /* ratioIcon.png */; };
- 7D1AC30917629AB600BD2EB5 /* ratioIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30717629AB600BD2EB5 /* ratioIcon@2x.png */; };
- 7D1AC30C17629D4600BD2EB5 /* title.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30A17629D4600BD2EB5 /* title.png */; };
- 7D1AC30D17629D4600BD2EB5 /* title@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30B17629D4600BD2EB5 /* title@2x.png */; };
- 7D223E1A181EC56E00B36798 /* gradient-cell-ios7-ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D223E18181EC56E00B36798 /* gradient-cell-ios7-ipad.png */; };
- 7D223E1B181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D223E19181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png */; };
- 7D2A34A41805CDBA004078AA /* gradient-cell-ios7.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D2A34A21805CDBA004078AA /* gradient-cell-ios7.png */; };
- 7D2A34A51805CDBA004078AA /* gradient-cell-ios7@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D2A34A31805CDBA004078AA /* gradient-cell-ios7@2x.png */; };
- 7D30F3C2183AB24C00FFC021 /* VLCHTTPConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3BD183AB24C00FFC021 /* VLCHTTPConnection.m */; };
- 7D30F3C3183AB24C00FFC021 /* VLCHTTPFileDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3BF183AB24C00FFC021 /* VLCHTTPFileDownloader.m */; };
- 7D30F3C4183AB24C00FFC021 /* VLCHTTPUploaderController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3C1183AB24C00FFC021 /* VLCHTTPUploaderController.m */; };
- 7D30F3C7183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3C6183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m */; };
- 7D30F3CA183AB27A00FFC021 /* VLCDownloadViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3C9183AB27A00FFC021 /* VLCDownloadViewController.m */; };
- 7D30F3CD183AB29300FFC021 /* VLCMenuTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3CC183AB29300FFC021 /* VLCMenuTableViewController.m */; };
- 7D30F3D0183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3CF183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m */; };
- 7D30F3D7183AB2F100FFC021 /* VLCLocalNetworkListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3D2183AB2F100FFC021 /* VLCLocalNetworkListCell.m */; };
- 7D30F3D8183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3D4183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m */; };
- 7D30F3D9183AB2F100FFC021 /* VLCLocalServerListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3D6183AB2F100FFC021 /* VLCLocalServerListViewController.m */; };
- 7D30F3DC183AB2F900FFC021 /* VLCNetworkLoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3DB183AB2F900FFC021 /* VLCNetworkLoginViewController.m */; };
- 7D30F3DF183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3DE183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m */; };
- 7D30F3E2183AB33200FFC021 /* VLCSidebarViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3E1183AB33200FFC021 /* VLCSidebarViewCell.m */; };
- 7D30F3EA183AB34200FFC021 /* VLCGoogleDriveController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3E5183AB34200FFC021 /* VLCGoogleDriveController.m */; };
- 7D30F3EC183AB34200FFC021 /* VLCGoogleDriveTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3E9183AB34200FFC021 /* VLCGoogleDriveTableViewController.m */; };
- 7D31001D17B64AE100E6516D /* GHRevealViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D31001C17B64AE100E6516D /* GHRevealViewController.m */; };
- 7D31002017B6768B00E6516D /* libupnpx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D31001F17B6768B00E6516D /* libupnpx.a */; };
- 7D37848F183A98B6009EE944 /* VLCMovieViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D37848E183A98B6009EE944 /* VLCMovieViewController.m */; };
- 7D378492183A98BF009EE944 /* VLCExternalDisplayController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378491183A98BF009EE944 /* VLCExternalDisplayController.m */; };
- 7D378499183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378494183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m */; };
- 7D37849A183A98D1009EE944 /* VLCPlaylistTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378496183A98D1009EE944 /* VLCPlaylistTableViewCell.m */; };
- 7D37849B183A98D1009EE944 /* VLCPlaylistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378498183A98D1009EE944 /* VLCPlaylistViewController.m */; };
- 7D37849E183A98DD009EE944 /* VLCThumbnailsCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D37849D183A98DD009EE944 /* VLCThumbnailsCache.m */; };
- 7D3784A1183A98EB009EE944 /* VLCBugreporter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784A0183A98EB009EE944 /* VLCBugreporter.m */; };
- 7D3784A6183A98F5009EE944 /* VLCAboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784A3183A98F5009EE944 /* VLCAboutViewController.m */; };
- 7D3784A7183A98F5009EE944 /* VLCSettingsController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784A5183A98F5009EE944 /* VLCSettingsController.m */; };
- 7D3784AD183A9906009EE944 /* VLCDropboxController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784AA183A9906009EE944 /* VLCDropboxController.m */; };
- 7D3784AE183A9906009EE944 /* VLCDropboxTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784AC183A9906009EE944 /* VLCDropboxTableViewController.m */; };
- 7D3784BE183A9938009EE944 /* UIBarButtonItem+Theme.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B3183A9938009EE944 /* UIBarButtonItem+Theme.m */; };
- 7D3784BF183A9938009EE944 /* UINavigationController+Theme.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B5183A9938009EE944 /* UINavigationController+Theme.m */; };
- 7D3784C0183A9938009EE944 /* VLCLinearProgressIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B7183A9938009EE944 /* VLCLinearProgressIndicator.m */; };
- 7D3784C1183A9938009EE944 /* VLCMenuButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B9183A9938009EE944 /* VLCMenuButton.m */; };
- 7D3784C2183A9938009EE944 /* VLCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784BB183A9938009EE944 /* VLCSlider.m */; };
- 7D3784C3183A9938009EE944 /* VLCStatusLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784BD183A9938009EE944 /* VLCStatusLabel.m */; };
- 7D3784C8183A9972009EE944 /* NSString+SupportedMedia.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784C5183A9972009EE944 /* NSString+SupportedMedia.m */; };
- 7D3784C9183A9972009EE944 /* UIDevice+SpeedCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784C7183A9972009EE944 /* UIDevice+SpeedCategory.m */; };
- 7D3784CC183A99BA009EE944 /* PAPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784CB183A99BA009EE944 /* PAPasscodeViewController.m */; };
- 7D3784DF183A99D2009EE944 /* papasscode_background.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784D9183A99D2009EE944 /* papasscode_background.png */; };
- 7D3784E0183A99D2009EE944 /* papasscode_background@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DA183A99D2009EE944 /* papasscode_background@2x.png */; };
- 7D3784E1183A99D2009EE944 /* papasscode_failed_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DB183A99D2009EE944 /* papasscode_failed_bg.png */; };
- 7D3784E2183A99D2009EE944 /* papasscode_failed_bg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DC183A99D2009EE944 /* papasscode_failed_bg@2x.png */; };
- 7D3784E3183A99D2009EE944 /* papasscode_marker.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DD183A99D2009EE944 /* papasscode_marker.png */; };
- 7D3784E4183A99D2009EE944 /* papasscode_marker@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DE183A99D2009EE944 /* papasscode_marker@2x.png */; };
- 7D3784E7183A99E1009EE944 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784E6183A99E1009EE944 /* Reachability.m */; };
- 7D3784E9183A9A15009EE944 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784E8183A9A15009EE944 /* main.m */; };
- 7D3784EC183A9A1E009EE944 /* VLC for iOS-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784EA183A9A1E009EE944 /* VLC for iOS-Info.plist */; };
- 7D3EB014174A353E002062C2 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */; };
- 7D47D6F91760CD8700E86BAD /* subtitleIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CB1760CD8700E86BAD /* subtitleIcon.png */; };
- 7D47D6FA1760CD8700E86BAD /* subtitleIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CC1760CD8700E86BAD /* subtitleIcon@2x.png */; };
- 7D47D6FB1760CD8700E86BAD /* videoEffectsIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CD1760CD8700E86BAD /* videoEffectsIcon.png */; };
- 7D47D6FC1760CD8700E86BAD /* videoEffectsIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CE1760CD8700E86BAD /* videoEffectsIcon@2x.png */; };
- 7D47D6FD1760CD8700E86BAD /* seekbarBg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CF1760CD8700E86BAD /* seekbarBg@2x.png */; };
- 7D47D6FE1760CD8700E86BAD /* slidermaximumTrack.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D01760CD8700E86BAD /* slidermaximumTrack.png */; };
- 7D47D6FF1760CD8700E86BAD /* slidermaximumTrack@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D11760CD8700E86BAD /* slidermaximumTrack@2x.png */; };
- 7D47D7001760CD8700E86BAD /* slidermaxValue.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D21760CD8700E86BAD /* slidermaxValue.png */; };
- 7D47D7011760CD8700E86BAD /* slidermaxValue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D31760CD8700E86BAD /* slidermaxValue@2x.png */; };
- 7D47D7021760CD8700E86BAD /* sliderminiValue.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D41760CD8700E86BAD /* sliderminiValue.png */; };
- 7D47D7031760CD8700E86BAD /* sliderminiValue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D51760CD8700E86BAD /* sliderminiValue@2x.png */; };
- 7D47D7061760CD8700E86BAD /* speedIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D81760CD8700E86BAD /* speedIcon.png */; };
- 7D47D7071760CD8700E86BAD /* speedIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D91760CD8700E86BAD /* speedIcon@2x.png */; };
- 7D47D7081760CD8700E86BAD /* playbackControllerBg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DA1760CD8700E86BAD /* playbackControllerBg@2x.png */; };
- 7D47D7091760CD8700E86BAD /* playbackDoneButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DB1760CD8700E86BAD /* playbackDoneButton.png */; };
- 7D47D70A1760CD8700E86BAD /* playbackDoneButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DC1760CD8700E86BAD /* playbackDoneButton@2x.png */; };
- 7D47D70B1760CD8700E86BAD /* playbackDoneButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DD1760CD8700E86BAD /* playbackDoneButtonHighlight.png */; };
- 7D47D70C1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DE1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png */; };
- 7D47D70D1760CD8700E86BAD /* ratioButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DF1760CD8700E86BAD /* ratioButton.png */; };
- 7D47D70E1760CD8700E86BAD /* ratioButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E01760CD8700E86BAD /* ratioButton@2x.png */; };
- 7D47D70F1760CD8700E86BAD /* ratioButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E11760CD8700E86BAD /* ratioButtonHighlight.png */; };
- 7D47D7101760CD8700E86BAD /* ratioButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E21760CD8700E86BAD /* ratioButtonHighlight@2x.png */; };
- 7D47D7111760CD8700E86BAD /* seekbarBg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E31760CD8700E86BAD /* seekbarBg.png */; };
- 7D47D7131760CD8700E86BAD /* forwardIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E51760CD8700E86BAD /* forwardIcon.png */; };
- 7D47D7141760CD8700E86BAD /* forwardIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E61760CD8700E86BAD /* forwardIcon@2x.png */; };
- 7D47D7151760CD8700E86BAD /* knobSlider.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E71760CD8700E86BAD /* knobSlider.png */; };
- 7D47D7161760CD8700E86BAD /* knobSlider@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E81760CD8700E86BAD /* knobSlider@2x.png */; };
- 7D47D7191760CD8700E86BAD /* playbackControllerBg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EB1760CD8700E86BAD /* playbackControllerBg.png */; };
- 7D47D71A1760CD8700E86BAD /* playIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EC1760CD8700E86BAD /* playIcon.png */; };
- 7D47D71B1760CD8700E86BAD /* playIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6ED1760CD8700E86BAD /* playIcon@2x.png */; };
- 7D47D71C1760CD8700E86BAD /* audioTrackIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EE1760CD8700E86BAD /* audioTrackIcon.png */; };
- 7D47D71D1760CD8700E86BAD /* audioTrackIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EF1760CD8700E86BAD /* audioTrackIcon@2x.png */; };
- 7D47D71E1760CD8700E86BAD /* backIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F01760CD8700E86BAD /* backIcon.png */; };
- 7D47D71F1760CD8700E86BAD /* backIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F11760CD8700E86BAD /* backIcon@2x.png */; };
- 7D47D7201760CD8700E86BAD /* ballSlider.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F21760CD8700E86BAD /* ballSlider.png */; };
- 7D47D7211760CD8700E86BAD /* ballSlider@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F31760CD8700E86BAD /* ballSlider@2x.png */; };
- 7D47D7271760D77C00E86BAD /* pauseIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D7251760D77C00E86BAD /* pauseIcon.png */; };
- 7D47D7281760D77C00E86BAD /* pauseIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D7261760D77C00E86BAD /* pauseIcon@2x.png */; };
- 7D47D72B1760E3A000E86BAD /* sliderminimumTrack.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D7291760E3A000E86BAD /* sliderminimumTrack.png */; };
- 7D47D72C1760E3A000E86BAD /* sliderminimumTrack@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D72A1760E3A000E86BAD /* sliderminimumTrack@2x.png */; };
- 7D514D4117F779C6007B960C /* Drive@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D514D3D17F779C6007B960C /* Drive@2x.png */; };
- 7D514D4217F779C6007B960C /* DriveWhite.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D514D3E17F779C6007B960C /* DriveWhite.png */; };
- 7D514D4317F779C6007B960C /* DriveWhite@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D514D3F17F779C6007B960C /* DriveWhite@2x.png */; };
- 7D514D4417F779C6007B960C /* Drive.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D514D4017F779C6007B960C /* Drive.png */; };
- 7D5DD5C717590ABF001421E3 /* About Contents.html in Resources */ = {isa = PBXBuildFile; fileRef = 7D5DD5C617590ABF001421E3 /* About Contents.html */; };
- 7D5E39CA174FC2F3007DAFA1 /* dropbox-white.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D5E39C8174FC2F3007DAFA1 /* dropbox-white.png */; };
- 7D5E39CB174FC2F3007DAFA1 /* dropbox-white@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D5E39C9174FC2F3007DAFA1 /* dropbox-white@2x.png */; };
- 7D6B08C2174A831900A05173 /* vlc-xmas.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6B08C0174A831900A05173 /* vlc-xmas.png */; };
- 7D6B08C3174A831900A05173 /* vlc-xmas@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6B08C1174A831900A05173 /* vlc-xmas@2x.png */; };
- 7D6B08EB174D65B500A05173 /* IASKAppSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08CD174D65B500A05173 /* IASKAppSettingsViewController.m */; };
- 7D6B08EC174D65B500A05173 /* IASKAppSettingsWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08CF174D65B500A05173 /* IASKAppSettingsWebViewController.m */; };
- 7D6B08ED174D65B500A05173 /* IASKSpecifierValuesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D1174D65B500A05173 /* IASKSpecifierValuesViewController.m */; };
- 7D6B08EE174D65B500A05173 /* IASKSettingsReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D5174D65B500A05173 /* IASKSettingsReader.m */; };
- 7D6B08EF174D65B500A05173 /* IASKSettingsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D7174D65B500A05173 /* IASKSettingsStore.m */; };
- 7D6B08F0174D65B500A05173 /* IASKSettingsStoreFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D9174D65B500A05173 /* IASKSettingsStoreFile.m */; };
- 7D6B08F1174D65B500A05173 /* IASKSettingsStoreUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08DB174D65B500A05173 /* IASKSettingsStoreUserDefaults.m */; };
- 7D6B08F2174D65B500A05173 /* IASKSpecifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08DD174D65B500A05173 /* IASKSpecifier.m */; };
- 7D6B08F3174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E0174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m */; };
- 7D6B08F4174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E2174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m */; };
- 7D6B08F5174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E4174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m */; };
- 7D6B08F6174D65B500A05173 /* IASKSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E6174D65B500A05173 /* IASKSlider.m */; };
- 7D6B08F7174D65B500A05173 /* IASKSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E8174D65B500A05173 /* IASKSwitch.m */; };
- 7D6B08F8174D65B500A05173 /* IASKTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08EA174D65B500A05173 /* IASKTextField.m */; };
- 7D6B08FA174D716200A05173 /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D6B08F9174D716200A05173 /* MessageUI.framework */; };
- 7D6B08FC174D773C00A05173 /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 7D6B08FB174D773C00A05173 /* Settings.bundle */; };
- 7D6BD1841762026700AD311A /* thumbOverlayPhone@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1801762026700AD311A /* thumbOverlayPhone@2x.png */; };
- 7D6BD1851762026700AD311A /* thumbOverlay@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1811762026700AD311A /* thumbOverlay@2x.png */; };
- 7D6BD1861762026700AD311A /* thumbOverlayPhone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1821762026700AD311A /* thumbOverlayPhone.png */; };
- 7D6BD1871762026700AD311A /* thumbOverlay.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1831762026700AD311A /* thumbOverlay.png */; };
- 7D711ADA18227A490094E4F0 /* GTMOAuth2ViewTouch.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D711AD918227A490094E4F0 /* GTMOAuth2ViewTouch.xib */; };
- 7D88224F185733D500D87252 /* Default-ipad-Landscape.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D882244185733D500D87252 /* Default-ipad-Landscape.png */; };
- 7D882250185733D500D87252 /* Default-ipad-Landscape@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D882245185733D500D87252 /* Default-ipad-Landscape@2x.png */; };
- 7D882251185733D500D87252 /* Default-ipad-Portrait.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D882246185733D500D87252 /* Default-ipad-Portrait.png */; };
- 7D882252185733D500D87252 /* Default-ipad-Portrait@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D882247185733D500D87252 /* Default-ipad-Portrait@2x.png */; };
- 7D882253185733D500D87252 /* Default-568h@2x~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D882248185733D500D87252 /* Default-568h@2x~iphone.png */; };
- 7D882254185733D500D87252 /* Default-Landscape~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D882249185733D500D87252 /* Default-Landscape~ipad.png */; };
- 7D882255185733D500D87252 /* Default-Landscape@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D88224A185733D500D87252 /* Default-Landscape@2x~ipad.png */; };
- 7D882256185733D500D87252 /* Default~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D88224B185733D500D87252 /* Default~ipad.png */; };
- 7D882257185733D500D87252 /* Default-Portrait@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D88224C185733D500D87252 /* Default-Portrait@2x~ipad.png */; };
- 7D882258185733D500D87252 /* Default~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D88224D185733D500D87252 /* Default~iphone.png */; };
- 7D882259185733D500D87252 /* Default@2x~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D88224E185733D500D87252 /* Default@2x~iphone.png */; };
- 7D94FCDF16DE7D1000F2623B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCDE16DE7D1000F2623B /* UIKit.framework */; };
- 7D94FCE116DE7D1000F2623B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCE016DE7D1000F2623B /* Foundation.framework */; };
- 7D94FCE316DE7D1000F2623B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */; };
- 7DA8B0FB173318E80029698C /* SourceCodePro-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */; };
- 7DADC55F1704FABF001DAC63 /* OBSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DADC55E1704FABF001DAC63 /* OBSlider.m */; };
- 7DBBF182183AB3B80009A339 /* VLCAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DBBF181183AB3B80009A339 /* VLCAppDelegate.m */; };
- 7DBBF198183AB4300009A339 /* VLCAboutViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF183183AB4300009A339 /* VLCAboutViewController~ipad.xib */; };
- 7DBBF199183AB4300009A339 /* VLCAboutViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF184183AB4300009A339 /* VLCAboutViewController~iphone.xib */; };
- 7DBBF19A183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF185183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib */; };
- 7DBBF19B183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF186183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib */; };
- 7DBBF19C183AB4300009A339 /* VLCDownloadViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF187183AB4300009A339 /* VLCDownloadViewController.xib */; };
- 7DBBF19D183AB4300009A339 /* VLCCloudStorageTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF188183AB4300009A339 /* VLCCloudStorageTableViewController.xib */; };
- 7DBBF19E183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF189183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib */; };
- 7DBBF19F183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18A183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib */; };
- 7DBBF1A0183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18B183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib */; };
- 7DBBF1A1183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18C183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib */; };
- 7DBBF1A3183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18E183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib */; };
- 7DBBF1A4183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18F183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib */; };
- 7DBBF1A5183AB4300009A339 /* VLCMovieViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF190183AB4300009A339 /* VLCMovieViewController~ipad.xib */; };
- 7DBBF1A6183AB4300009A339 /* VLCMovieViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF191183AB4300009A339 /* VLCMovieViewController~iphone.xib */; };
- 7DBBF1A7183AB4300009A339 /* VLCNetworkLoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF192183AB4300009A339 /* VLCNetworkLoginViewController.xib */; };
- 7DBBF1A8183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF193183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib */; };
- 7DBBF1A9183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF194183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib */; };
- 7DBBF1AA183AB4300009A339 /* VLCPlaylistGridView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF195183AB4300009A339 /* VLCPlaylistGridView.xib */; };
- 7DBBF1AB183AB4300009A339 /* VLCPlaylistTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF196183AB4300009A339 /* VLCPlaylistTableViewCell.xib */; };
- 7DBBF1AC183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF197183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib */; };
- 7DC72D5E17B7E7C7008A26D0 /* download@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DC72D5B17B7E7C7008A26D0 /* download@4x.png */; };
- 7DC72D5F17B7E7C7008A26D0 /* download.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DC72D5C17B7E7C7008A26D0 /* download.png */; };
- 7DC72D6017B7E7C7008A26D0 /* download@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DC72D5D17B7E7C7008A26D0 /* download@2x.png */; };
- 7DC72D6317B7ED24008A26D0 /* WhiteRaccoon.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */; };
- 7DD2A3A9179C04A7003EB537 /* OpenSans-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */; };
- 7DDD0429172D98E5005A7B10 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */; };
- 7DE18629175BA9A5006C0173 /* badgeUnread@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */; };
- 7DE1862C175BA9A9006C0173 /* badgeUnread@2x~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */; };
- 7DE1862F175BA9AC006C0173 /* badgeUnread~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */; };
- 7DE18632175BA9AF006C0173 /* badgeUnread~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */; };
- 7DEB3B5D17647B240038FC70 /* bottomBlackBar@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B5B17647B240038FC70 /* bottomBlackBar@2x.png */; };
- 7DEB3B5E17647B240038FC70 /* bottomBlackBar.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B5C17647B240038FC70 /* bottomBlackBar.png */; };
- 7DEB3B6017647DE30038FC70 /* iTunesArtwork@2x in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B5F17647DE30038FC70 /* iTunesArtwork@2x */; };
- 7DEB3B6217647E230038FC70 /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6117647E230038FC70 /* Icon@2x.png */; };
- 7DEB3B6417647E370038FC70 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6317647E370038FC70 /* Icon.png */; };
- 7DEB3B6617647E440038FC70 /* Icon-72.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6517647E440038FC70 /* Icon-72.png */; };
- 7DEB3B6817647E480038FC70 /* Icon-72@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6717647E480038FC70 /* Icon-72@2x.png */; };
- 7DEB3B6D17647EC10038FC70 /* Icon-Small-50.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6917647EC10038FC70 /* Icon-Small-50.png */; };
- 7DEB3B6E17647EC10038FC70 /* Icon-Small-50@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6A17647EC10038FC70 /* Icon-Small-50@2x.png */; };
- 7DEB3B6F17647EC10038FC70 /* Icon-Small.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6B17647EC10038FC70 /* Icon-Small.png */; };
- 7DEB3B7017647EC10038FC70 /* Icon-Small@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6C17647EC10038FC70 /* Icon-Small@2x.png */; };
- 7DEB3B7217649BEB0038FC70 /* Icon-512.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7117649BEB0038FC70 /* Icon-512.png */; };
- 7DEB3B7517649F2C0038FC70 /* menuButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7317649F2C0038FC70 /* menuButton.png */; };
- 7DEB3B7617649F2C0038FC70 /* menuButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7417649F2C0038FC70 /* menuButton@2x.png */; };
- 7DEB3B791764A4040038FC70 /* input@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B771764A4040038FC70 /* input@2x.png */; };
- 7DEB3B7A1764A4040038FC70 /* input.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B781764A4040038FC70 /* input.png */; };
- 7DEB3B851764A4F40038FC70 /* movie@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7C1764A4F40038FC70 /* movie@2x.png */; };
- 7DEB3B861764A4F40038FC70 /* movie@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7D1764A4F40038FC70 /* movie@4x.png */; };
- 7DEB3B871764A4F40038FC70 /* blank@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7E1764A4F40038FC70 /* blank@4x.png */; };
- 7DEB3B881764A4F40038FC70 /* folder.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7F1764A4F40038FC70 /* folder.png */; };
- 7DEB3B891764A4F40038FC70 /* folder@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B801764A4F40038FC70 /* folder@2x.png */; };
- 7DEB3B8A1764A4F40038FC70 /* folder@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B811764A4F40038FC70 /* folder@4x.png */; };
- 7DEB3B8B1764A4F40038FC70 /* movie.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B821764A4F40038FC70 /* movie.png */; };
- 7DEB3B8C1764A4F40038FC70 /* blank.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B831764A4F40038FC70 /* blank.png */; };
- 7DEB3B8D1764A4F40038FC70 /* blank@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B841764A4F40038FC70 /* blank@2x.png */; };
- 7DF1166C176CC69A009EC05C /* volumeballslider.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DF1166A176CC69A009EC05C /* volumeballslider.png */; };
- 7DF1166D176CC69A009EC05C /* volumeballslider@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DF1166B176CC69A009EC05C /* volumeballslider@2x.png */; };
- 7DF7CA0717650C2A00C61739 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */; };
- 7DF7E791175F47DC0018858D /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DF7E790175F47DC0018858D /* MediaPlayer.framework */; };
- 9B088308183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B088307183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m */; };
- 9B2E0CF417FB71E90098E3DF /* libGTLTouchStaticLib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9B2E0CF317FB71E80098E3DF /* libGTLTouchStaticLib.a */; };
- 9B5BEF2917FBAEA50016F9CB /* GTLDrive_Sources.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B5BEF2717FBAEA50016F9CB /* GTLDrive_Sources.m */; };
- 9BE4D1CE183D76950006346C /* VLCCloudStorageTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B0183A990F009EE944 /* VLCCloudStorageTableViewCell.m */; };
- 9BF0708E185122AA009B23DD /* audio.png in Resources */ = {isa = PBXBuildFile; fileRef = 9BF0708B185122AA009B23DD /* audio.png */; };
- 9BF0708F185122AA009B23DD /* audio@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9BF0708C185122AA009B23DD /* audio@2x.png */; };
- 9BF07090185122AA009B23DD /* audio@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9BF0708D185122AA009B23DD /* audio@4x.png */; };
- A7035BBE174519600057DFA7 /* iTunesArtwork in Resources */ = {isa = PBXBuildFile; fileRef = A7035BBD174519600057DFA7 /* iTunesArtwork */; };
- A7924696170F0BA90036AAF2 /* libMediaLibraryKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */; };
- A79246A7170F0ED20036AAF2 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A7924698170F0ED20036AAF2 /* Default-568h@2x.png */; };
- A79246A8170F0ED20036AAF2 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = A7924699170F0ED20036AAF2 /* Default.png */; };
- A79246A9170F0ED20036AAF2 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A792469A170F0ED20036AAF2 /* Default@2x.png */; };
- A79246C8170F11DF0036AAF2 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = A79246C6170F11DF0036AAF2 /* Localizable.strings */; };
- A7990064176E9352009E8267 /* libraryBackground.png in Resources */ = {isa = PBXBuildFile; fileRef = A7990063176E9352009E8267 /* libraryBackground.png */; };
- A7CB0DB11716F72600050CF3 /* PlayingExternally@2x~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DAD1716F72600050CF3 /* PlayingExternally@2x~iphone.png */; };
- A7CB0DB21716F72600050CF3 /* PlayingExternally~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DAE1716F72600050CF3 /* PlayingExternally~iphone.png */; };
- A7CB0DB31716F72600050CF3 /* PlayingExternally~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DAF1716F72600050CF3 /* PlayingExternally~ipad.png */; };
- A7CB0DB41716F72600050CF3 /* PlayingExternally@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DB01716F72600050CF3 /* PlayingExternally@2x~ipad.png */; };
- A7FF9F3E17428C1900999819 /* DeleteButton.png in Resources */ = {isa = PBXBuildFile; fileRef = A7FF9F3D17428C1900999819 /* DeleteButton.png */; };
- A7FF9F4017428C3800999819 /* DeleteButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A7FF9F3F17428C3800999819 /* DeleteButton@2x.png */; };
- CC1BBC3F1704934300A20CBF /* libMobileVLCKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */; };
- CC1BBC431704935E00A20CBF /* MediaLibrary.mom in Resources */ = {isa = PBXBuildFile; fileRef = CC1BBC421704935E00A20CBF /* MediaLibrary.mom */; };
- CC1BBC461704938300A20CBF /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC451704938300A20CBF /* libiconv.dylib */; };
- CC1BBC481704938B00A20CBF /* libstdc++.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC471704938B00A20CBF /* libstdc++.dylib */; };
- CC1BBC4C1704939B00A20CBF /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */; };
- CC1BBC4E170493A300A20CBF /* libbz2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4D170493A300A20CBF /* libbz2.dylib */; };
- CC1BBC50170493AA00A20CBF /* libxml2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4F170493AA00A20CBF /* libxml2.dylib */; };
- CC1BBC52170493B100A20CBF /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC51170493B100A20CBF /* OpenGLES.framework */; };
- CC1BBC54170493B800A20CBF /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC53170493B800A20CBF /* AudioToolbox.framework */; };
- CC1BBC56170493C100A20CBF /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC55170493C100A20CBF /* QuartzCore.framework */; };
- CC1BBC58170493E100A20CBF /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC57170493E100A20CBF /* CoreData.framework */; };
- CCE2A22E17A5859E00D9EAAD /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CCE2A22D17A5859E00D9EAAD /* CoreText.framework */; };
- /* End PBXBuildFile section */
- /* Begin PBXFileReference section */
- 29125E5417492219003F03E5 /* index.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = index.html; sourceTree = "<group>"; };
- 291553EA17490A1E00B86CAD /* DDData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDData.h; sourceTree = "<group>"; };
- 291553EB17490A1E00B86CAD /* DDData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDData.m; sourceTree = "<group>"; };
- 291553EC17490A1E00B86CAD /* DDNumber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDNumber.h; sourceTree = "<group>"; };
- 291553ED17490A1E00B86CAD /* DDNumber.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDNumber.m; sourceTree = "<group>"; };
- 291553EE17490A1E00B86CAD /* DDRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDRange.h; sourceTree = "<group>"; };
- 291553EF17490A1E00B86CAD /* DDRange.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDRange.m; sourceTree = "<group>"; };
- 291553F017490A1E00B86CAD /* HTTPAuthenticationRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPAuthenticationRequest.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPAuthenticationRequest.h; sourceTree = SOURCE_ROOT; };
- 291553F117490A1E00B86CAD /* HTTPAuthenticationRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPAuthenticationRequest.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPAuthenticationRequest.m; sourceTree = SOURCE_ROOT; };
- 291553F217490A1E00B86CAD /* HTTPConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPConnection.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPConnection.h; sourceTree = SOURCE_ROOT; };
- 291553F317490A1E00B86CAD /* HTTPConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPConnection.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPConnection.m; sourceTree = SOURCE_ROOT; };
- 291553F417490A1E00B86CAD /* HTTPLogging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPLogging.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPLogging.h; sourceTree = SOURCE_ROOT; };
- 291553F517490A1E00B86CAD /* HTTPMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPMessage.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPMessage.h; sourceTree = SOURCE_ROOT; };
- 291553F617490A1E00B86CAD /* HTTPMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPMessage.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPMessage.m; sourceTree = SOURCE_ROOT; };
- 291553F717490A1E00B86CAD /* HTTPResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPResponse.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPResponse.h; sourceTree = SOURCE_ROOT; };
- 291553F817490A1E00B86CAD /* HTTPServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPServer.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPServer.h; sourceTree = SOURCE_ROOT; };
- 291553F917490A1E00B86CAD /* HTTPServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPServer.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPServer.m; sourceTree = SOURCE_ROOT; };
- 291553FB17490A1E00B86CAD /* MultipartFormDataParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartFormDataParser.h; sourceTree = "<group>"; };
- 291553FC17490A1E00B86CAD /* MultipartFormDataParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartFormDataParser.m; sourceTree = "<group>"; };
- 291553FD17490A1E00B86CAD /* MultipartMessageHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartMessageHeader.h; sourceTree = "<group>"; };
- 291553FE17490A1E00B86CAD /* MultipartMessageHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartMessageHeader.m; sourceTree = "<group>"; };
- 291553FF17490A1E00B86CAD /* MultipartMessageHeaderField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartMessageHeaderField.h; sourceTree = "<group>"; };
- 2915540017490A1E00B86CAD /* MultipartMessageHeaderField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartMessageHeaderField.m; sourceTree = "<group>"; };
- 2915540D17490A9C00B86CAD /* GCDAsyncSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GCDAsyncSocket.h; sourceTree = "<group>"; };
- 2915540E17490A9C00B86CAD /* GCDAsyncSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GCDAsyncSocket.m; sourceTree = "<group>"; };
- 2915541017490A9C00B86CAD /* About.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = About.txt; sourceTree = "<group>"; };
- 2915541117490A9C00B86CAD /* DDAbstractDatabaseLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDAbstractDatabaseLogger.h; sourceTree = "<group>"; };
- 2915541217490A9C00B86CAD /* DDAbstractDatabaseLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDAbstractDatabaseLogger.m; sourceTree = "<group>"; };
- 2915541317490A9C00B86CAD /* DDASLLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDASLLogger.h; sourceTree = "<group>"; };
- 2915541417490A9C00B86CAD /* DDASLLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDASLLogger.m; sourceTree = "<group>"; };
- 2915541517490A9C00B86CAD /* DDFileLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDFileLogger.h; sourceTree = "<group>"; };
- 2915541617490A9C00B86CAD /* DDFileLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDFileLogger.m; sourceTree = "<group>"; };
- 2915541717490A9C00B86CAD /* DDLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDLog.h; sourceTree = "<group>"; };
- 2915541817490A9C00B86CAD /* DDLog.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDLog.m; sourceTree = "<group>"; };
- 2915541917490A9C00B86CAD /* DDTTYLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDTTYLogger.h; sourceTree = "<group>"; };
- 2915541A17490A9C00B86CAD /* DDTTYLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDTTYLogger.m; sourceTree = "<group>"; };
- 2915541C17490A9C00B86CAD /* ContextFilterLogFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContextFilterLogFormatter.h; sourceTree = "<group>"; };
- 2915541D17490A9C00B86CAD /* ContextFilterLogFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContextFilterLogFormatter.m; sourceTree = "<group>"; };
- 2915541E17490A9C00B86CAD /* DispatchQueueLogFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DispatchQueueLogFormatter.h; sourceTree = "<group>"; };
- 2915541F17490A9C00B86CAD /* DispatchQueueLogFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DispatchQueueLogFormatter.m; sourceTree = "<group>"; };
- 2915542017490A9C00B86CAD /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
- 2915542D17490B9C00B86CAD /* HTTPAsyncFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPAsyncFileResponse.h; sourceTree = "<group>"; };
- 2915542E17490B9C00B86CAD /* HTTPAsyncFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPAsyncFileResponse.m; sourceTree = "<group>"; };
- 2915542F17490B9C00B86CAD /* HTTPDataResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPDataResponse.h; sourceTree = "<group>"; };
- 2915543017490B9C00B86CAD /* HTTPDataResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPDataResponse.m; sourceTree = "<group>"; };
- 2915543117490B9C00B86CAD /* HTTPDynamicFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPDynamicFileResponse.h; sourceTree = "<group>"; };
- 2915543217490B9C00B86CAD /* HTTPDynamicFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPDynamicFileResponse.m; sourceTree = "<group>"; };
- 2915543317490B9C00B86CAD /* HTTPErrorResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPErrorResponse.h; sourceTree = "<group>"; };
- 2915543417490B9C00B86CAD /* HTTPErrorResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPErrorResponse.m; sourceTree = "<group>"; };
- 2915543517490B9C00B86CAD /* HTTPFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPFileResponse.h; sourceTree = "<group>"; };
- 2915543617490B9C00B86CAD /* HTTPFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPFileResponse.m; sourceTree = "<group>"; };
- 2915543717490B9C00B86CAD /* HTTPRedirectResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPRedirectResponse.h; sourceTree = "<group>"; };
- 2915543817490B9C00B86CAD /* HTTPRedirectResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPRedirectResponse.m; sourceTree = "<group>"; };
- 2915543917490B9C00B86CAD /* WebSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebSocket.h; path = ImportedSources/CocoaHTTPServer/Core/WebSocket.h; sourceTree = SOURCE_ROOT; };
- 2915543A17490B9C00B86CAD /* WebSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebSocket.m; path = ImportedSources/CocoaHTTPServer/Core/WebSocket.m; sourceTree = SOURCE_ROOT; };
- 2915544217490D4A00B86CAD /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
- 7AC8629B1765DC560011611A /* style.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; path = style.css; sourceTree = "<group>"; };
- 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "jquery-1.10.1.min.js"; sourceTree = "<group>"; };
- 7AC8629F1765E90C0011611A /* jquery.fileupload.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jquery.fileupload.js; sourceTree = "<group>"; };
- 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "jquery.iframe-transport.js"; sourceTree = "<group>"; };
- 7AC862A11765E90C0011611A /* jquery.ui.widget.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jquery.ui.widget.js; sourceTree = "<group>"; };
- 7D00161A17704DAC00649F27 /* main.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = main.js; sourceTree = "<group>"; };
- 7D05ADEA174945CE0087550C /* DropboxSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DropboxSDK.framework; path = ImportedSources/Dropbox/DropboxSDK.framework; sourceTree = "<group>"; };
- 7D0699C017CB1FAE00713BEB /* Settings@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Settings@2x.png"; sourceTree = "<group>"; };
- 7D0699C117CB1FAE00713BEB /* TVShows.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TVShows.png; sourceTree = "<group>"; };
- 7D0699C217CB1FAE00713BEB /* TVShows@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "TVShows@2x.png"; sourceTree = "<group>"; };
- 7D0699C317CB1FAE00713BEB /* WifiUp.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = WifiUp.png; sourceTree = "<group>"; };
- 7D0699C417CB1FAE00713BEB /* WifiUp@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "WifiUp@2x.png"; sourceTree = "<group>"; };
- 7D0699C517CB1FAE00713BEB /* WifiUpOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = WifiUpOn.png; sourceTree = "<group>"; };
- 7D0699C617CB1FAE00713BEB /* WifiUpOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "WifiUpOn@2x.png"; sourceTree = "<group>"; };
- 7D0699C717CB1FAE00713BEB /* Dropbox@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Dropbox@2x.png"; sourceTree = "<group>"; };
- 7D0699C817CB1FAE00713BEB /* Local.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Local.png; sourceTree = "<group>"; };
- 7D0699C917CB1FAE00713BEB /* Local@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Local@2x.png"; sourceTree = "<group>"; };
- 7D0699CA17CB1FAE00713BEB /* MusicAlbums.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MusicAlbums.png; sourceTree = "<group>"; };
- 7D0699CB17CB1FAE00713BEB /* MusicAlbums@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "MusicAlbums@2x.png"; sourceTree = "<group>"; };
- 7D0699CC17CB1FAE00713BEB /* OpenNetStream.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = OpenNetStream.png; sourceTree = "<group>"; };
- 7D0699CD17CB1FAE00713BEB /* OpenNetStream@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "OpenNetStream@2x.png"; sourceTree = "<group>"; };
- 7D0699CE17CB1FAE00713BEB /* Settings.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Settings.png; sourceTree = "<group>"; };
- 7D0699CF17CB1FAE00713BEB /* About.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = About.png; sourceTree = "<group>"; };
- 7D0699D017CB1FAE00713BEB /* About@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "About@2x.png"; sourceTree = "<group>"; };
- 7D0699D117CB1FAE00713BEB /* AllFiles.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AllFiles.png; sourceTree = "<group>"; };
- 7D0699D217CB1FAE00713BEB /* AllFiles@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AllFiles@2x.png"; sourceTree = "<group>"; };
- 7D0699D317CB1FAE00713BEB /* Downloads.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Downloads.png; sourceTree = "<group>"; };
- 7D0699D417CB1FAE00713BEB /* Downloads@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Downloads@2x.png"; sourceTree = "<group>"; };
- 7D0699D517CB1FAE00713BEB /* Dropbox.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Dropbox.png; sourceTree = "<group>"; };
- 7D07F706175665ED00CDE21C /* navBarBackground@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "navBarBackground@2x.png"; sourceTree = "<group>"; };
- 7D07F707175665ED00CDE21C /* navBarBackground.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = navBarBackground.png; sourceTree = "<group>"; };
- 7D07F70A175669A800CDE21C /* button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = button.png; sourceTree = "<group>"; };
- 7D07F70B175669A800CDE21C /* button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "button@2x.png"; sourceTree = "<group>"; };
- 7D07F70E175669D800CDE21C /* buttonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = buttonHighlight.png; sourceTree = "<group>"; };
- 7D07F70F175669D800CDE21C /* buttonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "buttonHighlight@2x.png"; sourceTree = "<group>"; };
- 7D07F71217566C4A00CDE21C /* menuCone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuCone.png; sourceTree = "<group>"; };
- 7D07F71317566C4A00CDE21C /* menuCone@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuCone@2x.png"; sourceTree = "<group>"; };
- 7D07F71A175673D100CDE21C /* menuBtnBckHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuBtnBckHighlight@2x.png"; sourceTree = "<group>"; };
- 7D07F71B175673D100CDE21C /* menuBtnBck@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuBtnBck@2x.png"; sourceTree = "<group>"; };
- 7D07F71C175673D100CDE21C /* menuBtnBckHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuBtnBckHighlight.png; sourceTree = "<group>"; };
- 7D07F71D175673D100CDE21C /* menuBtnBck.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuBtnBck.png; sourceTree = "<group>"; };
- 7D07F722175688D300CDE21C /* doneButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = doneButton.png; sourceTree = "<group>"; };
- 7D07F723175688D300CDE21C /* doneButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doneButton@2x.png"; sourceTree = "<group>"; };
- 7D07F724175688D300CDE21C /* doneButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = doneButtonHighlight.png; sourceTree = "<group>"; };
- 7D07F725175688D300CDE21C /* doneButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doneButtonHighlight@2x.png"; sourceTree = "<group>"; };
- 7D07F72A175691CB00CDE21C /* backButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = backButton.png; sourceTree = "<group>"; };
- 7D07F72B175691CC00CDE21C /* backButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "backButton@2x.png"; sourceTree = "<group>"; };
- 7D07F72C175691CC00CDE21C /* backButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = backButtonHighlight.png; sourceTree = "<group>"; };
- 7D07F72D175691CC00CDE21C /* backButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "backButtonHighlight@2x.png"; sourceTree = "<group>"; };
- 7D16035917BF9FE600F29B34 /* sudHeaderBg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sudHeaderBg.png; sourceTree = "<group>"; };
- 7D16035A17BF9FE600F29B34 /* sudHeaderBg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sudHeaderBg@2x.png"; sourceTree = "<group>"; };
- 7D16035B17BF9FE600F29B34 /* headerSidebar@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "headerSidebar@2x.png"; sourceTree = "<group>"; };
- 7D16035C17BF9FE600F29B34 /* headerSidebar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = headerSidebar.png; sourceTree = "<group>"; };
- 7D19492B17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D19492C17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D19492D17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D19492E17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D19492F17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7D1AB27C179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D1AB27D179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D1AB27E179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D1AB27F179C98C0004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D1AB280179C98C0004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7D1AB281179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D1AB282179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D1AB283179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D1AB284179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D1AB285179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7D1AB286179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D1AB287179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D1AB288179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D1AB289179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D1AB28A179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7D1AB28B179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D1AB28C179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D1AB28D179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D1AB28E179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D1AB28F179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7D1AB290179C98E3004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D1AB291179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D1AB292179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D1AB293179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D1AB294179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7D1AB295179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D1AB296179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D1AB297179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D1AB298179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D1AB299179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7D1AB2A4179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
- 7D1AB2A5179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D1AB2A6179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D1AB2A7179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D1AB2A8179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7D1AC3021762996100BD2EB5 /* resetIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = resetIcon.png; sourceTree = "<group>"; };
- 7D1AC3031762996100BD2EB5 /* resetIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "resetIcon@2x.png"; sourceTree = "<group>"; };
- 7D1AC30617629AB600BD2EB5 /* ratioIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ratioIcon.png; sourceTree = "<group>"; };
- 7D1AC30717629AB600BD2EB5 /* ratioIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ratioIcon@2x.png"; sourceTree = "<group>"; };
- 7D1AC30A17629D4600BD2EB5 /* title.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = title.png; sourceTree = "<group>"; };
- 7D1AC30B17629D4600BD2EB5 /* title@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "title@2x.png"; sourceTree = "<group>"; };
- 7D223E18181EC56E00B36798 /* gradient-cell-ios7-ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "gradient-cell-ios7-ipad.png"; sourceTree = "<group>"; };
- 7D223E19181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "gradient-cell-ios7-ipad@2x.png"; sourceTree = "<group>"; };
- 7D2A34A21805CDBA004078AA /* gradient-cell-ios7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "gradient-cell-ios7.png"; sourceTree = "<group>"; };
- 7D2A34A31805CDBA004078AA /* gradient-cell-ios7@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "gradient-cell-ios7@2x.png"; sourceTree = "<group>"; };
- 7D2AEDE017FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D2AEDE117FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D2AEDE217FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D2AEDE317FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D2AEDE417FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7D2AEDE517FB785100B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D2AEDE617FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D2AEDE717FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D2AEDE817FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D2AEDE917FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7D30F3BC183AB24C00FFC021 /* VLCHTTPConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCHTTPConnection.h; path = Sources/VLCHTTPConnection.h; sourceTree = SOURCE_ROOT; };
- 7D30F3BD183AB24C00FFC021 /* VLCHTTPConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCHTTPConnection.m; path = Sources/VLCHTTPConnection.m; sourceTree = SOURCE_ROOT; };
- 7D30F3BE183AB24C00FFC021 /* VLCHTTPFileDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCHTTPFileDownloader.h; path = Sources/VLCHTTPFileDownloader.h; sourceTree = SOURCE_ROOT; };
- 7D30F3BF183AB24C00FFC021 /* VLCHTTPFileDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCHTTPFileDownloader.m; path = Sources/VLCHTTPFileDownloader.m; sourceTree = SOURCE_ROOT; };
- 7D30F3C0183AB24C00FFC021 /* VLCHTTPUploaderController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCHTTPUploaderController.h; path = Sources/VLCHTTPUploaderController.h; sourceTree = SOURCE_ROOT; };
- 7D30F3C1183AB24C00FFC021 /* VLCHTTPUploaderController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCHTTPUploaderController.m; path = Sources/VLCHTTPUploaderController.m; sourceTree = SOURCE_ROOT; };
- 7D30F3C5183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCOpenNetworkStreamViewController.h; path = Sources/VLCOpenNetworkStreamViewController.h; sourceTree = SOURCE_ROOT; };
- 7D30F3C6183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCOpenNetworkStreamViewController.m; path = Sources/VLCOpenNetworkStreamViewController.m; sourceTree = SOURCE_ROOT; };
- 7D30F3C8183AB27A00FFC021 /* VLCDownloadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDownloadViewController.h; path = Sources/VLCDownloadViewController.h; sourceTree = SOURCE_ROOT; };
- 7D30F3C9183AB27A00FFC021 /* VLCDownloadViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCDownloadViewController.m; path = Sources/VLCDownloadViewController.m; sourceTree = SOURCE_ROOT; };
- 7D30F3CB183AB29300FFC021 /* VLCMenuTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMenuTableViewController.h; path = Sources/VLCMenuTableViewController.h; sourceTree = SOURCE_ROOT; };
- 7D30F3CC183AB29300FFC021 /* VLCMenuTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMenuTableViewController.m; path = Sources/VLCMenuTableViewController.m; sourceTree = SOURCE_ROOT; };
- 7D30F3CE183AB2AC00FFC021 /* VLCMediaFileDiscoverer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMediaFileDiscoverer.h; path = Sources/VLCMediaFileDiscoverer.h; sourceTree = SOURCE_ROOT; };
- 7D30F3CF183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMediaFileDiscoverer.m; path = Sources/VLCMediaFileDiscoverer.m; sourceTree = SOURCE_ROOT; };
- 7D30F3D1183AB2F100FFC021 /* VLCLocalNetworkListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLocalNetworkListCell.h; path = Sources/VLCLocalNetworkListCell.h; sourceTree = SOURCE_ROOT; };
- 7D30F3D2183AB2F100FFC021 /* VLCLocalNetworkListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLocalNetworkListCell.m; path = Sources/VLCLocalNetworkListCell.m; sourceTree = SOURCE_ROOT; };
- 7D30F3D3183AB2F100FFC021 /* VLCLocalServerFolderListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLocalServerFolderListViewController.h; path = Sources/VLCLocalServerFolderListViewController.h; sourceTree = SOURCE_ROOT; };
- 7D30F3D4183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLocalServerFolderListViewController.m; path = Sources/VLCLocalServerFolderListViewController.m; sourceTree = SOURCE_ROOT; };
- 7D30F3D5183AB2F100FFC021 /* VLCLocalServerListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLocalServerListViewController.h; path = Sources/VLCLocalServerListViewController.h; sourceTree = SOURCE_ROOT; };
- 7D30F3D6183AB2F100FFC021 /* VLCLocalServerListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLocalServerListViewController.m; path = Sources/VLCLocalServerListViewController.m; sourceTree = SOURCE_ROOT; };
- 7D30F3DA183AB2F900FFC021 /* VLCNetworkLoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCNetworkLoginViewController.h; path = Sources/VLCNetworkLoginViewController.h; sourceTree = SOURCE_ROOT; };
- 7D30F3DB183AB2F900FFC021 /* VLCNetworkLoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCNetworkLoginViewController.m; path = Sources/VLCNetworkLoginViewController.m; sourceTree = SOURCE_ROOT; };
- 7D30F3DD183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCWiFiUploadTableViewCell.h; path = Sources/VLCWiFiUploadTableViewCell.h; sourceTree = SOURCE_ROOT; };
- 7D30F3DE183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCWiFiUploadTableViewCell.m; path = Sources/VLCWiFiUploadTableViewCell.m; sourceTree = SOURCE_ROOT; };
- 7D30F3E0183AB33200FFC021 /* VLCSidebarViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCSidebarViewCell.h; path = Sources/VLCSidebarViewCell.h; sourceTree = SOURCE_ROOT; };
- 7D30F3E1183AB33200FFC021 /* VLCSidebarViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCSidebarViewCell.m; path = Sources/VLCSidebarViewCell.m; sourceTree = SOURCE_ROOT; };
- 7D30F3E3183AB34200FFC021 /* VLCGoogleDriveConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCGoogleDriveConstants.h; path = Sources/VLCGoogleDriveConstants.h; sourceTree = SOURCE_ROOT; };
- 7D30F3E4183AB34200FFC021 /* VLCGoogleDriveController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCGoogleDriveController.h; path = Sources/VLCGoogleDriveController.h; sourceTree = SOURCE_ROOT; };
- 7D30F3E5183AB34200FFC021 /* VLCGoogleDriveController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCGoogleDriveController.m; path = Sources/VLCGoogleDriveController.m; sourceTree = SOURCE_ROOT; };
- 7D30F3E8183AB34200FFC021 /* VLCGoogleDriveTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCGoogleDriveTableViewController.h; path = Sources/VLCGoogleDriveTableViewController.h; sourceTree = SOURCE_ROOT; };
- 7D30F3E9183AB34200FFC021 /* VLCGoogleDriveTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCGoogleDriveTableViewController.m; path = Sources/VLCGoogleDriveTableViewController.m; sourceTree = SOURCE_ROOT; };
- 7D31001B17B64AE100E6516D /* GHRevealViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHRevealViewController.h; path = ImportedSources/GHSidebarNav/GHSidebarNav/GHRevealViewController.h; sourceTree = SOURCE_ROOT; };
- 7D31001C17B64AE100E6516D /* GHRevealViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GHRevealViewController.m; path = ImportedSources/GHSidebarNav/GHSidebarNav/GHRevealViewController.m; sourceTree = SOURCE_ROOT; };
- 7D31001F17B6768B00E6516D /* libupnpx.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libupnpx.a; path = External/upnpx/libupnpx.a; sourceTree = "<group>"; };
- 7D37848D183A98B6009EE944 /* VLCMovieViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMovieViewController.h; path = Sources/VLCMovieViewController.h; sourceTree = SOURCE_ROOT; };
- 7D37848E183A98B6009EE944 /* VLCMovieViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMovieViewController.m; path = Sources/VLCMovieViewController.m; sourceTree = SOURCE_ROOT; };
- 7D378490183A98BF009EE944 /* VLCExternalDisplayController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCExternalDisplayController.h; path = Sources/VLCExternalDisplayController.h; sourceTree = SOURCE_ROOT; };
- 7D378491183A98BF009EE944 /* VLCExternalDisplayController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCExternalDisplayController.m; path = Sources/VLCExternalDisplayController.m; sourceTree = SOURCE_ROOT; };
- 7D378493183A98D1009EE944 /* VLCPlaylistCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlaylistCollectionViewCell.h; path = Sources/VLCPlaylistCollectionViewCell.h; sourceTree = SOURCE_ROOT; };
- 7D378494183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlaylistCollectionViewCell.m; path = Sources/VLCPlaylistCollectionViewCell.m; sourceTree = SOURCE_ROOT; };
- 7D378495183A98D1009EE944 /* VLCPlaylistTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlaylistTableViewCell.h; path = Sources/VLCPlaylistTableViewCell.h; sourceTree = SOURCE_ROOT; };
- 7D378496183A98D1009EE944 /* VLCPlaylistTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlaylistTableViewCell.m; path = Sources/VLCPlaylistTableViewCell.m; sourceTree = SOURCE_ROOT; };
- 7D378497183A98D1009EE944 /* VLCPlaylistViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlaylistViewController.h; path = Sources/VLCPlaylistViewController.h; sourceTree = SOURCE_ROOT; };
- 7D378498183A98D1009EE944 /* VLCPlaylistViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlaylistViewController.m; path = Sources/VLCPlaylistViewController.m; sourceTree = SOURCE_ROOT; };
- 7D37849C183A98DD009EE944 /* VLCThumbnailsCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCThumbnailsCache.h; path = Sources/VLCThumbnailsCache.h; sourceTree = SOURCE_ROOT; };
- 7D37849D183A98DD009EE944 /* VLCThumbnailsCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCThumbnailsCache.m; path = Sources/VLCThumbnailsCache.m; sourceTree = SOURCE_ROOT; };
- 7D37849F183A98EB009EE944 /* VLCBugreporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCBugreporter.h; path = Sources/VLCBugreporter.h; sourceTree = SOURCE_ROOT; };
- 7D3784A0183A98EB009EE944 /* VLCBugreporter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCBugreporter.m; path = Sources/VLCBugreporter.m; sourceTree = SOURCE_ROOT; };
- 7D3784A2183A98F5009EE944 /* VLCAboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCAboutViewController.h; path = Sources/VLCAboutViewController.h; sourceTree = SOURCE_ROOT; };
- 7D3784A3183A98F5009EE944 /* VLCAboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCAboutViewController.m; path = Sources/VLCAboutViewController.m; sourceTree = SOURCE_ROOT; };
- 7D3784A4183A98F5009EE944 /* VLCSettingsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCSettingsController.h; path = Sources/VLCSettingsController.h; sourceTree = SOURCE_ROOT; };
- 7D3784A5183A98F5009EE944 /* VLCSettingsController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCSettingsController.m; path = Sources/VLCSettingsController.m; sourceTree = SOURCE_ROOT; };
- 7D3784A8183A9906009EE944 /* VLCDropboxConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDropboxConstants.h; path = Sources/VLCDropboxConstants.h; sourceTree = SOURCE_ROOT; };
- 7D3784A9183A9906009EE944 /* VLCDropboxController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDropboxController.h; path = Sources/VLCDropboxController.h; sourceTree = SOURCE_ROOT; };
- 7D3784AA183A9906009EE944 /* VLCDropboxController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCDropboxController.m; path = Sources/VLCDropboxController.m; sourceTree = SOURCE_ROOT; };
- 7D3784AB183A9906009EE944 /* VLCDropboxTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDropboxTableViewController.h; path = Sources/VLCDropboxTableViewController.h; sourceTree = SOURCE_ROOT; };
- 7D3784AC183A9906009EE944 /* VLCDropboxTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCDropboxTableViewController.m; path = Sources/VLCDropboxTableViewController.m; sourceTree = SOURCE_ROOT; };
- 7D3784AF183A990F009EE944 /* VLCCloudStorageTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCCloudStorageTableViewCell.h; path = Sources/VLCCloudStorageTableViewCell.h; sourceTree = SOURCE_ROOT; };
- 7D3784B0183A990F009EE944 /* VLCCloudStorageTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCCloudStorageTableViewCell.m; path = Sources/VLCCloudStorageTableViewCell.m; sourceTree = SOURCE_ROOT; };
- 7D3784B2183A9938009EE944 /* UIBarButtonItem+Theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIBarButtonItem+Theme.h"; path = "Sources/UIBarButtonItem+Theme.h"; sourceTree = SOURCE_ROOT; };
- 7D3784B3183A9938009EE944 /* UIBarButtonItem+Theme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIBarButtonItem+Theme.m"; path = "Sources/UIBarButtonItem+Theme.m"; sourceTree = SOURCE_ROOT; };
- 7D3784B4183A9938009EE944 /* UINavigationController+Theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UINavigationController+Theme.h"; path = "Sources/UINavigationController+Theme.h"; sourceTree = SOURCE_ROOT; };
- 7D3784B5183A9938009EE944 /* UINavigationController+Theme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UINavigationController+Theme.m"; path = "Sources/UINavigationController+Theme.m"; sourceTree = SOURCE_ROOT; };
- 7D3784B6183A9938009EE944 /* VLCLinearProgressIndicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLinearProgressIndicator.h; path = Sources/VLCLinearProgressIndicator.h; sourceTree = SOURCE_ROOT; };
- 7D3784B7183A9938009EE944 /* VLCLinearProgressIndicator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLinearProgressIndicator.m; path = Sources/VLCLinearProgressIndicator.m; sourceTree = SOURCE_ROOT; };
- 7D3784B8183A9938009EE944 /* VLCMenuButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMenuButton.h; path = Sources/VLCMenuButton.h; sourceTree = SOURCE_ROOT; };
- 7D3784B9183A9938009EE944 /* VLCMenuButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMenuButton.m; path = Sources/VLCMenuButton.m; sourceTree = SOURCE_ROOT; };
- 7D3784BA183A9938009EE944 /* VLCSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCSlider.h; path = Sources/VLCSlider.h; sourceTree = SOURCE_ROOT; };
- 7D3784BB183A9938009EE944 /* VLCSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCSlider.m; path = Sources/VLCSlider.m; sourceTree = SOURCE_ROOT; };
- 7D3784BC183A9938009EE944 /* VLCStatusLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCStatusLabel.h; path = Sources/VLCStatusLabel.h; sourceTree = SOURCE_ROOT; };
- 7D3784BD183A9938009EE944 /* VLCStatusLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCStatusLabel.m; path = Sources/VLCStatusLabel.m; sourceTree = SOURCE_ROOT; };
- 7D3784C4183A9972009EE944 /* NSString+SupportedMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSString+SupportedMedia.h"; path = "Sources/NSString+SupportedMedia.h"; sourceTree = SOURCE_ROOT; };
- 7D3784C5183A9972009EE944 /* NSString+SupportedMedia.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSString+SupportedMedia.m"; path = "Sources/NSString+SupportedMedia.m"; sourceTree = SOURCE_ROOT; };
- 7D3784C6183A9972009EE944 /* UIDevice+SpeedCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIDevice+SpeedCategory.h"; path = "Sources/UIDevice+SpeedCategory.h"; sourceTree = SOURCE_ROOT; };
- 7D3784C7183A9972009EE944 /* UIDevice+SpeedCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIDevice+SpeedCategory.m"; path = "Sources/UIDevice+SpeedCategory.m"; sourceTree = SOURCE_ROOT; };
- 7D3784CA183A99BA009EE944 /* PAPasscodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PAPasscodeViewController.h; path = PAPasscode/PAPasscodeViewController.h; sourceTree = SOURCE_ROOT; };
- 7D3784CB183A99BA009EE944 /* PAPasscodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PAPasscodeViewController.m; path = PAPasscode/PAPasscodeViewController.m; sourceTree = SOURCE_ROOT; };
- 7D3784D9183A99D2009EE944 /* papasscode_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_background.png; sourceTree = "<group>"; };
- 7D3784DA183A99D2009EE944 /* papasscode_background@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_background@2x.png"; sourceTree = "<group>"; };
- 7D3784DB183A99D2009EE944 /* papasscode_failed_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_failed_bg.png; sourceTree = "<group>"; };
- 7D3784DC183A99D2009EE944 /* papasscode_failed_bg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_failed_bg@2x.png"; sourceTree = "<group>"; };
- 7D3784DD183A99D2009EE944 /* papasscode_marker.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_marker.png; sourceTree = "<group>"; };
- 7D3784DE183A99D2009EE944 /* papasscode_marker@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_marker@2x.png"; sourceTree = "<group>"; };
- 7D3784E5183A99E1009EE944 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Reachability.h; path = Sources/Reachability.h; sourceTree = SOURCE_ROOT; };
- 7D3784E6183A99E1009EE944 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Reachability.m; path = Sources/Reachability.m; sourceTree = SOURCE_ROOT; };
- 7D3784E8183A9A15009EE944 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Sources/main.m; sourceTree = SOURCE_ROOT; };
- 7D3784EA183A9A1E009EE944 /* VLC for iOS-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = "VLC for iOS-Info.plist"; path = "Sources/VLC for iOS-Info.plist"; sourceTree = SOURCE_ROOT; };
- 7D3784EB183A9A1E009EE944 /* VLC for iOS-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "VLC for iOS-Prefix.pch"; path = "Sources/VLC for iOS-Prefix.pch"; sourceTree = SOURCE_ROOT; };
- 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
- 7D47D6CB1760CD8700E86BAD /* subtitleIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = subtitleIcon.png; sourceTree = "<group>"; };
- 7D47D6CC1760CD8700E86BAD /* subtitleIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "subtitleIcon@2x.png"; sourceTree = "<group>"; };
- 7D47D6CD1760CD8700E86BAD /* videoEffectsIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = videoEffectsIcon.png; sourceTree = "<group>"; };
- 7D47D6CE1760CD8700E86BAD /* videoEffectsIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "videoEffectsIcon@2x.png"; sourceTree = "<group>"; };
- 7D47D6CF1760CD8700E86BAD /* seekbarBg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seekbarBg@2x.png"; sourceTree = "<group>"; };
- 7D47D6D01760CD8700E86BAD /* slidermaximumTrack.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slidermaximumTrack.png; sourceTree = "<group>"; };
- 7D47D6D11760CD8700E86BAD /* slidermaximumTrack@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "slidermaximumTrack@2x.png"; sourceTree = "<group>"; };
- 7D47D6D21760CD8700E86BAD /* slidermaxValue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slidermaxValue.png; sourceTree = "<group>"; };
- 7D47D6D31760CD8700E86BAD /* slidermaxValue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "slidermaxValue@2x.png"; sourceTree = "<group>"; };
- 7D47D6D41760CD8700E86BAD /* sliderminiValue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sliderminiValue.png; sourceTree = "<group>"; };
- 7D47D6D51760CD8700E86BAD /* sliderminiValue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sliderminiValue@2x.png"; sourceTree = "<group>"; };
- 7D47D6D81760CD8700E86BAD /* speedIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = speedIcon.png; sourceTree = "<group>"; };
- 7D47D6D91760CD8700E86BAD /* speedIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "speedIcon@2x.png"; sourceTree = "<group>"; };
- 7D47D6DA1760CD8700E86BAD /* playbackControllerBg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playbackControllerBg@2x.png"; sourceTree = "<group>"; };
- 7D47D6DB1760CD8700E86BAD /* playbackDoneButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playbackDoneButton.png; sourceTree = "<group>"; };
- 7D47D6DC1760CD8700E86BAD /* playbackDoneButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playbackDoneButton@2x.png"; sourceTree = "<group>"; };
- 7D47D6DD1760CD8700E86BAD /* playbackDoneButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playbackDoneButtonHighlight.png; sourceTree = "<group>"; };
- 7D47D6DE1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playbackDoneButtonHighlight@2x.png"; sourceTree = "<group>"; };
- 7D47D6DF1760CD8700E86BAD /* ratioButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ratioButton.png; sourceTree = "<group>"; };
- 7D47D6E01760CD8700E86BAD /* ratioButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ratioButton@2x.png"; sourceTree = "<group>"; };
- 7D47D6E11760CD8700E86BAD /* ratioButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ratioButtonHighlight.png; sourceTree = "<group>"; };
- 7D47D6E21760CD8700E86BAD /* ratioButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ratioButtonHighlight@2x.png"; sourceTree = "<group>"; };
- 7D47D6E31760CD8700E86BAD /* seekbarBg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = seekbarBg.png; sourceTree = "<group>"; };
- 7D47D6E51760CD8700E86BAD /* forwardIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = forwardIcon.png; sourceTree = "<group>"; };
- 7D47D6E61760CD8700E86BAD /* forwardIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "forwardIcon@2x.png"; sourceTree = "<group>"; };
- 7D47D6E71760CD8700E86BAD /* knobSlider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = knobSlider.png; sourceTree = "<group>"; };
- 7D47D6E81760CD8700E86BAD /* knobSlider@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "knobSlider@2x.png"; sourceTree = "<group>"; };
- 7D47D6EB1760CD8700E86BAD /* playbackControllerBg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playbackControllerBg.png; sourceTree = "<group>"; };
- 7D47D6EC1760CD8700E86BAD /* playIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playIcon.png; sourceTree = "<group>"; };
- 7D47D6ED1760CD8700E86BAD /* playIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playIcon@2x.png"; sourceTree = "<group>"; };
- 7D47D6EE1760CD8700E86BAD /* audioTrackIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = audioTrackIcon.png; sourceTree = "<group>"; };
- 7D47D6EF1760CD8700E86BAD /* audioTrackIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "audioTrackIcon@2x.png"; sourceTree = "<group>"; };
- 7D47D6F01760CD8700E86BAD /* backIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = backIcon.png; sourceTree = "<group>"; };
- 7D47D6F11760CD8700E86BAD /* backIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "backIcon@2x.png"; sourceTree = "<group>"; };
- 7D47D6F21760CD8700E86BAD /* ballSlider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ballSlider.png; sourceTree = "<group>"; };
- 7D47D6F31760CD8700E86BAD /* ballSlider@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ballSlider@2x.png"; sourceTree = "<group>"; };
- 7D47D7251760D77C00E86BAD /* pauseIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pauseIcon.png; sourceTree = "<group>"; };
- 7D47D7261760D77C00E86BAD /* pauseIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pauseIcon@2x.png"; sourceTree = "<group>"; };
- 7D47D7291760E3A000E86BAD /* sliderminimumTrack.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sliderminimumTrack.png; sourceTree = "<group>"; };
- 7D47D72A1760E3A000E86BAD /* sliderminimumTrack@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sliderminimumTrack@2x.png"; sourceTree = "<group>"; };
- 7D49E178175A47A4002D1450 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D4BE733175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D4BE734175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D4BE735175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D4BE736175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D4BE737175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7D4C484417ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bs; path = bs.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D4C484517ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D4C484617ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D4C484717ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D4C484817ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7D514D3D17F779C6007B960C /* Drive@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Drive@2x.png"; sourceTree = "<group>"; };
- 7D514D3E17F779C6007B960C /* DriveWhite.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DriveWhite.png; sourceTree = "<group>"; };
- 7D514D3F17F779C6007B960C /* DriveWhite@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "DriveWhite@2x.png"; sourceTree = "<group>"; };
- 7D514D4017F779C6007B960C /* Drive.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Drive.png; sourceTree = "<group>"; };
- 7D5C204917999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D5C204A17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D5C204B17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D5C204C17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7D5C204D17999A74004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D5DD5C617590ABF001421E3 /* About Contents.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "About Contents.html"; sourceTree = "<group>"; };
- 7D5E39C8174FC2F3007DAFA1 /* dropbox-white.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropbox-white.png"; sourceTree = "<group>"; };
- 7D5E39C9174FC2F3007DAFA1 /* dropbox-white@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropbox-white@2x.png"; sourceTree = "<group>"; };
- 7D6B08BB174A72A900A05173 /* VLCConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCConstants.h; path = Sources/VLCConstants.h; sourceTree = "<group>"; };
- 7D6B08C0174A831900A05173 /* vlc-xmas.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "vlc-xmas.png"; sourceTree = "<group>"; };
- 7D6B08C1174A831900A05173 /* vlc-xmas@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "vlc-xmas@2x.png"; sourceTree = "<group>"; };
- 7D6B08CC174D65B500A05173 /* IASKAppSettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKAppSettingsViewController.h; sourceTree = "<group>"; };
- 7D6B08CD174D65B500A05173 /* IASKAppSettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKAppSettingsViewController.m; sourceTree = "<group>"; };
- 7D6B08CE174D65B500A05173 /* IASKAppSettingsWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKAppSettingsWebViewController.h; sourceTree = "<group>"; };
- 7D6B08CF174D65B500A05173 /* IASKAppSettingsWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKAppSettingsWebViewController.m; sourceTree = "<group>"; };
- 7D6B08D0174D65B500A05173 /* IASKSpecifierValuesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSpecifierValuesViewController.h; sourceTree = "<group>"; };
- 7D6B08D1174D65B500A05173 /* IASKSpecifierValuesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSpecifierValuesViewController.m; sourceTree = "<group>"; };
- 7D6B08D2174D65B500A05173 /* IASKViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKViewController.h; sourceTree = "<group>"; };
- 7D6B08D4174D65B500A05173 /* IASKSettingsReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsReader.h; sourceTree = "<group>"; };
- 7D6B08D5174D65B500A05173 /* IASKSettingsReader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsReader.m; sourceTree = "<group>"; };
- 7D6B08D6174D65B500A05173 /* IASKSettingsStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStore.h; sourceTree = "<group>"; };
- 7D6B08D7174D65B500A05173 /* IASKSettingsStore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStore.m; sourceTree = "<group>"; };
- 7D6B08D8174D65B500A05173 /* IASKSettingsStoreFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStoreFile.h; sourceTree = "<group>"; };
- 7D6B08D9174D65B500A05173 /* IASKSettingsStoreFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStoreFile.m; sourceTree = "<group>"; };
- 7D6B08DA174D65B500A05173 /* IASKSettingsStoreUserDefaults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStoreUserDefaults.h; sourceTree = "<group>"; };
- 7D6B08DB174D65B500A05173 /* IASKSettingsStoreUserDefaults.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStoreUserDefaults.m; sourceTree = "<group>"; };
- 7D6B08DC174D65B500A05173 /* IASKSpecifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSpecifier.h; sourceTree = "<group>"; };
- 7D6B08DD174D65B500A05173 /* IASKSpecifier.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSpecifier.m; sourceTree = "<group>"; };
- 7D6B08DF174D65B500A05173 /* IASKPSSliderSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSSliderSpecifierViewCell.h; sourceTree = "<group>"; };
- 7D6B08E0174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSSliderSpecifierViewCell.m; sourceTree = "<group>"; };
- 7D6B08E1174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSTextFieldSpecifierViewCell.h; sourceTree = "<group>"; };
- 7D6B08E2174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSTextFieldSpecifierViewCell.m; sourceTree = "<group>"; };
- 7D6B08E3174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSTitleValueSpecifierViewCell.h; sourceTree = "<group>"; };
- 7D6B08E4174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSTitleValueSpecifierViewCell.m; sourceTree = "<group>"; };
- 7D6B08E5174D65B500A05173 /* IASKSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSlider.h; sourceTree = "<group>"; };
- 7D6B08E6174D65B500A05173 /* IASKSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSlider.m; sourceTree = "<group>"; };
- 7D6B08E7174D65B500A05173 /* IASKSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSwitch.h; sourceTree = "<group>"; };
- 7D6B08E8174D65B500A05173 /* IASKSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSwitch.m; sourceTree = "<group>"; };
- 7D6B08E9174D65B500A05173 /* IASKTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKTextField.h; sourceTree = "<group>"; };
- 7D6B08EA174D65B500A05173 /* IASKTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKTextField.m; sourceTree = "<group>"; };
- 7D6B08F9174D716200A05173 /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
- 7D6B08FB174D773C00A05173 /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Settings.bundle; path = Resources/Settings.bundle; sourceTree = SOURCE_ROOT; };
- 7D6BD1801762026700AD311A /* thumbOverlayPhone@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "thumbOverlayPhone@2x.png"; sourceTree = "<group>"; };
- 7D6BD1811762026700AD311A /* thumbOverlay@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "thumbOverlay@2x.png"; sourceTree = "<group>"; };
- 7D6BD1821762026700AD311A /* thumbOverlayPhone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thumbOverlayPhone.png; sourceTree = "<group>"; };
- 7D6BD1831762026700AD311A /* thumbOverlay.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thumbOverlay.png; sourceTree = "<group>"; };
- 7D6D13591758D1A00007EA9A /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D711AD918227A490094E4F0 /* GTMOAuth2ViewTouch.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = GTMOAuth2ViewTouch.xib; path = ImportedSources/GDrive/OAuth2/Touch/GTMOAuth2ViewTouch.xib; sourceTree = SOURCE_ROOT; };
- 7D7DA52F1768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D7DA5301768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D7DA5311768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D7DA5321768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D7DA5331768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7D882244185733D500D87252 /* Default-ipad-Landscape.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-ipad-Landscape.png"; sourceTree = "<group>"; };
- 7D882245185733D500D87252 /* Default-ipad-Landscape@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-ipad-Landscape@2x.png"; sourceTree = "<group>"; };
- 7D882246185733D500D87252 /* Default-ipad-Portrait.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-ipad-Portrait.png"; sourceTree = "<group>"; };
- 7D882247185733D500D87252 /* Default-ipad-Portrait@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-ipad-Portrait@2x.png"; sourceTree = "<group>"; };
- 7D882248185733D500D87252 /* Default-568h@2x~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x~iphone.png"; sourceTree = "<group>"; };
- 7D882249185733D500D87252 /* Default-Landscape~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-Landscape~ipad.png"; sourceTree = "<group>"; };
- 7D88224A185733D500D87252 /* Default-Landscape@2x~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-Landscape@2x~ipad.png"; sourceTree = "<group>"; };
- 7D88224B185733D500D87252 /* Default~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default~ipad.png"; sourceTree = "<group>"; };
- 7D88224C185733D500D87252 /* Default-Portrait@2x~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-Portrait@2x~ipad.png"; sourceTree = "<group>"; };
- 7D88224D185733D500D87252 /* Default~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default~iphone.png"; sourceTree = "<group>"; };
- 7D88224E185733D500D87252 /* Default@2x~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x~iphone.png"; sourceTree = "<group>"; };
- 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "VLC for iOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
- 7D94FCDE16DE7D1000F2623B /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
- 7D94FCE016DE7D1000F2623B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
- 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
- 7D9B6B0817C9625F00F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sl; path = sl.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7D9B6B0917C9625F00F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7D9B6B0A17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7D9B6B0B17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7D9B6B0C17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SourceCodePro-Regular.ttf"; sourceTree = "<group>"; };
- 7DADC55D1704FABF001DAC63 /* OBSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OBSlider.h; path = ImportedSources/OBSlider/OBSlider/OBSlider.h; sourceTree = SOURCE_ROOT; };
- 7DADC55E1704FABF001DAC63 /* OBSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OBSlider.m; path = ImportedSources/OBSlider/OBSlider/OBSlider.m; sourceTree = SOURCE_ROOT; };
- 7DBBF180183AB3B80009A339 /* VLCAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCAppDelegate.h; path = Sources/VLCAppDelegate.h; sourceTree = SOURCE_ROOT; };
- 7DBBF181183AB3B80009A339 /* VLCAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCAppDelegate.m; path = Sources/VLCAppDelegate.m; sourceTree = SOURCE_ROOT; };
- 7DBBF183183AB4300009A339 /* VLCAboutViewController~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCAboutViewController~ipad.xib"; path = "Resources/VLCAboutViewController~ipad.xib"; sourceTree = SOURCE_ROOT; };
- 7DBBF184183AB4300009A339 /* VLCAboutViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCAboutViewController~iphone.xib"; path = "Resources/VLCAboutViewController~iphone.xib"; sourceTree = SOURCE_ROOT; };
- 7DBBF185183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCCloudStorageTableViewCell~ipad.xib"; path = "Resources/VLCCloudStorageTableViewCell~ipad.xib"; sourceTree = SOURCE_ROOT; };
- 7DBBF186183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCCloudStorageTableViewCell~iphone.xib"; path = "Resources/VLCCloudStorageTableViewCell~iphone.xib"; sourceTree = SOURCE_ROOT; };
- 7DBBF187183AB4300009A339 /* VLCDownloadViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCDownloadViewController.xib; path = Resources/VLCDownloadViewController.xib; sourceTree = SOURCE_ROOT; };
- 7DBBF188183AB4300009A339 /* VLCCloudStorageTableViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCCloudStorageTableViewController.xib; path = Resources/VLCCloudStorageTableViewController.xib; sourceTree = SOURCE_ROOT; };
- 7DBBF189183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCEmptyLibraryView~ipad.xib"; path = "Resources/VLCEmptyLibraryView~ipad.xib"; sourceTree = SOURCE_ROOT; };
- 7DBBF18A183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCEmptyLibraryView~iphone.xib"; path = "Resources/VLCEmptyLibraryView~iphone.xib"; sourceTree = SOURCE_ROOT; };
- 7DBBF18B183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCFuturePlaylistCollectionViewCell.xib; path = Resources/VLCFuturePlaylistCollectionViewCell.xib; sourceTree = SOURCE_ROOT; };
- 7DBBF18C183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCFuturePlaylistTableViewCell.xib; path = Resources/VLCFuturePlaylistTableViewCell.xib; sourceTree = SOURCE_ROOT; };
- 7DBBF18E183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCLocalNetworkListCell~ipad.xib"; path = "Resources/VLCLocalNetworkListCell~ipad.xib"; sourceTree = SOURCE_ROOT; };
- 7DBBF18F183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCLocalNetworkListCell~iphone.xib"; path = "Resources/VLCLocalNetworkListCell~iphone.xib"; sourceTree = SOURCE_ROOT; };
- 7DBBF190183AB4300009A339 /* VLCMovieViewController~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCMovieViewController~ipad.xib"; path = "Resources/VLCMovieViewController~ipad.xib"; sourceTree = SOURCE_ROOT; };
- 7DBBF191183AB4300009A339 /* VLCMovieViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCMovieViewController~iphone.xib"; path = "Resources/VLCMovieViewController~iphone.xib"; sourceTree = SOURCE_ROOT; };
- 7DBBF192183AB4300009A339 /* VLCNetworkLoginViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCNetworkLoginViewController.xib; path = Resources/VLCNetworkLoginViewController.xib; sourceTree = SOURCE_ROOT; };
- 7DBBF193183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCOpenNetworkStreamViewController.xib; path = Resources/VLCOpenNetworkStreamViewController.xib; sourceTree = SOURCE_ROOT; };
- 7DBBF194183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlaylistCollectionViewCell.xib; path = Resources/VLCPlaylistCollectionViewCell.xib; sourceTree = SOURCE_ROOT; };
- 7DBBF195183AB4300009A339 /* VLCPlaylistGridView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlaylistGridView.xib; path = Resources/VLCPlaylistGridView.xib; sourceTree = SOURCE_ROOT; };
- 7DBBF196183AB4300009A339 /* VLCPlaylistTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlaylistTableViewCell.xib; path = Resources/VLCPlaylistTableViewCell.xib; sourceTree = SOURCE_ROOT; };
- 7DBBF197183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCWiFiUploadTableViewCell.xib; path = Resources/VLCWiFiUploadTableViewCell.xib; sourceTree = SOURCE_ROOT; };
- 7DC222771773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7DC222781773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7DC222791773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7DC2227A1773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7DC2227B1773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7DC72D5B17B7E7C7008A26D0 /* download@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "download@4x.png"; sourceTree = "<group>"; };
- 7DC72D5C17B7E7C7008A26D0 /* download.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = download.png; sourceTree = "<group>"; };
- 7DC72D5D17B7E7C7008A26D0 /* download@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "download@2x.png"; sourceTree = "<group>"; };
- 7DC72D6117B7ED24008A26D0 /* WhiteRaccoon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WhiteRaccoon.h; path = ImportedSources/WhiteRaccoon/WhiteRaccoon.h; sourceTree = SOURCE_ROOT; };
- 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WhiteRaccoon.m; path = ImportedSources/WhiteRaccoon/WhiteRaccoon.m; sourceTree = SOURCE_ROOT; };
- 7DC87AEF17413634009DC250 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7DC87AF017413A17009DC250 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
- 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "OpenSans-Regular.ttf"; sourceTree = "<group>"; };
- 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
- 7DE1862A175BA9A5006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7DE1862D175BA9A9006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7DE18630175BA9AC006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7DE18633175BA9AF006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7DE18635175BA9EB006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7DE18636175BA9F4006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7DE18637175BA9F9006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7DE18638175BA9FC006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7DE18639175BAEAF006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7DE1863A175BAEB0006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7DE1863B175BAEB0006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7DE1863C175BAEB1006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- 7DE1863D175BAEB5006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7DE1863E175BAEB6006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7DE1863F175BAEB7006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7DE18640175BAEB7006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- 7DE18641175BAEBA006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7DE18642175BAEBB006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7DE18643175BAEBC006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7DE18644175BAEBD006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- 7DE18645175BAEBF006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7DE18646175BAEC0006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7DE18647175BAEC1006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7DE18648175BAEC2006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- 7DEB3B5B17647B240038FC70 /* bottomBlackBar@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "bottomBlackBar@2x.png"; sourceTree = "<group>"; };
- 7DEB3B5C17647B240038FC70 /* bottomBlackBar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bottomBlackBar.png; sourceTree = "<group>"; };
- 7DEB3B5F17647DE30038FC70 /* iTunesArtwork@2x */ = {isa = PBXFileReference; lastKnownFileType = file; path = "iTunesArtwork@2x"; sourceTree = "<group>"; };
- 7DEB3B6117647E230038FC70 /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = "<group>"; };
- 7DEB3B6317647E370038FC70 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = "<group>"; };
- 7DEB3B6517647E440038FC70 /* Icon-72.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-72.png"; sourceTree = "<group>"; };
- 7DEB3B6717647E480038FC70 /* Icon-72@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-72@2x.png"; sourceTree = "<group>"; };
- 7DEB3B6917647EC10038FC70 /* Icon-Small-50.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small-50.png"; sourceTree = "<group>"; };
- 7DEB3B6A17647EC10038FC70 /* Icon-Small-50@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small-50@2x.png"; sourceTree = "<group>"; };
- 7DEB3B6B17647EC10038FC70 /* Icon-Small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small.png"; sourceTree = "<group>"; };
- 7DEB3B6C17647EC10038FC70 /* Icon-Small@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small@2x.png"; sourceTree = "<group>"; };
- 7DEB3B7117649BEB0038FC70 /* Icon-512.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-512.png"; sourceTree = "<group>"; };
- 7DEB3B7317649F2C0038FC70 /* menuButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuButton.png; sourceTree = "<group>"; };
- 7DEB3B7417649F2C0038FC70 /* menuButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuButton@2x.png"; sourceTree = "<group>"; };
- 7DEB3B771764A4040038FC70 /* input@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "input@2x.png"; sourceTree = "<group>"; };
- 7DEB3B781764A4040038FC70 /* input.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = input.png; sourceTree = "<group>"; };
- 7DEB3B7C1764A4F40038FC70 /* movie@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "movie@2x.png"; sourceTree = "<group>"; };
- 7DEB3B7D1764A4F40038FC70 /* movie@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "movie@4x.png"; sourceTree = "<group>"; };
- 7DEB3B7E1764A4F40038FC70 /* blank@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "blank@4x.png"; sourceTree = "<group>"; };
- 7DEB3B7F1764A4F40038FC70 /* folder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = folder.png; sourceTree = "<group>"; };
- 7DEB3B801764A4F40038FC70 /* folder@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "folder@2x.png"; sourceTree = "<group>"; };
- 7DEB3B811764A4F40038FC70 /* folder@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "folder@4x.png"; sourceTree = "<group>"; };
- 7DEB3B821764A4F40038FC70 /* movie.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = movie.png; sourceTree = "<group>"; };
- 7DEB3B831764A4F40038FC70 /* blank.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = blank.png; sourceTree = "<group>"; };
- 7DEB3B841764A4F40038FC70 /* blank@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "blank@2x.png"; sourceTree = "<group>"; };
- 7DF1166A176CC69A009EC05C /* volumeballslider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = volumeballslider.png; sourceTree = "<group>"; };
- 7DF1166B176CC69A009EC05C /* volumeballslider@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "volumeballslider@2x.png"; sourceTree = "<group>"; };
- 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
- 7DF7E790175F47DC0018858D /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
- 9B088306183D7BEC004B5C2A /* VLCCloudStorageTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCCloudStorageTableViewController.h; path = Sources/VLCCloudStorageTableViewController.h; sourceTree = SOURCE_ROOT; };
- 9B088307183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCCloudStorageTableViewController.m; path = Sources/VLCCloudStorageTableViewController.m; sourceTree = SOURCE_ROOT; };
- 9B2E0CF317FB71E80098E3DF /* libGTLTouchStaticLib.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libGTLTouchStaticLib.a; path = "../google-api/Source/build/Debug-iphoneos/libGTLTouchStaticLib.a"; sourceTree = "<group>"; };
- 9B5BEF2717FBAEA50016F9CB /* GTLDrive_Sources.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GTLDrive_Sources.m; path = ImportedSources/GDrive/Services/Drive/Generated/GTLDrive_Sources.m; sourceTree = SOURCE_ROOT; };
- 9B5BEF2817FBAEA50016F9CB /* GTLDrive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GTLDrive.h; path = ImportedSources/GDrive/Services/Drive/Generated/GTLDrive.h; sourceTree = SOURCE_ROOT; };
- 9BF0708B185122AA009B23DD /* audio.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = audio.png; sourceTree = "<group>"; };
- 9BF0708C185122AA009B23DD /* audio@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "audio@2x.png"; sourceTree = "<group>"; };
- 9BF0708D185122AA009B23DD /* audio@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "audio@4x.png"; sourceTree = "<group>"; };
- A7035BBD174519600057DFA7 /* iTunesArtwork */ = {isa = PBXFileReference; lastKnownFileType = file; path = iTunesArtwork; sourceTree = "<group>"; };
- A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libMediaLibraryKit.a; path = External/MediaLibraryKit/libMediaLibraryKit.a; sourceTree = "<group>"; };
- A7924698170F0ED20036AAF2 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
- A7924699170F0ED20036AAF2 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
- A792469A170F0ED20036AAF2 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
- A79246C7170F11DF0036AAF2 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
- A79246C9170F11E40036AAF2 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
- A7990063176E9352009E8267 /* libraryBackground.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = libraryBackground.png; sourceTree = "<group>"; };
- A7B5316117E3728D00EAE4B3 /* BasicDeviceParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicDeviceParser.h; sourceTree = "<group>"; };
- A7B5316217E3728D00EAE4B3 /* BasicHTTPServer_ObjC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicHTTPServer_ObjC.h; sourceTree = "<group>"; };
- A7B5316317E3728D00EAE4B3 /* BasicParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicParser.h; sourceTree = "<group>"; };
- A7B5316417E3728D00EAE4B3 /* BasicParserAsset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicParserAsset.h; sourceTree = "<group>"; };
- A7B5316517E3728D00EAE4B3 /* BasicServiceParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicServiceParser.h; sourceTree = "<group>"; };
- A7B5316617E3728D00EAE4B3 /* BasicUPnPDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicUPnPDevice.h; sourceTree = "<group>"; };
- A7B5316717E3728D00EAE4B3 /* BasicUPnPService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicUPnPService.h; sourceTree = "<group>"; };
- A7B5316817E3728D00EAE4B3 /* BinaryLight1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BinaryLight1Device.h; sourceTree = "<group>"; };
- A7B5316917E3728D00EAE4B3 /* CocoaTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CocoaTools.h; sourceTree = "<group>"; };
- A7B5316A17E3728D00EAE4B3 /* DeviceFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceFactory.h; sourceTree = "<group>"; };
- A7B5316B17E3728D00EAE4B3 /* DigitalSecurityCamera1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DigitalSecurityCamera1Device.h; sourceTree = "<group>"; };
- A7B5316C17E3728D00EAE4B3 /* DimmableLight1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DimmableLight1Device.h; sourceTree = "<group>"; };
- A7B5316D17E3728D00EAE4B3 /* InternetGateway2Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InternetGateway2Device.h; sourceTree = "<group>"; };
- A7B5316E17E3728D00EAE4B3 /* LAN1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LAN1Device.h; sourceTree = "<group>"; };
- A7B5316F17E3728D00EAE4B3 /* LastChangeParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LastChangeParser.h; sourceTree = "<group>"; };
- A7B5317017E3728D00EAE4B3 /* MediaPlaylist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaPlaylist.h; sourceTree = "<group>"; };
- A7B5317117E3728D00EAE4B3 /* MediaRenderer1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaRenderer1Device.h; sourceTree = "<group>"; };
- A7B5317217E3728D00EAE4B3 /* MediaServer1BasicObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1BasicObject.h; sourceTree = "<group>"; };
- A7B5317317E3728D00EAE4B3 /* MediaServer1ContainerObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1ContainerObject.h; sourceTree = "<group>"; };
- A7B5317417E3728D00EAE4B3 /* MediaServer1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1Device.h; sourceTree = "<group>"; };
- A7B5317517E3728D00EAE4B3 /* MediaServer1ItemObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1ItemObject.h; sourceTree = "<group>"; };
- A7B5317617E3728D00EAE4B3 /* MediaServer1ItemRes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1ItemRes.h; sourceTree = "<group>"; };
- A7B5317717E3728D00EAE4B3 /* MediaServerBasicObjectParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServerBasicObjectParser.h; sourceTree = "<group>"; };
- A7B5317817E3728D00EAE4B3 /* ServiceFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ServiceFactory.h; sourceTree = "<group>"; };
- A7B5317917E3728D00EAE4B3 /* SoapAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapAction.h; sourceTree = "<group>"; };
- A7B5317A17E3728D00EAE4B3 /* SoapActionFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionFactory.h; sourceTree = "<group>"; };
- A7B5317B17E3728D00EAE4B3 /* SoapActionsAVTransport1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsAVTransport1.h; sourceTree = "<group>"; };
- A7B5317C17E3728D00EAE4B3 /* SoapActionsCallManagement1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsCallManagement1.h; sourceTree = "<group>"; };
- A7B5317D17E3728D00EAE4B3 /* SoapActionsConfigurationManagement1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsConfigurationManagement1.h; sourceTree = "<group>"; };
- A7B5317E17E3728D00EAE4B3 /* SoapActionsConnectionManager1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsConnectionManager1.h; sourceTree = "<group>"; };
- A7B5317F17E3728D00EAE4B3 /* SoapActionsContentDirectory1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsContentDirectory1.h; sourceTree = "<group>"; };
- A7B5318017E3728D00EAE4B3 /* SoapActionsDeviceProtection1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDeviceProtection1.h; sourceTree = "<group>"; };
- A7B5318117E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraMotionImage1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDigitalSecurityCameraMotionImage1.h; sourceTree = "<group>"; };
- A7B5318217E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraSettings1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDigitalSecurityCameraSettings1.h; sourceTree = "<group>"; };
- A7B5318317E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraStillImage1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDigitalSecurityCameraStillImage1.h; sourceTree = "<group>"; };
- A7B5318417E3728D00EAE4B3 /* SoapActionsDimming1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDimming1.h; sourceTree = "<group>"; };
- A7B5318517E3728D00EAE4B3 /* SoapActionsInputConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsInputConfig1.h; sourceTree = "<group>"; };
- A7B5318617E3728D00EAE4B3 /* SoapActionsLANHostConfigManagement1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsLANHostConfigManagement1.h; sourceTree = "<group>"; };
- A7B5318717E3728D00EAE4B3 /* SoapActionsLayer3Forwarding1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsLayer3Forwarding1.h; sourceTree = "<group>"; };
- A7B5318817E3728D00EAE4B3 /* SoapActionsMediaManagement1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsMediaManagement1.h; sourceTree = "<group>"; };
- A7B5318917E3728D00EAE4B3 /* SoapActionsMessaging1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsMessaging1.h; sourceTree = "<group>"; };
- A7B5318A17E3728D00EAE4B3 /* SoapActionsRendering.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsRendering.h; sourceTree = "<group>"; };
- A7B5318B17E3728D00EAE4B3 /* SoapActionsRenderingControl1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsRenderingControl1.h; sourceTree = "<group>"; };
- A7B5318C17E3728D00EAE4B3 /* SoapActionsSwitchPower1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsSwitchPower1.h; sourceTree = "<group>"; };
- A7B5318D17E3728D00EAE4B3 /* SoapActionsWANCableLinkConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANCableLinkConfig1.h; sourceTree = "<group>"; };
- A7B5318E17E3728D00EAE4B3 /* SoapActionsWANCommonInterfaceConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANCommonInterfaceConfig1.h; sourceTree = "<group>"; };
- A7B5318F17E3728D00EAE4B3 /* SoapActionsWANDSLLinkConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANDSLLinkConfig1.h; sourceTree = "<group>"; };
- A7B5319017E3728D00EAE4B3 /* SoapActionsWANEthernetLinkConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANEthernetLinkConfig1.h; sourceTree = "<group>"; };
- A7B5319117E3728D00EAE4B3 /* SoapActionsWANIPConnection1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANIPConnection1.h; sourceTree = "<group>"; };
- A7B5319217E3728D00EAE4B3 /* SoapActionsWANIPConnection2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANIPConnection2.h; sourceTree = "<group>"; };
- A7B5319317E3728D00EAE4B3 /* SoapActionsWANIPv6FirewallControl1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANIPv6FirewallControl1.h; sourceTree = "<group>"; };
- A7B5319417E3728D00EAE4B3 /* SoapActionsWANPOTSLinkConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANPOTSLinkConfig1.h; sourceTree = "<group>"; };
- A7B5319517E3728D00EAE4B3 /* SoapActionsWANPPPConnection1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANPPPConnection1.h; sourceTree = "<group>"; };
- A7B5319617E3728D00EAE4B3 /* SSDPDB_ObjC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSDPDB_ObjC.h; sourceTree = "<group>"; };
- A7B5319717E3728D00EAE4B3 /* StateVariable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateVariable.h; sourceTree = "<group>"; };
- A7B5319817E3728D00EAE4B3 /* StateVariableList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateVariableList.h; sourceTree = "<group>"; };
- A7B5319917E3728D00EAE4B3 /* StateVariableRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateVariableRange.h; sourceTree = "<group>"; };
- A7B5319A17E3728D00EAE4B3 /* TelephonyClient1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TelephonyClient1Device.h; sourceTree = "<group>"; };
- A7B5319B17E3728D00EAE4B3 /* TelephonyServer1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TelephonyServer1Device.h; sourceTree = "<group>"; };
- A7B5319C17E3728D00EAE4B3 /* UPnPDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UPnPDB.h; sourceTree = "<group>"; };
- A7B5319D17E3728D00EAE4B3 /* UPnPEventParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UPnPEventParser.h; sourceTree = "<group>"; };
- A7B5319E17E3728D00EAE4B3 /* UPnPEvents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UPnPEvents.h; sourceTree = "<group>"; };
- A7B5319F17E3728D00EAE4B3 /* UPnPManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UPnPManager.h; sourceTree = "<group>"; };
- A7B531A017E3728D00EAE4B3 /* WAN2Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WAN2Device.h; sourceTree = "<group>"; };
- A7B531A117E3728D00EAE4B3 /* WANConnection1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WANConnection1Device.h; sourceTree = "<group>"; };
- A7B531A217E3728D00EAE4B3 /* WANConnection2Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WANConnection2Device.h; sourceTree = "<group>"; };
- A7CB0DAD1716F72600050CF3 /* PlayingExternally@2x~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally@2x~iphone.png"; sourceTree = "<group>"; };
- A7CB0DAE1716F72600050CF3 /* PlayingExternally~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally~iphone.png"; sourceTree = "<group>"; };
- A7CB0DAF1716F72600050CF3 /* PlayingExternally~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally~ipad.png"; sourceTree = "<group>"; };
- A7CB0DB01716F72600050CF3 /* PlayingExternally@2x~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally@2x~ipad.png"; sourceTree = "<group>"; };
- A7FF9F3D17428C1900999819 /* DeleteButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DeleteButton.png; sourceTree = "<group>"; };
- A7FF9F3F17428C3800999819 /* DeleteButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "DeleteButton@2x.png"; sourceTree = "<group>"; };
- CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libMobileVLCKit.a; path = External/MobileVLCKit/libMobileVLCKit.a; sourceTree = "<group>"; };
- CC1BBC421704935E00A20CBF /* MediaLibrary.mom */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; name = MediaLibrary.mom; path = External/MediaLibraryKit/MediaLibrary.mom; sourceTree = "<group>"; };
- CC1BBC451704938300A20CBF /* libiconv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.dylib; path = usr/lib/libiconv.dylib; sourceTree = SDKROOT; };
- CC1BBC471704938B00A20CBF /* libstdc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libstdc++.dylib"; path = "usr/lib/libstdc++.dylib"; sourceTree = SDKROOT; };
- CC1BBC491704939300A20CBF /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
- CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
- CC1BBC4D170493A300A20CBF /* libbz2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libbz2.dylib; path = usr/lib/libbz2.dylib; sourceTree = SDKROOT; };
- CC1BBC4F170493AA00A20CBF /* libxml2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libxml2.dylib; path = usr/lib/libxml2.dylib; sourceTree = SDKROOT; };
- CC1BBC51170493B100A20CBF /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
- CC1BBC53170493B800A20CBF /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
- CC1BBC55170493C100A20CBF /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
- CC1BBC57170493E100A20CBF /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
- CC75BE3A17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
- CC75BE3B17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- CC75BE3C17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- CC75BE3D17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- CC75BE3E17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- CC75BE3F17DF744400FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
- CC75BE4017DF744400FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- CC75BE4117DF744500FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- CC75BE4217DF744500FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- CC75BE4317DF744500FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- CC87147917A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = mr; path = mr.lproj/Localizable.strings; sourceTree = "<group>"; };
- CC87147A17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- CC87147B17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- CC87147C17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- CC87147D17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- CC87147E17A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
- CC87147F17A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- CC87148017A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- CC87148117A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- CC87148217A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- CC87148317A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
- CC87148417A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- CC87148517A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- CC87148617A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- CC87148717A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- CCAF837E17DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
- CCAF837F17DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- CCAF838017DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- CCAF838117DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- CCAF838217DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- CCBDA19017B2BEB500489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pt; path = pt.lproj/Localizable.strings; sourceTree = "<group>"; };
- CCBDA19117B2BEB500489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
- CCBDA19217B2BEB500489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
- CCBDA19317B2BEB600489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
- CCBDA19417B2BEB600489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
- CCE2A22D17A5859E00D9EAAD /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- 7D94FCD816DE7D1000F2623B /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 9B2E0CF417FB71E90098E3DF /* libGTLTouchStaticLib.a in Frameworks */,
- CCE2A22E17A5859E00D9EAAD /* CoreText.framework in Frameworks */,
- 7DF7CA0717650C2A00C61739 /* AVFoundation.framework in Frameworks */,
- 7DF7E791175F47DC0018858D /* MediaPlayer.framework in Frameworks */,
- 7D6B08FA174D716200A05173 /* MessageUI.framework in Frameworks */,
- 7D3EB014174A353E002062C2 /* SystemConfiguration.framework in Frameworks */,
- 293DF2F417494F8200BB880F /* DropboxSDK.framework in Frameworks */,
- 2915544317490D4A00B86CAD /* Security.framework in Frameworks */,
- 7DDD0429172D98E5005A7B10 /* CFNetwork.framework in Frameworks */,
- CC1BBC58170493E100A20CBF /* CoreData.framework in Frameworks */,
- CC1BBC56170493C100A20CBF /* QuartzCore.framework in Frameworks */,
- CC1BBC54170493B800A20CBF /* AudioToolbox.framework in Frameworks */,
- CC1BBC52170493B100A20CBF /* OpenGLES.framework in Frameworks */,
- CC1BBC50170493AA00A20CBF /* libxml2.dylib in Frameworks */,
- CC1BBC4E170493A300A20CBF /* libbz2.dylib in Frameworks */,
- CC1BBC4C1704939B00A20CBF /* libsqlite3.dylib in Frameworks */,
- CC1BBC481704938B00A20CBF /* libstdc++.dylib in Frameworks */,
- CC1BBC461704938300A20CBF /* libiconv.dylib in Frameworks */,
- CC1BBC3F1704934300A20CBF /* libMobileVLCKit.a in Frameworks */,
- 7D94FCDF16DE7D1000F2623B /* UIKit.framework in Frameworks */,
- 7D94FCE116DE7D1000F2623B /* Foundation.framework in Frameworks */,
- 7D94FCE316DE7D1000F2623B /* CoreGraphics.framework in Frameworks */,
- A7924696170F0BA90036AAF2 /* libMediaLibraryKit.a in Frameworks */,
- 7D31002017B6768B00E6516D /* libupnpx.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- 29125E5317492219003F03E5 /* web */ = {
- isa = PBXGroup;
- children = (
- 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */,
- 7AC8629F1765E90C0011611A /* jquery.fileupload.js */,
- 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */,
- 7AC862A11765E90C0011611A /* jquery.ui.widget.js */,
- 7AC8629B1765DC560011611A /* style.css */,
- 7D00161A17704DAC00649F27 /* main.js */,
- 29125E5417492219003F03E5 /* index.html */,
- );
- path = web;
- sourceTree = "<group>";
- };
- 291553E817490A0400B86CAD /* CocoaHTTPServer */ = {
- isa = PBXGroup;
- children = (
- 2915542C17490B9C00B86CAD /* Responses */,
- 2915543917490B9C00B86CAD /* WebSocket.h */,
- 2915543A17490B9C00B86CAD /* WebSocket.m */,
- 2915540B17490A9C00B86CAD /* CocoaAsyncSocket */,
- 2915540F17490A9C00B86CAD /* CocoaLumberjack */,
- 291553E917490A1E00B86CAD /* Categories */,
- 291553F017490A1E00B86CAD /* HTTPAuthenticationRequest.h */,
- 291553F117490A1E00B86CAD /* HTTPAuthenticationRequest.m */,
- 291553F217490A1E00B86CAD /* HTTPConnection.h */,
- 291553F317490A1E00B86CAD /* HTTPConnection.m */,
- 291553F417490A1E00B86CAD /* HTTPLogging.h */,
- 291553F517490A1E00B86CAD /* HTTPMessage.h */,
- 291553F617490A1E00B86CAD /* HTTPMessage.m */,
- 291553F717490A1E00B86CAD /* HTTPResponse.h */,
- 291553F817490A1E00B86CAD /* HTTPServer.h */,
- 291553F917490A1E00B86CAD /* HTTPServer.m */,
- 291553FA17490A1E00B86CAD /* Mime */,
- );
- name = CocoaHTTPServer;
- sourceTree = "<group>";
- };
- 291553E917490A1E00B86CAD /* Categories */ = {
- isa = PBXGroup;
- children = (
- 291553EA17490A1E00B86CAD /* DDData.h */,
- 291553EB17490A1E00B86CAD /* DDData.m */,
- 291553EC17490A1E00B86CAD /* DDNumber.h */,
- 291553ED17490A1E00B86CAD /* DDNumber.m */,
- 291553EE17490A1E00B86CAD /* DDRange.h */,
- 291553EF17490A1E00B86CAD /* DDRange.m */,
- );
- name = Categories;
- path = ImportedSources/CocoaHTTPServer/Core/Categories;
- sourceTree = SOURCE_ROOT;
- };
- 291553FA17490A1E00B86CAD /* Mime */ = {
- isa = PBXGroup;
- children = (
- 291553FB17490A1E00B86CAD /* MultipartFormDataParser.h */,
- 291553FC17490A1E00B86CAD /* MultipartFormDataParser.m */,
- 291553FD17490A1E00B86CAD /* MultipartMessageHeader.h */,
- 291553FE17490A1E00B86CAD /* MultipartMessageHeader.m */,
- 291553FF17490A1E00B86CAD /* MultipartMessageHeaderField.h */,
- 2915540017490A1E00B86CAD /* MultipartMessageHeaderField.m */,
- );
- name = Mime;
- path = ImportedSources/CocoaHTTPServer/Core/Mime;
- sourceTree = SOURCE_ROOT;
- };
- 2915540B17490A9C00B86CAD /* CocoaAsyncSocket */ = {
- isa = PBXGroup;
- children = (
- 2915540D17490A9C00B86CAD /* GCDAsyncSocket.h */,
- 2915540E17490A9C00B86CAD /* GCDAsyncSocket.m */,
- );
- name = CocoaAsyncSocket;
- path = ImportedSources/CocoaHTTPServer/Vendor/CocoaAsyncSocket;
- sourceTree = SOURCE_ROOT;
- };
- 2915540F17490A9C00B86CAD /* CocoaLumberjack */ = {
- isa = PBXGroup;
- children = (
- 2915541017490A9C00B86CAD /* About.txt */,
- 2915541117490A9C00B86CAD /* DDAbstractDatabaseLogger.h */,
- 2915541217490A9C00B86CAD /* DDAbstractDatabaseLogger.m */,
- 2915541317490A9C00B86CAD /* DDASLLogger.h */,
- 2915541417490A9C00B86CAD /* DDASLLogger.m */,
- 2915541517490A9C00B86CAD /* DDFileLogger.h */,
- 2915541617490A9C00B86CAD /* DDFileLogger.m */,
- 2915541717490A9C00B86CAD /* DDLog.h */,
- 2915541817490A9C00B86CAD /* DDLog.m */,
- 2915541917490A9C00B86CAD /* DDTTYLogger.h */,
- 2915541A17490A9C00B86CAD /* DDTTYLogger.m */,
- 2915541B17490A9C00B86CAD /* Extensions */,
- );
- name = CocoaLumberjack;
- path = ImportedSources/CocoaHTTPServer/Vendor/CocoaLumberjack;
- sourceTree = SOURCE_ROOT;
- };
- 2915541B17490A9C00B86CAD /* Extensions */ = {
- isa = PBXGroup;
- children = (
- 2915541C17490A9C00B86CAD /* ContextFilterLogFormatter.h */,
- 2915541D17490A9C00B86CAD /* ContextFilterLogFormatter.m */,
- 2915541E17490A9C00B86CAD /* DispatchQueueLogFormatter.h */,
- 2915541F17490A9C00B86CAD /* DispatchQueueLogFormatter.m */,
- 2915542017490A9C00B86CAD /* README.txt */,
- );
- path = Extensions;
- sourceTree = "<group>";
- };
- 2915542C17490B9C00B86CAD /* Responses */ = {
- isa = PBXGroup;
- children = (
- 2915542D17490B9C00B86CAD /* HTTPAsyncFileResponse.h */,
- 2915542E17490B9C00B86CAD /* HTTPAsyncFileResponse.m */,
- 2915542F17490B9C00B86CAD /* HTTPDataResponse.h */,
- 2915543017490B9C00B86CAD /* HTTPDataResponse.m */,
- 2915543117490B9C00B86CAD /* HTTPDynamicFileResponse.h */,
- 2915543217490B9C00B86CAD /* HTTPDynamicFileResponse.m */,
- 2915543317490B9C00B86CAD /* HTTPErrorResponse.h */,
- 2915543417490B9C00B86CAD /* HTTPErrorResponse.m */,
- 2915543517490B9C00B86CAD /* HTTPFileResponse.h */,
- 2915543617490B9C00B86CAD /* HTTPFileResponse.m */,
- 2915543717490B9C00B86CAD /* HTTPRedirectResponse.h */,
- 2915543817490B9C00B86CAD /* HTTPRedirectResponse.m */,
- );
- name = Responses;
- path = ImportedSources/CocoaHTTPServer/Core/Responses;
- sourceTree = SOURCE_ROOT;
- };
- 7D10BC651743F9A100DA7059 /* External Playback */ = {
- isa = PBXGroup;
- children = (
- A7CB0DAD1716F72600050CF3 /* PlayingExternally@2x~iphone.png */,
- A7CB0DAE1716F72600050CF3 /* PlayingExternally~iphone.png */,
- A7CB0DAF1716F72600050CF3 /* PlayingExternally~ipad.png */,
- A7CB0DB01716F72600050CF3 /* PlayingExternally@2x~ipad.png */,
- );
- name = "External Playback";
- sourceTree = "<group>";
- };
- 7D10BC661743F9AC00DA7059 /* Library View */ = {
- isa = PBXGroup;
- children = (
- 7D223E18181EC56E00B36798 /* gradient-cell-ios7-ipad.png */,
- 7D223E19181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png */,
- 7D2A34A21805CDBA004078AA /* gradient-cell-ios7.png */,
- 7D2A34A31805CDBA004078AA /* gradient-cell-ios7@2x.png */,
- A7990063176E9352009E8267 /* libraryBackground.png */,
- 7D1AC30A17629D4600BD2EB5 /* title.png */,
- 7D1AC30B17629D4600BD2EB5 /* title@2x.png */,
- 7D6BD1801762026700AD311A /* thumbOverlayPhone@2x.png */,
- 7D6BD1811762026700AD311A /* thumbOverlay@2x.png */,
- 7D6BD1821762026700AD311A /* thumbOverlayPhone.png */,
- 7D6BD1831762026700AD311A /* thumbOverlay.png */,
- 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */,
- 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */,
- 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */,
- 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */,
- 7D07F72A175691CB00CDE21C /* backButton.png */,
- 7D07F72B175691CC00CDE21C /* backButton@2x.png */,
- 7D07F72C175691CC00CDE21C /* backButtonHighlight.png */,
- 7D07F72D175691CC00CDE21C /* backButtonHighlight@2x.png */,
- 7D07F722175688D300CDE21C /* doneButton.png */,
- 7D07F723175688D300CDE21C /* doneButton@2x.png */,
- 7D07F724175688D300CDE21C /* doneButtonHighlight.png */,
- 7D07F725175688D300CDE21C /* doneButtonHighlight@2x.png */,
- 7D07F71217566C4A00CDE21C /* menuCone.png */,
- 7D07F71317566C4A00CDE21C /* menuCone@2x.png */,
- 7D07F71A175673D100CDE21C /* menuBtnBckHighlight@2x.png */,
- 7D07F71B175673D100CDE21C /* menuBtnBck@2x.png */,
- 7D07F71C175673D100CDE21C /* menuBtnBckHighlight.png */,
- 7D07F71D175673D100CDE21C /* menuBtnBck.png */,
- 7D07F70A175669A800CDE21C /* button.png */,
- 7D07F70B175669A800CDE21C /* button@2x.png */,
- 7D07F70E175669D800CDE21C /* buttonHighlight.png */,
- 7D07F70F175669D800CDE21C /* buttonHighlight@2x.png */,
- 7D07F706175665ED00CDE21C /* navBarBackground@2x.png */,
- 7D07F707175665ED00CDE21C /* navBarBackground.png */,
- A7FF9F3D17428C1900999819 /* DeleteButton.png */,
- A7FF9F3F17428C3800999819 /* DeleteButton@2x.png */,
- 7D16035917BF9FE600F29B34 /* sudHeaderBg.png */,
- 7D16035A17BF9FE600F29B34 /* sudHeaderBg@2x.png */,
- 7D16035B17BF9FE600F29B34 /* headerSidebar@2x.png */,
- 7D16035C17BF9FE600F29B34 /* headerSidebar.png */,
- );
- name = "Library View";
- sourceTree = "<group>";
- };
- 7D10BC671743F9BA00DA7059 /* Launch Screen */ = {
- isa = PBXGroup;
- children = (
- A7924698170F0ED20036AAF2 /* Default-568h@2x.png */,
- A7924699170F0ED20036AAF2 /* Default.png */,
- A792469A170F0ED20036AAF2 /* Default@2x.png */,
- 7D882244185733D500D87252 /* Default-ipad-Landscape.png */,
- 7D882245185733D500D87252 /* Default-ipad-Landscape@2x.png */,
- 7D882246185733D500D87252 /* Default-ipad-Portrait.png */,
- 7D882247185733D500D87252 /* Default-ipad-Portrait@2x.png */,
- 7D882248185733D500D87252 /* Default-568h@2x~iphone.png */,
- 7D882249185733D500D87252 /* Default-Landscape~ipad.png */,
- 7D88224A185733D500D87252 /* Default-Landscape@2x~ipad.png */,
- 7D88224B185733D500D87252 /* Default~ipad.png */,
- 7D88224C185733D500D87252 /* Default-Portrait@2x~ipad.png */,
- 7D88224D185733D500D87252 /* Default~iphone.png */,
- 7D88224E185733D500D87252 /* Default@2x~iphone.png */,
- );
- name = "Launch Screen";
- sourceTree = "<group>";
- };
- 7D2159E4174FD31900EC00E8 /* Dropbox */ = {
- isa = PBXGroup;
- children = (
- 9BF0708B185122AA009B23DD /* audio.png */,
- 9BF0708C185122AA009B23DD /* audio@2x.png */,
- 9BF0708D185122AA009B23DD /* audio@4x.png */,
- 7DEB3B7C1764A4F40038FC70 /* movie@2x.png */,
- 7DEB3B7D1764A4F40038FC70 /* movie@4x.png */,
- 7DEB3B7E1764A4F40038FC70 /* blank@4x.png */,
- 7DEB3B7F1764A4F40038FC70 /* folder.png */,
- 7DEB3B801764A4F40038FC70 /* folder@2x.png */,
- 7DEB3B811764A4F40038FC70 /* folder@4x.png */,
- 7DEB3B821764A4F40038FC70 /* movie.png */,
- 7DEB3B831764A4F40038FC70 /* blank.png */,
- 7DEB3B841764A4F40038FC70 /* blank@2x.png */,
- 7DEB3B5B17647B240038FC70 /* bottomBlackBar@2x.png */,
- 7DEB3B5C17647B240038FC70 /* bottomBlackBar.png */,
- 7D5E39C8174FC2F3007DAFA1 /* dropbox-white.png */,
- 7D5E39C9174FC2F3007DAFA1 /* dropbox-white@2x.png */,
- );
- name = Dropbox;
- sourceTree = "<group>";
- };
- 7D2339AB176DE70E008D223C /* Menu */ = {
- isa = PBXGroup;
- children = (
- 7D30F3CB183AB29300FFC021 /* VLCMenuTableViewController.h */,
- 7D30F3CC183AB29300FFC021 /* VLCMenuTableViewController.m */,
- 7D30F3DD183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.h */,
- 7D30F3DE183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m */,
- 7D30F3C5183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.h */,
- 7D30F3C6183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m */,
- 7D30F3E0183AB33200FFC021 /* VLCSidebarViewCell.h */,
- 7D30F3E1183AB33200FFC021 /* VLCSidebarViewCell.m */,
- );
- name = Menu;
- sourceTree = "<group>";
- };
- 7D31001E17B64AE600E6516D /* GHSidebarNav */ = {
- isa = PBXGroup;
- children = (
- 7D31001B17B64AE100E6516D /* GHRevealViewController.h */,
- 7D31001C17B64AE100E6516D /* GHRevealViewController.m */,
- );
- name = GHSidebarNav;
- sourceTree = "<group>";
- };
- 7D31002117B676D500E6516D /* Local Network Connectivity */ = {
- isa = PBXGroup;
- children = (
- 7D30F3D1183AB2F100FFC021 /* VLCLocalNetworkListCell.h */,
- 7D30F3D2183AB2F100FFC021 /* VLCLocalNetworkListCell.m */,
- 7D30F3D3183AB2F100FFC021 /* VLCLocalServerFolderListViewController.h */,
- 7D30F3D4183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m */,
- 7D30F3D5183AB2F100FFC021 /* VLCLocalServerListViewController.h */,
- 7D30F3D6183AB2F100FFC021 /* VLCLocalServerListViewController.m */,
- 7D30F3DA183AB2F900FFC021 /* VLCNetworkLoginViewController.h */,
- 7D30F3DB183AB2F900FFC021 /* VLCNetworkLoginViewController.m */,
- );
- name = "Local Network Connectivity";
- sourceTree = "<group>";
- };
- 7D31CF061746AEF2005997E0 /* UI Elements */ = {
- isa = PBXGroup;
- children = (
- 7D3784B2183A9938009EE944 /* UIBarButtonItem+Theme.h */,
- 7D3784B3183A9938009EE944 /* UIBarButtonItem+Theme.m */,
- 7D3784B4183A9938009EE944 /* UINavigationController+Theme.h */,
- 7D3784B5183A9938009EE944 /* UINavigationController+Theme.m */,
- 7D3784B6183A9938009EE944 /* VLCLinearProgressIndicator.h */,
- 7D3784B7183A9938009EE944 /* VLCLinearProgressIndicator.m */,
- 7D3784B8183A9938009EE944 /* VLCMenuButton.h */,
- 7D3784B9183A9938009EE944 /* VLCMenuButton.m */,
- 7D3784BA183A9938009EE944 /* VLCSlider.h */,
- 7D3784BB183A9938009EE944 /* VLCSlider.m */,
- 7D3784BC183A9938009EE944 /* VLCStatusLabel.h */,
- 7D3784BD183A9938009EE944 /* VLCStatusLabel.m */,
- );
- name = "UI Elements";
- sourceTree = "<group>";
- };
- 7D47D6C81760CD2700E86BAD /* Movie VIew */ = {
- isa = PBXGroup;
- children = (
- 7DF1166A176CC69A009EC05C /* volumeballslider.png */,
- 7DF1166B176CC69A009EC05C /* volumeballslider@2x.png */,
- 7D1AC30617629AB600BD2EB5 /* ratioIcon.png */,
- 7D1AC30717629AB600BD2EB5 /* ratioIcon@2x.png */,
- 7D47D6CB1760CD8700E86BAD /* subtitleIcon.png */,
- 7D47D6CC1760CD8700E86BAD /* subtitleIcon@2x.png */,
- 7D47D6CD1760CD8700E86BAD /* videoEffectsIcon.png */,
- 7D47D6CE1760CD8700E86BAD /* videoEffectsIcon@2x.png */,
- 7D47D6CF1760CD8700E86BAD /* seekbarBg@2x.png */,
- 7D47D6D01760CD8700E86BAD /* slidermaximumTrack.png */,
- 7D47D6D11760CD8700E86BAD /* slidermaximumTrack@2x.png */,
- 7D47D6D21760CD8700E86BAD /* slidermaxValue.png */,
- 7D47D6D31760CD8700E86BAD /* slidermaxValue@2x.png */,
- 7D47D6D41760CD8700E86BAD /* sliderminiValue.png */,
- 7D47D6D51760CD8700E86BAD /* sliderminiValue@2x.png */,
- 7D47D7291760E3A000E86BAD /* sliderminimumTrack.png */,
- 7D47D72A1760E3A000E86BAD /* sliderminimumTrack@2x.png */,
- 7D47D6D81760CD8700E86BAD /* speedIcon.png */,
- 7D47D6D91760CD8700E86BAD /* speedIcon@2x.png */,
- 7D47D7251760D77C00E86BAD /* pauseIcon.png */,
- 7D47D7261760D77C00E86BAD /* pauseIcon@2x.png */,
- 7D47D6DA1760CD8700E86BAD /* playbackControllerBg@2x.png */,
- 7D47D6DB1760CD8700E86BAD /* playbackDoneButton.png */,
- 7D47D6DC1760CD8700E86BAD /* playbackDoneButton@2x.png */,
- 7D47D6DD1760CD8700E86BAD /* playbackDoneButtonHighlight.png */,
- 7D47D6DE1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png */,
- 7D47D6DF1760CD8700E86BAD /* ratioButton.png */,
- 7D47D6E01760CD8700E86BAD /* ratioButton@2x.png */,
- 7D47D6E11760CD8700E86BAD /* ratioButtonHighlight.png */,
- 7D47D6E21760CD8700E86BAD /* ratioButtonHighlight@2x.png */,
- 7D47D6E31760CD8700E86BAD /* seekbarBg.png */,
- 7D47D6E51760CD8700E86BAD /* forwardIcon.png */,
- 7D47D6E61760CD8700E86BAD /* forwardIcon@2x.png */,
- 7D47D6E71760CD8700E86BAD /* knobSlider.png */,
- 7D47D6E81760CD8700E86BAD /* knobSlider@2x.png */,
- 7D47D6EB1760CD8700E86BAD /* playbackControllerBg.png */,
- 7D47D6EC1760CD8700E86BAD /* playIcon.png */,
- 7D47D6ED1760CD8700E86BAD /* playIcon@2x.png */,
- 7D47D6EE1760CD8700E86BAD /* audioTrackIcon.png */,
- 7D47D6EF1760CD8700E86BAD /* audioTrackIcon@2x.png */,
- 7D47D6F01760CD8700E86BAD /* backIcon.png */,
- 7D47D6F11760CD8700E86BAD /* backIcon@2x.png */,
- 7D47D6F21760CD8700E86BAD /* ballSlider.png */,
- 7D47D6F31760CD8700E86BAD /* ballSlider@2x.png */,
- 7D1AC3021762996100BD2EB5 /* resetIcon.png */,
- 7D1AC3031762996100BD2EB5 /* resetIcon@2x.png */,
- );
- name = "Movie VIew";
- sourceTree = "<group>";
- };
- 7D5E39CC174FCDBE007DAFA1 /* Dropbox Integration */ = {
- isa = PBXGroup;
- children = (
- 7D3784A8183A9906009EE944 /* VLCDropboxConstants.h */,
- 7D3784A9183A9906009EE944 /* VLCDropboxController.h */,
- 7D3784AA183A9906009EE944 /* VLCDropboxController.m */,
- 7D3784AB183A9906009EE944 /* VLCDropboxTableViewController.h */,
- 7D3784AC183A9906009EE944 /* VLCDropboxTableViewController.m */,
- 7D3784AF183A990F009EE944 /* VLCCloudStorageTableViewCell.h */,
- 7D3784B0183A990F009EE944 /* VLCCloudStorageTableViewCell.m */,
- 9B088306183D7BEC004B5C2A /* VLCCloudStorageTableViewController.h */,
- 9B088307183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m */,
- );
- name = "Dropbox Integration";
- sourceTree = "<group>";
- };
- 7D5F7AB717526573006CCCFA /* Accessory dialogs */ = {
- isa = PBXGroup;
- children = (
- 7D3784A2183A98F5009EE944 /* VLCAboutViewController.h */,
- 7D3784A3183A98F5009EE944 /* VLCAboutViewController.m */,
- 7D3784A4183A98F5009EE944 /* VLCSettingsController.h */,
- 7D3784A5183A98F5009EE944 /* VLCSettingsController.m */,
- 7D37849F183A98EB009EE944 /* VLCBugreporter.h */,
- 7D3784A0183A98EB009EE944 /* VLCBugreporter.m */,
- );
- name = "Accessory dialogs";
- sourceTree = "<group>";
- };
- 7D5F7AB81752658E006CCCFA /* Everything Playlist */ = {
- isa = PBXGroup;
- children = (
- 7D378493183A98D1009EE944 /* VLCPlaylistCollectionViewCell.h */,
- 7D378494183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m */,
- 7D378495183A98D1009EE944 /* VLCPlaylistTableViewCell.h */,
- 7D378496183A98D1009EE944 /* VLCPlaylistTableViewCell.m */,
- 7D378497183A98D1009EE944 /* VLCPlaylistViewController.h */,
- 7D378498183A98D1009EE944 /* VLCPlaylistViewController.m */,
- 7D37849C183A98DD009EE944 /* VLCThumbnailsCache.h */,
- 7D37849D183A98DD009EE944 /* VLCThumbnailsCache.m */,
- );
- name = "Everything Playlist";
- sourceTree = "<group>";
- };
- 7D5F7AB9175265B2006CCCFA /* Playback */ = {
- isa = PBXGroup;
- children = (
- 7D37848D183A98B6009EE944 /* VLCMovieViewController.h */,
- 7D37848E183A98B6009EE944 /* VLCMovieViewController.m */,
- 7D378490183A98BF009EE944 /* VLCExternalDisplayController.h */,
- 7D378491183A98BF009EE944 /* VLCExternalDisplayController.m */,
- );
- name = Playback;
- sourceTree = "<group>";
- };
- 7D5F7ABA175265CB006CCCFA /* HTTP Connectivity */ = {
- isa = PBXGroup;
- children = (
- 7D30F3BC183AB24C00FFC021 /* VLCHTTPConnection.h */,
- 7D30F3BD183AB24C00FFC021 /* VLCHTTPConnection.m */,
- 7D30F3BE183AB24C00FFC021 /* VLCHTTPFileDownloader.h */,
- 7D30F3BF183AB24C00FFC021 /* VLCHTTPFileDownloader.m */,
- 7D30F3C0183AB24C00FFC021 /* VLCHTTPUploaderController.h */,
- 7D30F3C1183AB24C00FFC021 /* VLCHTTPUploaderController.m */,
- 7D30F3C8183AB27A00FFC021 /* VLCDownloadViewController.h */,
- 7D30F3C9183AB27A00FFC021 /* VLCDownloadViewController.m */,
- );
- name = "HTTP Connectivity";
- sourceTree = "<group>";
- };
- 7D6B07A31716C9A6003280C4 /* OBSlider */ = {
- isa = PBXGroup;
- children = (
- 7DADC55D1704FABF001DAC63 /* OBSlider.h */,
- 7DADC55E1704FABF001DAC63 /* OBSlider.m */,
- );
- name = OBSlider;
- sourceTree = "<group>";
- };
- 7D6B08CA174D65B400A05173 /* InAppSettingsKit */ = {
- isa = PBXGroup;
- children = (
- 7D6B08CB174D65B500A05173 /* Controllers */,
- 7D6B08D3174D65B500A05173 /* Models */,
- 7D6B08DE174D65B500A05173 /* Views */,
- );
- name = InAppSettingsKit;
- path = ImportedSources/InAppSettingsKit/InAppSettingsKit;
- sourceTree = SOURCE_ROOT;
- };
- 7D6B08CB174D65B500A05173 /* Controllers */ = {
- isa = PBXGroup;
- children = (
- 7D6B08CC174D65B500A05173 /* IASKAppSettingsViewController.h */,
- 7D6B08CD174D65B500A05173 /* IASKAppSettingsViewController.m */,
- 7D6B08CE174D65B500A05173 /* IASKAppSettingsWebViewController.h */,
- 7D6B08CF174D65B500A05173 /* IASKAppSettingsWebViewController.m */,
- 7D6B08D0174D65B500A05173 /* IASKSpecifierValuesViewController.h */,
- 7D6B08D1174D65B500A05173 /* IASKSpecifierValuesViewController.m */,
- 7D6B08D2174D65B500A05173 /* IASKViewController.h */,
- );
- path = Controllers;
- sourceTree = "<group>";
- };
- 7D6B08D3174D65B500A05173 /* Models */ = {
- isa = PBXGroup;
- children = (
- 7D6B08D4174D65B500A05173 /* IASKSettingsReader.h */,
- 7D6B08D5174D65B500A05173 /* IASKSettingsReader.m */,
- 7D6B08D6174D65B500A05173 /* IASKSettingsStore.h */,
- 7D6B08D7174D65B500A05173 /* IASKSettingsStore.m */,
- 7D6B08D8174D65B500A05173 /* IASKSettingsStoreFile.h */,
- 7D6B08D9174D65B500A05173 /* IASKSettingsStoreFile.m */,
- 7D6B08DA174D65B500A05173 /* IASKSettingsStoreUserDefaults.h */,
- 7D6B08DB174D65B500A05173 /* IASKSettingsStoreUserDefaults.m */,
- 7D6B08DC174D65B500A05173 /* IASKSpecifier.h */,
- 7D6B08DD174D65B500A05173 /* IASKSpecifier.m */,
- );
- path = Models;
- sourceTree = "<group>";
- };
- 7D6B08DE174D65B500A05173 /* Views */ = {
- isa = PBXGroup;
- children = (
- 7D6B08DF174D65B500A05173 /* IASKPSSliderSpecifierViewCell.h */,
- 7D6B08E0174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m */,
- 7D6B08E1174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.h */,
- 7D6B08E2174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m */,
- 7D6B08E3174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.h */,
- 7D6B08E4174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m */,
- 7D6B08E5174D65B500A05173 /* IASKSlider.h */,
- 7D6B08E6174D65B500A05173 /* IASKSlider.m */,
- 7D6B08E7174D65B500A05173 /* IASKSwitch.h */,
- 7D6B08E8174D65B500A05173 /* IASKSwitch.m */,
- 7D6B08E9174D65B500A05173 /* IASKTextField.h */,
- 7D6B08EA174D65B500A05173 /* IASKTextField.m */,
- );
- path = Views;
- sourceTree = "<group>";
- };
- 7D94FCD216DE7D1000F2623B = {
- isa = PBXGroup;
- children = (
- 7D94FCE416DE7D1000F2623B /* Classes */,
- CC1BBC441704936500A20CBF /* External VLC Libraries */,
- 7D94FCDD16DE7D1000F2623B /* Frameworks */,
- 7D94FCDC16DE7D1000F2623B /* Products */,
- );
- sourceTree = "<group>";
- };
- 7D94FCDC16DE7D1000F2623B /* Products */ = {
- isa = PBXGroup;
- children = (
- 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 7D94FCDD16DE7D1000F2623B /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 9B2E0CF317FB71E80098E3DF /* libGTLTouchStaticLib.a */,
- CCE2A22D17A5859E00D9EAAD /* CoreText.framework */,
- 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */,
- 7DF7E790175F47DC0018858D /* MediaPlayer.framework */,
- 7D6B08F9174D716200A05173 /* MessageUI.framework */,
- 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */,
- 7D05ADEA174945CE0087550C /* DropboxSDK.framework */,
- 2915544217490D4A00B86CAD /* Security.framework */,
- 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */,
- CC1BBC57170493E100A20CBF /* CoreData.framework */,
- CC1BBC55170493C100A20CBF /* QuartzCore.framework */,
- CC1BBC53170493B800A20CBF /* AudioToolbox.framework */,
- CC1BBC51170493B100A20CBF /* OpenGLES.framework */,
- CC1BBC4F170493AA00A20CBF /* libxml2.dylib */,
- 7D31001F17B6768B00E6516D /* libupnpx.a */,
- CC1BBC4D170493A300A20CBF /* libbz2.dylib */,
- CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */,
- CC1BBC491704939300A20CBF /* libz.dylib */,
- CC1BBC471704938B00A20CBF /* libstdc++.dylib */,
- CC1BBC451704938300A20CBF /* libiconv.dylib */,
- 7D94FCDE16DE7D1000F2623B /* UIKit.framework */,
- 7D94FCE016DE7D1000F2623B /* Foundation.framework */,
- 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- 7D94FCE416DE7D1000F2623B /* Classes */ = {
- isa = PBXGroup;
- children = (
- 7D6B08BB174A72A900A05173 /* VLCConstants.h */,
- 7DBBF180183AB3B80009A339 /* VLCAppDelegate.h */,
- 7DBBF181183AB3B80009A339 /* VLCAppDelegate.m */,
- 9B51719A17EDEC8900F8FBA7 /* GoogleDrive Integration */,
- A7D03A4817A4249F0022C16F /* MediaDiscovering */,
- 7D2339AB176DE70E008D223C /* Menu */,
- 7D5F7ABA175265CB006CCCFA /* HTTP Connectivity */,
- 7D31002117B676D500E6516D /* Local Network Connectivity */,
- 7D5F7AB9175265B2006CCCFA /* Playback */,
- 7D5F7AB81752658E006CCCFA /* Everything Playlist */,
- 7D5F7AB717526573006CCCFA /* Accessory dialogs */,
- 7D5E39CC174FCDBE007DAFA1 /* Dropbox Integration */,
- 7D31CF061746AEF2005997E0 /* UI Elements */,
- A7C3025A175A538700AD4388 /* Extensions */,
- 7DADC5601704FACC001DAC63 /* Imported */,
- 7DADC55C1704FAA8001DAC63 /* XIBs */,
- A7924697170F0ED20036AAF2 /* Resources */,
- 7D94FCE516DE7D1000F2623B /* Supporting Files */,
- );
- name = Classes;
- path = AspenProject;
- sourceTree = "<group>";
- };
- 7D94FCE516DE7D1000F2623B /* Supporting Files */ = {
- isa = PBXGroup;
- children = (
- 7D3784E8183A9A15009EE944 /* main.m */,
- 7D3784EA183A9A1E009EE944 /* VLC for iOS-Info.plist */,
- 7D3784EB183A9A1E009EE944 /* VLC for iOS-Prefix.pch */,
- );
- name = "Supporting Files";
- sourceTree = "<group>";
- };
- 7DADC55C1704FAA8001DAC63 /* XIBs */ = {
- isa = PBXGroup;
- children = (
- 7DBBF183183AB4300009A339 /* VLCAboutViewController~ipad.xib */,
- 7DBBF184183AB4300009A339 /* VLCAboutViewController~iphone.xib */,
- 7DBBF185183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib */,
- 7DBBF186183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib */,
- 7DBBF187183AB4300009A339 /* VLCDownloadViewController.xib */,
- 7DBBF188183AB4300009A339 /* VLCCloudStorageTableViewController.xib */,
- 7DBBF189183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib */,
- 7DBBF18A183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib */,
- 7DBBF18B183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib */,
- 7DBBF18C183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib */,
- 7DBBF18E183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib */,
- 7DBBF18F183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib */,
- 7DBBF190183AB4300009A339 /* VLCMovieViewController~ipad.xib */,
- 7DBBF191183AB4300009A339 /* VLCMovieViewController~iphone.xib */,
- 7DBBF192183AB4300009A339 /* VLCNetworkLoginViewController.xib */,
- 7DBBF193183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib */,
- 7DBBF194183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib */,
- 7DBBF195183AB4300009A339 /* VLCPlaylistGridView.xib */,
- 7DBBF196183AB4300009A339 /* VLCPlaylistTableViewCell.xib */,
- 7DBBF197183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib */,
- 7D711AD918227A490094E4F0 /* GTMOAuth2ViewTouch.xib */,
- );
- name = XIBs;
- sourceTree = "<group>";
- };
- 7DADC5601704FACC001DAC63 /* Imported */ = {
- isa = PBXGroup;
- children = (
- 9B2E0CED17FB5B3F0098E3DF /* GoogleDrive */,
- A7B5316017E3728D00EAE4B3 /* upnpx */,
- 7D6B08CA174D65B400A05173 /* InAppSettingsKit */,
- A7A0E9EB174BA66000162F25 /* PAPasscode */,
- 7DC72D6517B7ED36008A26D0 /* Reachability */,
- 7DC72D6417B7ED2A008A26D0 /* WhiteRaccoon */,
- 7D31001E17B64AE600E6516D /* GHSidebarNav */,
- 291553E817490A0400B86CAD /* CocoaHTTPServer */,
- 7D6B07A31716C9A6003280C4 /* OBSlider */,
- );
- name = Imported;
- sourceTree = "<group>";
- };
- 7DBC3B3C1711DD1E00DCF688 /* Icons */ = {
- isa = PBXGroup;
- children = (
- 7DEB3B6917647EC10038FC70 /* Icon-Small-50.png */,
- 7DEB3B6A17647EC10038FC70 /* Icon-Small-50@2x.png */,
- 7DEB3B6B17647EC10038FC70 /* Icon-Small.png */,
- 7DEB3B6C17647EC10038FC70 /* Icon-Small@2x.png */,
- 7DEB3B6517647E440038FC70 /* Icon-72.png */,
- 7DEB3B6717647E480038FC70 /* Icon-72@2x.png */,
- 7DEB3B6317647E370038FC70 /* Icon.png */,
- 7DEB3B6117647E230038FC70 /* Icon@2x.png */,
- 7D6B08C0174A831900A05173 /* vlc-xmas.png */,
- 7D6B08C1174A831900A05173 /* vlc-xmas@2x.png */,
- 7DEB3B7117649BEB0038FC70 /* Icon-512.png */,
- );
- name = Icons;
- sourceTree = "<group>";
- };
- 7DC72D6417B7ED2A008A26D0 /* WhiteRaccoon */ = {
- isa = PBXGroup;
- children = (
- 7DC72D6117B7ED24008A26D0 /* WhiteRaccoon.h */,
- 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */,
- );
- name = WhiteRaccoon;
- sourceTree = "<group>";
- };
- 7DC72D6517B7ED36008A26D0 /* Reachability */ = {
- isa = PBXGroup;
- children = (
- 7D3784E5183A99E1009EE944 /* Reachability.h */,
- 7D3784E6183A99E1009EE944 /* Reachability.m */,
- );
- name = Reachability;
- sourceTree = "<group>";
- };
- 7DEB3B7B1764A4080038FC70 /* menu */ = {
- isa = PBXGroup;
- children = (
- 7D0699C017CB1FAE00713BEB /* Settings@2x.png */,
- 7D0699C117CB1FAE00713BEB /* TVShows.png */,
- 7D0699C217CB1FAE00713BEB /* TVShows@2x.png */,
- 7D0699C317CB1FAE00713BEB /* WifiUp.png */,
- 7D0699C417CB1FAE00713BEB /* WifiUp@2x.png */,
- 7D0699C517CB1FAE00713BEB /* WifiUpOn.png */,
- 7D0699C617CB1FAE00713BEB /* WifiUpOn@2x.png */,
- 7D0699C717CB1FAE00713BEB /* Dropbox@2x.png */,
- 7D0699C817CB1FAE00713BEB /* Local.png */,
- 7D0699C917CB1FAE00713BEB /* Local@2x.png */,
- 7D0699CA17CB1FAE00713BEB /* MusicAlbums.png */,
- 7D0699CB17CB1FAE00713BEB /* MusicAlbums@2x.png */,
- 7D0699CC17CB1FAE00713BEB /* OpenNetStream.png */,
- 7D0699CD17CB1FAE00713BEB /* OpenNetStream@2x.png */,
- 7D0699CE17CB1FAE00713BEB /* Settings.png */,
- 7D0699CF17CB1FAE00713BEB /* About.png */,
- 7D0699D017CB1FAE00713BEB /* About@2x.png */,
- 7D0699D117CB1FAE00713BEB /* AllFiles.png */,
- 7D0699D217CB1FAE00713BEB /* AllFiles@2x.png */,
- 7D0699D317CB1FAE00713BEB /* Downloads.png */,
- 7D0699D417CB1FAE00713BEB /* Downloads@2x.png */,
- 7D0699D517CB1FAE00713BEB /* Dropbox.png */,
- 7DC72D5B17B7E7C7008A26D0 /* download@4x.png */,
- 7DC72D5C17B7E7C7008A26D0 /* download.png */,
- 7DC72D5D17B7E7C7008A26D0 /* download@2x.png */,
- 7DEB3B771764A4040038FC70 /* input@2x.png */,
- 7DEB3B781764A4040038FC70 /* input.png */,
- 7DEB3B7317649F2C0038FC70 /* menuButton.png */,
- 7DEB3B7417649F2C0038FC70 /* menuButton@2x.png */,
- 7D514D3D17F779C6007B960C /* Drive@2x.png */,
- 7D514D3E17F779C6007B960C /* DriveWhite.png */,
- 7D514D3F17F779C6007B960C /* DriveWhite@2x.png */,
- 7D514D4017F779C6007B960C /* Drive.png */,
- );
- name = menu;
- sourceTree = "<group>";
- };
- 9B2E0CED17FB5B3F0098E3DF /* GoogleDrive */ = {
- isa = PBXGroup;
- children = (
- 9B5BEF2717FBAEA50016F9CB /* GTLDrive_Sources.m */,
- 9B5BEF2817FBAEA50016F9CB /* GTLDrive.h */,
- );
- name = GoogleDrive;
- sourceTree = "<group>";
- };
- 9B51719A17EDEC8900F8FBA7 /* GoogleDrive Integration */ = {
- isa = PBXGroup;
- children = (
- 7D30F3E3183AB34200FFC021 /* VLCGoogleDriveConstants.h */,
- 7D30F3E4183AB34200FFC021 /* VLCGoogleDriveController.h */,
- 7D30F3E5183AB34200FFC021 /* VLCGoogleDriveController.m */,
- 7D30F3E8183AB34200FFC021 /* VLCGoogleDriveTableViewController.h */,
- 7D30F3E9183AB34200FFC021 /* VLCGoogleDriveTableViewController.m */,
- );
- name = "GoogleDrive Integration";
- sourceTree = "<group>";
- };
- A7924697170F0ED20036AAF2 /* Resources */ = {
- isa = PBXGroup;
- children = (
- 7D47D6C81760CD2700E86BAD /* Movie VIew */,
- 7D6B08FB174D773C00A05173 /* Settings.bundle */,
- 29125E5317492219003F03E5 /* web */,
- A7035BBD174519600057DFA7 /* iTunesArtwork */,
- 7DEB3B5F17647DE30038FC70 /* iTunesArtwork@2x */,
- 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */,
- 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */,
- 7D5DD5C617590ABF001421E3 /* About Contents.html */,
- 7DEB3B7B1764A4080038FC70 /* menu */,
- 7DBC3B3C1711DD1E00DCF688 /* Icons */,
- A79246C6170F11DF0036AAF2 /* Localizable.strings */,
- 7D10BC651743F9A100DA7059 /* External Playback */,
- 7D10BC671743F9BA00DA7059 /* Launch Screen */,
- 7D2159E4174FD31900EC00E8 /* Dropbox */,
- 7D10BC661743F9AC00DA7059 /* Library View */,
- );
- path = Resources;
- sourceTree = SOURCE_ROOT;
- };
- A7A0E9EB174BA66000162F25 /* PAPasscode */ = {
- isa = PBXGroup;
- children = (
- 7D3784CA183A99BA009EE944 /* PAPasscodeViewController.h */,
- 7D3784CB183A99BA009EE944 /* PAPasscodeViewController.m */,
- A7A0E9EC174BA66000162F25 /* Assets */,
- );
- name = PAPasscode;
- path = ../PAPasscode;
- sourceTree = "<group>";
- };
- A7A0E9EC174BA66000162F25 /* Assets */ = {
- isa = PBXGroup;
- children = (
- 7D3784D9183A99D2009EE944 /* papasscode_background.png */,
- 7D3784DA183A99D2009EE944 /* papasscode_background@2x.png */,
- 7D3784DB183A99D2009EE944 /* papasscode_failed_bg.png */,
- 7D3784DC183A99D2009EE944 /* papasscode_failed_bg@2x.png */,
- 7D3784DD183A99D2009EE944 /* papasscode_marker.png */,
- 7D3784DE183A99D2009EE944 /* papasscode_marker@2x.png */,
- );
- path = Assets;
- sourceTree = "<group>";
- };
- A7B5316017E3728D00EAE4B3 /* upnpx */ = {
- isa = PBXGroup;
- children = (
- A7B5316117E3728D00EAE4B3 /* BasicDeviceParser.h */,
- A7B5316217E3728D00EAE4B3 /* BasicHTTPServer_ObjC.h */,
- A7B5316317E3728D00EAE4B3 /* BasicParser.h */,
- A7B5316417E3728D00EAE4B3 /* BasicParserAsset.h */,
- A7B5316517E3728D00EAE4B3 /* BasicServiceParser.h */,
- A7B5316617E3728D00EAE4B3 /* BasicUPnPDevice.h */,
- A7B5316717E3728D00EAE4B3 /* BasicUPnPService.h */,
- A7B5316817E3728D00EAE4B3 /* BinaryLight1Device.h */,
- A7B5316917E3728D00EAE4B3 /* CocoaTools.h */,
- A7B5316A17E3728D00EAE4B3 /* DeviceFactory.h */,
- A7B5316B17E3728D00EAE4B3 /* DigitalSecurityCamera1Device.h */,
- A7B5316C17E3728D00EAE4B3 /* DimmableLight1Device.h */,
- A7B5316D17E3728D00EAE4B3 /* InternetGateway2Device.h */,
- A7B5316E17E3728D00EAE4B3 /* LAN1Device.h */,
- A7B5316F17E3728D00EAE4B3 /* LastChangeParser.h */,
- A7B5317017E3728D00EAE4B3 /* MediaPlaylist.h */,
- A7B5317117E3728D00EAE4B3 /* MediaRenderer1Device.h */,
- A7B5317217E3728D00EAE4B3 /* MediaServer1BasicObject.h */,
- A7B5317317E3728D00EAE4B3 /* MediaServer1ContainerObject.h */,
- A7B5317417E3728D00EAE4B3 /* MediaServer1Device.h */,
- A7B5317517E3728D00EAE4B3 /* MediaServer1ItemObject.h */,
- A7B5317617E3728D00EAE4B3 /* MediaServer1ItemRes.h */,
- A7B5317717E3728D00EAE4B3 /* MediaServerBasicObjectParser.h */,
- A7B5317817E3728D00EAE4B3 /* ServiceFactory.h */,
- A7B5317917E3728D00EAE4B3 /* SoapAction.h */,
- A7B5317A17E3728D00EAE4B3 /* SoapActionFactory.h */,
- A7B5317B17E3728D00EAE4B3 /* SoapActionsAVTransport1.h */,
- A7B5317C17E3728D00EAE4B3 /* SoapActionsCallManagement1.h */,
- A7B5317D17E3728D00EAE4B3 /* SoapActionsConfigurationManagement1.h */,
- A7B5317E17E3728D00EAE4B3 /* SoapActionsConnectionManager1.h */,
- A7B5317F17E3728D00EAE4B3 /* SoapActionsContentDirectory1.h */,
- A7B5318017E3728D00EAE4B3 /* SoapActionsDeviceProtection1.h */,
- A7B5318117E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraMotionImage1.h */,
- A7B5318217E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraSettings1.h */,
- A7B5318317E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraStillImage1.h */,
- A7B5318417E3728D00EAE4B3 /* SoapActionsDimming1.h */,
- A7B5318517E3728D00EAE4B3 /* SoapActionsInputConfig1.h */,
- A7B5318617E3728D00EAE4B3 /* SoapActionsLANHostConfigManagement1.h */,
- A7B5318717E3728D00EAE4B3 /* SoapActionsLayer3Forwarding1.h */,
- A7B5318817E3728D00EAE4B3 /* SoapActionsMediaManagement1.h */,
- A7B5318917E3728D00EAE4B3 /* SoapActionsMessaging1.h */,
- A7B5318A17E3728D00EAE4B3 /* SoapActionsRendering.h */,
- A7B5318B17E3728D00EAE4B3 /* SoapActionsRenderingControl1.h */,
- A7B5318C17E3728D00EAE4B3 /* SoapActionsSwitchPower1.h */,
- A7B5318D17E3728D00EAE4B3 /* SoapActionsWANCableLinkConfig1.h */,
- A7B5318E17E3728D00EAE4B3 /* SoapActionsWANCommonInterfaceConfig1.h */,
- A7B5318F17E3728D00EAE4B3 /* SoapActionsWANDSLLinkConfig1.h */,
- A7B5319017E3728D00EAE4B3 /* SoapActionsWANEthernetLinkConfig1.h */,
- A7B5319117E3728D00EAE4B3 /* SoapActionsWANIPConnection1.h */,
- A7B5319217E3728D00EAE4B3 /* SoapActionsWANIPConnection2.h */,
- A7B5319317E3728D00EAE4B3 /* SoapActionsWANIPv6FirewallControl1.h */,
- A7B5319417E3728D00EAE4B3 /* SoapActionsWANPOTSLinkConfig1.h */,
- A7B5319517E3728D00EAE4B3 /* SoapActionsWANPPPConnection1.h */,
- A7B5319617E3728D00EAE4B3 /* SSDPDB_ObjC.h */,
- A7B5319717E3728D00EAE4B3 /* StateVariable.h */,
- A7B5319817E3728D00EAE4B3 /* StateVariableList.h */,
- A7B5319917E3728D00EAE4B3 /* StateVariableRange.h */,
- A7B5319A17E3728D00EAE4B3 /* TelephonyClient1Device.h */,
- A7B5319B17E3728D00EAE4B3 /* TelephonyServer1Device.h */,
- A7B5319C17E3728D00EAE4B3 /* UPnPDB.h */,
- A7B5319D17E3728D00EAE4B3 /* UPnPEventParser.h */,
- A7B5319E17E3728D00EAE4B3 /* UPnPEvents.h */,
- A7B5319F17E3728D00EAE4B3 /* UPnPManager.h */,
- A7B531A017E3728D00EAE4B3 /* WAN2Device.h */,
- A7B531A117E3728D00EAE4B3 /* WANConnection1Device.h */,
- A7B531A217E3728D00EAE4B3 /* WANConnection2Device.h */,
- );
- name = upnpx;
- path = ImportedSources/upnpx/src/api;
- sourceTree = SOURCE_ROOT;
- };
- A7C3025A175A538700AD4388 /* Extensions */ = {
- isa = PBXGroup;
- children = (
- 7D3784C4183A9972009EE944 /* NSString+SupportedMedia.h */,
- 7D3784C5183A9972009EE944 /* NSString+SupportedMedia.m */,
- 7D3784C6183A9972009EE944 /* UIDevice+SpeedCategory.h */,
- 7D3784C7183A9972009EE944 /* UIDevice+SpeedCategory.m */,
- );
- name = Extensions;
- sourceTree = "<group>";
- };
- A7D03A4817A4249F0022C16F /* MediaDiscovering */ = {
- isa = PBXGroup;
- children = (
- 7D30F3CE183AB2AC00FFC021 /* VLCMediaFileDiscoverer.h */,
- 7D30F3CF183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m */,
- );
- name = MediaDiscovering;
- sourceTree = "<group>";
- };
- CC1BBC441704936500A20CBF /* External VLC Libraries */ = {
- isa = PBXGroup;
- children = (
- A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */,
- CC1BBC421704935E00A20CBF /* MediaLibrary.mom */,
- CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */,
- );
- name = "External VLC Libraries";
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXNativeTarget section */
- 7D94FCDA16DE7D1000F2623B /* vlc-ios */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 7D94FD0A16DE7D1100F2623B /* Build configuration list for PBXNativeTarget "vlc-ios" */;
- buildPhases = (
- 7D94FCD716DE7D1000F2623B /* Sources */,
- 7D94FCD816DE7D1000F2623B /* Frameworks */,
- 7D94FCD916DE7D1000F2623B /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = "vlc-ios";
- productName = AspenProject;
- productReference = 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */;
- productType = "com.apple.product-type.application";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- 7D94FCD316DE7D1000F2623B /* Project object */ = {
- isa = PBXProject;
- attributes = {
- CLASSPREFIX = VLC;
- LastUpgradeCheck = 0460;
- ORGANIZATIONNAME = VideoLAN;
- };
- buildConfigurationList = 7D94FCD616DE7D1000F2623B /* Build configuration list for PBXProject "VLC for iOS" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- ru,
- de,
- fr,
- it,
- ja,
- fi,
- id,
- es,
- da,
- he,
- nl,
- sk,
- tr,
- uk,
- vi,
- "zh-Hans",
- "zh-Hant",
- mr,
- gl,
- ca,
- bs,
- pt,
- el,
- sl,
- pl,
- ar,
- ko,
- sv,
- hu,
- );
- mainGroup = 7D94FCD216DE7D1000F2623B;
- productRefGroup = 7D94FCDC16DE7D1000F2623B /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 7D94FCDA16DE7D1000F2623B /* vlc-ios */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXResourcesBuildPhase section */
- 7D94FCD916DE7D1000F2623B /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 7D00161C177056B700649F27 /* main.js in Resources */,
- 7AC862A61765E9510011611A /* jquery-1.10.1.min.js in Resources */,
- 7AC862A71765E9510011611A /* jquery.fileupload.js in Resources */,
- 7AC862A81765E9510011611A /* jquery.iframe-transport.js in Resources */,
- 7AC862A91765E9510011611A /* jquery.ui.widget.js in Resources */,
- CC1BBC431704935E00A20CBF /* MediaLibrary.mom in Resources */,
- A79246A7170F0ED20036AAF2 /* Default-568h@2x.png in Resources */,
- A79246A8170F0ED20036AAF2 /* Default.png in Resources */,
- A79246A9170F0ED20036AAF2 /* Default@2x.png in Resources */,
- 7D2A34A51805CDBA004078AA /* gradient-cell-ios7@2x.png in Resources */,
- A79246C8170F11DF0036AAF2 /* Localizable.strings in Resources */,
- A7CB0DB11716F72600050CF3 /* PlayingExternally@2x~iphone.png in Resources */,
- A7CB0DB21716F72600050CF3 /* PlayingExternally~iphone.png in Resources */,
- 7DBBF1A8183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib in Resources */,
- A7CB0DB31716F72600050CF3 /* PlayingExternally~ipad.png in Resources */,
- A7CB0DB41716F72600050CF3 /* PlayingExternally@2x~ipad.png in Resources */,
- 7DBBF1A9183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib in Resources */,
- 7DA8B0FB173318E80029698C /* SourceCodePro-Regular.ttf in Resources */,
- A7FF9F3E17428C1900999819 /* DeleteButton.png in Resources */,
- A7FF9F4017428C3800999819 /* DeleteButton@2x.png in Resources */,
- A7035BBE174519600057DFA7 /* iTunesArtwork in Resources */,
- 29125E5617492219003F03E5 /* index.html in Resources */,
- 7D6B08C2174A831900A05173 /* vlc-xmas.png in Resources */,
- 7D6B08C3174A831900A05173 /* vlc-xmas@2x.png in Resources */,
- 7D6B08FC174D773C00A05173 /* Settings.bundle in Resources */,
- 7D5E39CA174FC2F3007DAFA1 /* dropbox-white.png in Resources */,
- 7D5E39CB174FC2F3007DAFA1 /* dropbox-white@2x.png in Resources */,
- 7D07F708175665ED00CDE21C /* navBarBackground@2x.png in Resources */,
- 7D07F709175665ED00CDE21C /* navBarBackground.png in Resources */,
- 7D07F70C175669A800CDE21C /* button.png in Resources */,
- 7D07F70D175669A800CDE21C /* button@2x.png in Resources */,
- 7D07F710175669D800CDE21C /* buttonHighlight.png in Resources */,
- 7DBBF1A4183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib in Resources */,
- 7D07F711175669D800CDE21C /* buttonHighlight@2x.png in Resources */,
- 7D07F71417566C4A00CDE21C /* menuCone.png in Resources */,
- 7D07F71517566C4A00CDE21C /* menuCone@2x.png in Resources */,
- 7D07F71E175673D100CDE21C /* menuBtnBckHighlight@2x.png in Resources */,
- 7DBBF1A7183AB4300009A339 /* VLCNetworkLoginViewController.xib in Resources */,
- 7D07F71F175673D100CDE21C /* menuBtnBck@2x.png in Resources */,
- 7D07F720175673D100CDE21C /* menuBtnBckHighlight.png in Resources */,
- 7D882253185733D500D87252 /* Default-568h@2x~iphone.png in Resources */,
- 7D07F721175673D100CDE21C /* menuBtnBck.png in Resources */,
- 7D07F726175688D300CDE21C /* doneButton.png in Resources */,
- 7D07F727175688D300CDE21C /* doneButton@2x.png in Resources */,
- 7D07F728175688D300CDE21C /* doneButtonHighlight.png in Resources */,
- 7D07F729175688D300CDE21C /* doneButtonHighlight@2x.png in Resources */,
- 7D07F72E175691CC00CDE21C /* backButton.png in Resources */,
- 9BF07090185122AA009B23DD /* audio@4x.png in Resources */,
- 7D07F72F175691CC00CDE21C /* backButton@2x.png in Resources */,
- 7D07F730175691CC00CDE21C /* backButtonHighlight.png in Resources */,
- 9BF0708E185122AA009B23DD /* audio.png in Resources */,
- 7D07F731175691CC00CDE21C /* backButtonHighlight@2x.png in Resources */,
- 7D5DD5C717590ABF001421E3 /* About Contents.html in Resources */,
- 7DE18629175BA9A5006C0173 /* badgeUnread@2x~ipad.png in Resources */,
- 7DE1862C175BA9A9006C0173 /* badgeUnread@2x~iphone.png in Resources */,
- 7DE1862F175BA9AC006C0173 /* badgeUnread~ipad.png in Resources */,
- 7DBBF19B183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib in Resources */,
- 7DE18632175BA9AF006C0173 /* badgeUnread~iphone.png in Resources */,
- 7D47D6F91760CD8700E86BAD /* subtitleIcon.png in Resources */,
- 7D47D6FA1760CD8700E86BAD /* subtitleIcon@2x.png in Resources */,
- 7D47D6FB1760CD8700E86BAD /* videoEffectsIcon.png in Resources */,
- 7D47D6FC1760CD8700E86BAD /* videoEffectsIcon@2x.png in Resources */,
- 7D47D6FD1760CD8700E86BAD /* seekbarBg@2x.png in Resources */,
- 7D47D6FE1760CD8700E86BAD /* slidermaximumTrack.png in Resources */,
- 7D47D6FF1760CD8700E86BAD /* slidermaximumTrack@2x.png in Resources */,
- 7D882256185733D500D87252 /* Default~ipad.png in Resources */,
- 7D47D7001760CD8700E86BAD /* slidermaxValue.png in Resources */,
- 7D47D7011760CD8700E86BAD /* slidermaxValue@2x.png in Resources */,
- 7DBBF19F183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib in Resources */,
- 7D47D7021760CD8700E86BAD /* sliderminiValue.png in Resources */,
- 7D47D7031760CD8700E86BAD /* sliderminiValue@2x.png in Resources */,
- 7D47D7061760CD8700E86BAD /* speedIcon.png in Resources */,
- 7D47D7071760CD8700E86BAD /* speedIcon@2x.png in Resources */,
- 7D47D7081760CD8700E86BAD /* playbackControllerBg@2x.png in Resources */,
- 7D47D7091760CD8700E86BAD /* playbackDoneButton.png in Resources */,
- 7D47D70A1760CD8700E86BAD /* playbackDoneButton@2x.png in Resources */,
- 7D47D70B1760CD8700E86BAD /* playbackDoneButtonHighlight.png in Resources */,
- 7D47D70C1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png in Resources */,
- 7D47D70D1760CD8700E86BAD /* ratioButton.png in Resources */,
- 7D47D70E1760CD8700E86BAD /* ratioButton@2x.png in Resources */,
- 7D47D70F1760CD8700E86BAD /* ratioButtonHighlight.png in Resources */,
- 7D47D7101760CD8700E86BAD /* ratioButtonHighlight@2x.png in Resources */,
- 7D47D7111760CD8700E86BAD /* seekbarBg.png in Resources */,
- 7D47D7131760CD8700E86BAD /* forwardIcon.png in Resources */,
- 7D47D7141760CD8700E86BAD /* forwardIcon@2x.png in Resources */,
- 7D47D7151760CD8700E86BAD /* knobSlider.png in Resources */,
- 7D47D7161760CD8700E86BAD /* knobSlider@2x.png in Resources */,
- 7D47D7191760CD8700E86BAD /* playbackControllerBg.png in Resources */,
- 7D47D71A1760CD8700E86BAD /* playIcon.png in Resources */,
- 7D47D71B1760CD8700E86BAD /* playIcon@2x.png in Resources */,
- 7D47D71C1760CD8700E86BAD /* audioTrackIcon.png in Resources */,
- 7D47D71D1760CD8700E86BAD /* audioTrackIcon@2x.png in Resources */,
- 7D47D71E1760CD8700E86BAD /* backIcon.png in Resources */,
- 7D47D71F1760CD8700E86BAD /* backIcon@2x.png in Resources */,
- 7D47D7201760CD8700E86BAD /* ballSlider.png in Resources */,
- 7D223E1A181EC56E00B36798 /* gradient-cell-ios7-ipad.png in Resources */,
- 7D47D7211760CD8700E86BAD /* ballSlider@2x.png in Resources */,
- 7D88224F185733D500D87252 /* Default-ipad-Landscape.png in Resources */,
- 7DBBF19D183AB4300009A339 /* VLCCloudStorageTableViewController.xib in Resources */,
- 7D47D7271760D77C00E86BAD /* pauseIcon.png in Resources */,
- 7D47D7281760D77C00E86BAD /* pauseIcon@2x.png in Resources */,
- 7D47D72B1760E3A000E86BAD /* sliderminimumTrack.png in Resources */,
- 7D47D72C1760E3A000E86BAD /* sliderminimumTrack@2x.png in Resources */,
- 7DBBF1AB183AB4300009A339 /* VLCPlaylistTableViewCell.xib in Resources */,
- 7D6BD1841762026700AD311A /* thumbOverlayPhone@2x.png in Resources */,
- 7D6BD1851762026700AD311A /* thumbOverlay@2x.png in Resources */,
- 7D882257185733D500D87252 /* Default-Portrait@2x~ipad.png in Resources */,
- 7DBBF19E183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib in Resources */,
- 7D6BD1861762026700AD311A /* thumbOverlayPhone.png in Resources */,
- 7D6BD1871762026700AD311A /* thumbOverlay.png in Resources */,
- 7D1AC3041762996100BD2EB5 /* resetIcon.png in Resources */,
- 7D1AC3051762996100BD2EB5 /* resetIcon@2x.png in Resources */,
- 7D1AC30817629AB600BD2EB5 /* ratioIcon.png in Resources */,
- 7D1AC30917629AB600BD2EB5 /* ratioIcon@2x.png in Resources */,
- 7D1AC30C17629D4600BD2EB5 /* title.png in Resources */,
- 7DBBF1A1183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib in Resources */,
- 7D1AC30D17629D4600BD2EB5 /* title@2x.png in Resources */,
- 7DEB3B5D17647B240038FC70 /* bottomBlackBar@2x.png in Resources */,
- 7DBBF1AC183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib in Resources */,
- 7DEB3B5E17647B240038FC70 /* bottomBlackBar.png in Resources */,
- 7DBBF19C183AB4300009A339 /* VLCDownloadViewController.xib in Resources */,
- 7DEB3B6017647DE30038FC70 /* iTunesArtwork@2x in Resources */,
- 7DEB3B6217647E230038FC70 /* Icon@2x.png in Resources */,
- 7D882258185733D500D87252 /* Default~iphone.png in Resources */,
- 7DBBF1A3183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib in Resources */,
- 7DEB3B6417647E370038FC70 /* Icon.png in Resources */,
- 7DEB3B6617647E440038FC70 /* Icon-72.png in Resources */,
- 7DBBF1A5183AB4300009A339 /* VLCMovieViewController~ipad.xib in Resources */,
- 7DEB3B6817647E480038FC70 /* Icon-72@2x.png in Resources */,
- 7DEB3B6D17647EC10038FC70 /* Icon-Small-50.png in Resources */,
- 7DEB3B6E17647EC10038FC70 /* Icon-Small-50@2x.png in Resources */,
- 7DEB3B6F17647EC10038FC70 /* Icon-Small.png in Resources */,
- 7DEB3B7017647EC10038FC70 /* Icon-Small@2x.png in Resources */,
- 7DEB3B7217649BEB0038FC70 /* Icon-512.png in Resources */,
- 7DEB3B7517649F2C0038FC70 /* menuButton.png in Resources */,
- 7DEB3B7617649F2C0038FC70 /* menuButton@2x.png in Resources */,
- 7DEB3B791764A4040038FC70 /* input@2x.png in Resources */,
- 7DEB3B7A1764A4040038FC70 /* input.png in Resources */,
- 7DBBF198183AB4300009A339 /* VLCAboutViewController~ipad.xib in Resources */,
- 7DBBF1A6183AB4300009A339 /* VLCMovieViewController~iphone.xib in Resources */,
- 7DEB3B851764A4F40038FC70 /* movie@2x.png in Resources */,
- 7DEB3B861764A4F40038FC70 /* movie@4x.png in Resources */,
- 7DEB3B871764A4F40038FC70 /* blank@4x.png in Resources */,
- 7DEB3B881764A4F40038FC70 /* folder.png in Resources */,
- 7DEB3B891764A4F40038FC70 /* folder@2x.png in Resources */,
- 7DEB3B8A1764A4F40038FC70 /* folder@4x.png in Resources */,
- 7DEB3B8B1764A4F40038FC70 /* movie.png in Resources */,
- 7DEB3B8C1764A4F40038FC70 /* blank.png in Resources */,
- 7DEB3B8D1764A4F40038FC70 /* blank@2x.png in Resources */,
- 7D223E1B181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png in Resources */,
- 7AC8629D1765DC560011611A /* style.css in Resources */,
- 7DF1166C176CC69A009EC05C /* volumeballslider.png in Resources */,
- 7D882255185733D500D87252 /* Default-Landscape@2x~ipad.png in Resources */,
- 7DF1166D176CC69A009EC05C /* volumeballslider@2x.png in Resources */,
- A7990064176E9352009E8267 /* libraryBackground.png in Resources */,
- 7DD2A3A9179C04A7003EB537 /* OpenSans-Regular.ttf in Resources */,
- 7D882250185733D500D87252 /* Default-ipad-Landscape@2x.png in Resources */,
- 7D2A34A41805CDBA004078AA /* gradient-cell-ios7.png in Resources */,
- 7DBBF199183AB4300009A339 /* VLCAboutViewController~iphone.xib in Resources */,
- 7DC72D5E17B7E7C7008A26D0 /* download@4x.png in Resources */,
- 7DC72D5F17B7E7C7008A26D0 /* download.png in Resources */,
- 7DC72D6017B7E7C7008A26D0 /* download@2x.png in Resources */,
- 7D16035D17BF9FE600F29B34 /* sudHeaderBg.png in Resources */,
- 7D16035E17BF9FE600F29B34 /* sudHeaderBg@2x.png in Resources */,
- 7DBBF1A0183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib in Resources */,
- 7D16035F17BF9FE600F29B34 /* headerSidebar@2x.png in Resources */,
- 7D16036017BF9FE600F29B34 /* headerSidebar.png in Resources */,
- 7D0699D617CB1FAE00713BEB /* Settings@2x.png in Resources */,
- 7D711ADA18227A490094E4F0 /* GTMOAuth2ViewTouch.xib in Resources */,
- 7D0699D717CB1FAE00713BEB /* TVShows.png in Resources */,
- 7D0699D817CB1FAE00713BEB /* TVShows@2x.png in Resources */,
- 7D882259185733D500D87252 /* Default@2x~iphone.png in Resources */,
- 7D0699D917CB1FAE00713BEB /* WifiUp.png in Resources */,
- 7D0699DA17CB1FAE00713BEB /* WifiUp@2x.png in Resources */,
- 7D0699DB17CB1FAE00713BEB /* WifiUpOn.png in Resources */,
- 7D0699DC17CB1FAE00713BEB /* WifiUpOn@2x.png in Resources */,
- 7D0699DD17CB1FAE00713BEB /* Dropbox@2x.png in Resources */,
- 7DBBF19A183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib in Resources */,
- 9BF0708F185122AA009B23DD /* audio@2x.png in Resources */,
- 7D0699DE17CB1FAE00713BEB /* Local.png in Resources */,
- 7D882251185733D500D87252 /* Default-ipad-Portrait.png in Resources */,
- 7D0699DF17CB1FAE00713BEB /* Local@2x.png in Resources */,
- 7D0699E017CB1FAE00713BEB /* MusicAlbums.png in Resources */,
- 7D0699E117CB1FAE00713BEB /* MusicAlbums@2x.png in Resources */,
- 7D882252185733D500D87252 /* Default-ipad-Portrait@2x.png in Resources */,
- 7D0699E217CB1FAE00713BEB /* OpenNetStream.png in Resources */,
- 7D882254185733D500D87252 /* Default-Landscape~ipad.png in Resources */,
- 7D0699E317CB1FAE00713BEB /* OpenNetStream@2x.png in Resources */,
- 7D0699E417CB1FAE00713BEB /* Settings.png in Resources */,
- 7D0699E517CB1FAE00713BEB /* About.png in Resources */,
- 7D0699E617CB1FAE00713BEB /* About@2x.png in Resources */,
- 7D0699E717CB1FAE00713BEB /* AllFiles.png in Resources */,
- 7D0699E817CB1FAE00713BEB /* AllFiles@2x.png in Resources */,
- 7D0699E917CB1FAE00713BEB /* Downloads.png in Resources */,
- 7D0699EA17CB1FAE00713BEB /* Downloads@2x.png in Resources */,
- 7D0699EB17CB1FAE00713BEB /* Dropbox.png in Resources */,
- 7D514D4117F779C6007B960C /* Drive@2x.png in Resources */,
- 7D514D4217F779C6007B960C /* DriveWhite.png in Resources */,
- 7D514D4317F779C6007B960C /* DriveWhite@2x.png in Resources */,
- 7D514D4417F779C6007B960C /* Drive.png in Resources */,
- 7D3784DF183A99D2009EE944 /* papasscode_background.png in Resources */,
- 7D3784E0183A99D2009EE944 /* papasscode_background@2x.png in Resources */,
- 7D3784E1183A99D2009EE944 /* papasscode_failed_bg.png in Resources */,
- 7D3784E2183A99D2009EE944 /* papasscode_failed_bg@2x.png in Resources */,
- 7D3784E3183A99D2009EE944 /* papasscode_marker.png in Resources */,
- 7DBBF1AA183AB4300009A339 /* VLCPlaylistGridView.xib in Resources */,
- 7D3784E4183A99D2009EE944 /* papasscode_marker@2x.png in Resources */,
- 7D3784EC183A9A1E009EE944 /* VLC for iOS-Info.plist in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- 7D94FCD716DE7D1000F2623B /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 9BE4D1CE183D76950006346C /* VLCCloudStorageTableViewCell.m in Sources */,
- 7DADC55F1704FABF001DAC63 /* OBSlider.m in Sources */,
- 2915540117490A1E00B86CAD /* DDData.m in Sources */,
- 2915540217490A1E00B86CAD /* DDNumber.m in Sources */,
- 2915540317490A1E00B86CAD /* DDRange.m in Sources */,
- 2915540417490A1E00B86CAD /* HTTPAuthenticationRequest.m in Sources */,
- 2915540517490A1E00B86CAD /* HTTPConnection.m in Sources */,
- 2915540617490A1E00B86CAD /* HTTPMessage.m in Sources */,
- 2915540717490A1E00B86CAD /* HTTPServer.m in Sources */,
- 2915540817490A1E00B86CAD /* MultipartFormDataParser.m in Sources */,
- 2915540917490A1E00B86CAD /* MultipartMessageHeader.m in Sources */,
- 2915540A17490A1E00B86CAD /* MultipartMessageHeaderField.m in Sources */,
- 2915542217490A9C00B86CAD /* GCDAsyncSocket.m in Sources */,
- 2915542417490A9C00B86CAD /* DDAbstractDatabaseLogger.m in Sources */,
- 2915542517490A9C00B86CAD /* DDASLLogger.m in Sources */,
- 2915542617490A9C00B86CAD /* DDFileLogger.m in Sources */,
- 2915542717490A9C00B86CAD /* DDLog.m in Sources */,
- 2915542817490A9C00B86CAD /* DDTTYLogger.m in Sources */,
- 2915542917490A9C00B86CAD /* ContextFilterLogFormatter.m in Sources */,
- 2915542A17490A9C00B86CAD /* DispatchQueueLogFormatter.m in Sources */,
- 2915543B17490B9C00B86CAD /* HTTPAsyncFileResponse.m in Sources */,
- 2915543C17490B9C00B86CAD /* HTTPDataResponse.m in Sources */,
- 2915543D17490B9C00B86CAD /* HTTPDynamicFileResponse.m in Sources */,
- 2915543E17490B9C00B86CAD /* HTTPErrorResponse.m in Sources */,
- 2915543F17490B9C00B86CAD /* HTTPFileResponse.m in Sources */,
- 2915544017490B9C00B86CAD /* HTTPRedirectResponse.m in Sources */,
- 2915544117490B9C00B86CAD /* WebSocket.m in Sources */,
- 7D6B08EB174D65B500A05173 /* IASKAppSettingsViewController.m in Sources */,
- 7D6B08EC174D65B500A05173 /* IASKAppSettingsWebViewController.m in Sources */,
- 7D6B08ED174D65B500A05173 /* IASKSpecifierValuesViewController.m in Sources */,
- 7D6B08EE174D65B500A05173 /* IASKSettingsReader.m in Sources */,
- 7D6B08EF174D65B500A05173 /* IASKSettingsStore.m in Sources */,
- 7D6B08F0174D65B500A05173 /* IASKSettingsStoreFile.m in Sources */,
- 7D6B08F1174D65B500A05173 /* IASKSettingsStoreUserDefaults.m in Sources */,
- 7D6B08F2174D65B500A05173 /* IASKSpecifier.m in Sources */,
- 7D6B08F3174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m in Sources */,
- 7D6B08F4174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m in Sources */,
- 7D6B08F5174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m in Sources */,
- 9B5BEF2917FBAEA50016F9CB /* GTLDrive_Sources.m in Sources */,
- 7D6B08F6174D65B500A05173 /* IASKSlider.m in Sources */,
- 7D6B08F7174D65B500A05173 /* IASKSwitch.m in Sources */,
- 7D6B08F8174D65B500A05173 /* IASKTextField.m in Sources */,
- 7D31001D17B64AE100E6516D /* GHRevealViewController.m in Sources */,
- 7DC72D6317B7ED24008A26D0 /* WhiteRaccoon.m in Sources */,
- 7D37848F183A98B6009EE944 /* VLCMovieViewController.m in Sources */,
- 7D378492183A98BF009EE944 /* VLCExternalDisplayController.m in Sources */,
- 7D378499183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m in Sources */,
- 7D37849A183A98D1009EE944 /* VLCPlaylistTableViewCell.m in Sources */,
- 7D37849B183A98D1009EE944 /* VLCPlaylistViewController.m in Sources */,
- 7D37849E183A98DD009EE944 /* VLCThumbnailsCache.m in Sources */,
- 7D3784A1183A98EB009EE944 /* VLCBugreporter.m in Sources */,
- 7D3784A6183A98F5009EE944 /* VLCAboutViewController.m in Sources */,
- 7D3784A7183A98F5009EE944 /* VLCSettingsController.m in Sources */,
- 7D3784AD183A9906009EE944 /* VLCDropboxController.m in Sources */,
- 7D3784AE183A9906009EE944 /* VLCDropboxTableViewController.m in Sources */,
- 7D3784BE183A9938009EE944 /* UIBarButtonItem+Theme.m in Sources */,
- 7D3784BF183A9938009EE944 /* UINavigationController+Theme.m in Sources */,
- 7DBBF182183AB3B80009A339 /* VLCAppDelegate.m in Sources */,
- 7D3784C0183A9938009EE944 /* VLCLinearProgressIndicator.m in Sources */,
- 7D3784C1183A9938009EE944 /* VLCMenuButton.m in Sources */,
- 7D3784C2183A9938009EE944 /* VLCSlider.m in Sources */,
- 7D3784C3183A9938009EE944 /* VLCStatusLabel.m in Sources */,
- 7D3784C8183A9972009EE944 /* NSString+SupportedMedia.m in Sources */,
- 7D3784C9183A9972009EE944 /* UIDevice+SpeedCategory.m in Sources */,
- 7D3784CC183A99BA009EE944 /* PAPasscodeViewController.m in Sources */,
- 7D3784E7183A99E1009EE944 /* Reachability.m in Sources */,
- 7D3784E9183A9A15009EE944 /* main.m in Sources */,
- 7D30F3C2183AB24C00FFC021 /* VLCHTTPConnection.m in Sources */,
- 7D30F3C3183AB24C00FFC021 /* VLCHTTPFileDownloader.m in Sources */,
- 7D30F3C4183AB24C00FFC021 /* VLCHTTPUploaderController.m in Sources */,
- 7D30F3C7183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m in Sources */,
- 7D30F3CA183AB27A00FFC021 /* VLCDownloadViewController.m in Sources */,
- 7D30F3CD183AB29300FFC021 /* VLCMenuTableViewController.m in Sources */,
- 7D30F3D0183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m in Sources */,
- 7D30F3D7183AB2F100FFC021 /* VLCLocalNetworkListCell.m in Sources */,
- 7D30F3D8183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m in Sources */,
- 7D30F3D9183AB2F100FFC021 /* VLCLocalServerListViewController.m in Sources */,
- 7D30F3DC183AB2F900FFC021 /* VLCNetworkLoginViewController.m in Sources */,
- 7D30F3DF183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m in Sources */,
- 7D30F3E2183AB33200FFC021 /* VLCSidebarViewCell.m in Sources */,
- 7D30F3EA183AB34200FFC021 /* VLCGoogleDriveController.m in Sources */,
- 9B088308183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m in Sources */,
- 7D30F3EC183AB34200FFC021 /* VLCGoogleDriveTableViewController.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXVariantGroup section */
- 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */ = {
- isa = PBXVariantGroup;
- children = (
- 7DE1862A175BA9A5006C0173 /* en */,
- 7DE18635175BA9EB006C0173 /* ru */,
- 7DE18639175BAEAF006C0173 /* de */,
- 7DE1863A175BAEB0006C0173 /* fr */,
- 7DE1863B175BAEB0006C0173 /* it */,
- 7DE1863C175BAEB1006C0173 /* ja */,
- 7D4BE734175F82CA00861CD4 /* fi */,
- 7D7DA5301768A53200C7E95D /* id */,
- 7DC222781773AB0900371B5C /* es */,
- 7D5C204917999A64004F9443 /* da */,
- 7D1AB27D179C98BF004CC271 /* he */,
- 7D1AB282179C98CD004CC271 /* nl */,
- 7D1AB287179C98D4004CC271 /* sk */,
- 7D1AB28C179C98DC004CC271 /* tr */,
- 7D1AB291179C98E4004CC271 /* uk */,
- 7D1AB296179C98F4004CC271 /* vi */,
- 7D1AB2A5179C99AE004CC271 /* zh-Hans */,
- CC87147A17A56C05003C7383 /* mr */,
- CC87147F17A56C61003C7383 /* gl */,
- CC87148417A56C85003C7383 /* ca */,
- 7D4C484517ACF982008D228B /* bs */,
- CCBDA19117B2BEB500489D71 /* pt */,
- 7D19492C17C661A300959800 /* el */,
- 7D9B6B0917C9625F00F9425D /* sl */,
- CCAF837F17DE46D800E3578F /* pl */,
- CC75BE3B17DF4BBD00FAC19D /* ar */,
- CC75BE4017DF744400FAC19D /* ko */,
- 7D2AEDE117FB775900B5281E /* sv */,
- 7D2AEDE617FB785200B5281E /* hu */,
- );
- name = "badgeUnread@2x~ipad.png";
- sourceTree = "<group>";
- };
- 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */ = {
- isa = PBXVariantGroup;
- children = (
- 7DE1862D175BA9A9006C0173 /* en */,
- 7DE18637175BA9F9006C0173 /* ru */,
- 7DE1863D175BAEB5006C0173 /* de */,
- 7DE1863E175BAEB6006C0173 /* fr */,
- 7DE1863F175BAEB7006C0173 /* it */,
- 7DE18640175BAEB7006C0173 /* ja */,
- 7D4BE735175F82CA00861CD4 /* fi */,
- 7D7DA5311768A53200C7E95D /* id */,
- 7DC222791773AB0900371B5C /* es */,
- 7D5C204A17999A64004F9443 /* da */,
- 7D1AB27E179C98BF004CC271 /* he */,
- 7D1AB283179C98CD004CC271 /* nl */,
- 7D1AB288179C98D4004CC271 /* sk */,
- 7D1AB28D179C98DC004CC271 /* tr */,
- 7D1AB292179C98E4004CC271 /* uk */,
- 7D1AB297179C98F4004CC271 /* vi */,
- 7D1AB2A6179C99AE004CC271 /* zh-Hans */,
- CC87147B17A56C05003C7383 /* mr */,
- CC87148017A56C61003C7383 /* gl */,
- CC87148517A56C85003C7383 /* ca */,
- 7D4C484617ACF982008D228B /* bs */,
- CCBDA19217B2BEB500489D71 /* pt */,
- 7D19492D17C661A300959800 /* el */,
- 7D9B6B0A17C9626000F9425D /* sl */,
- CCAF838017DE46D800E3578F /* pl */,
- CC75BE3C17DF4BBD00FAC19D /* ar */,
- CC75BE4117DF744500FAC19D /* ko */,
- 7D2AEDE217FB775900B5281E /* sv */,
- 7D2AEDE717FB785200B5281E /* hu */,
- );
- name = "badgeUnread@2x~iphone.png";
- sourceTree = "<group>";
- };
- 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */ = {
- isa = PBXVariantGroup;
- children = (
- 7DE18630175BA9AC006C0173 /* en */,
- 7DE18636175BA9F4006C0173 /* ru */,
- 7DE18645175BAEBF006C0173 /* de */,
- 7DE18646175BAEC0006C0173 /* fr */,
- 7DE18647175BAEC1006C0173 /* it */,
- 7DE18648175BAEC2006C0173 /* ja */,
- 7D4BE736175F82CA00861CD4 /* fi */,
- 7D7DA5321768A53200C7E95D /* id */,
- 7DC2227A1773AB0900371B5C /* es */,
- 7D5C204B17999A64004F9443 /* da */,
- 7D1AB27F179C98C0004CC271 /* he */,
- 7D1AB284179C98CD004CC271 /* nl */,
- 7D1AB289179C98D4004CC271 /* sk */,
- 7D1AB28E179C98DC004CC271 /* tr */,
- 7D1AB293179C98E4004CC271 /* uk */,
- 7D1AB298179C98F4004CC271 /* vi */,
- 7D1AB2A7179C99AE004CC271 /* zh-Hans */,
- CC87147C17A56C05003C7383 /* mr */,
- CC87148117A56C61003C7383 /* gl */,
- CC87148617A56C85003C7383 /* ca */,
- 7D4C484717ACF982008D228B /* bs */,
- CCBDA19317B2BEB600489D71 /* pt */,
- 7D19492E17C661A300959800 /* el */,
- 7D9B6B0B17C9626000F9425D /* sl */,
- CCAF838117DE46D800E3578F /* pl */,
- CC75BE3D17DF4BBD00FAC19D /* ar */,
- CC75BE4217DF744500FAC19D /* ko */,
- 7D2AEDE317FB775900B5281E /* sv */,
- 7D2AEDE817FB785200B5281E /* hu */,
- );
- name = "badgeUnread~ipad.png";
- sourceTree = "<group>";
- };
- 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */ = {
- isa = PBXVariantGroup;
- children = (
- 7DE18633175BA9AF006C0173 /* en */,
- 7DE18638175BA9FC006C0173 /* ru */,
- 7DE18641175BAEBA006C0173 /* de */,
- 7DE18642175BAEBB006C0173 /* it */,
- 7DE18643175BAEBC006C0173 /* fr */,
- 7DE18644175BAEBD006C0173 /* ja */,
- 7D4BE737175F82CA00861CD4 /* fi */,
- 7D7DA5331768A53200C7E95D /* id */,
- 7DC2227B1773AB0900371B5C /* es */,
- 7D5C204C17999A64004F9443 /* da */,
- 7D1AB280179C98C0004CC271 /* he */,
- 7D1AB285179C98CD004CC271 /* nl */,
- 7D1AB28A179C98D4004CC271 /* sk */,
- 7D1AB28F179C98DC004CC271 /* tr */,
- 7D1AB294179C98E4004CC271 /* uk */,
- 7D1AB299179C98F4004CC271 /* vi */,
- 7D1AB2A8179C99AE004CC271 /* zh-Hans */,
- CC87147D17A56C05003C7383 /* mr */,
- CC87148217A56C61003C7383 /* gl */,
- CC87148717A56C85003C7383 /* ca */,
- 7D4C484817ACF982008D228B /* bs */,
- CCBDA19417B2BEB600489D71 /* pt */,
- 7D19492F17C661A300959800 /* el */,
- 7D9B6B0C17C9626000F9425D /* sl */,
- CCAF838217DE46D800E3578F /* pl */,
- CC75BE3E17DF4BBD00FAC19D /* ar */,
- CC75BE4317DF744500FAC19D /* ko */,
- 7D2AEDE417FB775900B5281E /* sv */,
- 7D2AEDE917FB785200B5281E /* hu */,
- );
- name = "badgeUnread~iphone.png";
- sourceTree = "<group>";
- };
- A79246C6170F11DF0036AAF2 /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- A79246C7170F11DF0036AAF2 /* en */,
- A79246C9170F11E40036AAF2 /* ru */,
- 7DC87AEF17413634009DC250 /* de */,
- 7DC87AF017413A17009DC250 /* fr */,
- 7D6D13591758D1A00007EA9A /* it */,
- 7D49E178175A47A4002D1450 /* ja */,
- 7D4BE733175F82CA00861CD4 /* fi */,
- 7D7DA52F1768A53200C7E95D /* id */,
- 7DC222771773AB0900371B5C /* es */,
- 7D5C204D17999A74004F9443 /* da */,
- 7D1AB27C179C98BF004CC271 /* he */,
- 7D1AB281179C98CD004CC271 /* nl */,
- 7D1AB286179C98D4004CC271 /* sk */,
- 7D1AB28B179C98DC004CC271 /* tr */,
- 7D1AB290179C98E3004CC271 /* uk */,
- 7D1AB295179C98F4004CC271 /* vi */,
- 7D1AB2A4179C99AE004CC271 /* zh-Hans */,
- CC87147917A56C05003C7383 /* mr */,
- CC87147E17A56C61003C7383 /* gl */,
- CC87148317A56C85003C7383 /* ca */,
- 7D4C484417ACF982008D228B /* bs */,
- CCBDA19017B2BEB500489D71 /* pt */,
- 7D19492B17C661A300959800 /* el */,
- 7D9B6B0817C9625F00F9425D /* sl */,
- CCAF837E17DE46D800E3578F /* pl */,
- CC75BE3A17DF4BBD00FAC19D /* ar */,
- CC75BE3F17DF744400FAC19D /* ko */,
- 7D2AEDE017FB775900B5281E /* sv */,
- 7D2AEDE517FB785100B5281E /* hu */,
- );
- name = Localizable.strings;
- sourceTree = "<group>";
- };
- /* End PBXVariantGroup section */
- /* Begin XCBuildConfiguration section */
- 7D94FD0816DE7D1100F2623B /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 6.1;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 7D94FD0916DE7D1100F2623B /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 6.1;
- OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 7D94FD0B16DE7D1100F2623B /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_ENABLE_OBJC_ARC = YES;
- COPY_PHASE_STRIP = NO;
- DEAD_CODE_STRIPPING = NO;
- EXCLUDED_SOURCE_FILE_NAMES = "";
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "\"$(SRCROOT)/ImportedSources/Dropbox\"",
- );
- GCC_C_LANGUAGE_STANDARD = c99;
- GCC_OPTIMIZATION_LEVEL = 2;
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = "Sources/VLC for iOS-Prefix.pch";
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/External/MobileVLCKit/include",
- "$(SRCROOT)/External/MediaLibraryKit/include",
- "$(SRCROOT)/ImportedSources/upnpx/src/api",
- "$(SRCROOT)/ImportedSources/upnpx/src/port/ios",
- "$(SRCROOT)/ImportedSources/GDrive/**",
- );
- INFOPLIST_FILE = "Sources/VLC for iOS-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 6.1;
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "\"$(SRCROOT)/External/MediaLibraryKit\"",
- "\"$(SRCROOT)/External/MobileVLCKit\"",
- "\"$(SRCROOT)/External/upnpx\"",
- "\"$(SRCROOT)/External/gtl\"",
- "\"$(SDKROOT)/usr/lib/system\"",
- );
- ONLY_ACTIVE_ARCH = YES;
- OTHER_LDFLAGS = "-Wl,-no_pie";
- PRODUCT_NAME = "VLC for iOS";
- };
- name = Debug;
- };
- 7D94FD0C16DE7D1100F2623B /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_ENABLE_OBJC_ARC = YES;
- CODE_SIGN_IDENTITY = "iPhone Distribution";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
- COPY_PHASE_STRIP = YES;
- DEAD_CODE_STRIPPING = NO;
- EXCLUDED_SOURCE_FILE_NAMES = "";
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "\"$(SRCROOT)/ImportedSources/Dropbox\"",
- );
- GCC_C_LANGUAGE_STANDARD = c99;
- GCC_OPTIMIZATION_LEVEL = 3;
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = "Sources/VLC for iOS-Prefix.pch";
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/External/MobileVLCKit/include",
- "$(SRCROOT)/External/MediaLibraryKit/include",
- "$(SRCROOT)/ImportedSources/upnpx/src/api",
- "$(SRCROOT)/ImportedSources/upnpx/src/port/ios",
- "$(SRCROOT)/ImportedSources/GDrive/**",
- );
- INFOPLIST_FILE = "Sources/VLC for iOS-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 6.1;
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "\"$(SRCROOT)/External/MediaLibraryKit\"",
- "\"$(SRCROOT)/External/MobileVLCKit\"",
- "\"$(SRCROOT)/External/upnpx\"",
- "\"$(SRCROOT)/External/gtl\"",
- "\"$(SDKROOT)/usr/lib/system\"",
- );
- ONLY_ACTIVE_ARCH = NO;
- OTHER_LDFLAGS = "-Wl,-no_pie";
- PRODUCT_NAME = "VLC for iOS";
- PROVISIONING_PROFILE = "";
- "PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
- };
- name = Release;
- };
- A7035BBF174519E40057DFA7 /* Distribution */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
- COPY_PHASE_STRIP = YES;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 6.1;
- OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
- SDKROOT = iphoneos;
- TARGETED_DEVICE_FAMILY = "1,2";
- VALIDATE_PRODUCT = YES;
- };
- name = Distribution;
- };
- A7035BC0174519E40057DFA7 /* Distribution */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- CLANG_ENABLE_OBJC_ARC = YES;
- CODE_SIGN_IDENTITY = "iPhone Distribution";
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
- COPY_PHASE_STRIP = YES;
- DEAD_CODE_STRIPPING = NO;
- EXCLUDED_SOURCE_FILE_NAMES = "iTunesArtwork*";
- FRAMEWORK_SEARCH_PATHS = (
- "$(inherited)",
- "\"$(SRCROOT)/ImportedSources/Dropbox\"",
- );
- GCC_C_LANGUAGE_STANDARD = c99;
- GCC_OPTIMIZATION_LEVEL = 3;
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = "Sources/VLC for iOS-Prefix.pch";
- HEADER_SEARCH_PATHS = (
- "$(SRCROOT)/External/MobileVLCKit/include",
- "$(SRCROOT)/External/MediaLibraryKit/include",
- "$(SRCROOT)/ImportedSources/upnpx/src/api",
- "$(SRCROOT)/ImportedSources/upnpx/src/port/ios",
- "$(SRCROOT)/ImportedSources/GDrive/**",
- );
- INFOPLIST_FILE = "Sources/VLC for iOS-Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 6.1;
- LIBRARY_SEARCH_PATHS = (
- "$(inherited)",
- "\"$(SRCROOT)/External/MediaLibraryKit\"",
- "\"$(SRCROOT)/External/MobileVLCKit\"",
- "\"$(SRCROOT)/External/upnpx\"",
- "\"$(SRCROOT)/External/gtl\"",
- "\"$(SDKROOT)/usr/lib/system\"",
- );
- ONLY_ACTIVE_ARCH = NO;
- OTHER_LDFLAGS = "-Wl,-no_pie";
- PRODUCT_NAME = "VLC for iOS";
- PROVISIONING_PROFILE = "";
- "PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
- };
- name = Distribution;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- 7D94FCD616DE7D1000F2623B /* Build configuration list for PBXProject "VLC for iOS" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 7D94FD0816DE7D1100F2623B /* Debug */,
- 7D94FD0916DE7D1100F2623B /* Release */,
- A7035BBF174519E40057DFA7 /* Distribution */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 7D94FD0A16DE7D1100F2623B /* Build configuration list for PBXNativeTarget "vlc-ios" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 7D94FD0B16DE7D1100F2623B /* Debug */,
- 7D94FD0C16DE7D1100F2623B /* Release */,
- A7035BC0174519E40057DFA7 /* Distribution */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- /* End XCConfigurationList section */
- };
- rootObject = 7D94FCD316DE7D1000F2623B /* Project object */;
- }
|