project.pbxproj 239 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 29125E5617492219003F03E5 /* index.html in Resources */ = {isa = PBXBuildFile; fileRef = 29125E5417492219003F03E5 /* index.html */; };
  10. 2915540117490A1E00B86CAD /* DDData.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553EB17490A1E00B86CAD /* DDData.m */; };
  11. 2915540217490A1E00B86CAD /* DDNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553ED17490A1E00B86CAD /* DDNumber.m */; };
  12. 2915540317490A1E00B86CAD /* DDRange.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553EF17490A1E00B86CAD /* DDRange.m */; };
  13. 2915540417490A1E00B86CAD /* HTTPAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F117490A1E00B86CAD /* HTTPAuthenticationRequest.m */; };
  14. 2915540517490A1E00B86CAD /* HTTPConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F317490A1E00B86CAD /* HTTPConnection.m */; };
  15. 2915540617490A1E00B86CAD /* HTTPMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F617490A1E00B86CAD /* HTTPMessage.m */; };
  16. 2915540717490A1E00B86CAD /* HTTPServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F917490A1E00B86CAD /* HTTPServer.m */; };
  17. 2915540817490A1E00B86CAD /* MultipartFormDataParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553FC17490A1E00B86CAD /* MultipartFormDataParser.m */; };
  18. 2915540917490A1E00B86CAD /* MultipartMessageHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553FE17490A1E00B86CAD /* MultipartMessageHeader.m */; };
  19. 2915540A17490A1E00B86CAD /* MultipartMessageHeaderField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915540017490A1E00B86CAD /* MultipartMessageHeaderField.m */; };
  20. 2915542217490A9C00B86CAD /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915540E17490A9C00B86CAD /* GCDAsyncSocket.m */; };
  21. 2915542417490A9C00B86CAD /* DDAbstractDatabaseLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541217490A9C00B86CAD /* DDAbstractDatabaseLogger.m */; };
  22. 2915542517490A9C00B86CAD /* DDASLLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541417490A9C00B86CAD /* DDASLLogger.m */; };
  23. 2915542617490A9C00B86CAD /* DDFileLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541617490A9C00B86CAD /* DDFileLogger.m */; };
  24. 2915542717490A9C00B86CAD /* DDLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541817490A9C00B86CAD /* DDLog.m */; };
  25. 2915542817490A9C00B86CAD /* DDTTYLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541A17490A9C00B86CAD /* DDTTYLogger.m */; };
  26. 2915542917490A9C00B86CAD /* ContextFilterLogFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541D17490A9C00B86CAD /* ContextFilterLogFormatter.m */; };
  27. 2915542A17490A9C00B86CAD /* DispatchQueueLogFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541F17490A9C00B86CAD /* DispatchQueueLogFormatter.m */; };
  28. 2915543B17490B9C00B86CAD /* HTTPAsyncFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915542E17490B9C00B86CAD /* HTTPAsyncFileResponse.m */; };
  29. 2915543C17490B9C00B86CAD /* HTTPDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543017490B9C00B86CAD /* HTTPDataResponse.m */; };
  30. 2915543D17490B9C00B86CAD /* HTTPDynamicFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543217490B9C00B86CAD /* HTTPDynamicFileResponse.m */; };
  31. 2915543E17490B9C00B86CAD /* HTTPErrorResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543417490B9C00B86CAD /* HTTPErrorResponse.m */; };
  32. 2915543F17490B9C00B86CAD /* HTTPFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543617490B9C00B86CAD /* HTTPFileResponse.m */; };
  33. 2915544017490B9C00B86CAD /* HTTPRedirectResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543817490B9C00B86CAD /* HTTPRedirectResponse.m */; };
  34. 2915544117490B9C00B86CAD /* WebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543A17490B9C00B86CAD /* WebSocket.m */; };
  35. 2915544317490D4A00B86CAD /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2915544217490D4A00B86CAD /* Security.framework */; };
  36. 293DF2F417494F8200BB880F /* DropboxSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D05ADEA174945CE0087550C /* DropboxSDK.framework */; };
  37. 7AC8629D1765DC560011611A /* style.css in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629B1765DC560011611A /* style.css */; };
  38. 7AC862A61765E9510011611A /* jquery-1.10.1.min.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */; };
  39. 7AC862A71765E9510011611A /* jquery.fileupload.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629F1765E90C0011611A /* jquery.fileupload.js */; };
  40. 7AC862A81765E9510011611A /* jquery.iframe-transport.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */; };
  41. 7AC862A91765E9510011611A /* jquery.ui.widget.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC862A11765E90C0011611A /* jquery.ui.widget.js */; };
  42. 7D00161C177056B700649F27 /* main.js in Resources */ = {isa = PBXBuildFile; fileRef = 7D00161A17704DAC00649F27 /* main.js */; };
  43. 7D0699D617CB1FAE00713BEB /* Settings@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C017CB1FAE00713BEB /* Settings@2x.png */; };
  44. 7D0699D717CB1FAE00713BEB /* TVShows.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C117CB1FAE00713BEB /* TVShows.png */; };
  45. 7D0699D817CB1FAE00713BEB /* TVShows@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C217CB1FAE00713BEB /* TVShows@2x.png */; };
  46. 7D0699D917CB1FAE00713BEB /* WifiUp.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C317CB1FAE00713BEB /* WifiUp.png */; };
  47. 7D0699DA17CB1FAE00713BEB /* WifiUp@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C417CB1FAE00713BEB /* WifiUp@2x.png */; };
  48. 7D0699DB17CB1FAE00713BEB /* WifiUpOn.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C517CB1FAE00713BEB /* WifiUpOn.png */; };
  49. 7D0699DC17CB1FAE00713BEB /* WifiUpOn@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C617CB1FAE00713BEB /* WifiUpOn@2x.png */; };
  50. 7D0699DD17CB1FAE00713BEB /* Dropbox@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C717CB1FAE00713BEB /* Dropbox@2x.png */; };
  51. 7D0699DE17CB1FAE00713BEB /* Local.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C817CB1FAE00713BEB /* Local.png */; };
  52. 7D0699DF17CB1FAE00713BEB /* Local@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699C917CB1FAE00713BEB /* Local@2x.png */; };
  53. 7D0699E017CB1FAE00713BEB /* MusicAlbums.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CA17CB1FAE00713BEB /* MusicAlbums.png */; };
  54. 7D0699E117CB1FAE00713BEB /* MusicAlbums@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CB17CB1FAE00713BEB /* MusicAlbums@2x.png */; };
  55. 7D0699E217CB1FAE00713BEB /* OpenNetStream.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CC17CB1FAE00713BEB /* OpenNetStream.png */; };
  56. 7D0699E317CB1FAE00713BEB /* OpenNetStream@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CD17CB1FAE00713BEB /* OpenNetStream@2x.png */; };
  57. 7D0699E417CB1FAE00713BEB /* Settings.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CE17CB1FAE00713BEB /* Settings.png */; };
  58. 7D0699E517CB1FAE00713BEB /* About.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699CF17CB1FAE00713BEB /* About.png */; };
  59. 7D0699E617CB1FAE00713BEB /* About@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D017CB1FAE00713BEB /* About@2x.png */; };
  60. 7D0699E717CB1FAE00713BEB /* AllFiles.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D117CB1FAE00713BEB /* AllFiles.png */; };
  61. 7D0699E817CB1FAE00713BEB /* AllFiles@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D217CB1FAE00713BEB /* AllFiles@2x.png */; };
  62. 7D0699E917CB1FAE00713BEB /* Downloads.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D317CB1FAE00713BEB /* Downloads.png */; };
  63. 7D0699EA17CB1FAE00713BEB /* Downloads@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D417CB1FAE00713BEB /* Downloads@2x.png */; };
  64. 7D0699EB17CB1FAE00713BEB /* Dropbox.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D0699D517CB1FAE00713BEB /* Dropbox.png */; };
  65. 7D07F708175665ED00CDE21C /* navBarBackground@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F706175665ED00CDE21C /* navBarBackground@2x.png */; };
  66. 7D07F709175665ED00CDE21C /* navBarBackground.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F707175665ED00CDE21C /* navBarBackground.png */; };
  67. 7D07F70C175669A800CDE21C /* button.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70A175669A800CDE21C /* button.png */; };
  68. 7D07F70D175669A800CDE21C /* button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70B175669A800CDE21C /* button@2x.png */; };
  69. 7D07F710175669D800CDE21C /* buttonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70E175669D800CDE21C /* buttonHighlight.png */; };
  70. 7D07F711175669D800CDE21C /* buttonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F70F175669D800CDE21C /* buttonHighlight@2x.png */; };
  71. 7D07F71417566C4A00CDE21C /* menuCone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71217566C4A00CDE21C /* menuCone.png */; };
  72. 7D07F71517566C4A00CDE21C /* menuCone@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71317566C4A00CDE21C /* menuCone@2x.png */; };
  73. 7D07F71E175673D100CDE21C /* menuBtnBckHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71A175673D100CDE21C /* menuBtnBckHighlight@2x.png */; };
  74. 7D07F71F175673D100CDE21C /* menuBtnBck@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71B175673D100CDE21C /* menuBtnBck@2x.png */; };
  75. 7D07F720175673D100CDE21C /* menuBtnBckHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71C175673D100CDE21C /* menuBtnBckHighlight.png */; };
  76. 7D07F721175673D100CDE21C /* menuBtnBck.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F71D175673D100CDE21C /* menuBtnBck.png */; };
  77. 7D07F726175688D300CDE21C /* doneButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F722175688D300CDE21C /* doneButton.png */; };
  78. 7D07F727175688D300CDE21C /* doneButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F723175688D300CDE21C /* doneButton@2x.png */; };
  79. 7D07F728175688D300CDE21C /* doneButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F724175688D300CDE21C /* doneButtonHighlight.png */; };
  80. 7D07F729175688D300CDE21C /* doneButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F725175688D300CDE21C /* doneButtonHighlight@2x.png */; };
  81. 7D07F72E175691CC00CDE21C /* backButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72A175691CB00CDE21C /* backButton.png */; };
  82. 7D07F72F175691CC00CDE21C /* backButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72B175691CC00CDE21C /* backButton@2x.png */; };
  83. 7D07F730175691CC00CDE21C /* backButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72C175691CC00CDE21C /* backButtonHighlight.png */; };
  84. 7D07F731175691CC00CDE21C /* backButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D07F72D175691CC00CDE21C /* backButtonHighlight@2x.png */; };
  85. 7D16035D17BF9FE600F29B34 /* sudHeaderBg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035917BF9FE600F29B34 /* sudHeaderBg.png */; };
  86. 7D16035E17BF9FE600F29B34 /* sudHeaderBg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035A17BF9FE600F29B34 /* sudHeaderBg@2x.png */; };
  87. 7D16035F17BF9FE600F29B34 /* headerSidebar@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035B17BF9FE600F29B34 /* headerSidebar@2x.png */; };
  88. 7D16036017BF9FE600F29B34 /* headerSidebar.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D16035C17BF9FE600F29B34 /* headerSidebar.png */; };
  89. 7D1AC3041762996100BD2EB5 /* resetIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC3021762996100BD2EB5 /* resetIcon.png */; };
  90. 7D1AC3051762996100BD2EB5 /* resetIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC3031762996100BD2EB5 /* resetIcon@2x.png */; };
  91. 7D1AC30817629AB600BD2EB5 /* ratioIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30617629AB600BD2EB5 /* ratioIcon.png */; };
  92. 7D1AC30917629AB600BD2EB5 /* ratioIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30717629AB600BD2EB5 /* ratioIcon@2x.png */; };
  93. 7D1AC30C17629D4600BD2EB5 /* title.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30A17629D4600BD2EB5 /* title.png */; };
  94. 7D1AC30D17629D4600BD2EB5 /* title@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D1AC30B17629D4600BD2EB5 /* title@2x.png */; };
  95. 7D223E1A181EC56E00B36798 /* gradient-cell-ios7-ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D223E18181EC56E00B36798 /* gradient-cell-ios7-ipad.png */; };
  96. 7D223E1B181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D223E19181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png */; };
  97. 7D2A34A41805CDBA004078AA /* gradient-cell-ios7.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D2A34A21805CDBA004078AA /* gradient-cell-ios7.png */; };
  98. 7D2A34A51805CDBA004078AA /* gradient-cell-ios7@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D2A34A31805CDBA004078AA /* gradient-cell-ios7@2x.png */; };
  99. 7D30F3C2183AB24C00FFC021 /* VLCHTTPConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3BD183AB24C00FFC021 /* VLCHTTPConnection.m */; };
  100. 7D30F3C3183AB24C00FFC021 /* VLCHTTPFileDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3BF183AB24C00FFC021 /* VLCHTTPFileDownloader.m */; };
  101. 7D30F3C4183AB24C00FFC021 /* VLCHTTPUploaderController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3C1183AB24C00FFC021 /* VLCHTTPUploaderController.m */; };
  102. 7D30F3C7183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3C6183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m */; };
  103. 7D30F3CA183AB27A00FFC021 /* VLCDownloadViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3C9183AB27A00FFC021 /* VLCDownloadViewController.m */; };
  104. 7D30F3CD183AB29300FFC021 /* VLCMenuTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3CC183AB29300FFC021 /* VLCMenuTableViewController.m */; };
  105. 7D30F3D0183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3CF183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m */; };
  106. 7D30F3D7183AB2F100FFC021 /* VLCLocalNetworkListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3D2183AB2F100FFC021 /* VLCLocalNetworkListCell.m */; };
  107. 7D30F3D8183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3D4183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m */; };
  108. 7D30F3D9183AB2F100FFC021 /* VLCLocalServerListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3D6183AB2F100FFC021 /* VLCLocalServerListViewController.m */; };
  109. 7D30F3DC183AB2F900FFC021 /* VLCNetworkLoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3DB183AB2F900FFC021 /* VLCNetworkLoginViewController.m */; };
  110. 7D30F3DF183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3DE183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m */; };
  111. 7D30F3E2183AB33200FFC021 /* VLCSidebarViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3E1183AB33200FFC021 /* VLCSidebarViewCell.m */; };
  112. 7D30F3EA183AB34200FFC021 /* VLCGoogleDriveController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3E5183AB34200FFC021 /* VLCGoogleDriveController.m */; };
  113. 7D30F3EC183AB34200FFC021 /* VLCGoogleDriveTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3E9183AB34200FFC021 /* VLCGoogleDriveTableViewController.m */; };
  114. 7D31001D17B64AE100E6516D /* GHRevealViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D31001C17B64AE100E6516D /* GHRevealViewController.m */; };
  115. 7D31002017B6768B00E6516D /* libupnpx.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D31001F17B6768B00E6516D /* libupnpx.a */; };
  116. 7D37848F183A98B6009EE944 /* VLCMovieViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D37848E183A98B6009EE944 /* VLCMovieViewController.m */; };
  117. 7D378492183A98BF009EE944 /* VLCExternalDisplayController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378491183A98BF009EE944 /* VLCExternalDisplayController.m */; };
  118. 7D378499183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378494183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m */; };
  119. 7D37849A183A98D1009EE944 /* VLCPlaylistTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378496183A98D1009EE944 /* VLCPlaylistTableViewCell.m */; };
  120. 7D37849B183A98D1009EE944 /* VLCPlaylistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378498183A98D1009EE944 /* VLCPlaylistViewController.m */; };
  121. 7D37849E183A98DD009EE944 /* VLCThumbnailsCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D37849D183A98DD009EE944 /* VLCThumbnailsCache.m */; };
  122. 7D3784A1183A98EB009EE944 /* VLCBugreporter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784A0183A98EB009EE944 /* VLCBugreporter.m */; };
  123. 7D3784A6183A98F5009EE944 /* VLCAboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784A3183A98F5009EE944 /* VLCAboutViewController.m */; };
  124. 7D3784A7183A98F5009EE944 /* VLCSettingsController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784A5183A98F5009EE944 /* VLCSettingsController.m */; };
  125. 7D3784AD183A9906009EE944 /* VLCDropboxController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784AA183A9906009EE944 /* VLCDropboxController.m */; };
  126. 7D3784AE183A9906009EE944 /* VLCDropboxTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784AC183A9906009EE944 /* VLCDropboxTableViewController.m */; };
  127. 7D3784BE183A9938009EE944 /* UIBarButtonItem+Theme.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B3183A9938009EE944 /* UIBarButtonItem+Theme.m */; };
  128. 7D3784BF183A9938009EE944 /* UINavigationController+Theme.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B5183A9938009EE944 /* UINavigationController+Theme.m */; };
  129. 7D3784C0183A9938009EE944 /* VLCLinearProgressIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B7183A9938009EE944 /* VLCLinearProgressIndicator.m */; };
  130. 7D3784C1183A9938009EE944 /* VLCMenuButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B9183A9938009EE944 /* VLCMenuButton.m */; };
  131. 7D3784C2183A9938009EE944 /* VLCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784BB183A9938009EE944 /* VLCSlider.m */; };
  132. 7D3784C3183A9938009EE944 /* VLCStatusLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784BD183A9938009EE944 /* VLCStatusLabel.m */; };
  133. 7D3784C8183A9972009EE944 /* NSString+SupportedMedia.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784C5183A9972009EE944 /* NSString+SupportedMedia.m */; };
  134. 7D3784C9183A9972009EE944 /* UIDevice+SpeedCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784C7183A9972009EE944 /* UIDevice+SpeedCategory.m */; };
  135. 7D3784CC183A99BA009EE944 /* PAPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784CB183A99BA009EE944 /* PAPasscodeViewController.m */; };
  136. 7D3784DF183A99D2009EE944 /* papasscode_background.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784D9183A99D2009EE944 /* papasscode_background.png */; };
  137. 7D3784E0183A99D2009EE944 /* papasscode_background@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DA183A99D2009EE944 /* papasscode_background@2x.png */; };
  138. 7D3784E1183A99D2009EE944 /* papasscode_failed_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DB183A99D2009EE944 /* papasscode_failed_bg.png */; };
  139. 7D3784E2183A99D2009EE944 /* papasscode_failed_bg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DC183A99D2009EE944 /* papasscode_failed_bg@2x.png */; };
  140. 7D3784E3183A99D2009EE944 /* papasscode_marker.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DD183A99D2009EE944 /* papasscode_marker.png */; };
  141. 7D3784E4183A99D2009EE944 /* papasscode_marker@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784DE183A99D2009EE944 /* papasscode_marker@2x.png */; };
  142. 7D3784E7183A99E1009EE944 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784E6183A99E1009EE944 /* Reachability.m */; };
  143. 7D3784E9183A9A15009EE944 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784E8183A9A15009EE944 /* main.m */; };
  144. 7D3784EC183A9A1E009EE944 /* VLC for iOS-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 7D3784EA183A9A1E009EE944 /* VLC for iOS-Info.plist */; };
  145. 7D3EB014174A353E002062C2 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */; };
  146. 7D47D6F91760CD8700E86BAD /* subtitleIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CB1760CD8700E86BAD /* subtitleIcon.png */; };
  147. 7D47D6FA1760CD8700E86BAD /* subtitleIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CC1760CD8700E86BAD /* subtitleIcon@2x.png */; };
  148. 7D47D6FB1760CD8700E86BAD /* videoEffectsIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CD1760CD8700E86BAD /* videoEffectsIcon.png */; };
  149. 7D47D6FC1760CD8700E86BAD /* videoEffectsIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CE1760CD8700E86BAD /* videoEffectsIcon@2x.png */; };
  150. 7D47D6FD1760CD8700E86BAD /* seekbarBg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6CF1760CD8700E86BAD /* seekbarBg@2x.png */; };
  151. 7D47D6FE1760CD8700E86BAD /* slidermaximumTrack.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D01760CD8700E86BAD /* slidermaximumTrack.png */; };
  152. 7D47D6FF1760CD8700E86BAD /* slidermaximumTrack@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D11760CD8700E86BAD /* slidermaximumTrack@2x.png */; };
  153. 7D47D7001760CD8700E86BAD /* slidermaxValue.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D21760CD8700E86BAD /* slidermaxValue.png */; };
  154. 7D47D7011760CD8700E86BAD /* slidermaxValue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D31760CD8700E86BAD /* slidermaxValue@2x.png */; };
  155. 7D47D7021760CD8700E86BAD /* sliderminiValue.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D41760CD8700E86BAD /* sliderminiValue.png */; };
  156. 7D47D7031760CD8700E86BAD /* sliderminiValue@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D51760CD8700E86BAD /* sliderminiValue@2x.png */; };
  157. 7D47D7061760CD8700E86BAD /* speedIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D81760CD8700E86BAD /* speedIcon.png */; };
  158. 7D47D7071760CD8700E86BAD /* speedIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6D91760CD8700E86BAD /* speedIcon@2x.png */; };
  159. 7D47D7081760CD8700E86BAD /* playbackControllerBg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DA1760CD8700E86BAD /* playbackControllerBg@2x.png */; };
  160. 7D47D7091760CD8700E86BAD /* playbackDoneButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DB1760CD8700E86BAD /* playbackDoneButton.png */; };
  161. 7D47D70A1760CD8700E86BAD /* playbackDoneButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DC1760CD8700E86BAD /* playbackDoneButton@2x.png */; };
  162. 7D47D70B1760CD8700E86BAD /* playbackDoneButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DD1760CD8700E86BAD /* playbackDoneButtonHighlight.png */; };
  163. 7D47D70C1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DE1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png */; };
  164. 7D47D70D1760CD8700E86BAD /* ratioButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6DF1760CD8700E86BAD /* ratioButton.png */; };
  165. 7D47D70E1760CD8700E86BAD /* ratioButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E01760CD8700E86BAD /* ratioButton@2x.png */; };
  166. 7D47D70F1760CD8700E86BAD /* ratioButtonHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E11760CD8700E86BAD /* ratioButtonHighlight.png */; };
  167. 7D47D7101760CD8700E86BAD /* ratioButtonHighlight@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E21760CD8700E86BAD /* ratioButtonHighlight@2x.png */; };
  168. 7D47D7111760CD8700E86BAD /* seekbarBg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E31760CD8700E86BAD /* seekbarBg.png */; };
  169. 7D47D7131760CD8700E86BAD /* forwardIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E51760CD8700E86BAD /* forwardIcon.png */; };
  170. 7D47D7141760CD8700E86BAD /* forwardIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E61760CD8700E86BAD /* forwardIcon@2x.png */; };
  171. 7D47D7151760CD8700E86BAD /* knobSlider.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E71760CD8700E86BAD /* knobSlider.png */; };
  172. 7D47D7161760CD8700E86BAD /* knobSlider@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6E81760CD8700E86BAD /* knobSlider@2x.png */; };
  173. 7D47D7191760CD8700E86BAD /* playbackControllerBg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EB1760CD8700E86BAD /* playbackControllerBg.png */; };
  174. 7D47D71A1760CD8700E86BAD /* playIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EC1760CD8700E86BAD /* playIcon.png */; };
  175. 7D47D71B1760CD8700E86BAD /* playIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6ED1760CD8700E86BAD /* playIcon@2x.png */; };
  176. 7D47D71C1760CD8700E86BAD /* audioTrackIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EE1760CD8700E86BAD /* audioTrackIcon.png */; };
  177. 7D47D71D1760CD8700E86BAD /* audioTrackIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6EF1760CD8700E86BAD /* audioTrackIcon@2x.png */; };
  178. 7D47D71E1760CD8700E86BAD /* backIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F01760CD8700E86BAD /* backIcon.png */; };
  179. 7D47D71F1760CD8700E86BAD /* backIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F11760CD8700E86BAD /* backIcon@2x.png */; };
  180. 7D47D7201760CD8700E86BAD /* ballSlider.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F21760CD8700E86BAD /* ballSlider.png */; };
  181. 7D47D7211760CD8700E86BAD /* ballSlider@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D6F31760CD8700E86BAD /* ballSlider@2x.png */; };
  182. 7D47D7271760D77C00E86BAD /* pauseIcon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D7251760D77C00E86BAD /* pauseIcon.png */; };
  183. 7D47D7281760D77C00E86BAD /* pauseIcon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D7261760D77C00E86BAD /* pauseIcon@2x.png */; };
  184. 7D47D72B1760E3A000E86BAD /* sliderminimumTrack.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D7291760E3A000E86BAD /* sliderminimumTrack.png */; };
  185. 7D47D72C1760E3A000E86BAD /* sliderminimumTrack@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D47D72A1760E3A000E86BAD /* sliderminimumTrack@2x.png */; };
  186. 7D514D4117F779C6007B960C /* Drive@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D514D3D17F779C6007B960C /* Drive@2x.png */; };
  187. 7D514D4217F779C6007B960C /* DriveWhite.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D514D3E17F779C6007B960C /* DriveWhite.png */; };
  188. 7D514D4317F779C6007B960C /* DriveWhite@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D514D3F17F779C6007B960C /* DriveWhite@2x.png */; };
  189. 7D514D4417F779C6007B960C /* Drive.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D514D4017F779C6007B960C /* Drive.png */; };
  190. 7D5DD5C717590ABF001421E3 /* About Contents.html in Resources */ = {isa = PBXBuildFile; fileRef = 7D5DD5C617590ABF001421E3 /* About Contents.html */; };
  191. 7D5E39CA174FC2F3007DAFA1 /* dropbox-white.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D5E39C8174FC2F3007DAFA1 /* dropbox-white.png */; };
  192. 7D5E39CB174FC2F3007DAFA1 /* dropbox-white@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D5E39C9174FC2F3007DAFA1 /* dropbox-white@2x.png */; };
  193. 7D6B08C2174A831900A05173 /* vlc-xmas.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6B08C0174A831900A05173 /* vlc-xmas.png */; };
  194. 7D6B08C3174A831900A05173 /* vlc-xmas@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6B08C1174A831900A05173 /* vlc-xmas@2x.png */; };
  195. 7D6B08EB174D65B500A05173 /* IASKAppSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08CD174D65B500A05173 /* IASKAppSettingsViewController.m */; };
  196. 7D6B08EC174D65B500A05173 /* IASKAppSettingsWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08CF174D65B500A05173 /* IASKAppSettingsWebViewController.m */; };
  197. 7D6B08ED174D65B500A05173 /* IASKSpecifierValuesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D1174D65B500A05173 /* IASKSpecifierValuesViewController.m */; };
  198. 7D6B08EE174D65B500A05173 /* IASKSettingsReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D5174D65B500A05173 /* IASKSettingsReader.m */; };
  199. 7D6B08EF174D65B500A05173 /* IASKSettingsStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D7174D65B500A05173 /* IASKSettingsStore.m */; };
  200. 7D6B08F0174D65B500A05173 /* IASKSettingsStoreFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08D9174D65B500A05173 /* IASKSettingsStoreFile.m */; };
  201. 7D6B08F1174D65B500A05173 /* IASKSettingsStoreUserDefaults.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08DB174D65B500A05173 /* IASKSettingsStoreUserDefaults.m */; };
  202. 7D6B08F2174D65B500A05173 /* IASKSpecifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08DD174D65B500A05173 /* IASKSpecifier.m */; };
  203. 7D6B08F3174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E0174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m */; };
  204. 7D6B08F4174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E2174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m */; };
  205. 7D6B08F5174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E4174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m */; };
  206. 7D6B08F6174D65B500A05173 /* IASKSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E6174D65B500A05173 /* IASKSlider.m */; };
  207. 7D6B08F7174D65B500A05173 /* IASKSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08E8174D65B500A05173 /* IASKSwitch.m */; };
  208. 7D6B08F8174D65B500A05173 /* IASKTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D6B08EA174D65B500A05173 /* IASKTextField.m */; };
  209. 7D6B08FA174D716200A05173 /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D6B08F9174D716200A05173 /* MessageUI.framework */; };
  210. 7D6B08FC174D773C00A05173 /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 7D6B08FB174D773C00A05173 /* Settings.bundle */; };
  211. 7D6BD1841762026700AD311A /* thumbOverlayPhone@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1801762026700AD311A /* thumbOverlayPhone@2x.png */; };
  212. 7D6BD1851762026700AD311A /* thumbOverlay@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1811762026700AD311A /* thumbOverlay@2x.png */; };
  213. 7D6BD1861762026700AD311A /* thumbOverlayPhone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1821762026700AD311A /* thumbOverlayPhone.png */; };
  214. 7D6BD1871762026700AD311A /* thumbOverlay.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D6BD1831762026700AD311A /* thumbOverlay.png */; };
  215. 7D711ADA18227A490094E4F0 /* GTMOAuth2ViewTouch.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D711AD918227A490094E4F0 /* GTMOAuth2ViewTouch.xib */; };
  216. 7D88224F185733D500D87252 /* Default-ipad-Landscape.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D882244185733D500D87252 /* Default-ipad-Landscape.png */; };
  217. 7D882250185733D500D87252 /* Default-ipad-Landscape@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D882245185733D500D87252 /* Default-ipad-Landscape@2x.png */; };
  218. 7D882251185733D500D87252 /* Default-ipad-Portrait.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D882246185733D500D87252 /* Default-ipad-Portrait.png */; };
  219. 7D882252185733D500D87252 /* Default-ipad-Portrait@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D882247185733D500D87252 /* Default-ipad-Portrait@2x.png */; };
  220. 7D882253185733D500D87252 /* Default-568h@2x~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D882248185733D500D87252 /* Default-568h@2x~iphone.png */; };
  221. 7D882254185733D500D87252 /* Default-Landscape~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D882249185733D500D87252 /* Default-Landscape~ipad.png */; };
  222. 7D882255185733D500D87252 /* Default-Landscape@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D88224A185733D500D87252 /* Default-Landscape@2x~ipad.png */; };
  223. 7D882256185733D500D87252 /* Default~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D88224B185733D500D87252 /* Default~ipad.png */; };
  224. 7D882257185733D500D87252 /* Default-Portrait@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D88224C185733D500D87252 /* Default-Portrait@2x~ipad.png */; };
  225. 7D882258185733D500D87252 /* Default~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D88224D185733D500D87252 /* Default~iphone.png */; };
  226. 7D882259185733D500D87252 /* Default@2x~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D88224E185733D500D87252 /* Default@2x~iphone.png */; };
  227. 7D94FCDF16DE7D1000F2623B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCDE16DE7D1000F2623B /* UIKit.framework */; };
  228. 7D94FCE116DE7D1000F2623B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCE016DE7D1000F2623B /* Foundation.framework */; };
  229. 7D94FCE316DE7D1000F2623B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */; };
  230. 7DA8B0FB173318E80029698C /* SourceCodePro-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */; };
  231. 7DADC55F1704FABF001DAC63 /* OBSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DADC55E1704FABF001DAC63 /* OBSlider.m */; };
  232. 7DBBF182183AB3B80009A339 /* VLCAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DBBF181183AB3B80009A339 /* VLCAppDelegate.m */; };
  233. 7DBBF198183AB4300009A339 /* VLCAboutViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF183183AB4300009A339 /* VLCAboutViewController~ipad.xib */; };
  234. 7DBBF199183AB4300009A339 /* VLCAboutViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF184183AB4300009A339 /* VLCAboutViewController~iphone.xib */; };
  235. 7DBBF19A183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF185183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib */; };
  236. 7DBBF19B183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF186183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib */; };
  237. 7DBBF19C183AB4300009A339 /* VLCDownloadViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF187183AB4300009A339 /* VLCDownloadViewController.xib */; };
  238. 7DBBF19D183AB4300009A339 /* VLCCloudStorageTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF188183AB4300009A339 /* VLCCloudStorageTableViewController.xib */; };
  239. 7DBBF19E183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF189183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib */; };
  240. 7DBBF19F183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18A183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib */; };
  241. 7DBBF1A0183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18B183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib */; };
  242. 7DBBF1A1183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18C183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib */; };
  243. 7DBBF1A3183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18E183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib */; };
  244. 7DBBF1A4183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18F183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib */; };
  245. 7DBBF1A5183AB4300009A339 /* VLCMovieViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF190183AB4300009A339 /* VLCMovieViewController~ipad.xib */; };
  246. 7DBBF1A6183AB4300009A339 /* VLCMovieViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF191183AB4300009A339 /* VLCMovieViewController~iphone.xib */; };
  247. 7DBBF1A7183AB4300009A339 /* VLCNetworkLoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF192183AB4300009A339 /* VLCNetworkLoginViewController.xib */; };
  248. 7DBBF1A8183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF193183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib */; };
  249. 7DBBF1A9183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF194183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib */; };
  250. 7DBBF1AA183AB4300009A339 /* VLCPlaylistGridView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF195183AB4300009A339 /* VLCPlaylistGridView.xib */; };
  251. 7DBBF1AB183AB4300009A339 /* VLCPlaylistTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF196183AB4300009A339 /* VLCPlaylistTableViewCell.xib */; };
  252. 7DBBF1AC183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF197183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib */; };
  253. 7DC72D5E17B7E7C7008A26D0 /* download@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DC72D5B17B7E7C7008A26D0 /* download@4x.png */; };
  254. 7DC72D5F17B7E7C7008A26D0 /* download.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DC72D5C17B7E7C7008A26D0 /* download.png */; };
  255. 7DC72D6017B7E7C7008A26D0 /* download@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DC72D5D17B7E7C7008A26D0 /* download@2x.png */; };
  256. 7DC72D6317B7ED24008A26D0 /* WhiteRaccoon.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */; };
  257. 7DD2A3A9179C04A7003EB537 /* OpenSans-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */; };
  258. 7DDD0429172D98E5005A7B10 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */; };
  259. 7DE18629175BA9A5006C0173 /* badgeUnread@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */; };
  260. 7DE1862C175BA9A9006C0173 /* badgeUnread@2x~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */; };
  261. 7DE1862F175BA9AC006C0173 /* badgeUnread~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */; };
  262. 7DE18632175BA9AF006C0173 /* badgeUnread~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */; };
  263. 7DEB3B5D17647B240038FC70 /* bottomBlackBar@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B5B17647B240038FC70 /* bottomBlackBar@2x.png */; };
  264. 7DEB3B5E17647B240038FC70 /* bottomBlackBar.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B5C17647B240038FC70 /* bottomBlackBar.png */; };
  265. 7DEB3B6017647DE30038FC70 /* iTunesArtwork@2x in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B5F17647DE30038FC70 /* iTunesArtwork@2x */; };
  266. 7DEB3B6217647E230038FC70 /* Icon@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6117647E230038FC70 /* Icon@2x.png */; };
  267. 7DEB3B6417647E370038FC70 /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6317647E370038FC70 /* Icon.png */; };
  268. 7DEB3B6617647E440038FC70 /* Icon-72.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6517647E440038FC70 /* Icon-72.png */; };
  269. 7DEB3B6817647E480038FC70 /* Icon-72@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6717647E480038FC70 /* Icon-72@2x.png */; };
  270. 7DEB3B6D17647EC10038FC70 /* Icon-Small-50.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6917647EC10038FC70 /* Icon-Small-50.png */; };
  271. 7DEB3B6E17647EC10038FC70 /* Icon-Small-50@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6A17647EC10038FC70 /* Icon-Small-50@2x.png */; };
  272. 7DEB3B6F17647EC10038FC70 /* Icon-Small.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6B17647EC10038FC70 /* Icon-Small.png */; };
  273. 7DEB3B7017647EC10038FC70 /* Icon-Small@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B6C17647EC10038FC70 /* Icon-Small@2x.png */; };
  274. 7DEB3B7217649BEB0038FC70 /* Icon-512.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7117649BEB0038FC70 /* Icon-512.png */; };
  275. 7DEB3B7517649F2C0038FC70 /* menuButton.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7317649F2C0038FC70 /* menuButton.png */; };
  276. 7DEB3B7617649F2C0038FC70 /* menuButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7417649F2C0038FC70 /* menuButton@2x.png */; };
  277. 7DEB3B791764A4040038FC70 /* input@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B771764A4040038FC70 /* input@2x.png */; };
  278. 7DEB3B7A1764A4040038FC70 /* input.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B781764A4040038FC70 /* input.png */; };
  279. 7DEB3B851764A4F40038FC70 /* movie@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7C1764A4F40038FC70 /* movie@2x.png */; };
  280. 7DEB3B861764A4F40038FC70 /* movie@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7D1764A4F40038FC70 /* movie@4x.png */; };
  281. 7DEB3B871764A4F40038FC70 /* blank@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7E1764A4F40038FC70 /* blank@4x.png */; };
  282. 7DEB3B881764A4F40038FC70 /* folder.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B7F1764A4F40038FC70 /* folder.png */; };
  283. 7DEB3B891764A4F40038FC70 /* folder@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B801764A4F40038FC70 /* folder@2x.png */; };
  284. 7DEB3B8A1764A4F40038FC70 /* folder@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B811764A4F40038FC70 /* folder@4x.png */; };
  285. 7DEB3B8B1764A4F40038FC70 /* movie.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B821764A4F40038FC70 /* movie.png */; };
  286. 7DEB3B8C1764A4F40038FC70 /* blank.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B831764A4F40038FC70 /* blank.png */; };
  287. 7DEB3B8D1764A4F40038FC70 /* blank@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DEB3B841764A4F40038FC70 /* blank@2x.png */; };
  288. 7DF1166C176CC69A009EC05C /* volumeballslider.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DF1166A176CC69A009EC05C /* volumeballslider.png */; };
  289. 7DF1166D176CC69A009EC05C /* volumeballslider@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DF1166B176CC69A009EC05C /* volumeballslider@2x.png */; };
  290. 7DF7CA0717650C2A00C61739 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */; };
  291. 7DF7E791175F47DC0018858D /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DF7E790175F47DC0018858D /* MediaPlayer.framework */; };
  292. 9B088308183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B088307183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m */; };
  293. 9B2E0CF417FB71E90098E3DF /* libGTLTouchStaticLib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9B2E0CF317FB71E80098E3DF /* libGTLTouchStaticLib.a */; };
  294. 9B5BEF2917FBAEA50016F9CB /* GTLDrive_Sources.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B5BEF2717FBAEA50016F9CB /* GTLDrive_Sources.m */; };
  295. 9BE4D1CE183D76950006346C /* VLCCloudStorageTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B0183A990F009EE944 /* VLCCloudStorageTableViewCell.m */; };
  296. 9BF0708E185122AA009B23DD /* audio.png in Resources */ = {isa = PBXBuildFile; fileRef = 9BF0708B185122AA009B23DD /* audio.png */; };
  297. 9BF0708F185122AA009B23DD /* audio@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9BF0708C185122AA009B23DD /* audio@2x.png */; };
  298. 9BF07090185122AA009B23DD /* audio@4x.png in Resources */ = {isa = PBXBuildFile; fileRef = 9BF0708D185122AA009B23DD /* audio@4x.png */; };
  299. A7035BBE174519600057DFA7 /* iTunesArtwork in Resources */ = {isa = PBXBuildFile; fileRef = A7035BBD174519600057DFA7 /* iTunesArtwork */; };
  300. A7924696170F0BA90036AAF2 /* libMediaLibraryKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */; };
  301. A79246A7170F0ED20036AAF2 /* Default-568h@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A7924698170F0ED20036AAF2 /* Default-568h@2x.png */; };
  302. A79246A8170F0ED20036AAF2 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = A7924699170F0ED20036AAF2 /* Default.png */; };
  303. A79246A9170F0ED20036AAF2 /* Default@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A792469A170F0ED20036AAF2 /* Default@2x.png */; };
  304. A79246C8170F11DF0036AAF2 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = A79246C6170F11DF0036AAF2 /* Localizable.strings */; };
  305. A7990064176E9352009E8267 /* libraryBackground.png in Resources */ = {isa = PBXBuildFile; fileRef = A7990063176E9352009E8267 /* libraryBackground.png */; };
  306. A7CB0DB11716F72600050CF3 /* PlayingExternally@2x~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DAD1716F72600050CF3 /* PlayingExternally@2x~iphone.png */; };
  307. A7CB0DB21716F72600050CF3 /* PlayingExternally~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DAE1716F72600050CF3 /* PlayingExternally~iphone.png */; };
  308. A7CB0DB31716F72600050CF3 /* PlayingExternally~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DAF1716F72600050CF3 /* PlayingExternally~ipad.png */; };
  309. A7CB0DB41716F72600050CF3 /* PlayingExternally@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = A7CB0DB01716F72600050CF3 /* PlayingExternally@2x~ipad.png */; };
  310. A7FF9F3E17428C1900999819 /* DeleteButton.png in Resources */ = {isa = PBXBuildFile; fileRef = A7FF9F3D17428C1900999819 /* DeleteButton.png */; };
  311. A7FF9F4017428C3800999819 /* DeleteButton@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = A7FF9F3F17428C3800999819 /* DeleteButton@2x.png */; };
  312. CC1BBC3F1704934300A20CBF /* libMobileVLCKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */; };
  313. CC1BBC431704935E00A20CBF /* MediaLibrary.mom in Resources */ = {isa = PBXBuildFile; fileRef = CC1BBC421704935E00A20CBF /* MediaLibrary.mom */; };
  314. CC1BBC461704938300A20CBF /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC451704938300A20CBF /* libiconv.dylib */; };
  315. CC1BBC481704938B00A20CBF /* libstdc++.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC471704938B00A20CBF /* libstdc++.dylib */; };
  316. CC1BBC4C1704939B00A20CBF /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */; };
  317. CC1BBC4E170493A300A20CBF /* libbz2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4D170493A300A20CBF /* libbz2.dylib */; };
  318. CC1BBC50170493AA00A20CBF /* libxml2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4F170493AA00A20CBF /* libxml2.dylib */; };
  319. CC1BBC52170493B100A20CBF /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC51170493B100A20CBF /* OpenGLES.framework */; };
  320. CC1BBC54170493B800A20CBF /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC53170493B800A20CBF /* AudioToolbox.framework */; };
  321. CC1BBC56170493C100A20CBF /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC55170493C100A20CBF /* QuartzCore.framework */; };
  322. CC1BBC58170493E100A20CBF /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC57170493E100A20CBF /* CoreData.framework */; };
  323. CCE2A22E17A5859E00D9EAAD /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CCE2A22D17A5859E00D9EAAD /* CoreText.framework */; };
  324. /* End PBXBuildFile section */
  325. /* Begin PBXFileReference section */
  326. 29125E5417492219003F03E5 /* index.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = index.html; sourceTree = "<group>"; };
  327. 291553EA17490A1E00B86CAD /* DDData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDData.h; sourceTree = "<group>"; };
  328. 291553EB17490A1E00B86CAD /* DDData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDData.m; sourceTree = "<group>"; };
  329. 291553EC17490A1E00B86CAD /* DDNumber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDNumber.h; sourceTree = "<group>"; };
  330. 291553ED17490A1E00B86CAD /* DDNumber.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDNumber.m; sourceTree = "<group>"; };
  331. 291553EE17490A1E00B86CAD /* DDRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDRange.h; sourceTree = "<group>"; };
  332. 291553EF17490A1E00B86CAD /* DDRange.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDRange.m; sourceTree = "<group>"; };
  333. 291553F017490A1E00B86CAD /* HTTPAuthenticationRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPAuthenticationRequest.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPAuthenticationRequest.h; sourceTree = SOURCE_ROOT; };
  334. 291553F117490A1E00B86CAD /* HTTPAuthenticationRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPAuthenticationRequest.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPAuthenticationRequest.m; sourceTree = SOURCE_ROOT; };
  335. 291553F217490A1E00B86CAD /* HTTPConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPConnection.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPConnection.h; sourceTree = SOURCE_ROOT; };
  336. 291553F317490A1E00B86CAD /* HTTPConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPConnection.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPConnection.m; sourceTree = SOURCE_ROOT; };
  337. 291553F417490A1E00B86CAD /* HTTPLogging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPLogging.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPLogging.h; sourceTree = SOURCE_ROOT; };
  338. 291553F517490A1E00B86CAD /* HTTPMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPMessage.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPMessage.h; sourceTree = SOURCE_ROOT; };
  339. 291553F617490A1E00B86CAD /* HTTPMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPMessage.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPMessage.m; sourceTree = SOURCE_ROOT; };
  340. 291553F717490A1E00B86CAD /* HTTPResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPResponse.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPResponse.h; sourceTree = SOURCE_ROOT; };
  341. 291553F817490A1E00B86CAD /* HTTPServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPServer.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPServer.h; sourceTree = SOURCE_ROOT; };
  342. 291553F917490A1E00B86CAD /* HTTPServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPServer.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPServer.m; sourceTree = SOURCE_ROOT; };
  343. 291553FB17490A1E00B86CAD /* MultipartFormDataParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartFormDataParser.h; sourceTree = "<group>"; };
  344. 291553FC17490A1E00B86CAD /* MultipartFormDataParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartFormDataParser.m; sourceTree = "<group>"; };
  345. 291553FD17490A1E00B86CAD /* MultipartMessageHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartMessageHeader.h; sourceTree = "<group>"; };
  346. 291553FE17490A1E00B86CAD /* MultipartMessageHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartMessageHeader.m; sourceTree = "<group>"; };
  347. 291553FF17490A1E00B86CAD /* MultipartMessageHeaderField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartMessageHeaderField.h; sourceTree = "<group>"; };
  348. 2915540017490A1E00B86CAD /* MultipartMessageHeaderField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartMessageHeaderField.m; sourceTree = "<group>"; };
  349. 2915540D17490A9C00B86CAD /* GCDAsyncSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GCDAsyncSocket.h; sourceTree = "<group>"; };
  350. 2915540E17490A9C00B86CAD /* GCDAsyncSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GCDAsyncSocket.m; sourceTree = "<group>"; };
  351. 2915541017490A9C00B86CAD /* About.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = About.txt; sourceTree = "<group>"; };
  352. 2915541117490A9C00B86CAD /* DDAbstractDatabaseLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDAbstractDatabaseLogger.h; sourceTree = "<group>"; };
  353. 2915541217490A9C00B86CAD /* DDAbstractDatabaseLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDAbstractDatabaseLogger.m; sourceTree = "<group>"; };
  354. 2915541317490A9C00B86CAD /* DDASLLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDASLLogger.h; sourceTree = "<group>"; };
  355. 2915541417490A9C00B86CAD /* DDASLLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDASLLogger.m; sourceTree = "<group>"; };
  356. 2915541517490A9C00B86CAD /* DDFileLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDFileLogger.h; sourceTree = "<group>"; };
  357. 2915541617490A9C00B86CAD /* DDFileLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDFileLogger.m; sourceTree = "<group>"; };
  358. 2915541717490A9C00B86CAD /* DDLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDLog.h; sourceTree = "<group>"; };
  359. 2915541817490A9C00B86CAD /* DDLog.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDLog.m; sourceTree = "<group>"; };
  360. 2915541917490A9C00B86CAD /* DDTTYLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDTTYLogger.h; sourceTree = "<group>"; };
  361. 2915541A17490A9C00B86CAD /* DDTTYLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDTTYLogger.m; sourceTree = "<group>"; };
  362. 2915541C17490A9C00B86CAD /* ContextFilterLogFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContextFilterLogFormatter.h; sourceTree = "<group>"; };
  363. 2915541D17490A9C00B86CAD /* ContextFilterLogFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContextFilterLogFormatter.m; sourceTree = "<group>"; };
  364. 2915541E17490A9C00B86CAD /* DispatchQueueLogFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DispatchQueueLogFormatter.h; sourceTree = "<group>"; };
  365. 2915541F17490A9C00B86CAD /* DispatchQueueLogFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DispatchQueueLogFormatter.m; sourceTree = "<group>"; };
  366. 2915542017490A9C00B86CAD /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
  367. 2915542D17490B9C00B86CAD /* HTTPAsyncFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPAsyncFileResponse.h; sourceTree = "<group>"; };
  368. 2915542E17490B9C00B86CAD /* HTTPAsyncFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPAsyncFileResponse.m; sourceTree = "<group>"; };
  369. 2915542F17490B9C00B86CAD /* HTTPDataResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPDataResponse.h; sourceTree = "<group>"; };
  370. 2915543017490B9C00B86CAD /* HTTPDataResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPDataResponse.m; sourceTree = "<group>"; };
  371. 2915543117490B9C00B86CAD /* HTTPDynamicFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPDynamicFileResponse.h; sourceTree = "<group>"; };
  372. 2915543217490B9C00B86CAD /* HTTPDynamicFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPDynamicFileResponse.m; sourceTree = "<group>"; };
  373. 2915543317490B9C00B86CAD /* HTTPErrorResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPErrorResponse.h; sourceTree = "<group>"; };
  374. 2915543417490B9C00B86CAD /* HTTPErrorResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPErrorResponse.m; sourceTree = "<group>"; };
  375. 2915543517490B9C00B86CAD /* HTTPFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPFileResponse.h; sourceTree = "<group>"; };
  376. 2915543617490B9C00B86CAD /* HTTPFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPFileResponse.m; sourceTree = "<group>"; };
  377. 2915543717490B9C00B86CAD /* HTTPRedirectResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPRedirectResponse.h; sourceTree = "<group>"; };
  378. 2915543817490B9C00B86CAD /* HTTPRedirectResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPRedirectResponse.m; sourceTree = "<group>"; };
  379. 2915543917490B9C00B86CAD /* WebSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebSocket.h; path = ImportedSources/CocoaHTTPServer/Core/WebSocket.h; sourceTree = SOURCE_ROOT; };
  380. 2915543A17490B9C00B86CAD /* WebSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebSocket.m; path = ImportedSources/CocoaHTTPServer/Core/WebSocket.m; sourceTree = SOURCE_ROOT; };
  381. 2915544217490D4A00B86CAD /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
  382. 7AC8629B1765DC560011611A /* style.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; path = style.css; sourceTree = "<group>"; };
  383. 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "jquery-1.10.1.min.js"; sourceTree = "<group>"; };
  384. 7AC8629F1765E90C0011611A /* jquery.fileupload.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jquery.fileupload.js; sourceTree = "<group>"; };
  385. 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "jquery.iframe-transport.js"; sourceTree = "<group>"; };
  386. 7AC862A11765E90C0011611A /* jquery.ui.widget.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jquery.ui.widget.js; sourceTree = "<group>"; };
  387. 7D00161A17704DAC00649F27 /* main.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = main.js; sourceTree = "<group>"; };
  388. 7D05ADEA174945CE0087550C /* DropboxSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DropboxSDK.framework; path = ImportedSources/Dropbox/DropboxSDK.framework; sourceTree = "<group>"; };
  389. 7D0699C017CB1FAE00713BEB /* Settings@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Settings@2x.png"; sourceTree = "<group>"; };
  390. 7D0699C117CB1FAE00713BEB /* TVShows.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TVShows.png; sourceTree = "<group>"; };
  391. 7D0699C217CB1FAE00713BEB /* TVShows@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "TVShows@2x.png"; sourceTree = "<group>"; };
  392. 7D0699C317CB1FAE00713BEB /* WifiUp.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = WifiUp.png; sourceTree = "<group>"; };
  393. 7D0699C417CB1FAE00713BEB /* WifiUp@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "WifiUp@2x.png"; sourceTree = "<group>"; };
  394. 7D0699C517CB1FAE00713BEB /* WifiUpOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = WifiUpOn.png; sourceTree = "<group>"; };
  395. 7D0699C617CB1FAE00713BEB /* WifiUpOn@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "WifiUpOn@2x.png"; sourceTree = "<group>"; };
  396. 7D0699C717CB1FAE00713BEB /* Dropbox@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Dropbox@2x.png"; sourceTree = "<group>"; };
  397. 7D0699C817CB1FAE00713BEB /* Local.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Local.png; sourceTree = "<group>"; };
  398. 7D0699C917CB1FAE00713BEB /* Local@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Local@2x.png"; sourceTree = "<group>"; };
  399. 7D0699CA17CB1FAE00713BEB /* MusicAlbums.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = MusicAlbums.png; sourceTree = "<group>"; };
  400. 7D0699CB17CB1FAE00713BEB /* MusicAlbums@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "MusicAlbums@2x.png"; sourceTree = "<group>"; };
  401. 7D0699CC17CB1FAE00713BEB /* OpenNetStream.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = OpenNetStream.png; sourceTree = "<group>"; };
  402. 7D0699CD17CB1FAE00713BEB /* OpenNetStream@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "OpenNetStream@2x.png"; sourceTree = "<group>"; };
  403. 7D0699CE17CB1FAE00713BEB /* Settings.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Settings.png; sourceTree = "<group>"; };
  404. 7D0699CF17CB1FAE00713BEB /* About.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = About.png; sourceTree = "<group>"; };
  405. 7D0699D017CB1FAE00713BEB /* About@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "About@2x.png"; sourceTree = "<group>"; };
  406. 7D0699D117CB1FAE00713BEB /* AllFiles.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = AllFiles.png; sourceTree = "<group>"; };
  407. 7D0699D217CB1FAE00713BEB /* AllFiles@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "AllFiles@2x.png"; sourceTree = "<group>"; };
  408. 7D0699D317CB1FAE00713BEB /* Downloads.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Downloads.png; sourceTree = "<group>"; };
  409. 7D0699D417CB1FAE00713BEB /* Downloads@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Downloads@2x.png"; sourceTree = "<group>"; };
  410. 7D0699D517CB1FAE00713BEB /* Dropbox.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Dropbox.png; sourceTree = "<group>"; };
  411. 7D07F706175665ED00CDE21C /* navBarBackground@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "navBarBackground@2x.png"; sourceTree = "<group>"; };
  412. 7D07F707175665ED00CDE21C /* navBarBackground.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = navBarBackground.png; sourceTree = "<group>"; };
  413. 7D07F70A175669A800CDE21C /* button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = button.png; sourceTree = "<group>"; };
  414. 7D07F70B175669A800CDE21C /* button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "button@2x.png"; sourceTree = "<group>"; };
  415. 7D07F70E175669D800CDE21C /* buttonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = buttonHighlight.png; sourceTree = "<group>"; };
  416. 7D07F70F175669D800CDE21C /* buttonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "buttonHighlight@2x.png"; sourceTree = "<group>"; };
  417. 7D07F71217566C4A00CDE21C /* menuCone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuCone.png; sourceTree = "<group>"; };
  418. 7D07F71317566C4A00CDE21C /* menuCone@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuCone@2x.png"; sourceTree = "<group>"; };
  419. 7D07F71A175673D100CDE21C /* menuBtnBckHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuBtnBckHighlight@2x.png"; sourceTree = "<group>"; };
  420. 7D07F71B175673D100CDE21C /* menuBtnBck@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuBtnBck@2x.png"; sourceTree = "<group>"; };
  421. 7D07F71C175673D100CDE21C /* menuBtnBckHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuBtnBckHighlight.png; sourceTree = "<group>"; };
  422. 7D07F71D175673D100CDE21C /* menuBtnBck.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuBtnBck.png; sourceTree = "<group>"; };
  423. 7D07F722175688D300CDE21C /* doneButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = doneButton.png; sourceTree = "<group>"; };
  424. 7D07F723175688D300CDE21C /* doneButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doneButton@2x.png"; sourceTree = "<group>"; };
  425. 7D07F724175688D300CDE21C /* doneButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = doneButtonHighlight.png; sourceTree = "<group>"; };
  426. 7D07F725175688D300CDE21C /* doneButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "doneButtonHighlight@2x.png"; sourceTree = "<group>"; };
  427. 7D07F72A175691CB00CDE21C /* backButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = backButton.png; sourceTree = "<group>"; };
  428. 7D07F72B175691CC00CDE21C /* backButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "backButton@2x.png"; sourceTree = "<group>"; };
  429. 7D07F72C175691CC00CDE21C /* backButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = backButtonHighlight.png; sourceTree = "<group>"; };
  430. 7D07F72D175691CC00CDE21C /* backButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "backButtonHighlight@2x.png"; sourceTree = "<group>"; };
  431. 7D16035917BF9FE600F29B34 /* sudHeaderBg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sudHeaderBg.png; sourceTree = "<group>"; };
  432. 7D16035A17BF9FE600F29B34 /* sudHeaderBg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sudHeaderBg@2x.png"; sourceTree = "<group>"; };
  433. 7D16035B17BF9FE600F29B34 /* headerSidebar@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "headerSidebar@2x.png"; sourceTree = "<group>"; };
  434. 7D16035C17BF9FE600F29B34 /* headerSidebar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = headerSidebar.png; sourceTree = "<group>"; };
  435. 7D19492B17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/Localizable.strings; sourceTree = "<group>"; };
  436. 7D19492C17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  437. 7D19492D17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  438. 7D19492E17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  439. 7D19492F17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  440. 7D1AB27C179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
  441. 7D1AB27D179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  442. 7D1AB27E179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  443. 7D1AB27F179C98C0004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  444. 7D1AB280179C98C0004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  445. 7D1AB281179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  446. 7D1AB282179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  447. 7D1AB283179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  448. 7D1AB284179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  449. 7D1AB285179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  450. 7D1AB286179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
  451. 7D1AB287179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  452. 7D1AB288179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  453. 7D1AB289179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  454. 7D1AB28A179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  455. 7D1AB28B179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  456. 7D1AB28C179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  457. 7D1AB28D179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  458. 7D1AB28E179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  459. 7D1AB28F179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  460. 7D1AB290179C98E3004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
  461. 7D1AB291179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  462. 7D1AB292179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  463. 7D1AB293179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  464. 7D1AB294179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  465. 7D1AB295179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Localizable.strings; sourceTree = "<group>"; };
  466. 7D1AB296179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  467. 7D1AB297179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  468. 7D1AB298179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  469. 7D1AB299179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  470. 7D1AB2A4179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  471. 7D1AB2A5179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  472. 7D1AB2A6179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  473. 7D1AB2A7179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  474. 7D1AB2A8179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  475. 7D1AC3021762996100BD2EB5 /* resetIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = resetIcon.png; sourceTree = "<group>"; };
  476. 7D1AC3031762996100BD2EB5 /* resetIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "resetIcon@2x.png"; sourceTree = "<group>"; };
  477. 7D1AC30617629AB600BD2EB5 /* ratioIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ratioIcon.png; sourceTree = "<group>"; };
  478. 7D1AC30717629AB600BD2EB5 /* ratioIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ratioIcon@2x.png"; sourceTree = "<group>"; };
  479. 7D1AC30A17629D4600BD2EB5 /* title.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = title.png; sourceTree = "<group>"; };
  480. 7D1AC30B17629D4600BD2EB5 /* title@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "title@2x.png"; sourceTree = "<group>"; };
  481. 7D223E18181EC56E00B36798 /* gradient-cell-ios7-ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "gradient-cell-ios7-ipad.png"; sourceTree = "<group>"; };
  482. 7D223E19181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "gradient-cell-ios7-ipad@2x.png"; sourceTree = "<group>"; };
  483. 7D2A34A21805CDBA004078AA /* gradient-cell-ios7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "gradient-cell-ios7.png"; sourceTree = "<group>"; };
  484. 7D2A34A31805CDBA004078AA /* gradient-cell-ios7@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "gradient-cell-ios7@2x.png"; sourceTree = "<group>"; };
  485. 7D2AEDE017FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  486. 7D2AEDE117FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  487. 7D2AEDE217FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  488. 7D2AEDE317FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  489. 7D2AEDE417FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  490. 7D2AEDE517FB785100B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  491. 7D2AEDE617FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  492. 7D2AEDE717FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  493. 7D2AEDE817FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  494. 7D2AEDE917FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  495. 7D30F3BC183AB24C00FFC021 /* VLCHTTPConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCHTTPConnection.h; path = Sources/VLCHTTPConnection.h; sourceTree = SOURCE_ROOT; };
  496. 7D30F3BD183AB24C00FFC021 /* VLCHTTPConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCHTTPConnection.m; path = Sources/VLCHTTPConnection.m; sourceTree = SOURCE_ROOT; };
  497. 7D30F3BE183AB24C00FFC021 /* VLCHTTPFileDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCHTTPFileDownloader.h; path = Sources/VLCHTTPFileDownloader.h; sourceTree = SOURCE_ROOT; };
  498. 7D30F3BF183AB24C00FFC021 /* VLCHTTPFileDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCHTTPFileDownloader.m; path = Sources/VLCHTTPFileDownloader.m; sourceTree = SOURCE_ROOT; };
  499. 7D30F3C0183AB24C00FFC021 /* VLCHTTPUploaderController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCHTTPUploaderController.h; path = Sources/VLCHTTPUploaderController.h; sourceTree = SOURCE_ROOT; };
  500. 7D30F3C1183AB24C00FFC021 /* VLCHTTPUploaderController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCHTTPUploaderController.m; path = Sources/VLCHTTPUploaderController.m; sourceTree = SOURCE_ROOT; };
  501. 7D30F3C5183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCOpenNetworkStreamViewController.h; path = Sources/VLCOpenNetworkStreamViewController.h; sourceTree = SOURCE_ROOT; };
  502. 7D30F3C6183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCOpenNetworkStreamViewController.m; path = Sources/VLCOpenNetworkStreamViewController.m; sourceTree = SOURCE_ROOT; };
  503. 7D30F3C8183AB27A00FFC021 /* VLCDownloadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDownloadViewController.h; path = Sources/VLCDownloadViewController.h; sourceTree = SOURCE_ROOT; };
  504. 7D30F3C9183AB27A00FFC021 /* VLCDownloadViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCDownloadViewController.m; path = Sources/VLCDownloadViewController.m; sourceTree = SOURCE_ROOT; };
  505. 7D30F3CB183AB29300FFC021 /* VLCMenuTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMenuTableViewController.h; path = Sources/VLCMenuTableViewController.h; sourceTree = SOURCE_ROOT; };
  506. 7D30F3CC183AB29300FFC021 /* VLCMenuTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMenuTableViewController.m; path = Sources/VLCMenuTableViewController.m; sourceTree = SOURCE_ROOT; };
  507. 7D30F3CE183AB2AC00FFC021 /* VLCMediaFileDiscoverer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMediaFileDiscoverer.h; path = Sources/VLCMediaFileDiscoverer.h; sourceTree = SOURCE_ROOT; };
  508. 7D30F3CF183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMediaFileDiscoverer.m; path = Sources/VLCMediaFileDiscoverer.m; sourceTree = SOURCE_ROOT; };
  509. 7D30F3D1183AB2F100FFC021 /* VLCLocalNetworkListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLocalNetworkListCell.h; path = Sources/VLCLocalNetworkListCell.h; sourceTree = SOURCE_ROOT; };
  510. 7D30F3D2183AB2F100FFC021 /* VLCLocalNetworkListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLocalNetworkListCell.m; path = Sources/VLCLocalNetworkListCell.m; sourceTree = SOURCE_ROOT; };
  511. 7D30F3D3183AB2F100FFC021 /* VLCLocalServerFolderListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLocalServerFolderListViewController.h; path = Sources/VLCLocalServerFolderListViewController.h; sourceTree = SOURCE_ROOT; };
  512. 7D30F3D4183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLocalServerFolderListViewController.m; path = Sources/VLCLocalServerFolderListViewController.m; sourceTree = SOURCE_ROOT; };
  513. 7D30F3D5183AB2F100FFC021 /* VLCLocalServerListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLocalServerListViewController.h; path = Sources/VLCLocalServerListViewController.h; sourceTree = SOURCE_ROOT; };
  514. 7D30F3D6183AB2F100FFC021 /* VLCLocalServerListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLocalServerListViewController.m; path = Sources/VLCLocalServerListViewController.m; sourceTree = SOURCE_ROOT; };
  515. 7D30F3DA183AB2F900FFC021 /* VLCNetworkLoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCNetworkLoginViewController.h; path = Sources/VLCNetworkLoginViewController.h; sourceTree = SOURCE_ROOT; };
  516. 7D30F3DB183AB2F900FFC021 /* VLCNetworkLoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCNetworkLoginViewController.m; path = Sources/VLCNetworkLoginViewController.m; sourceTree = SOURCE_ROOT; };
  517. 7D30F3DD183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCWiFiUploadTableViewCell.h; path = Sources/VLCWiFiUploadTableViewCell.h; sourceTree = SOURCE_ROOT; };
  518. 7D30F3DE183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCWiFiUploadTableViewCell.m; path = Sources/VLCWiFiUploadTableViewCell.m; sourceTree = SOURCE_ROOT; };
  519. 7D30F3E0183AB33200FFC021 /* VLCSidebarViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCSidebarViewCell.h; path = Sources/VLCSidebarViewCell.h; sourceTree = SOURCE_ROOT; };
  520. 7D30F3E1183AB33200FFC021 /* VLCSidebarViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCSidebarViewCell.m; path = Sources/VLCSidebarViewCell.m; sourceTree = SOURCE_ROOT; };
  521. 7D30F3E3183AB34200FFC021 /* VLCGoogleDriveConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCGoogleDriveConstants.h; path = Sources/VLCGoogleDriveConstants.h; sourceTree = SOURCE_ROOT; };
  522. 7D30F3E4183AB34200FFC021 /* VLCGoogleDriveController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCGoogleDriveController.h; path = Sources/VLCGoogleDriveController.h; sourceTree = SOURCE_ROOT; };
  523. 7D30F3E5183AB34200FFC021 /* VLCGoogleDriveController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCGoogleDriveController.m; path = Sources/VLCGoogleDriveController.m; sourceTree = SOURCE_ROOT; };
  524. 7D30F3E8183AB34200FFC021 /* VLCGoogleDriveTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCGoogleDriveTableViewController.h; path = Sources/VLCGoogleDriveTableViewController.h; sourceTree = SOURCE_ROOT; };
  525. 7D30F3E9183AB34200FFC021 /* VLCGoogleDriveTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCGoogleDriveTableViewController.m; path = Sources/VLCGoogleDriveTableViewController.m; sourceTree = SOURCE_ROOT; };
  526. 7D31001B17B64AE100E6516D /* GHRevealViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = GHRevealViewController.h; path = ImportedSources/GHSidebarNav/GHSidebarNav/GHRevealViewController.h; sourceTree = SOURCE_ROOT; };
  527. 7D31001C17B64AE100E6516D /* GHRevealViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = GHRevealViewController.m; path = ImportedSources/GHSidebarNav/GHSidebarNav/GHRevealViewController.m; sourceTree = SOURCE_ROOT; };
  528. 7D31001F17B6768B00E6516D /* libupnpx.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libupnpx.a; path = External/upnpx/libupnpx.a; sourceTree = "<group>"; };
  529. 7D37848D183A98B6009EE944 /* VLCMovieViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMovieViewController.h; path = Sources/VLCMovieViewController.h; sourceTree = SOURCE_ROOT; };
  530. 7D37848E183A98B6009EE944 /* VLCMovieViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMovieViewController.m; path = Sources/VLCMovieViewController.m; sourceTree = SOURCE_ROOT; };
  531. 7D378490183A98BF009EE944 /* VLCExternalDisplayController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCExternalDisplayController.h; path = Sources/VLCExternalDisplayController.h; sourceTree = SOURCE_ROOT; };
  532. 7D378491183A98BF009EE944 /* VLCExternalDisplayController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCExternalDisplayController.m; path = Sources/VLCExternalDisplayController.m; sourceTree = SOURCE_ROOT; };
  533. 7D378493183A98D1009EE944 /* VLCPlaylistCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlaylistCollectionViewCell.h; path = Sources/VLCPlaylistCollectionViewCell.h; sourceTree = SOURCE_ROOT; };
  534. 7D378494183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlaylistCollectionViewCell.m; path = Sources/VLCPlaylistCollectionViewCell.m; sourceTree = SOURCE_ROOT; };
  535. 7D378495183A98D1009EE944 /* VLCPlaylistTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlaylistTableViewCell.h; path = Sources/VLCPlaylistTableViewCell.h; sourceTree = SOURCE_ROOT; };
  536. 7D378496183A98D1009EE944 /* VLCPlaylistTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlaylistTableViewCell.m; path = Sources/VLCPlaylistTableViewCell.m; sourceTree = SOURCE_ROOT; };
  537. 7D378497183A98D1009EE944 /* VLCPlaylistViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlaylistViewController.h; path = Sources/VLCPlaylistViewController.h; sourceTree = SOURCE_ROOT; };
  538. 7D378498183A98D1009EE944 /* VLCPlaylistViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlaylistViewController.m; path = Sources/VLCPlaylistViewController.m; sourceTree = SOURCE_ROOT; };
  539. 7D37849C183A98DD009EE944 /* VLCThumbnailsCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCThumbnailsCache.h; path = Sources/VLCThumbnailsCache.h; sourceTree = SOURCE_ROOT; };
  540. 7D37849D183A98DD009EE944 /* VLCThumbnailsCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCThumbnailsCache.m; path = Sources/VLCThumbnailsCache.m; sourceTree = SOURCE_ROOT; };
  541. 7D37849F183A98EB009EE944 /* VLCBugreporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCBugreporter.h; path = Sources/VLCBugreporter.h; sourceTree = SOURCE_ROOT; };
  542. 7D3784A0183A98EB009EE944 /* VLCBugreporter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCBugreporter.m; path = Sources/VLCBugreporter.m; sourceTree = SOURCE_ROOT; };
  543. 7D3784A2183A98F5009EE944 /* VLCAboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCAboutViewController.h; path = Sources/VLCAboutViewController.h; sourceTree = SOURCE_ROOT; };
  544. 7D3784A3183A98F5009EE944 /* VLCAboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCAboutViewController.m; path = Sources/VLCAboutViewController.m; sourceTree = SOURCE_ROOT; };
  545. 7D3784A4183A98F5009EE944 /* VLCSettingsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCSettingsController.h; path = Sources/VLCSettingsController.h; sourceTree = SOURCE_ROOT; };
  546. 7D3784A5183A98F5009EE944 /* VLCSettingsController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCSettingsController.m; path = Sources/VLCSettingsController.m; sourceTree = SOURCE_ROOT; };
  547. 7D3784A8183A9906009EE944 /* VLCDropboxConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDropboxConstants.h; path = Sources/VLCDropboxConstants.h; sourceTree = SOURCE_ROOT; };
  548. 7D3784A9183A9906009EE944 /* VLCDropboxController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDropboxController.h; path = Sources/VLCDropboxController.h; sourceTree = SOURCE_ROOT; };
  549. 7D3784AA183A9906009EE944 /* VLCDropboxController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCDropboxController.m; path = Sources/VLCDropboxController.m; sourceTree = SOURCE_ROOT; };
  550. 7D3784AB183A9906009EE944 /* VLCDropboxTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDropboxTableViewController.h; path = Sources/VLCDropboxTableViewController.h; sourceTree = SOURCE_ROOT; };
  551. 7D3784AC183A9906009EE944 /* VLCDropboxTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCDropboxTableViewController.m; path = Sources/VLCDropboxTableViewController.m; sourceTree = SOURCE_ROOT; };
  552. 7D3784AF183A990F009EE944 /* VLCCloudStorageTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCCloudStorageTableViewCell.h; path = Sources/VLCCloudStorageTableViewCell.h; sourceTree = SOURCE_ROOT; };
  553. 7D3784B0183A990F009EE944 /* VLCCloudStorageTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCCloudStorageTableViewCell.m; path = Sources/VLCCloudStorageTableViewCell.m; sourceTree = SOURCE_ROOT; };
  554. 7D3784B2183A9938009EE944 /* UIBarButtonItem+Theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIBarButtonItem+Theme.h"; path = "Sources/UIBarButtonItem+Theme.h"; sourceTree = SOURCE_ROOT; };
  555. 7D3784B3183A9938009EE944 /* UIBarButtonItem+Theme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIBarButtonItem+Theme.m"; path = "Sources/UIBarButtonItem+Theme.m"; sourceTree = SOURCE_ROOT; };
  556. 7D3784B4183A9938009EE944 /* UINavigationController+Theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UINavigationController+Theme.h"; path = "Sources/UINavigationController+Theme.h"; sourceTree = SOURCE_ROOT; };
  557. 7D3784B5183A9938009EE944 /* UINavigationController+Theme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UINavigationController+Theme.m"; path = "Sources/UINavigationController+Theme.m"; sourceTree = SOURCE_ROOT; };
  558. 7D3784B6183A9938009EE944 /* VLCLinearProgressIndicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLinearProgressIndicator.h; path = Sources/VLCLinearProgressIndicator.h; sourceTree = SOURCE_ROOT; };
  559. 7D3784B7183A9938009EE944 /* VLCLinearProgressIndicator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLinearProgressIndicator.m; path = Sources/VLCLinearProgressIndicator.m; sourceTree = SOURCE_ROOT; };
  560. 7D3784B8183A9938009EE944 /* VLCMenuButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMenuButton.h; path = Sources/VLCMenuButton.h; sourceTree = SOURCE_ROOT; };
  561. 7D3784B9183A9938009EE944 /* VLCMenuButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMenuButton.m; path = Sources/VLCMenuButton.m; sourceTree = SOURCE_ROOT; };
  562. 7D3784BA183A9938009EE944 /* VLCSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCSlider.h; path = Sources/VLCSlider.h; sourceTree = SOURCE_ROOT; };
  563. 7D3784BB183A9938009EE944 /* VLCSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCSlider.m; path = Sources/VLCSlider.m; sourceTree = SOURCE_ROOT; };
  564. 7D3784BC183A9938009EE944 /* VLCStatusLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCStatusLabel.h; path = Sources/VLCStatusLabel.h; sourceTree = SOURCE_ROOT; };
  565. 7D3784BD183A9938009EE944 /* VLCStatusLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCStatusLabel.m; path = Sources/VLCStatusLabel.m; sourceTree = SOURCE_ROOT; };
  566. 7D3784C4183A9972009EE944 /* NSString+SupportedMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSString+SupportedMedia.h"; path = "Sources/NSString+SupportedMedia.h"; sourceTree = SOURCE_ROOT; };
  567. 7D3784C5183A9972009EE944 /* NSString+SupportedMedia.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSString+SupportedMedia.m"; path = "Sources/NSString+SupportedMedia.m"; sourceTree = SOURCE_ROOT; };
  568. 7D3784C6183A9972009EE944 /* UIDevice+SpeedCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIDevice+SpeedCategory.h"; path = "Sources/UIDevice+SpeedCategory.h"; sourceTree = SOURCE_ROOT; };
  569. 7D3784C7183A9972009EE944 /* UIDevice+SpeedCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIDevice+SpeedCategory.m"; path = "Sources/UIDevice+SpeedCategory.m"; sourceTree = SOURCE_ROOT; };
  570. 7D3784CA183A99BA009EE944 /* PAPasscodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PAPasscodeViewController.h; path = PAPasscode/PAPasscodeViewController.h; sourceTree = SOURCE_ROOT; };
  571. 7D3784CB183A99BA009EE944 /* PAPasscodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PAPasscodeViewController.m; path = PAPasscode/PAPasscodeViewController.m; sourceTree = SOURCE_ROOT; };
  572. 7D3784D9183A99D2009EE944 /* papasscode_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_background.png; sourceTree = "<group>"; };
  573. 7D3784DA183A99D2009EE944 /* papasscode_background@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_background@2x.png"; sourceTree = "<group>"; };
  574. 7D3784DB183A99D2009EE944 /* papasscode_failed_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_failed_bg.png; sourceTree = "<group>"; };
  575. 7D3784DC183A99D2009EE944 /* papasscode_failed_bg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_failed_bg@2x.png"; sourceTree = "<group>"; };
  576. 7D3784DD183A99D2009EE944 /* papasscode_marker.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_marker.png; sourceTree = "<group>"; };
  577. 7D3784DE183A99D2009EE944 /* papasscode_marker@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_marker@2x.png"; sourceTree = "<group>"; };
  578. 7D3784E5183A99E1009EE944 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Reachability.h; path = Sources/Reachability.h; sourceTree = SOURCE_ROOT; };
  579. 7D3784E6183A99E1009EE944 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Reachability.m; path = Sources/Reachability.m; sourceTree = SOURCE_ROOT; };
  580. 7D3784E8183A9A15009EE944 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Sources/main.m; sourceTree = SOURCE_ROOT; };
  581. 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; };
  582. 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; };
  583. 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  584. 7D47D6CB1760CD8700E86BAD /* subtitleIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = subtitleIcon.png; sourceTree = "<group>"; };
  585. 7D47D6CC1760CD8700E86BAD /* subtitleIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "subtitleIcon@2x.png"; sourceTree = "<group>"; };
  586. 7D47D6CD1760CD8700E86BAD /* videoEffectsIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = videoEffectsIcon.png; sourceTree = "<group>"; };
  587. 7D47D6CE1760CD8700E86BAD /* videoEffectsIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "videoEffectsIcon@2x.png"; sourceTree = "<group>"; };
  588. 7D47D6CF1760CD8700E86BAD /* seekbarBg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "seekbarBg@2x.png"; sourceTree = "<group>"; };
  589. 7D47D6D01760CD8700E86BAD /* slidermaximumTrack.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slidermaximumTrack.png; sourceTree = "<group>"; };
  590. 7D47D6D11760CD8700E86BAD /* slidermaximumTrack@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "slidermaximumTrack@2x.png"; sourceTree = "<group>"; };
  591. 7D47D6D21760CD8700E86BAD /* slidermaxValue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = slidermaxValue.png; sourceTree = "<group>"; };
  592. 7D47D6D31760CD8700E86BAD /* slidermaxValue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "slidermaxValue@2x.png"; sourceTree = "<group>"; };
  593. 7D47D6D41760CD8700E86BAD /* sliderminiValue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sliderminiValue.png; sourceTree = "<group>"; };
  594. 7D47D6D51760CD8700E86BAD /* sliderminiValue@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sliderminiValue@2x.png"; sourceTree = "<group>"; };
  595. 7D47D6D81760CD8700E86BAD /* speedIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = speedIcon.png; sourceTree = "<group>"; };
  596. 7D47D6D91760CD8700E86BAD /* speedIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "speedIcon@2x.png"; sourceTree = "<group>"; };
  597. 7D47D6DA1760CD8700E86BAD /* playbackControllerBg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playbackControllerBg@2x.png"; sourceTree = "<group>"; };
  598. 7D47D6DB1760CD8700E86BAD /* playbackDoneButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playbackDoneButton.png; sourceTree = "<group>"; };
  599. 7D47D6DC1760CD8700E86BAD /* playbackDoneButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playbackDoneButton@2x.png"; sourceTree = "<group>"; };
  600. 7D47D6DD1760CD8700E86BAD /* playbackDoneButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playbackDoneButtonHighlight.png; sourceTree = "<group>"; };
  601. 7D47D6DE1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playbackDoneButtonHighlight@2x.png"; sourceTree = "<group>"; };
  602. 7D47D6DF1760CD8700E86BAD /* ratioButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ratioButton.png; sourceTree = "<group>"; };
  603. 7D47D6E01760CD8700E86BAD /* ratioButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ratioButton@2x.png"; sourceTree = "<group>"; };
  604. 7D47D6E11760CD8700E86BAD /* ratioButtonHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ratioButtonHighlight.png; sourceTree = "<group>"; };
  605. 7D47D6E21760CD8700E86BAD /* ratioButtonHighlight@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ratioButtonHighlight@2x.png"; sourceTree = "<group>"; };
  606. 7D47D6E31760CD8700E86BAD /* seekbarBg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = seekbarBg.png; sourceTree = "<group>"; };
  607. 7D47D6E51760CD8700E86BAD /* forwardIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = forwardIcon.png; sourceTree = "<group>"; };
  608. 7D47D6E61760CD8700E86BAD /* forwardIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "forwardIcon@2x.png"; sourceTree = "<group>"; };
  609. 7D47D6E71760CD8700E86BAD /* knobSlider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = knobSlider.png; sourceTree = "<group>"; };
  610. 7D47D6E81760CD8700E86BAD /* knobSlider@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "knobSlider@2x.png"; sourceTree = "<group>"; };
  611. 7D47D6EB1760CD8700E86BAD /* playbackControllerBg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playbackControllerBg.png; sourceTree = "<group>"; };
  612. 7D47D6EC1760CD8700E86BAD /* playIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = playIcon.png; sourceTree = "<group>"; };
  613. 7D47D6ED1760CD8700E86BAD /* playIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "playIcon@2x.png"; sourceTree = "<group>"; };
  614. 7D47D6EE1760CD8700E86BAD /* audioTrackIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = audioTrackIcon.png; sourceTree = "<group>"; };
  615. 7D47D6EF1760CD8700E86BAD /* audioTrackIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "audioTrackIcon@2x.png"; sourceTree = "<group>"; };
  616. 7D47D6F01760CD8700E86BAD /* backIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = backIcon.png; sourceTree = "<group>"; };
  617. 7D47D6F11760CD8700E86BAD /* backIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "backIcon@2x.png"; sourceTree = "<group>"; };
  618. 7D47D6F21760CD8700E86BAD /* ballSlider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = ballSlider.png; sourceTree = "<group>"; };
  619. 7D47D6F31760CD8700E86BAD /* ballSlider@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "ballSlider@2x.png"; sourceTree = "<group>"; };
  620. 7D47D7251760D77C00E86BAD /* pauseIcon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pauseIcon.png; sourceTree = "<group>"; };
  621. 7D47D7261760D77C00E86BAD /* pauseIcon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "pauseIcon@2x.png"; sourceTree = "<group>"; };
  622. 7D47D7291760E3A000E86BAD /* sliderminimumTrack.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = sliderminimumTrack.png; sourceTree = "<group>"; };
  623. 7D47D72A1760E3A000E86BAD /* sliderminimumTrack@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sliderminimumTrack@2x.png"; sourceTree = "<group>"; };
  624. 7D49E178175A47A4002D1450 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
  625. 7D4BE733175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
  626. 7D4BE734175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  627. 7D4BE735175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  628. 7D4BE736175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  629. 7D4BE737175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  630. 7D4C484417ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bs; path = bs.lproj/Localizable.strings; sourceTree = "<group>"; };
  631. 7D4C484517ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  632. 7D4C484617ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  633. 7D4C484717ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  634. 7D4C484817ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  635. 7D514D3D17F779C6007B960C /* Drive@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Drive@2x.png"; sourceTree = "<group>"; };
  636. 7D514D3E17F779C6007B960C /* DriveWhite.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DriveWhite.png; sourceTree = "<group>"; };
  637. 7D514D3F17F779C6007B960C /* DriveWhite@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "DriveWhite@2x.png"; sourceTree = "<group>"; };
  638. 7D514D4017F779C6007B960C /* Drive.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Drive.png; sourceTree = "<group>"; };
  639. 7D5C204917999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  640. 7D5C204A17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  641. 7D5C204B17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  642. 7D5C204C17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  643. 7D5C204D17999A74004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  644. 7D5DD5C617590ABF001421E3 /* About Contents.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "About Contents.html"; sourceTree = "<group>"; };
  645. 7D5E39C8174FC2F3007DAFA1 /* dropbox-white.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropbox-white.png"; sourceTree = "<group>"; };
  646. 7D5E39C9174FC2F3007DAFA1 /* dropbox-white@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "dropbox-white@2x.png"; sourceTree = "<group>"; };
  647. 7D6B08BB174A72A900A05173 /* VLCConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCConstants.h; path = Sources/VLCConstants.h; sourceTree = "<group>"; };
  648. 7D6B08C0174A831900A05173 /* vlc-xmas.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "vlc-xmas.png"; sourceTree = "<group>"; };
  649. 7D6B08C1174A831900A05173 /* vlc-xmas@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "vlc-xmas@2x.png"; sourceTree = "<group>"; };
  650. 7D6B08CC174D65B500A05173 /* IASKAppSettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKAppSettingsViewController.h; sourceTree = "<group>"; };
  651. 7D6B08CD174D65B500A05173 /* IASKAppSettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKAppSettingsViewController.m; sourceTree = "<group>"; };
  652. 7D6B08CE174D65B500A05173 /* IASKAppSettingsWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKAppSettingsWebViewController.h; sourceTree = "<group>"; };
  653. 7D6B08CF174D65B500A05173 /* IASKAppSettingsWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKAppSettingsWebViewController.m; sourceTree = "<group>"; };
  654. 7D6B08D0174D65B500A05173 /* IASKSpecifierValuesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSpecifierValuesViewController.h; sourceTree = "<group>"; };
  655. 7D6B08D1174D65B500A05173 /* IASKSpecifierValuesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSpecifierValuesViewController.m; sourceTree = "<group>"; };
  656. 7D6B08D2174D65B500A05173 /* IASKViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKViewController.h; sourceTree = "<group>"; };
  657. 7D6B08D4174D65B500A05173 /* IASKSettingsReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsReader.h; sourceTree = "<group>"; };
  658. 7D6B08D5174D65B500A05173 /* IASKSettingsReader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsReader.m; sourceTree = "<group>"; };
  659. 7D6B08D6174D65B500A05173 /* IASKSettingsStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStore.h; sourceTree = "<group>"; };
  660. 7D6B08D7174D65B500A05173 /* IASKSettingsStore.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStore.m; sourceTree = "<group>"; };
  661. 7D6B08D8174D65B500A05173 /* IASKSettingsStoreFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStoreFile.h; sourceTree = "<group>"; };
  662. 7D6B08D9174D65B500A05173 /* IASKSettingsStoreFile.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStoreFile.m; sourceTree = "<group>"; };
  663. 7D6B08DA174D65B500A05173 /* IASKSettingsStoreUserDefaults.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSettingsStoreUserDefaults.h; sourceTree = "<group>"; };
  664. 7D6B08DB174D65B500A05173 /* IASKSettingsStoreUserDefaults.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSettingsStoreUserDefaults.m; sourceTree = "<group>"; };
  665. 7D6B08DC174D65B500A05173 /* IASKSpecifier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSpecifier.h; sourceTree = "<group>"; };
  666. 7D6B08DD174D65B500A05173 /* IASKSpecifier.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSpecifier.m; sourceTree = "<group>"; };
  667. 7D6B08DF174D65B500A05173 /* IASKPSSliderSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSSliderSpecifierViewCell.h; sourceTree = "<group>"; };
  668. 7D6B08E0174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSSliderSpecifierViewCell.m; sourceTree = "<group>"; };
  669. 7D6B08E1174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSTextFieldSpecifierViewCell.h; sourceTree = "<group>"; };
  670. 7D6B08E2174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSTextFieldSpecifierViewCell.m; sourceTree = "<group>"; };
  671. 7D6B08E3174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKPSTitleValueSpecifierViewCell.h; sourceTree = "<group>"; };
  672. 7D6B08E4174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKPSTitleValueSpecifierViewCell.m; sourceTree = "<group>"; };
  673. 7D6B08E5174D65B500A05173 /* IASKSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSlider.h; sourceTree = "<group>"; };
  674. 7D6B08E6174D65B500A05173 /* IASKSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSlider.m; sourceTree = "<group>"; };
  675. 7D6B08E7174D65B500A05173 /* IASKSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKSwitch.h; sourceTree = "<group>"; };
  676. 7D6B08E8174D65B500A05173 /* IASKSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKSwitch.m; sourceTree = "<group>"; };
  677. 7D6B08E9174D65B500A05173 /* IASKTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKTextField.h; sourceTree = "<group>"; };
  678. 7D6B08EA174D65B500A05173 /* IASKTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKTextField.m; sourceTree = "<group>"; };
  679. 7D6B08F9174D716200A05173 /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
  680. 7D6B08FB174D773C00A05173 /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Settings.bundle; path = Resources/Settings.bundle; sourceTree = SOURCE_ROOT; };
  681. 7D6BD1801762026700AD311A /* thumbOverlayPhone@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "thumbOverlayPhone@2x.png"; sourceTree = "<group>"; };
  682. 7D6BD1811762026700AD311A /* thumbOverlay@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "thumbOverlay@2x.png"; sourceTree = "<group>"; };
  683. 7D6BD1821762026700AD311A /* thumbOverlayPhone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thumbOverlayPhone.png; sourceTree = "<group>"; };
  684. 7D6BD1831762026700AD311A /* thumbOverlay.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = thumbOverlay.png; sourceTree = "<group>"; };
  685. 7D6D13591758D1A00007EA9A /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  686. 7D711AD918227A490094E4F0 /* GTMOAuth2ViewTouch.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = GTMOAuth2ViewTouch.xib; path = ImportedSources/GDrive/OAuth2/Touch/GTMOAuth2ViewTouch.xib; sourceTree = SOURCE_ROOT; };
  687. 7D7DA52F1768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = "<group>"; };
  688. 7D7DA5301768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  689. 7D7DA5311768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  690. 7D7DA5321768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  691. 7D7DA5331768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  692. 7D882244185733D500D87252 /* Default-ipad-Landscape.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-ipad-Landscape.png"; sourceTree = "<group>"; };
  693. 7D882245185733D500D87252 /* Default-ipad-Landscape@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-ipad-Landscape@2x.png"; sourceTree = "<group>"; };
  694. 7D882246185733D500D87252 /* Default-ipad-Portrait.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-ipad-Portrait.png"; sourceTree = "<group>"; };
  695. 7D882247185733D500D87252 /* Default-ipad-Portrait@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-ipad-Portrait@2x.png"; sourceTree = "<group>"; };
  696. 7D882248185733D500D87252 /* Default-568h@2x~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x~iphone.png"; sourceTree = "<group>"; };
  697. 7D882249185733D500D87252 /* Default-Landscape~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-Landscape~ipad.png"; sourceTree = "<group>"; };
  698. 7D88224A185733D500D87252 /* Default-Landscape@2x~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-Landscape@2x~ipad.png"; sourceTree = "<group>"; };
  699. 7D88224B185733D500D87252 /* Default~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default~ipad.png"; sourceTree = "<group>"; };
  700. 7D88224C185733D500D87252 /* Default-Portrait@2x~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-Portrait@2x~ipad.png"; sourceTree = "<group>"; };
  701. 7D88224D185733D500D87252 /* Default~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default~iphone.png"; sourceTree = "<group>"; };
  702. 7D88224E185733D500D87252 /* Default@2x~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x~iphone.png"; sourceTree = "<group>"; };
  703. 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "VLC for iOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  704. 7D94FCDE16DE7D1000F2623B /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  705. 7D94FCE016DE7D1000F2623B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  706. 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  707. 7D9B6B0817C9625F00F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sl; path = sl.lproj/Localizable.strings; sourceTree = "<group>"; };
  708. 7D9B6B0917C9625F00F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  709. 7D9B6B0A17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  710. 7D9B6B0B17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  711. 7D9B6B0C17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  712. 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SourceCodePro-Regular.ttf"; sourceTree = "<group>"; };
  713. 7DADC55D1704FABF001DAC63 /* OBSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = OBSlider.h; path = ImportedSources/OBSlider/OBSlider/OBSlider.h; sourceTree = SOURCE_ROOT; };
  714. 7DADC55E1704FABF001DAC63 /* OBSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = OBSlider.m; path = ImportedSources/OBSlider/OBSlider/OBSlider.m; sourceTree = SOURCE_ROOT; };
  715. 7DBBF180183AB3B80009A339 /* VLCAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCAppDelegate.h; path = Sources/VLCAppDelegate.h; sourceTree = SOURCE_ROOT; };
  716. 7DBBF181183AB3B80009A339 /* VLCAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCAppDelegate.m; path = Sources/VLCAppDelegate.m; sourceTree = SOURCE_ROOT; };
  717. 7DBBF183183AB4300009A339 /* VLCAboutViewController~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCAboutViewController~ipad.xib"; path = "Resources/VLCAboutViewController~ipad.xib"; sourceTree = SOURCE_ROOT; };
  718. 7DBBF184183AB4300009A339 /* VLCAboutViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCAboutViewController~iphone.xib"; path = "Resources/VLCAboutViewController~iphone.xib"; sourceTree = SOURCE_ROOT; };
  719. 7DBBF185183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCCloudStorageTableViewCell~ipad.xib"; path = "Resources/VLCCloudStorageTableViewCell~ipad.xib"; sourceTree = SOURCE_ROOT; };
  720. 7DBBF186183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCCloudStorageTableViewCell~iphone.xib"; path = "Resources/VLCCloudStorageTableViewCell~iphone.xib"; sourceTree = SOURCE_ROOT; };
  721. 7DBBF187183AB4300009A339 /* VLCDownloadViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCDownloadViewController.xib; path = Resources/VLCDownloadViewController.xib; sourceTree = SOURCE_ROOT; };
  722. 7DBBF188183AB4300009A339 /* VLCCloudStorageTableViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCCloudStorageTableViewController.xib; path = Resources/VLCCloudStorageTableViewController.xib; sourceTree = SOURCE_ROOT; };
  723. 7DBBF189183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCEmptyLibraryView~ipad.xib"; path = "Resources/VLCEmptyLibraryView~ipad.xib"; sourceTree = SOURCE_ROOT; };
  724. 7DBBF18A183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCEmptyLibraryView~iphone.xib"; path = "Resources/VLCEmptyLibraryView~iphone.xib"; sourceTree = SOURCE_ROOT; };
  725. 7DBBF18B183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCFuturePlaylistCollectionViewCell.xib; path = Resources/VLCFuturePlaylistCollectionViewCell.xib; sourceTree = SOURCE_ROOT; };
  726. 7DBBF18C183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCFuturePlaylistTableViewCell.xib; path = Resources/VLCFuturePlaylistTableViewCell.xib; sourceTree = SOURCE_ROOT; };
  727. 7DBBF18E183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCLocalNetworkListCell~ipad.xib"; path = "Resources/VLCLocalNetworkListCell~ipad.xib"; sourceTree = SOURCE_ROOT; };
  728. 7DBBF18F183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCLocalNetworkListCell~iphone.xib"; path = "Resources/VLCLocalNetworkListCell~iphone.xib"; sourceTree = SOURCE_ROOT; };
  729. 7DBBF190183AB4300009A339 /* VLCMovieViewController~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCMovieViewController~ipad.xib"; path = "Resources/VLCMovieViewController~ipad.xib"; sourceTree = SOURCE_ROOT; };
  730. 7DBBF191183AB4300009A339 /* VLCMovieViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCMovieViewController~iphone.xib"; path = "Resources/VLCMovieViewController~iphone.xib"; sourceTree = SOURCE_ROOT; };
  731. 7DBBF192183AB4300009A339 /* VLCNetworkLoginViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCNetworkLoginViewController.xib; path = Resources/VLCNetworkLoginViewController.xib; sourceTree = SOURCE_ROOT; };
  732. 7DBBF193183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCOpenNetworkStreamViewController.xib; path = Resources/VLCOpenNetworkStreamViewController.xib; sourceTree = SOURCE_ROOT; };
  733. 7DBBF194183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlaylistCollectionViewCell.xib; path = Resources/VLCPlaylistCollectionViewCell.xib; sourceTree = SOURCE_ROOT; };
  734. 7DBBF195183AB4300009A339 /* VLCPlaylistGridView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlaylistGridView.xib; path = Resources/VLCPlaylistGridView.xib; sourceTree = SOURCE_ROOT; };
  735. 7DBBF196183AB4300009A339 /* VLCPlaylistTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlaylistTableViewCell.xib; path = Resources/VLCPlaylistTableViewCell.xib; sourceTree = SOURCE_ROOT; };
  736. 7DBBF197183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCWiFiUploadTableViewCell.xib; path = Resources/VLCWiFiUploadTableViewCell.xib; sourceTree = SOURCE_ROOT; };
  737. 7DC222771773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  738. 7DC222781773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  739. 7DC222791773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  740. 7DC2227A1773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  741. 7DC2227B1773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  742. 7DC72D5B17B7E7C7008A26D0 /* download@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "download@4x.png"; sourceTree = "<group>"; };
  743. 7DC72D5C17B7E7C7008A26D0 /* download.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = download.png; sourceTree = "<group>"; };
  744. 7DC72D5D17B7E7C7008A26D0 /* download@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "download@2x.png"; sourceTree = "<group>"; };
  745. 7DC72D6117B7ED24008A26D0 /* WhiteRaccoon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WhiteRaccoon.h; path = ImportedSources/WhiteRaccoon/WhiteRaccoon.h; sourceTree = SOURCE_ROOT; };
  746. 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WhiteRaccoon.m; path = ImportedSources/WhiteRaccoon/WhiteRaccoon.m; sourceTree = SOURCE_ROOT; };
  747. 7DC87AEF17413634009DC250 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  748. 7DC87AF017413A17009DC250 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  749. 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "OpenSans-Regular.ttf"; sourceTree = "<group>"; };
  750. 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
  751. 7DE1862A175BA9A5006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  752. 7DE1862D175BA9A9006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  753. 7DE18630175BA9AC006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  754. 7DE18633175BA9AF006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  755. 7DE18635175BA9EB006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  756. 7DE18636175BA9F4006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  757. 7DE18637175BA9F9006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  758. 7DE18638175BA9FC006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  759. 7DE18639175BAEAF006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  760. 7DE1863A175BAEB0006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  761. 7DE1863B175BAEB0006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  762. 7DE1863C175BAEB1006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  763. 7DE1863D175BAEB5006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  764. 7DE1863E175BAEB6006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  765. 7DE1863F175BAEB7006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  766. 7DE18640175BAEB7006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  767. 7DE18641175BAEBA006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  768. 7DE18642175BAEBB006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  769. 7DE18643175BAEBC006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  770. 7DE18644175BAEBD006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  771. 7DE18645175BAEBF006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  772. 7DE18646175BAEC0006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  773. 7DE18647175BAEC1006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  774. 7DE18648175BAEC2006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  775. 7DEB3B5B17647B240038FC70 /* bottomBlackBar@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "bottomBlackBar@2x.png"; sourceTree = "<group>"; };
  776. 7DEB3B5C17647B240038FC70 /* bottomBlackBar.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = bottomBlackBar.png; sourceTree = "<group>"; };
  777. 7DEB3B5F17647DE30038FC70 /* iTunesArtwork@2x */ = {isa = PBXFileReference; lastKnownFileType = file; path = "iTunesArtwork@2x"; sourceTree = "<group>"; };
  778. 7DEB3B6117647E230038FC70 /* Icon@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon@2x.png"; sourceTree = "<group>"; };
  779. 7DEB3B6317647E370038FC70 /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = "<group>"; };
  780. 7DEB3B6517647E440038FC70 /* Icon-72.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-72.png"; sourceTree = "<group>"; };
  781. 7DEB3B6717647E480038FC70 /* Icon-72@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-72@2x.png"; sourceTree = "<group>"; };
  782. 7DEB3B6917647EC10038FC70 /* Icon-Small-50.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small-50.png"; sourceTree = "<group>"; };
  783. 7DEB3B6A17647EC10038FC70 /* Icon-Small-50@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small-50@2x.png"; sourceTree = "<group>"; };
  784. 7DEB3B6B17647EC10038FC70 /* Icon-Small.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small.png"; sourceTree = "<group>"; };
  785. 7DEB3B6C17647EC10038FC70 /* Icon-Small@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-Small@2x.png"; sourceTree = "<group>"; };
  786. 7DEB3B7117649BEB0038FC70 /* Icon-512.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Icon-512.png"; sourceTree = "<group>"; };
  787. 7DEB3B7317649F2C0038FC70 /* menuButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = menuButton.png; sourceTree = "<group>"; };
  788. 7DEB3B7417649F2C0038FC70 /* menuButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "menuButton@2x.png"; sourceTree = "<group>"; };
  789. 7DEB3B771764A4040038FC70 /* input@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "input@2x.png"; sourceTree = "<group>"; };
  790. 7DEB3B781764A4040038FC70 /* input.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = input.png; sourceTree = "<group>"; };
  791. 7DEB3B7C1764A4F40038FC70 /* movie@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "movie@2x.png"; sourceTree = "<group>"; };
  792. 7DEB3B7D1764A4F40038FC70 /* movie@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "movie@4x.png"; sourceTree = "<group>"; };
  793. 7DEB3B7E1764A4F40038FC70 /* blank@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "blank@4x.png"; sourceTree = "<group>"; };
  794. 7DEB3B7F1764A4F40038FC70 /* folder.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = folder.png; sourceTree = "<group>"; };
  795. 7DEB3B801764A4F40038FC70 /* folder@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "folder@2x.png"; sourceTree = "<group>"; };
  796. 7DEB3B811764A4F40038FC70 /* folder@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "folder@4x.png"; sourceTree = "<group>"; };
  797. 7DEB3B821764A4F40038FC70 /* movie.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = movie.png; sourceTree = "<group>"; };
  798. 7DEB3B831764A4F40038FC70 /* blank.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = blank.png; sourceTree = "<group>"; };
  799. 7DEB3B841764A4F40038FC70 /* blank@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "blank@2x.png"; sourceTree = "<group>"; };
  800. 7DF1166A176CC69A009EC05C /* volumeballslider.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = volumeballslider.png; sourceTree = "<group>"; };
  801. 7DF1166B176CC69A009EC05C /* volumeballslider@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "volumeballslider@2x.png"; sourceTree = "<group>"; };
  802. 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  803. 7DF7E790175F47DC0018858D /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
  804. 9B088306183D7BEC004B5C2A /* VLCCloudStorageTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCCloudStorageTableViewController.h; path = Sources/VLCCloudStorageTableViewController.h; sourceTree = SOURCE_ROOT; };
  805. 9B088307183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCCloudStorageTableViewController.m; path = Sources/VLCCloudStorageTableViewController.m; sourceTree = SOURCE_ROOT; };
  806. 9B2E0CF317FB71E80098E3DF /* libGTLTouchStaticLib.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libGTLTouchStaticLib.a; path = "../google-api/Source/build/Debug-iphoneos/libGTLTouchStaticLib.a"; sourceTree = "<group>"; };
  807. 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; };
  808. 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; };
  809. 9BF0708B185122AA009B23DD /* audio.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = audio.png; sourceTree = "<group>"; };
  810. 9BF0708C185122AA009B23DD /* audio@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "audio@2x.png"; sourceTree = "<group>"; };
  811. 9BF0708D185122AA009B23DD /* audio@4x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "audio@4x.png"; sourceTree = "<group>"; };
  812. A7035BBD174519600057DFA7 /* iTunesArtwork */ = {isa = PBXFileReference; lastKnownFileType = file; path = iTunesArtwork; sourceTree = "<group>"; };
  813. A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libMediaLibraryKit.a; path = External/MediaLibraryKit/libMediaLibraryKit.a; sourceTree = "<group>"; };
  814. A7924698170F0ED20036AAF2 /* Default-568h@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default-568h@2x.png"; sourceTree = "<group>"; };
  815. A7924699170F0ED20036AAF2 /* Default.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Default.png; sourceTree = "<group>"; };
  816. A792469A170F0ED20036AAF2 /* Default@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "Default@2x.png"; sourceTree = "<group>"; };
  817. A79246C7170F11DF0036AAF2 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  818. A79246C9170F11E40036AAF2 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  819. A7990063176E9352009E8267 /* libraryBackground.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = libraryBackground.png; sourceTree = "<group>"; };
  820. A7B5316117E3728D00EAE4B3 /* BasicDeviceParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicDeviceParser.h; sourceTree = "<group>"; };
  821. A7B5316217E3728D00EAE4B3 /* BasicHTTPServer_ObjC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicHTTPServer_ObjC.h; sourceTree = "<group>"; };
  822. A7B5316317E3728D00EAE4B3 /* BasicParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicParser.h; sourceTree = "<group>"; };
  823. A7B5316417E3728D00EAE4B3 /* BasicParserAsset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicParserAsset.h; sourceTree = "<group>"; };
  824. A7B5316517E3728D00EAE4B3 /* BasicServiceParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicServiceParser.h; sourceTree = "<group>"; };
  825. A7B5316617E3728D00EAE4B3 /* BasicUPnPDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicUPnPDevice.h; sourceTree = "<group>"; };
  826. A7B5316717E3728D00EAE4B3 /* BasicUPnPService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BasicUPnPService.h; sourceTree = "<group>"; };
  827. A7B5316817E3728D00EAE4B3 /* BinaryLight1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BinaryLight1Device.h; sourceTree = "<group>"; };
  828. A7B5316917E3728D00EAE4B3 /* CocoaTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CocoaTools.h; sourceTree = "<group>"; };
  829. A7B5316A17E3728D00EAE4B3 /* DeviceFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceFactory.h; sourceTree = "<group>"; };
  830. A7B5316B17E3728D00EAE4B3 /* DigitalSecurityCamera1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DigitalSecurityCamera1Device.h; sourceTree = "<group>"; };
  831. A7B5316C17E3728D00EAE4B3 /* DimmableLight1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DimmableLight1Device.h; sourceTree = "<group>"; };
  832. A7B5316D17E3728D00EAE4B3 /* InternetGateway2Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InternetGateway2Device.h; sourceTree = "<group>"; };
  833. A7B5316E17E3728D00EAE4B3 /* LAN1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LAN1Device.h; sourceTree = "<group>"; };
  834. A7B5316F17E3728D00EAE4B3 /* LastChangeParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LastChangeParser.h; sourceTree = "<group>"; };
  835. A7B5317017E3728D00EAE4B3 /* MediaPlaylist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaPlaylist.h; sourceTree = "<group>"; };
  836. A7B5317117E3728D00EAE4B3 /* MediaRenderer1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaRenderer1Device.h; sourceTree = "<group>"; };
  837. A7B5317217E3728D00EAE4B3 /* MediaServer1BasicObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1BasicObject.h; sourceTree = "<group>"; };
  838. A7B5317317E3728D00EAE4B3 /* MediaServer1ContainerObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1ContainerObject.h; sourceTree = "<group>"; };
  839. A7B5317417E3728D00EAE4B3 /* MediaServer1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1Device.h; sourceTree = "<group>"; };
  840. A7B5317517E3728D00EAE4B3 /* MediaServer1ItemObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1ItemObject.h; sourceTree = "<group>"; };
  841. A7B5317617E3728D00EAE4B3 /* MediaServer1ItemRes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServer1ItemRes.h; sourceTree = "<group>"; };
  842. A7B5317717E3728D00EAE4B3 /* MediaServerBasicObjectParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MediaServerBasicObjectParser.h; sourceTree = "<group>"; };
  843. A7B5317817E3728D00EAE4B3 /* ServiceFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ServiceFactory.h; sourceTree = "<group>"; };
  844. A7B5317917E3728D00EAE4B3 /* SoapAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapAction.h; sourceTree = "<group>"; };
  845. A7B5317A17E3728D00EAE4B3 /* SoapActionFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionFactory.h; sourceTree = "<group>"; };
  846. A7B5317B17E3728D00EAE4B3 /* SoapActionsAVTransport1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsAVTransport1.h; sourceTree = "<group>"; };
  847. A7B5317C17E3728D00EAE4B3 /* SoapActionsCallManagement1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsCallManagement1.h; sourceTree = "<group>"; };
  848. A7B5317D17E3728D00EAE4B3 /* SoapActionsConfigurationManagement1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsConfigurationManagement1.h; sourceTree = "<group>"; };
  849. A7B5317E17E3728D00EAE4B3 /* SoapActionsConnectionManager1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsConnectionManager1.h; sourceTree = "<group>"; };
  850. A7B5317F17E3728D00EAE4B3 /* SoapActionsContentDirectory1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsContentDirectory1.h; sourceTree = "<group>"; };
  851. A7B5318017E3728D00EAE4B3 /* SoapActionsDeviceProtection1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDeviceProtection1.h; sourceTree = "<group>"; };
  852. A7B5318117E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraMotionImage1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDigitalSecurityCameraMotionImage1.h; sourceTree = "<group>"; };
  853. A7B5318217E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraSettings1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDigitalSecurityCameraSettings1.h; sourceTree = "<group>"; };
  854. A7B5318317E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraStillImage1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDigitalSecurityCameraStillImage1.h; sourceTree = "<group>"; };
  855. A7B5318417E3728D00EAE4B3 /* SoapActionsDimming1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsDimming1.h; sourceTree = "<group>"; };
  856. A7B5318517E3728D00EAE4B3 /* SoapActionsInputConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsInputConfig1.h; sourceTree = "<group>"; };
  857. A7B5318617E3728D00EAE4B3 /* SoapActionsLANHostConfigManagement1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsLANHostConfigManagement1.h; sourceTree = "<group>"; };
  858. A7B5318717E3728D00EAE4B3 /* SoapActionsLayer3Forwarding1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsLayer3Forwarding1.h; sourceTree = "<group>"; };
  859. A7B5318817E3728D00EAE4B3 /* SoapActionsMediaManagement1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsMediaManagement1.h; sourceTree = "<group>"; };
  860. A7B5318917E3728D00EAE4B3 /* SoapActionsMessaging1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsMessaging1.h; sourceTree = "<group>"; };
  861. A7B5318A17E3728D00EAE4B3 /* SoapActionsRendering.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsRendering.h; sourceTree = "<group>"; };
  862. A7B5318B17E3728D00EAE4B3 /* SoapActionsRenderingControl1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsRenderingControl1.h; sourceTree = "<group>"; };
  863. A7B5318C17E3728D00EAE4B3 /* SoapActionsSwitchPower1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsSwitchPower1.h; sourceTree = "<group>"; };
  864. A7B5318D17E3728D00EAE4B3 /* SoapActionsWANCableLinkConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANCableLinkConfig1.h; sourceTree = "<group>"; };
  865. A7B5318E17E3728D00EAE4B3 /* SoapActionsWANCommonInterfaceConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANCommonInterfaceConfig1.h; sourceTree = "<group>"; };
  866. A7B5318F17E3728D00EAE4B3 /* SoapActionsWANDSLLinkConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANDSLLinkConfig1.h; sourceTree = "<group>"; };
  867. A7B5319017E3728D00EAE4B3 /* SoapActionsWANEthernetLinkConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANEthernetLinkConfig1.h; sourceTree = "<group>"; };
  868. A7B5319117E3728D00EAE4B3 /* SoapActionsWANIPConnection1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANIPConnection1.h; sourceTree = "<group>"; };
  869. A7B5319217E3728D00EAE4B3 /* SoapActionsWANIPConnection2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANIPConnection2.h; sourceTree = "<group>"; };
  870. A7B5319317E3728D00EAE4B3 /* SoapActionsWANIPv6FirewallControl1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANIPv6FirewallControl1.h; sourceTree = "<group>"; };
  871. A7B5319417E3728D00EAE4B3 /* SoapActionsWANPOTSLinkConfig1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANPOTSLinkConfig1.h; sourceTree = "<group>"; };
  872. A7B5319517E3728D00EAE4B3 /* SoapActionsWANPPPConnection1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SoapActionsWANPPPConnection1.h; sourceTree = "<group>"; };
  873. A7B5319617E3728D00EAE4B3 /* SSDPDB_ObjC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSDPDB_ObjC.h; sourceTree = "<group>"; };
  874. A7B5319717E3728D00EAE4B3 /* StateVariable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateVariable.h; sourceTree = "<group>"; };
  875. A7B5319817E3728D00EAE4B3 /* StateVariableList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateVariableList.h; sourceTree = "<group>"; };
  876. A7B5319917E3728D00EAE4B3 /* StateVariableRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateVariableRange.h; sourceTree = "<group>"; };
  877. A7B5319A17E3728D00EAE4B3 /* TelephonyClient1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TelephonyClient1Device.h; sourceTree = "<group>"; };
  878. A7B5319B17E3728D00EAE4B3 /* TelephonyServer1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TelephonyServer1Device.h; sourceTree = "<group>"; };
  879. A7B5319C17E3728D00EAE4B3 /* UPnPDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UPnPDB.h; sourceTree = "<group>"; };
  880. A7B5319D17E3728D00EAE4B3 /* UPnPEventParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UPnPEventParser.h; sourceTree = "<group>"; };
  881. A7B5319E17E3728D00EAE4B3 /* UPnPEvents.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UPnPEvents.h; sourceTree = "<group>"; };
  882. A7B5319F17E3728D00EAE4B3 /* UPnPManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UPnPManager.h; sourceTree = "<group>"; };
  883. A7B531A017E3728D00EAE4B3 /* WAN2Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WAN2Device.h; sourceTree = "<group>"; };
  884. A7B531A117E3728D00EAE4B3 /* WANConnection1Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WANConnection1Device.h; sourceTree = "<group>"; };
  885. A7B531A217E3728D00EAE4B3 /* WANConnection2Device.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WANConnection2Device.h; sourceTree = "<group>"; };
  886. A7CB0DAD1716F72600050CF3 /* PlayingExternally@2x~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally@2x~iphone.png"; sourceTree = "<group>"; };
  887. A7CB0DAE1716F72600050CF3 /* PlayingExternally~iphone.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally~iphone.png"; sourceTree = "<group>"; };
  888. A7CB0DAF1716F72600050CF3 /* PlayingExternally~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally~ipad.png"; sourceTree = "<group>"; };
  889. A7CB0DB01716F72600050CF3 /* PlayingExternally@2x~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "PlayingExternally@2x~ipad.png"; sourceTree = "<group>"; };
  890. A7FF9F3D17428C1900999819 /* DeleteButton.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DeleteButton.png; sourceTree = "<group>"; };
  891. A7FF9F3F17428C3800999819 /* DeleteButton@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "DeleteButton@2x.png"; sourceTree = "<group>"; };
  892. CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libMobileVLCKit.a; path = External/MobileVLCKit/libMobileVLCKit.a; sourceTree = "<group>"; };
  893. CC1BBC421704935E00A20CBF /* MediaLibrary.mom */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; name = MediaLibrary.mom; path = External/MediaLibraryKit/MediaLibrary.mom; sourceTree = "<group>"; };
  894. CC1BBC451704938300A20CBF /* libiconv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.dylib; path = usr/lib/libiconv.dylib; sourceTree = SDKROOT; };
  895. CC1BBC471704938B00A20CBF /* libstdc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libstdc++.dylib"; path = "usr/lib/libstdc++.dylib"; sourceTree = SDKROOT; };
  896. CC1BBC491704939300A20CBF /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
  897. CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
  898. CC1BBC4D170493A300A20CBF /* libbz2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libbz2.dylib; path = usr/lib/libbz2.dylib; sourceTree = SDKROOT; };
  899. CC1BBC4F170493AA00A20CBF /* libxml2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libxml2.dylib; path = usr/lib/libxml2.dylib; sourceTree = SDKROOT; };
  900. CC1BBC51170493B100A20CBF /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
  901. CC1BBC53170493B800A20CBF /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  902. CC1BBC55170493C100A20CBF /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  903. CC1BBC57170493E100A20CBF /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
  904. CC75BE3A17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
  905. CC75BE3B17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  906. CC75BE3C17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  907. CC75BE3D17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  908. CC75BE3E17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  909. CC75BE3F17DF744400FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  910. CC75BE4017DF744400FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  911. CC75BE4117DF744500FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  912. CC75BE4217DF744500FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  913. CC75BE4317DF744500FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  914. CC87147917A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = mr; path = mr.lproj/Localizable.strings; sourceTree = "<group>"; };
  915. CC87147A17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  916. CC87147B17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  917. CC87147C17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  918. CC87147D17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  919. CC87147E17A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
  920. CC87147F17A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  921. CC87148017A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  922. CC87148117A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  923. CC87148217A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  924. CC87148317A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  925. CC87148417A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  926. CC87148517A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  927. CC87148617A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  928. CC87148717A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  929. CCAF837E17DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  930. CCAF837F17DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  931. CCAF838017DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  932. CCAF838117DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  933. CCAF838217DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  934. CCBDA19017B2BEB500489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pt; path = pt.lproj/Localizable.strings; sourceTree = "<group>"; };
  935. CCBDA19117B2BEB500489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  936. CCBDA19217B2BEB500489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  937. CCBDA19317B2BEB600489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  938. CCBDA19417B2BEB600489D71 /* pt */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pt; path = "pt.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  939. CCE2A22D17A5859E00D9EAAD /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
  940. /* End PBXFileReference section */
  941. /* Begin PBXFrameworksBuildPhase section */
  942. 7D94FCD816DE7D1000F2623B /* Frameworks */ = {
  943. isa = PBXFrameworksBuildPhase;
  944. buildActionMask = 2147483647;
  945. files = (
  946. 9B2E0CF417FB71E90098E3DF /* libGTLTouchStaticLib.a in Frameworks */,
  947. CCE2A22E17A5859E00D9EAAD /* CoreText.framework in Frameworks */,
  948. 7DF7CA0717650C2A00C61739 /* AVFoundation.framework in Frameworks */,
  949. 7DF7E791175F47DC0018858D /* MediaPlayer.framework in Frameworks */,
  950. 7D6B08FA174D716200A05173 /* MessageUI.framework in Frameworks */,
  951. 7D3EB014174A353E002062C2 /* SystemConfiguration.framework in Frameworks */,
  952. 293DF2F417494F8200BB880F /* DropboxSDK.framework in Frameworks */,
  953. 2915544317490D4A00B86CAD /* Security.framework in Frameworks */,
  954. 7DDD0429172D98E5005A7B10 /* CFNetwork.framework in Frameworks */,
  955. CC1BBC58170493E100A20CBF /* CoreData.framework in Frameworks */,
  956. CC1BBC56170493C100A20CBF /* QuartzCore.framework in Frameworks */,
  957. CC1BBC54170493B800A20CBF /* AudioToolbox.framework in Frameworks */,
  958. CC1BBC52170493B100A20CBF /* OpenGLES.framework in Frameworks */,
  959. CC1BBC50170493AA00A20CBF /* libxml2.dylib in Frameworks */,
  960. CC1BBC4E170493A300A20CBF /* libbz2.dylib in Frameworks */,
  961. CC1BBC4C1704939B00A20CBF /* libsqlite3.dylib in Frameworks */,
  962. CC1BBC481704938B00A20CBF /* libstdc++.dylib in Frameworks */,
  963. CC1BBC461704938300A20CBF /* libiconv.dylib in Frameworks */,
  964. CC1BBC3F1704934300A20CBF /* libMobileVLCKit.a in Frameworks */,
  965. 7D94FCDF16DE7D1000F2623B /* UIKit.framework in Frameworks */,
  966. 7D94FCE116DE7D1000F2623B /* Foundation.framework in Frameworks */,
  967. 7D94FCE316DE7D1000F2623B /* CoreGraphics.framework in Frameworks */,
  968. A7924696170F0BA90036AAF2 /* libMediaLibraryKit.a in Frameworks */,
  969. 7D31002017B6768B00E6516D /* libupnpx.a in Frameworks */,
  970. );
  971. runOnlyForDeploymentPostprocessing = 0;
  972. };
  973. /* End PBXFrameworksBuildPhase section */
  974. /* Begin PBXGroup section */
  975. 29125E5317492219003F03E5 /* web */ = {
  976. isa = PBXGroup;
  977. children = (
  978. 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */,
  979. 7AC8629F1765E90C0011611A /* jquery.fileupload.js */,
  980. 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */,
  981. 7AC862A11765E90C0011611A /* jquery.ui.widget.js */,
  982. 7AC8629B1765DC560011611A /* style.css */,
  983. 7D00161A17704DAC00649F27 /* main.js */,
  984. 29125E5417492219003F03E5 /* index.html */,
  985. );
  986. path = web;
  987. sourceTree = "<group>";
  988. };
  989. 291553E817490A0400B86CAD /* CocoaHTTPServer */ = {
  990. isa = PBXGroup;
  991. children = (
  992. 2915542C17490B9C00B86CAD /* Responses */,
  993. 2915543917490B9C00B86CAD /* WebSocket.h */,
  994. 2915543A17490B9C00B86CAD /* WebSocket.m */,
  995. 2915540B17490A9C00B86CAD /* CocoaAsyncSocket */,
  996. 2915540F17490A9C00B86CAD /* CocoaLumberjack */,
  997. 291553E917490A1E00B86CAD /* Categories */,
  998. 291553F017490A1E00B86CAD /* HTTPAuthenticationRequest.h */,
  999. 291553F117490A1E00B86CAD /* HTTPAuthenticationRequest.m */,
  1000. 291553F217490A1E00B86CAD /* HTTPConnection.h */,
  1001. 291553F317490A1E00B86CAD /* HTTPConnection.m */,
  1002. 291553F417490A1E00B86CAD /* HTTPLogging.h */,
  1003. 291553F517490A1E00B86CAD /* HTTPMessage.h */,
  1004. 291553F617490A1E00B86CAD /* HTTPMessage.m */,
  1005. 291553F717490A1E00B86CAD /* HTTPResponse.h */,
  1006. 291553F817490A1E00B86CAD /* HTTPServer.h */,
  1007. 291553F917490A1E00B86CAD /* HTTPServer.m */,
  1008. 291553FA17490A1E00B86CAD /* Mime */,
  1009. );
  1010. name = CocoaHTTPServer;
  1011. sourceTree = "<group>";
  1012. };
  1013. 291553E917490A1E00B86CAD /* Categories */ = {
  1014. isa = PBXGroup;
  1015. children = (
  1016. 291553EA17490A1E00B86CAD /* DDData.h */,
  1017. 291553EB17490A1E00B86CAD /* DDData.m */,
  1018. 291553EC17490A1E00B86CAD /* DDNumber.h */,
  1019. 291553ED17490A1E00B86CAD /* DDNumber.m */,
  1020. 291553EE17490A1E00B86CAD /* DDRange.h */,
  1021. 291553EF17490A1E00B86CAD /* DDRange.m */,
  1022. );
  1023. name = Categories;
  1024. path = ImportedSources/CocoaHTTPServer/Core/Categories;
  1025. sourceTree = SOURCE_ROOT;
  1026. };
  1027. 291553FA17490A1E00B86CAD /* Mime */ = {
  1028. isa = PBXGroup;
  1029. children = (
  1030. 291553FB17490A1E00B86CAD /* MultipartFormDataParser.h */,
  1031. 291553FC17490A1E00B86CAD /* MultipartFormDataParser.m */,
  1032. 291553FD17490A1E00B86CAD /* MultipartMessageHeader.h */,
  1033. 291553FE17490A1E00B86CAD /* MultipartMessageHeader.m */,
  1034. 291553FF17490A1E00B86CAD /* MultipartMessageHeaderField.h */,
  1035. 2915540017490A1E00B86CAD /* MultipartMessageHeaderField.m */,
  1036. );
  1037. name = Mime;
  1038. path = ImportedSources/CocoaHTTPServer/Core/Mime;
  1039. sourceTree = SOURCE_ROOT;
  1040. };
  1041. 2915540B17490A9C00B86CAD /* CocoaAsyncSocket */ = {
  1042. isa = PBXGroup;
  1043. children = (
  1044. 2915540D17490A9C00B86CAD /* GCDAsyncSocket.h */,
  1045. 2915540E17490A9C00B86CAD /* GCDAsyncSocket.m */,
  1046. );
  1047. name = CocoaAsyncSocket;
  1048. path = ImportedSources/CocoaHTTPServer/Vendor/CocoaAsyncSocket;
  1049. sourceTree = SOURCE_ROOT;
  1050. };
  1051. 2915540F17490A9C00B86CAD /* CocoaLumberjack */ = {
  1052. isa = PBXGroup;
  1053. children = (
  1054. 2915541017490A9C00B86CAD /* About.txt */,
  1055. 2915541117490A9C00B86CAD /* DDAbstractDatabaseLogger.h */,
  1056. 2915541217490A9C00B86CAD /* DDAbstractDatabaseLogger.m */,
  1057. 2915541317490A9C00B86CAD /* DDASLLogger.h */,
  1058. 2915541417490A9C00B86CAD /* DDASLLogger.m */,
  1059. 2915541517490A9C00B86CAD /* DDFileLogger.h */,
  1060. 2915541617490A9C00B86CAD /* DDFileLogger.m */,
  1061. 2915541717490A9C00B86CAD /* DDLog.h */,
  1062. 2915541817490A9C00B86CAD /* DDLog.m */,
  1063. 2915541917490A9C00B86CAD /* DDTTYLogger.h */,
  1064. 2915541A17490A9C00B86CAD /* DDTTYLogger.m */,
  1065. 2915541B17490A9C00B86CAD /* Extensions */,
  1066. );
  1067. name = CocoaLumberjack;
  1068. path = ImportedSources/CocoaHTTPServer/Vendor/CocoaLumberjack;
  1069. sourceTree = SOURCE_ROOT;
  1070. };
  1071. 2915541B17490A9C00B86CAD /* Extensions */ = {
  1072. isa = PBXGroup;
  1073. children = (
  1074. 2915541C17490A9C00B86CAD /* ContextFilterLogFormatter.h */,
  1075. 2915541D17490A9C00B86CAD /* ContextFilterLogFormatter.m */,
  1076. 2915541E17490A9C00B86CAD /* DispatchQueueLogFormatter.h */,
  1077. 2915541F17490A9C00B86CAD /* DispatchQueueLogFormatter.m */,
  1078. 2915542017490A9C00B86CAD /* README.txt */,
  1079. );
  1080. path = Extensions;
  1081. sourceTree = "<group>";
  1082. };
  1083. 2915542C17490B9C00B86CAD /* Responses */ = {
  1084. isa = PBXGroup;
  1085. children = (
  1086. 2915542D17490B9C00B86CAD /* HTTPAsyncFileResponse.h */,
  1087. 2915542E17490B9C00B86CAD /* HTTPAsyncFileResponse.m */,
  1088. 2915542F17490B9C00B86CAD /* HTTPDataResponse.h */,
  1089. 2915543017490B9C00B86CAD /* HTTPDataResponse.m */,
  1090. 2915543117490B9C00B86CAD /* HTTPDynamicFileResponse.h */,
  1091. 2915543217490B9C00B86CAD /* HTTPDynamicFileResponse.m */,
  1092. 2915543317490B9C00B86CAD /* HTTPErrorResponse.h */,
  1093. 2915543417490B9C00B86CAD /* HTTPErrorResponse.m */,
  1094. 2915543517490B9C00B86CAD /* HTTPFileResponse.h */,
  1095. 2915543617490B9C00B86CAD /* HTTPFileResponse.m */,
  1096. 2915543717490B9C00B86CAD /* HTTPRedirectResponse.h */,
  1097. 2915543817490B9C00B86CAD /* HTTPRedirectResponse.m */,
  1098. );
  1099. name = Responses;
  1100. path = ImportedSources/CocoaHTTPServer/Core/Responses;
  1101. sourceTree = SOURCE_ROOT;
  1102. };
  1103. 7D10BC651743F9A100DA7059 /* External Playback */ = {
  1104. isa = PBXGroup;
  1105. children = (
  1106. A7CB0DAD1716F72600050CF3 /* PlayingExternally@2x~iphone.png */,
  1107. A7CB0DAE1716F72600050CF3 /* PlayingExternally~iphone.png */,
  1108. A7CB0DAF1716F72600050CF3 /* PlayingExternally~ipad.png */,
  1109. A7CB0DB01716F72600050CF3 /* PlayingExternally@2x~ipad.png */,
  1110. );
  1111. name = "External Playback";
  1112. sourceTree = "<group>";
  1113. };
  1114. 7D10BC661743F9AC00DA7059 /* Library View */ = {
  1115. isa = PBXGroup;
  1116. children = (
  1117. 7D223E18181EC56E00B36798 /* gradient-cell-ios7-ipad.png */,
  1118. 7D223E19181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png */,
  1119. 7D2A34A21805CDBA004078AA /* gradient-cell-ios7.png */,
  1120. 7D2A34A31805CDBA004078AA /* gradient-cell-ios7@2x.png */,
  1121. A7990063176E9352009E8267 /* libraryBackground.png */,
  1122. 7D1AC30A17629D4600BD2EB5 /* title.png */,
  1123. 7D1AC30B17629D4600BD2EB5 /* title@2x.png */,
  1124. 7D6BD1801762026700AD311A /* thumbOverlayPhone@2x.png */,
  1125. 7D6BD1811762026700AD311A /* thumbOverlay@2x.png */,
  1126. 7D6BD1821762026700AD311A /* thumbOverlayPhone.png */,
  1127. 7D6BD1831762026700AD311A /* thumbOverlay.png */,
  1128. 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */,
  1129. 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */,
  1130. 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */,
  1131. 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */,
  1132. 7D07F72A175691CB00CDE21C /* backButton.png */,
  1133. 7D07F72B175691CC00CDE21C /* backButton@2x.png */,
  1134. 7D07F72C175691CC00CDE21C /* backButtonHighlight.png */,
  1135. 7D07F72D175691CC00CDE21C /* backButtonHighlight@2x.png */,
  1136. 7D07F722175688D300CDE21C /* doneButton.png */,
  1137. 7D07F723175688D300CDE21C /* doneButton@2x.png */,
  1138. 7D07F724175688D300CDE21C /* doneButtonHighlight.png */,
  1139. 7D07F725175688D300CDE21C /* doneButtonHighlight@2x.png */,
  1140. 7D07F71217566C4A00CDE21C /* menuCone.png */,
  1141. 7D07F71317566C4A00CDE21C /* menuCone@2x.png */,
  1142. 7D07F71A175673D100CDE21C /* menuBtnBckHighlight@2x.png */,
  1143. 7D07F71B175673D100CDE21C /* menuBtnBck@2x.png */,
  1144. 7D07F71C175673D100CDE21C /* menuBtnBckHighlight.png */,
  1145. 7D07F71D175673D100CDE21C /* menuBtnBck.png */,
  1146. 7D07F70A175669A800CDE21C /* button.png */,
  1147. 7D07F70B175669A800CDE21C /* button@2x.png */,
  1148. 7D07F70E175669D800CDE21C /* buttonHighlight.png */,
  1149. 7D07F70F175669D800CDE21C /* buttonHighlight@2x.png */,
  1150. 7D07F706175665ED00CDE21C /* navBarBackground@2x.png */,
  1151. 7D07F707175665ED00CDE21C /* navBarBackground.png */,
  1152. A7FF9F3D17428C1900999819 /* DeleteButton.png */,
  1153. A7FF9F3F17428C3800999819 /* DeleteButton@2x.png */,
  1154. 7D16035917BF9FE600F29B34 /* sudHeaderBg.png */,
  1155. 7D16035A17BF9FE600F29B34 /* sudHeaderBg@2x.png */,
  1156. 7D16035B17BF9FE600F29B34 /* headerSidebar@2x.png */,
  1157. 7D16035C17BF9FE600F29B34 /* headerSidebar.png */,
  1158. );
  1159. name = "Library View";
  1160. sourceTree = "<group>";
  1161. };
  1162. 7D10BC671743F9BA00DA7059 /* Launch Screen */ = {
  1163. isa = PBXGroup;
  1164. children = (
  1165. A7924698170F0ED20036AAF2 /* Default-568h@2x.png */,
  1166. A7924699170F0ED20036AAF2 /* Default.png */,
  1167. A792469A170F0ED20036AAF2 /* Default@2x.png */,
  1168. 7D882244185733D500D87252 /* Default-ipad-Landscape.png */,
  1169. 7D882245185733D500D87252 /* Default-ipad-Landscape@2x.png */,
  1170. 7D882246185733D500D87252 /* Default-ipad-Portrait.png */,
  1171. 7D882247185733D500D87252 /* Default-ipad-Portrait@2x.png */,
  1172. 7D882248185733D500D87252 /* Default-568h@2x~iphone.png */,
  1173. 7D882249185733D500D87252 /* Default-Landscape~ipad.png */,
  1174. 7D88224A185733D500D87252 /* Default-Landscape@2x~ipad.png */,
  1175. 7D88224B185733D500D87252 /* Default~ipad.png */,
  1176. 7D88224C185733D500D87252 /* Default-Portrait@2x~ipad.png */,
  1177. 7D88224D185733D500D87252 /* Default~iphone.png */,
  1178. 7D88224E185733D500D87252 /* Default@2x~iphone.png */,
  1179. );
  1180. name = "Launch Screen";
  1181. sourceTree = "<group>";
  1182. };
  1183. 7D2159E4174FD31900EC00E8 /* Dropbox */ = {
  1184. isa = PBXGroup;
  1185. children = (
  1186. 9BF0708B185122AA009B23DD /* audio.png */,
  1187. 9BF0708C185122AA009B23DD /* audio@2x.png */,
  1188. 9BF0708D185122AA009B23DD /* audio@4x.png */,
  1189. 7DEB3B7C1764A4F40038FC70 /* movie@2x.png */,
  1190. 7DEB3B7D1764A4F40038FC70 /* movie@4x.png */,
  1191. 7DEB3B7E1764A4F40038FC70 /* blank@4x.png */,
  1192. 7DEB3B7F1764A4F40038FC70 /* folder.png */,
  1193. 7DEB3B801764A4F40038FC70 /* folder@2x.png */,
  1194. 7DEB3B811764A4F40038FC70 /* folder@4x.png */,
  1195. 7DEB3B821764A4F40038FC70 /* movie.png */,
  1196. 7DEB3B831764A4F40038FC70 /* blank.png */,
  1197. 7DEB3B841764A4F40038FC70 /* blank@2x.png */,
  1198. 7DEB3B5B17647B240038FC70 /* bottomBlackBar@2x.png */,
  1199. 7DEB3B5C17647B240038FC70 /* bottomBlackBar.png */,
  1200. 7D5E39C8174FC2F3007DAFA1 /* dropbox-white.png */,
  1201. 7D5E39C9174FC2F3007DAFA1 /* dropbox-white@2x.png */,
  1202. );
  1203. name = Dropbox;
  1204. sourceTree = "<group>";
  1205. };
  1206. 7D2339AB176DE70E008D223C /* Menu */ = {
  1207. isa = PBXGroup;
  1208. children = (
  1209. 7D30F3CB183AB29300FFC021 /* VLCMenuTableViewController.h */,
  1210. 7D30F3CC183AB29300FFC021 /* VLCMenuTableViewController.m */,
  1211. 7D30F3DD183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.h */,
  1212. 7D30F3DE183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m */,
  1213. 7D30F3C5183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.h */,
  1214. 7D30F3C6183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m */,
  1215. 7D30F3E0183AB33200FFC021 /* VLCSidebarViewCell.h */,
  1216. 7D30F3E1183AB33200FFC021 /* VLCSidebarViewCell.m */,
  1217. );
  1218. name = Menu;
  1219. sourceTree = "<group>";
  1220. };
  1221. 7D31001E17B64AE600E6516D /* GHSidebarNav */ = {
  1222. isa = PBXGroup;
  1223. children = (
  1224. 7D31001B17B64AE100E6516D /* GHRevealViewController.h */,
  1225. 7D31001C17B64AE100E6516D /* GHRevealViewController.m */,
  1226. );
  1227. name = GHSidebarNav;
  1228. sourceTree = "<group>";
  1229. };
  1230. 7D31002117B676D500E6516D /* Local Network Connectivity */ = {
  1231. isa = PBXGroup;
  1232. children = (
  1233. 7D30F3D1183AB2F100FFC021 /* VLCLocalNetworkListCell.h */,
  1234. 7D30F3D2183AB2F100FFC021 /* VLCLocalNetworkListCell.m */,
  1235. 7D30F3D3183AB2F100FFC021 /* VLCLocalServerFolderListViewController.h */,
  1236. 7D30F3D4183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m */,
  1237. 7D30F3D5183AB2F100FFC021 /* VLCLocalServerListViewController.h */,
  1238. 7D30F3D6183AB2F100FFC021 /* VLCLocalServerListViewController.m */,
  1239. 7D30F3DA183AB2F900FFC021 /* VLCNetworkLoginViewController.h */,
  1240. 7D30F3DB183AB2F900FFC021 /* VLCNetworkLoginViewController.m */,
  1241. );
  1242. name = "Local Network Connectivity";
  1243. sourceTree = "<group>";
  1244. };
  1245. 7D31CF061746AEF2005997E0 /* UI Elements */ = {
  1246. isa = PBXGroup;
  1247. children = (
  1248. 7D3784B2183A9938009EE944 /* UIBarButtonItem+Theme.h */,
  1249. 7D3784B3183A9938009EE944 /* UIBarButtonItem+Theme.m */,
  1250. 7D3784B4183A9938009EE944 /* UINavigationController+Theme.h */,
  1251. 7D3784B5183A9938009EE944 /* UINavigationController+Theme.m */,
  1252. 7D3784B6183A9938009EE944 /* VLCLinearProgressIndicator.h */,
  1253. 7D3784B7183A9938009EE944 /* VLCLinearProgressIndicator.m */,
  1254. 7D3784B8183A9938009EE944 /* VLCMenuButton.h */,
  1255. 7D3784B9183A9938009EE944 /* VLCMenuButton.m */,
  1256. 7D3784BA183A9938009EE944 /* VLCSlider.h */,
  1257. 7D3784BB183A9938009EE944 /* VLCSlider.m */,
  1258. 7D3784BC183A9938009EE944 /* VLCStatusLabel.h */,
  1259. 7D3784BD183A9938009EE944 /* VLCStatusLabel.m */,
  1260. );
  1261. name = "UI Elements";
  1262. sourceTree = "<group>";
  1263. };
  1264. 7D47D6C81760CD2700E86BAD /* Movie VIew */ = {
  1265. isa = PBXGroup;
  1266. children = (
  1267. 7DF1166A176CC69A009EC05C /* volumeballslider.png */,
  1268. 7DF1166B176CC69A009EC05C /* volumeballslider@2x.png */,
  1269. 7D1AC30617629AB600BD2EB5 /* ratioIcon.png */,
  1270. 7D1AC30717629AB600BD2EB5 /* ratioIcon@2x.png */,
  1271. 7D47D6CB1760CD8700E86BAD /* subtitleIcon.png */,
  1272. 7D47D6CC1760CD8700E86BAD /* subtitleIcon@2x.png */,
  1273. 7D47D6CD1760CD8700E86BAD /* videoEffectsIcon.png */,
  1274. 7D47D6CE1760CD8700E86BAD /* videoEffectsIcon@2x.png */,
  1275. 7D47D6CF1760CD8700E86BAD /* seekbarBg@2x.png */,
  1276. 7D47D6D01760CD8700E86BAD /* slidermaximumTrack.png */,
  1277. 7D47D6D11760CD8700E86BAD /* slidermaximumTrack@2x.png */,
  1278. 7D47D6D21760CD8700E86BAD /* slidermaxValue.png */,
  1279. 7D47D6D31760CD8700E86BAD /* slidermaxValue@2x.png */,
  1280. 7D47D6D41760CD8700E86BAD /* sliderminiValue.png */,
  1281. 7D47D6D51760CD8700E86BAD /* sliderminiValue@2x.png */,
  1282. 7D47D7291760E3A000E86BAD /* sliderminimumTrack.png */,
  1283. 7D47D72A1760E3A000E86BAD /* sliderminimumTrack@2x.png */,
  1284. 7D47D6D81760CD8700E86BAD /* speedIcon.png */,
  1285. 7D47D6D91760CD8700E86BAD /* speedIcon@2x.png */,
  1286. 7D47D7251760D77C00E86BAD /* pauseIcon.png */,
  1287. 7D47D7261760D77C00E86BAD /* pauseIcon@2x.png */,
  1288. 7D47D6DA1760CD8700E86BAD /* playbackControllerBg@2x.png */,
  1289. 7D47D6DB1760CD8700E86BAD /* playbackDoneButton.png */,
  1290. 7D47D6DC1760CD8700E86BAD /* playbackDoneButton@2x.png */,
  1291. 7D47D6DD1760CD8700E86BAD /* playbackDoneButtonHighlight.png */,
  1292. 7D47D6DE1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png */,
  1293. 7D47D6DF1760CD8700E86BAD /* ratioButton.png */,
  1294. 7D47D6E01760CD8700E86BAD /* ratioButton@2x.png */,
  1295. 7D47D6E11760CD8700E86BAD /* ratioButtonHighlight.png */,
  1296. 7D47D6E21760CD8700E86BAD /* ratioButtonHighlight@2x.png */,
  1297. 7D47D6E31760CD8700E86BAD /* seekbarBg.png */,
  1298. 7D47D6E51760CD8700E86BAD /* forwardIcon.png */,
  1299. 7D47D6E61760CD8700E86BAD /* forwardIcon@2x.png */,
  1300. 7D47D6E71760CD8700E86BAD /* knobSlider.png */,
  1301. 7D47D6E81760CD8700E86BAD /* knobSlider@2x.png */,
  1302. 7D47D6EB1760CD8700E86BAD /* playbackControllerBg.png */,
  1303. 7D47D6EC1760CD8700E86BAD /* playIcon.png */,
  1304. 7D47D6ED1760CD8700E86BAD /* playIcon@2x.png */,
  1305. 7D47D6EE1760CD8700E86BAD /* audioTrackIcon.png */,
  1306. 7D47D6EF1760CD8700E86BAD /* audioTrackIcon@2x.png */,
  1307. 7D47D6F01760CD8700E86BAD /* backIcon.png */,
  1308. 7D47D6F11760CD8700E86BAD /* backIcon@2x.png */,
  1309. 7D47D6F21760CD8700E86BAD /* ballSlider.png */,
  1310. 7D47D6F31760CD8700E86BAD /* ballSlider@2x.png */,
  1311. 7D1AC3021762996100BD2EB5 /* resetIcon.png */,
  1312. 7D1AC3031762996100BD2EB5 /* resetIcon@2x.png */,
  1313. );
  1314. name = "Movie VIew";
  1315. sourceTree = "<group>";
  1316. };
  1317. 7D5E39CC174FCDBE007DAFA1 /* Dropbox Integration */ = {
  1318. isa = PBXGroup;
  1319. children = (
  1320. 7D3784A8183A9906009EE944 /* VLCDropboxConstants.h */,
  1321. 7D3784A9183A9906009EE944 /* VLCDropboxController.h */,
  1322. 7D3784AA183A9906009EE944 /* VLCDropboxController.m */,
  1323. 7D3784AB183A9906009EE944 /* VLCDropboxTableViewController.h */,
  1324. 7D3784AC183A9906009EE944 /* VLCDropboxTableViewController.m */,
  1325. 7D3784AF183A990F009EE944 /* VLCCloudStorageTableViewCell.h */,
  1326. 7D3784B0183A990F009EE944 /* VLCCloudStorageTableViewCell.m */,
  1327. 9B088306183D7BEC004B5C2A /* VLCCloudStorageTableViewController.h */,
  1328. 9B088307183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m */,
  1329. );
  1330. name = "Dropbox Integration";
  1331. sourceTree = "<group>";
  1332. };
  1333. 7D5F7AB717526573006CCCFA /* Accessory dialogs */ = {
  1334. isa = PBXGroup;
  1335. children = (
  1336. 7D3784A2183A98F5009EE944 /* VLCAboutViewController.h */,
  1337. 7D3784A3183A98F5009EE944 /* VLCAboutViewController.m */,
  1338. 7D3784A4183A98F5009EE944 /* VLCSettingsController.h */,
  1339. 7D3784A5183A98F5009EE944 /* VLCSettingsController.m */,
  1340. 7D37849F183A98EB009EE944 /* VLCBugreporter.h */,
  1341. 7D3784A0183A98EB009EE944 /* VLCBugreporter.m */,
  1342. );
  1343. name = "Accessory dialogs";
  1344. sourceTree = "<group>";
  1345. };
  1346. 7D5F7AB81752658E006CCCFA /* Everything Playlist */ = {
  1347. isa = PBXGroup;
  1348. children = (
  1349. 7D378493183A98D1009EE944 /* VLCPlaylistCollectionViewCell.h */,
  1350. 7D378494183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m */,
  1351. 7D378495183A98D1009EE944 /* VLCPlaylistTableViewCell.h */,
  1352. 7D378496183A98D1009EE944 /* VLCPlaylistTableViewCell.m */,
  1353. 7D378497183A98D1009EE944 /* VLCPlaylistViewController.h */,
  1354. 7D378498183A98D1009EE944 /* VLCPlaylistViewController.m */,
  1355. 7D37849C183A98DD009EE944 /* VLCThumbnailsCache.h */,
  1356. 7D37849D183A98DD009EE944 /* VLCThumbnailsCache.m */,
  1357. );
  1358. name = "Everything Playlist";
  1359. sourceTree = "<group>";
  1360. };
  1361. 7D5F7AB9175265B2006CCCFA /* Playback */ = {
  1362. isa = PBXGroup;
  1363. children = (
  1364. 7D37848D183A98B6009EE944 /* VLCMovieViewController.h */,
  1365. 7D37848E183A98B6009EE944 /* VLCMovieViewController.m */,
  1366. 7D378490183A98BF009EE944 /* VLCExternalDisplayController.h */,
  1367. 7D378491183A98BF009EE944 /* VLCExternalDisplayController.m */,
  1368. );
  1369. name = Playback;
  1370. sourceTree = "<group>";
  1371. };
  1372. 7D5F7ABA175265CB006CCCFA /* HTTP Connectivity */ = {
  1373. isa = PBXGroup;
  1374. children = (
  1375. 7D30F3BC183AB24C00FFC021 /* VLCHTTPConnection.h */,
  1376. 7D30F3BD183AB24C00FFC021 /* VLCHTTPConnection.m */,
  1377. 7D30F3BE183AB24C00FFC021 /* VLCHTTPFileDownloader.h */,
  1378. 7D30F3BF183AB24C00FFC021 /* VLCHTTPFileDownloader.m */,
  1379. 7D30F3C0183AB24C00FFC021 /* VLCHTTPUploaderController.h */,
  1380. 7D30F3C1183AB24C00FFC021 /* VLCHTTPUploaderController.m */,
  1381. 7D30F3C8183AB27A00FFC021 /* VLCDownloadViewController.h */,
  1382. 7D30F3C9183AB27A00FFC021 /* VLCDownloadViewController.m */,
  1383. );
  1384. name = "HTTP Connectivity";
  1385. sourceTree = "<group>";
  1386. };
  1387. 7D6B07A31716C9A6003280C4 /* OBSlider */ = {
  1388. isa = PBXGroup;
  1389. children = (
  1390. 7DADC55D1704FABF001DAC63 /* OBSlider.h */,
  1391. 7DADC55E1704FABF001DAC63 /* OBSlider.m */,
  1392. );
  1393. name = OBSlider;
  1394. sourceTree = "<group>";
  1395. };
  1396. 7D6B08CA174D65B400A05173 /* InAppSettingsKit */ = {
  1397. isa = PBXGroup;
  1398. children = (
  1399. 7D6B08CB174D65B500A05173 /* Controllers */,
  1400. 7D6B08D3174D65B500A05173 /* Models */,
  1401. 7D6B08DE174D65B500A05173 /* Views */,
  1402. );
  1403. name = InAppSettingsKit;
  1404. path = ImportedSources/InAppSettingsKit/InAppSettingsKit;
  1405. sourceTree = SOURCE_ROOT;
  1406. };
  1407. 7D6B08CB174D65B500A05173 /* Controllers */ = {
  1408. isa = PBXGroup;
  1409. children = (
  1410. 7D6B08CC174D65B500A05173 /* IASKAppSettingsViewController.h */,
  1411. 7D6B08CD174D65B500A05173 /* IASKAppSettingsViewController.m */,
  1412. 7D6B08CE174D65B500A05173 /* IASKAppSettingsWebViewController.h */,
  1413. 7D6B08CF174D65B500A05173 /* IASKAppSettingsWebViewController.m */,
  1414. 7D6B08D0174D65B500A05173 /* IASKSpecifierValuesViewController.h */,
  1415. 7D6B08D1174D65B500A05173 /* IASKSpecifierValuesViewController.m */,
  1416. 7D6B08D2174D65B500A05173 /* IASKViewController.h */,
  1417. );
  1418. path = Controllers;
  1419. sourceTree = "<group>";
  1420. };
  1421. 7D6B08D3174D65B500A05173 /* Models */ = {
  1422. isa = PBXGroup;
  1423. children = (
  1424. 7D6B08D4174D65B500A05173 /* IASKSettingsReader.h */,
  1425. 7D6B08D5174D65B500A05173 /* IASKSettingsReader.m */,
  1426. 7D6B08D6174D65B500A05173 /* IASKSettingsStore.h */,
  1427. 7D6B08D7174D65B500A05173 /* IASKSettingsStore.m */,
  1428. 7D6B08D8174D65B500A05173 /* IASKSettingsStoreFile.h */,
  1429. 7D6B08D9174D65B500A05173 /* IASKSettingsStoreFile.m */,
  1430. 7D6B08DA174D65B500A05173 /* IASKSettingsStoreUserDefaults.h */,
  1431. 7D6B08DB174D65B500A05173 /* IASKSettingsStoreUserDefaults.m */,
  1432. 7D6B08DC174D65B500A05173 /* IASKSpecifier.h */,
  1433. 7D6B08DD174D65B500A05173 /* IASKSpecifier.m */,
  1434. );
  1435. path = Models;
  1436. sourceTree = "<group>";
  1437. };
  1438. 7D6B08DE174D65B500A05173 /* Views */ = {
  1439. isa = PBXGroup;
  1440. children = (
  1441. 7D6B08DF174D65B500A05173 /* IASKPSSliderSpecifierViewCell.h */,
  1442. 7D6B08E0174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m */,
  1443. 7D6B08E1174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.h */,
  1444. 7D6B08E2174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m */,
  1445. 7D6B08E3174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.h */,
  1446. 7D6B08E4174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m */,
  1447. 7D6B08E5174D65B500A05173 /* IASKSlider.h */,
  1448. 7D6B08E6174D65B500A05173 /* IASKSlider.m */,
  1449. 7D6B08E7174D65B500A05173 /* IASKSwitch.h */,
  1450. 7D6B08E8174D65B500A05173 /* IASKSwitch.m */,
  1451. 7D6B08E9174D65B500A05173 /* IASKTextField.h */,
  1452. 7D6B08EA174D65B500A05173 /* IASKTextField.m */,
  1453. );
  1454. path = Views;
  1455. sourceTree = "<group>";
  1456. };
  1457. 7D94FCD216DE7D1000F2623B = {
  1458. isa = PBXGroup;
  1459. children = (
  1460. 7D94FCE416DE7D1000F2623B /* Classes */,
  1461. CC1BBC441704936500A20CBF /* External VLC Libraries */,
  1462. 7D94FCDD16DE7D1000F2623B /* Frameworks */,
  1463. 7D94FCDC16DE7D1000F2623B /* Products */,
  1464. );
  1465. sourceTree = "<group>";
  1466. };
  1467. 7D94FCDC16DE7D1000F2623B /* Products */ = {
  1468. isa = PBXGroup;
  1469. children = (
  1470. 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */,
  1471. );
  1472. name = Products;
  1473. sourceTree = "<group>";
  1474. };
  1475. 7D94FCDD16DE7D1000F2623B /* Frameworks */ = {
  1476. isa = PBXGroup;
  1477. children = (
  1478. 9B2E0CF317FB71E80098E3DF /* libGTLTouchStaticLib.a */,
  1479. CCE2A22D17A5859E00D9EAAD /* CoreText.framework */,
  1480. 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */,
  1481. 7DF7E790175F47DC0018858D /* MediaPlayer.framework */,
  1482. 7D6B08F9174D716200A05173 /* MessageUI.framework */,
  1483. 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */,
  1484. 7D05ADEA174945CE0087550C /* DropboxSDK.framework */,
  1485. 2915544217490D4A00B86CAD /* Security.framework */,
  1486. 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */,
  1487. CC1BBC57170493E100A20CBF /* CoreData.framework */,
  1488. CC1BBC55170493C100A20CBF /* QuartzCore.framework */,
  1489. CC1BBC53170493B800A20CBF /* AudioToolbox.framework */,
  1490. CC1BBC51170493B100A20CBF /* OpenGLES.framework */,
  1491. CC1BBC4F170493AA00A20CBF /* libxml2.dylib */,
  1492. 7D31001F17B6768B00E6516D /* libupnpx.a */,
  1493. CC1BBC4D170493A300A20CBF /* libbz2.dylib */,
  1494. CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */,
  1495. CC1BBC491704939300A20CBF /* libz.dylib */,
  1496. CC1BBC471704938B00A20CBF /* libstdc++.dylib */,
  1497. CC1BBC451704938300A20CBF /* libiconv.dylib */,
  1498. 7D94FCDE16DE7D1000F2623B /* UIKit.framework */,
  1499. 7D94FCE016DE7D1000F2623B /* Foundation.framework */,
  1500. 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */,
  1501. );
  1502. name = Frameworks;
  1503. sourceTree = "<group>";
  1504. };
  1505. 7D94FCE416DE7D1000F2623B /* Classes */ = {
  1506. isa = PBXGroup;
  1507. children = (
  1508. 7D6B08BB174A72A900A05173 /* VLCConstants.h */,
  1509. 7DBBF180183AB3B80009A339 /* VLCAppDelegate.h */,
  1510. 7DBBF181183AB3B80009A339 /* VLCAppDelegate.m */,
  1511. 9B51719A17EDEC8900F8FBA7 /* GoogleDrive Integration */,
  1512. A7D03A4817A4249F0022C16F /* MediaDiscovering */,
  1513. 7D2339AB176DE70E008D223C /* Menu */,
  1514. 7D5F7ABA175265CB006CCCFA /* HTTP Connectivity */,
  1515. 7D31002117B676D500E6516D /* Local Network Connectivity */,
  1516. 7D5F7AB9175265B2006CCCFA /* Playback */,
  1517. 7D5F7AB81752658E006CCCFA /* Everything Playlist */,
  1518. 7D5F7AB717526573006CCCFA /* Accessory dialogs */,
  1519. 7D5E39CC174FCDBE007DAFA1 /* Dropbox Integration */,
  1520. 7D31CF061746AEF2005997E0 /* UI Elements */,
  1521. A7C3025A175A538700AD4388 /* Extensions */,
  1522. 7DADC5601704FACC001DAC63 /* Imported */,
  1523. 7DADC55C1704FAA8001DAC63 /* XIBs */,
  1524. A7924697170F0ED20036AAF2 /* Resources */,
  1525. 7D94FCE516DE7D1000F2623B /* Supporting Files */,
  1526. );
  1527. name = Classes;
  1528. path = AspenProject;
  1529. sourceTree = "<group>";
  1530. };
  1531. 7D94FCE516DE7D1000F2623B /* Supporting Files */ = {
  1532. isa = PBXGroup;
  1533. children = (
  1534. 7D3784E8183A9A15009EE944 /* main.m */,
  1535. 7D3784EA183A9A1E009EE944 /* VLC for iOS-Info.plist */,
  1536. 7D3784EB183A9A1E009EE944 /* VLC for iOS-Prefix.pch */,
  1537. );
  1538. name = "Supporting Files";
  1539. sourceTree = "<group>";
  1540. };
  1541. 7DADC55C1704FAA8001DAC63 /* XIBs */ = {
  1542. isa = PBXGroup;
  1543. children = (
  1544. 7DBBF183183AB4300009A339 /* VLCAboutViewController~ipad.xib */,
  1545. 7DBBF184183AB4300009A339 /* VLCAboutViewController~iphone.xib */,
  1546. 7DBBF185183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib */,
  1547. 7DBBF186183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib */,
  1548. 7DBBF187183AB4300009A339 /* VLCDownloadViewController.xib */,
  1549. 7DBBF188183AB4300009A339 /* VLCCloudStorageTableViewController.xib */,
  1550. 7DBBF189183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib */,
  1551. 7DBBF18A183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib */,
  1552. 7DBBF18B183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib */,
  1553. 7DBBF18C183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib */,
  1554. 7DBBF18E183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib */,
  1555. 7DBBF18F183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib */,
  1556. 7DBBF190183AB4300009A339 /* VLCMovieViewController~ipad.xib */,
  1557. 7DBBF191183AB4300009A339 /* VLCMovieViewController~iphone.xib */,
  1558. 7DBBF192183AB4300009A339 /* VLCNetworkLoginViewController.xib */,
  1559. 7DBBF193183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib */,
  1560. 7DBBF194183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib */,
  1561. 7DBBF195183AB4300009A339 /* VLCPlaylistGridView.xib */,
  1562. 7DBBF196183AB4300009A339 /* VLCPlaylistTableViewCell.xib */,
  1563. 7DBBF197183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib */,
  1564. 7D711AD918227A490094E4F0 /* GTMOAuth2ViewTouch.xib */,
  1565. );
  1566. name = XIBs;
  1567. sourceTree = "<group>";
  1568. };
  1569. 7DADC5601704FACC001DAC63 /* Imported */ = {
  1570. isa = PBXGroup;
  1571. children = (
  1572. 9B2E0CED17FB5B3F0098E3DF /* GoogleDrive */,
  1573. A7B5316017E3728D00EAE4B3 /* upnpx */,
  1574. 7D6B08CA174D65B400A05173 /* InAppSettingsKit */,
  1575. A7A0E9EB174BA66000162F25 /* PAPasscode */,
  1576. 7DC72D6517B7ED36008A26D0 /* Reachability */,
  1577. 7DC72D6417B7ED2A008A26D0 /* WhiteRaccoon */,
  1578. 7D31001E17B64AE600E6516D /* GHSidebarNav */,
  1579. 291553E817490A0400B86CAD /* CocoaHTTPServer */,
  1580. 7D6B07A31716C9A6003280C4 /* OBSlider */,
  1581. );
  1582. name = Imported;
  1583. sourceTree = "<group>";
  1584. };
  1585. 7DBC3B3C1711DD1E00DCF688 /* Icons */ = {
  1586. isa = PBXGroup;
  1587. children = (
  1588. 7DEB3B6917647EC10038FC70 /* Icon-Small-50.png */,
  1589. 7DEB3B6A17647EC10038FC70 /* Icon-Small-50@2x.png */,
  1590. 7DEB3B6B17647EC10038FC70 /* Icon-Small.png */,
  1591. 7DEB3B6C17647EC10038FC70 /* Icon-Small@2x.png */,
  1592. 7DEB3B6517647E440038FC70 /* Icon-72.png */,
  1593. 7DEB3B6717647E480038FC70 /* Icon-72@2x.png */,
  1594. 7DEB3B6317647E370038FC70 /* Icon.png */,
  1595. 7DEB3B6117647E230038FC70 /* Icon@2x.png */,
  1596. 7D6B08C0174A831900A05173 /* vlc-xmas.png */,
  1597. 7D6B08C1174A831900A05173 /* vlc-xmas@2x.png */,
  1598. 7DEB3B7117649BEB0038FC70 /* Icon-512.png */,
  1599. );
  1600. name = Icons;
  1601. sourceTree = "<group>";
  1602. };
  1603. 7DC72D6417B7ED2A008A26D0 /* WhiteRaccoon */ = {
  1604. isa = PBXGroup;
  1605. children = (
  1606. 7DC72D6117B7ED24008A26D0 /* WhiteRaccoon.h */,
  1607. 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */,
  1608. );
  1609. name = WhiteRaccoon;
  1610. sourceTree = "<group>";
  1611. };
  1612. 7DC72D6517B7ED36008A26D0 /* Reachability */ = {
  1613. isa = PBXGroup;
  1614. children = (
  1615. 7D3784E5183A99E1009EE944 /* Reachability.h */,
  1616. 7D3784E6183A99E1009EE944 /* Reachability.m */,
  1617. );
  1618. name = Reachability;
  1619. sourceTree = "<group>";
  1620. };
  1621. 7DEB3B7B1764A4080038FC70 /* menu */ = {
  1622. isa = PBXGroup;
  1623. children = (
  1624. 7D0699C017CB1FAE00713BEB /* Settings@2x.png */,
  1625. 7D0699C117CB1FAE00713BEB /* TVShows.png */,
  1626. 7D0699C217CB1FAE00713BEB /* TVShows@2x.png */,
  1627. 7D0699C317CB1FAE00713BEB /* WifiUp.png */,
  1628. 7D0699C417CB1FAE00713BEB /* WifiUp@2x.png */,
  1629. 7D0699C517CB1FAE00713BEB /* WifiUpOn.png */,
  1630. 7D0699C617CB1FAE00713BEB /* WifiUpOn@2x.png */,
  1631. 7D0699C717CB1FAE00713BEB /* Dropbox@2x.png */,
  1632. 7D0699C817CB1FAE00713BEB /* Local.png */,
  1633. 7D0699C917CB1FAE00713BEB /* Local@2x.png */,
  1634. 7D0699CA17CB1FAE00713BEB /* MusicAlbums.png */,
  1635. 7D0699CB17CB1FAE00713BEB /* MusicAlbums@2x.png */,
  1636. 7D0699CC17CB1FAE00713BEB /* OpenNetStream.png */,
  1637. 7D0699CD17CB1FAE00713BEB /* OpenNetStream@2x.png */,
  1638. 7D0699CE17CB1FAE00713BEB /* Settings.png */,
  1639. 7D0699CF17CB1FAE00713BEB /* About.png */,
  1640. 7D0699D017CB1FAE00713BEB /* About@2x.png */,
  1641. 7D0699D117CB1FAE00713BEB /* AllFiles.png */,
  1642. 7D0699D217CB1FAE00713BEB /* AllFiles@2x.png */,
  1643. 7D0699D317CB1FAE00713BEB /* Downloads.png */,
  1644. 7D0699D417CB1FAE00713BEB /* Downloads@2x.png */,
  1645. 7D0699D517CB1FAE00713BEB /* Dropbox.png */,
  1646. 7DC72D5B17B7E7C7008A26D0 /* download@4x.png */,
  1647. 7DC72D5C17B7E7C7008A26D0 /* download.png */,
  1648. 7DC72D5D17B7E7C7008A26D0 /* download@2x.png */,
  1649. 7DEB3B771764A4040038FC70 /* input@2x.png */,
  1650. 7DEB3B781764A4040038FC70 /* input.png */,
  1651. 7DEB3B7317649F2C0038FC70 /* menuButton.png */,
  1652. 7DEB3B7417649F2C0038FC70 /* menuButton@2x.png */,
  1653. 7D514D3D17F779C6007B960C /* Drive@2x.png */,
  1654. 7D514D3E17F779C6007B960C /* DriveWhite.png */,
  1655. 7D514D3F17F779C6007B960C /* DriveWhite@2x.png */,
  1656. 7D514D4017F779C6007B960C /* Drive.png */,
  1657. );
  1658. name = menu;
  1659. sourceTree = "<group>";
  1660. };
  1661. 9B2E0CED17FB5B3F0098E3DF /* GoogleDrive */ = {
  1662. isa = PBXGroup;
  1663. children = (
  1664. 9B5BEF2717FBAEA50016F9CB /* GTLDrive_Sources.m */,
  1665. 9B5BEF2817FBAEA50016F9CB /* GTLDrive.h */,
  1666. );
  1667. name = GoogleDrive;
  1668. sourceTree = "<group>";
  1669. };
  1670. 9B51719A17EDEC8900F8FBA7 /* GoogleDrive Integration */ = {
  1671. isa = PBXGroup;
  1672. children = (
  1673. 7D30F3E3183AB34200FFC021 /* VLCGoogleDriveConstants.h */,
  1674. 7D30F3E4183AB34200FFC021 /* VLCGoogleDriveController.h */,
  1675. 7D30F3E5183AB34200FFC021 /* VLCGoogleDriveController.m */,
  1676. 7D30F3E8183AB34200FFC021 /* VLCGoogleDriveTableViewController.h */,
  1677. 7D30F3E9183AB34200FFC021 /* VLCGoogleDriveTableViewController.m */,
  1678. );
  1679. name = "GoogleDrive Integration";
  1680. sourceTree = "<group>";
  1681. };
  1682. A7924697170F0ED20036AAF2 /* Resources */ = {
  1683. isa = PBXGroup;
  1684. children = (
  1685. 7D47D6C81760CD2700E86BAD /* Movie VIew */,
  1686. 7D6B08FB174D773C00A05173 /* Settings.bundle */,
  1687. 29125E5317492219003F03E5 /* web */,
  1688. A7035BBD174519600057DFA7 /* iTunesArtwork */,
  1689. 7DEB3B5F17647DE30038FC70 /* iTunesArtwork@2x */,
  1690. 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */,
  1691. 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */,
  1692. 7D5DD5C617590ABF001421E3 /* About Contents.html */,
  1693. 7DEB3B7B1764A4080038FC70 /* menu */,
  1694. 7DBC3B3C1711DD1E00DCF688 /* Icons */,
  1695. A79246C6170F11DF0036AAF2 /* Localizable.strings */,
  1696. 7D10BC651743F9A100DA7059 /* External Playback */,
  1697. 7D10BC671743F9BA00DA7059 /* Launch Screen */,
  1698. 7D2159E4174FD31900EC00E8 /* Dropbox */,
  1699. 7D10BC661743F9AC00DA7059 /* Library View */,
  1700. );
  1701. path = Resources;
  1702. sourceTree = SOURCE_ROOT;
  1703. };
  1704. A7A0E9EB174BA66000162F25 /* PAPasscode */ = {
  1705. isa = PBXGroup;
  1706. children = (
  1707. 7D3784CA183A99BA009EE944 /* PAPasscodeViewController.h */,
  1708. 7D3784CB183A99BA009EE944 /* PAPasscodeViewController.m */,
  1709. A7A0E9EC174BA66000162F25 /* Assets */,
  1710. );
  1711. name = PAPasscode;
  1712. path = ../PAPasscode;
  1713. sourceTree = "<group>";
  1714. };
  1715. A7A0E9EC174BA66000162F25 /* Assets */ = {
  1716. isa = PBXGroup;
  1717. children = (
  1718. 7D3784D9183A99D2009EE944 /* papasscode_background.png */,
  1719. 7D3784DA183A99D2009EE944 /* papasscode_background@2x.png */,
  1720. 7D3784DB183A99D2009EE944 /* papasscode_failed_bg.png */,
  1721. 7D3784DC183A99D2009EE944 /* papasscode_failed_bg@2x.png */,
  1722. 7D3784DD183A99D2009EE944 /* papasscode_marker.png */,
  1723. 7D3784DE183A99D2009EE944 /* papasscode_marker@2x.png */,
  1724. );
  1725. path = Assets;
  1726. sourceTree = "<group>";
  1727. };
  1728. A7B5316017E3728D00EAE4B3 /* upnpx */ = {
  1729. isa = PBXGroup;
  1730. children = (
  1731. A7B5316117E3728D00EAE4B3 /* BasicDeviceParser.h */,
  1732. A7B5316217E3728D00EAE4B3 /* BasicHTTPServer_ObjC.h */,
  1733. A7B5316317E3728D00EAE4B3 /* BasicParser.h */,
  1734. A7B5316417E3728D00EAE4B3 /* BasicParserAsset.h */,
  1735. A7B5316517E3728D00EAE4B3 /* BasicServiceParser.h */,
  1736. A7B5316617E3728D00EAE4B3 /* BasicUPnPDevice.h */,
  1737. A7B5316717E3728D00EAE4B3 /* BasicUPnPService.h */,
  1738. A7B5316817E3728D00EAE4B3 /* BinaryLight1Device.h */,
  1739. A7B5316917E3728D00EAE4B3 /* CocoaTools.h */,
  1740. A7B5316A17E3728D00EAE4B3 /* DeviceFactory.h */,
  1741. A7B5316B17E3728D00EAE4B3 /* DigitalSecurityCamera1Device.h */,
  1742. A7B5316C17E3728D00EAE4B3 /* DimmableLight1Device.h */,
  1743. A7B5316D17E3728D00EAE4B3 /* InternetGateway2Device.h */,
  1744. A7B5316E17E3728D00EAE4B3 /* LAN1Device.h */,
  1745. A7B5316F17E3728D00EAE4B3 /* LastChangeParser.h */,
  1746. A7B5317017E3728D00EAE4B3 /* MediaPlaylist.h */,
  1747. A7B5317117E3728D00EAE4B3 /* MediaRenderer1Device.h */,
  1748. A7B5317217E3728D00EAE4B3 /* MediaServer1BasicObject.h */,
  1749. A7B5317317E3728D00EAE4B3 /* MediaServer1ContainerObject.h */,
  1750. A7B5317417E3728D00EAE4B3 /* MediaServer1Device.h */,
  1751. A7B5317517E3728D00EAE4B3 /* MediaServer1ItemObject.h */,
  1752. A7B5317617E3728D00EAE4B3 /* MediaServer1ItemRes.h */,
  1753. A7B5317717E3728D00EAE4B3 /* MediaServerBasicObjectParser.h */,
  1754. A7B5317817E3728D00EAE4B3 /* ServiceFactory.h */,
  1755. A7B5317917E3728D00EAE4B3 /* SoapAction.h */,
  1756. A7B5317A17E3728D00EAE4B3 /* SoapActionFactory.h */,
  1757. A7B5317B17E3728D00EAE4B3 /* SoapActionsAVTransport1.h */,
  1758. A7B5317C17E3728D00EAE4B3 /* SoapActionsCallManagement1.h */,
  1759. A7B5317D17E3728D00EAE4B3 /* SoapActionsConfigurationManagement1.h */,
  1760. A7B5317E17E3728D00EAE4B3 /* SoapActionsConnectionManager1.h */,
  1761. A7B5317F17E3728D00EAE4B3 /* SoapActionsContentDirectory1.h */,
  1762. A7B5318017E3728D00EAE4B3 /* SoapActionsDeviceProtection1.h */,
  1763. A7B5318117E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraMotionImage1.h */,
  1764. A7B5318217E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraSettings1.h */,
  1765. A7B5318317E3728D00EAE4B3 /* SoapActionsDigitalSecurityCameraStillImage1.h */,
  1766. A7B5318417E3728D00EAE4B3 /* SoapActionsDimming1.h */,
  1767. A7B5318517E3728D00EAE4B3 /* SoapActionsInputConfig1.h */,
  1768. A7B5318617E3728D00EAE4B3 /* SoapActionsLANHostConfigManagement1.h */,
  1769. A7B5318717E3728D00EAE4B3 /* SoapActionsLayer3Forwarding1.h */,
  1770. A7B5318817E3728D00EAE4B3 /* SoapActionsMediaManagement1.h */,
  1771. A7B5318917E3728D00EAE4B3 /* SoapActionsMessaging1.h */,
  1772. A7B5318A17E3728D00EAE4B3 /* SoapActionsRendering.h */,
  1773. A7B5318B17E3728D00EAE4B3 /* SoapActionsRenderingControl1.h */,
  1774. A7B5318C17E3728D00EAE4B3 /* SoapActionsSwitchPower1.h */,
  1775. A7B5318D17E3728D00EAE4B3 /* SoapActionsWANCableLinkConfig1.h */,
  1776. A7B5318E17E3728D00EAE4B3 /* SoapActionsWANCommonInterfaceConfig1.h */,
  1777. A7B5318F17E3728D00EAE4B3 /* SoapActionsWANDSLLinkConfig1.h */,
  1778. A7B5319017E3728D00EAE4B3 /* SoapActionsWANEthernetLinkConfig1.h */,
  1779. A7B5319117E3728D00EAE4B3 /* SoapActionsWANIPConnection1.h */,
  1780. A7B5319217E3728D00EAE4B3 /* SoapActionsWANIPConnection2.h */,
  1781. A7B5319317E3728D00EAE4B3 /* SoapActionsWANIPv6FirewallControl1.h */,
  1782. A7B5319417E3728D00EAE4B3 /* SoapActionsWANPOTSLinkConfig1.h */,
  1783. A7B5319517E3728D00EAE4B3 /* SoapActionsWANPPPConnection1.h */,
  1784. A7B5319617E3728D00EAE4B3 /* SSDPDB_ObjC.h */,
  1785. A7B5319717E3728D00EAE4B3 /* StateVariable.h */,
  1786. A7B5319817E3728D00EAE4B3 /* StateVariableList.h */,
  1787. A7B5319917E3728D00EAE4B3 /* StateVariableRange.h */,
  1788. A7B5319A17E3728D00EAE4B3 /* TelephonyClient1Device.h */,
  1789. A7B5319B17E3728D00EAE4B3 /* TelephonyServer1Device.h */,
  1790. A7B5319C17E3728D00EAE4B3 /* UPnPDB.h */,
  1791. A7B5319D17E3728D00EAE4B3 /* UPnPEventParser.h */,
  1792. A7B5319E17E3728D00EAE4B3 /* UPnPEvents.h */,
  1793. A7B5319F17E3728D00EAE4B3 /* UPnPManager.h */,
  1794. A7B531A017E3728D00EAE4B3 /* WAN2Device.h */,
  1795. A7B531A117E3728D00EAE4B3 /* WANConnection1Device.h */,
  1796. A7B531A217E3728D00EAE4B3 /* WANConnection2Device.h */,
  1797. );
  1798. name = upnpx;
  1799. path = ImportedSources/upnpx/src/api;
  1800. sourceTree = SOURCE_ROOT;
  1801. };
  1802. A7C3025A175A538700AD4388 /* Extensions */ = {
  1803. isa = PBXGroup;
  1804. children = (
  1805. 7D3784C4183A9972009EE944 /* NSString+SupportedMedia.h */,
  1806. 7D3784C5183A9972009EE944 /* NSString+SupportedMedia.m */,
  1807. 7D3784C6183A9972009EE944 /* UIDevice+SpeedCategory.h */,
  1808. 7D3784C7183A9972009EE944 /* UIDevice+SpeedCategory.m */,
  1809. );
  1810. name = Extensions;
  1811. sourceTree = "<group>";
  1812. };
  1813. A7D03A4817A4249F0022C16F /* MediaDiscovering */ = {
  1814. isa = PBXGroup;
  1815. children = (
  1816. 7D30F3CE183AB2AC00FFC021 /* VLCMediaFileDiscoverer.h */,
  1817. 7D30F3CF183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m */,
  1818. );
  1819. name = MediaDiscovering;
  1820. sourceTree = "<group>";
  1821. };
  1822. CC1BBC441704936500A20CBF /* External VLC Libraries */ = {
  1823. isa = PBXGroup;
  1824. children = (
  1825. A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */,
  1826. CC1BBC421704935E00A20CBF /* MediaLibrary.mom */,
  1827. CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */,
  1828. );
  1829. name = "External VLC Libraries";
  1830. sourceTree = "<group>";
  1831. };
  1832. /* End PBXGroup section */
  1833. /* Begin PBXNativeTarget section */
  1834. 7D94FCDA16DE7D1000F2623B /* vlc-ios */ = {
  1835. isa = PBXNativeTarget;
  1836. buildConfigurationList = 7D94FD0A16DE7D1100F2623B /* Build configuration list for PBXNativeTarget "vlc-ios" */;
  1837. buildPhases = (
  1838. 7D94FCD716DE7D1000F2623B /* Sources */,
  1839. 7D94FCD816DE7D1000F2623B /* Frameworks */,
  1840. 7D94FCD916DE7D1000F2623B /* Resources */,
  1841. );
  1842. buildRules = (
  1843. );
  1844. dependencies = (
  1845. );
  1846. name = "vlc-ios";
  1847. productName = AspenProject;
  1848. productReference = 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */;
  1849. productType = "com.apple.product-type.application";
  1850. };
  1851. /* End PBXNativeTarget section */
  1852. /* Begin PBXProject section */
  1853. 7D94FCD316DE7D1000F2623B /* Project object */ = {
  1854. isa = PBXProject;
  1855. attributes = {
  1856. CLASSPREFIX = VLC;
  1857. LastUpgradeCheck = 0460;
  1858. ORGANIZATIONNAME = VideoLAN;
  1859. };
  1860. buildConfigurationList = 7D94FCD616DE7D1000F2623B /* Build configuration list for PBXProject "VLC for iOS" */;
  1861. compatibilityVersion = "Xcode 3.2";
  1862. developmentRegion = English;
  1863. hasScannedForEncodings = 0;
  1864. knownRegions = (
  1865. en,
  1866. ru,
  1867. de,
  1868. fr,
  1869. it,
  1870. ja,
  1871. fi,
  1872. id,
  1873. es,
  1874. da,
  1875. he,
  1876. nl,
  1877. sk,
  1878. tr,
  1879. uk,
  1880. vi,
  1881. "zh-Hans",
  1882. "zh-Hant",
  1883. mr,
  1884. gl,
  1885. ca,
  1886. bs,
  1887. pt,
  1888. el,
  1889. sl,
  1890. pl,
  1891. ar,
  1892. ko,
  1893. sv,
  1894. hu,
  1895. );
  1896. mainGroup = 7D94FCD216DE7D1000F2623B;
  1897. productRefGroup = 7D94FCDC16DE7D1000F2623B /* Products */;
  1898. projectDirPath = "";
  1899. projectRoot = "";
  1900. targets = (
  1901. 7D94FCDA16DE7D1000F2623B /* vlc-ios */,
  1902. );
  1903. };
  1904. /* End PBXProject section */
  1905. /* Begin PBXResourcesBuildPhase section */
  1906. 7D94FCD916DE7D1000F2623B /* Resources */ = {
  1907. isa = PBXResourcesBuildPhase;
  1908. buildActionMask = 2147483647;
  1909. files = (
  1910. 7D00161C177056B700649F27 /* main.js in Resources */,
  1911. 7AC862A61765E9510011611A /* jquery-1.10.1.min.js in Resources */,
  1912. 7AC862A71765E9510011611A /* jquery.fileupload.js in Resources */,
  1913. 7AC862A81765E9510011611A /* jquery.iframe-transport.js in Resources */,
  1914. 7AC862A91765E9510011611A /* jquery.ui.widget.js in Resources */,
  1915. CC1BBC431704935E00A20CBF /* MediaLibrary.mom in Resources */,
  1916. A79246A7170F0ED20036AAF2 /* Default-568h@2x.png in Resources */,
  1917. A79246A8170F0ED20036AAF2 /* Default.png in Resources */,
  1918. A79246A9170F0ED20036AAF2 /* Default@2x.png in Resources */,
  1919. 7D2A34A51805CDBA004078AA /* gradient-cell-ios7@2x.png in Resources */,
  1920. A79246C8170F11DF0036AAF2 /* Localizable.strings in Resources */,
  1921. A7CB0DB11716F72600050CF3 /* PlayingExternally@2x~iphone.png in Resources */,
  1922. A7CB0DB21716F72600050CF3 /* PlayingExternally~iphone.png in Resources */,
  1923. 7DBBF1A8183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib in Resources */,
  1924. A7CB0DB31716F72600050CF3 /* PlayingExternally~ipad.png in Resources */,
  1925. A7CB0DB41716F72600050CF3 /* PlayingExternally@2x~ipad.png in Resources */,
  1926. 7DBBF1A9183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib in Resources */,
  1927. 7DA8B0FB173318E80029698C /* SourceCodePro-Regular.ttf in Resources */,
  1928. A7FF9F3E17428C1900999819 /* DeleteButton.png in Resources */,
  1929. A7FF9F4017428C3800999819 /* DeleteButton@2x.png in Resources */,
  1930. A7035BBE174519600057DFA7 /* iTunesArtwork in Resources */,
  1931. 29125E5617492219003F03E5 /* index.html in Resources */,
  1932. 7D6B08C2174A831900A05173 /* vlc-xmas.png in Resources */,
  1933. 7D6B08C3174A831900A05173 /* vlc-xmas@2x.png in Resources */,
  1934. 7D6B08FC174D773C00A05173 /* Settings.bundle in Resources */,
  1935. 7D5E39CA174FC2F3007DAFA1 /* dropbox-white.png in Resources */,
  1936. 7D5E39CB174FC2F3007DAFA1 /* dropbox-white@2x.png in Resources */,
  1937. 7D07F708175665ED00CDE21C /* navBarBackground@2x.png in Resources */,
  1938. 7D07F709175665ED00CDE21C /* navBarBackground.png in Resources */,
  1939. 7D07F70C175669A800CDE21C /* button.png in Resources */,
  1940. 7D07F70D175669A800CDE21C /* button@2x.png in Resources */,
  1941. 7D07F710175669D800CDE21C /* buttonHighlight.png in Resources */,
  1942. 7DBBF1A4183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib in Resources */,
  1943. 7D07F711175669D800CDE21C /* buttonHighlight@2x.png in Resources */,
  1944. 7D07F71417566C4A00CDE21C /* menuCone.png in Resources */,
  1945. 7D07F71517566C4A00CDE21C /* menuCone@2x.png in Resources */,
  1946. 7D07F71E175673D100CDE21C /* menuBtnBckHighlight@2x.png in Resources */,
  1947. 7DBBF1A7183AB4300009A339 /* VLCNetworkLoginViewController.xib in Resources */,
  1948. 7D07F71F175673D100CDE21C /* menuBtnBck@2x.png in Resources */,
  1949. 7D07F720175673D100CDE21C /* menuBtnBckHighlight.png in Resources */,
  1950. 7D882253185733D500D87252 /* Default-568h@2x~iphone.png in Resources */,
  1951. 7D07F721175673D100CDE21C /* menuBtnBck.png in Resources */,
  1952. 7D07F726175688D300CDE21C /* doneButton.png in Resources */,
  1953. 7D07F727175688D300CDE21C /* doneButton@2x.png in Resources */,
  1954. 7D07F728175688D300CDE21C /* doneButtonHighlight.png in Resources */,
  1955. 7D07F729175688D300CDE21C /* doneButtonHighlight@2x.png in Resources */,
  1956. 7D07F72E175691CC00CDE21C /* backButton.png in Resources */,
  1957. 9BF07090185122AA009B23DD /* audio@4x.png in Resources */,
  1958. 7D07F72F175691CC00CDE21C /* backButton@2x.png in Resources */,
  1959. 7D07F730175691CC00CDE21C /* backButtonHighlight.png in Resources */,
  1960. 9BF0708E185122AA009B23DD /* audio.png in Resources */,
  1961. 7D07F731175691CC00CDE21C /* backButtonHighlight@2x.png in Resources */,
  1962. 7D5DD5C717590ABF001421E3 /* About Contents.html in Resources */,
  1963. 7DE18629175BA9A5006C0173 /* badgeUnread@2x~ipad.png in Resources */,
  1964. 7DE1862C175BA9A9006C0173 /* badgeUnread@2x~iphone.png in Resources */,
  1965. 7DE1862F175BA9AC006C0173 /* badgeUnread~ipad.png in Resources */,
  1966. 7DBBF19B183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib in Resources */,
  1967. 7DE18632175BA9AF006C0173 /* badgeUnread~iphone.png in Resources */,
  1968. 7D47D6F91760CD8700E86BAD /* subtitleIcon.png in Resources */,
  1969. 7D47D6FA1760CD8700E86BAD /* subtitleIcon@2x.png in Resources */,
  1970. 7D47D6FB1760CD8700E86BAD /* videoEffectsIcon.png in Resources */,
  1971. 7D47D6FC1760CD8700E86BAD /* videoEffectsIcon@2x.png in Resources */,
  1972. 7D47D6FD1760CD8700E86BAD /* seekbarBg@2x.png in Resources */,
  1973. 7D47D6FE1760CD8700E86BAD /* slidermaximumTrack.png in Resources */,
  1974. 7D47D6FF1760CD8700E86BAD /* slidermaximumTrack@2x.png in Resources */,
  1975. 7D882256185733D500D87252 /* Default~ipad.png in Resources */,
  1976. 7D47D7001760CD8700E86BAD /* slidermaxValue.png in Resources */,
  1977. 7D47D7011760CD8700E86BAD /* slidermaxValue@2x.png in Resources */,
  1978. 7DBBF19F183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib in Resources */,
  1979. 7D47D7021760CD8700E86BAD /* sliderminiValue.png in Resources */,
  1980. 7D47D7031760CD8700E86BAD /* sliderminiValue@2x.png in Resources */,
  1981. 7D47D7061760CD8700E86BAD /* speedIcon.png in Resources */,
  1982. 7D47D7071760CD8700E86BAD /* speedIcon@2x.png in Resources */,
  1983. 7D47D7081760CD8700E86BAD /* playbackControllerBg@2x.png in Resources */,
  1984. 7D47D7091760CD8700E86BAD /* playbackDoneButton.png in Resources */,
  1985. 7D47D70A1760CD8700E86BAD /* playbackDoneButton@2x.png in Resources */,
  1986. 7D47D70B1760CD8700E86BAD /* playbackDoneButtonHighlight.png in Resources */,
  1987. 7D47D70C1760CD8700E86BAD /* playbackDoneButtonHighlight@2x.png in Resources */,
  1988. 7D47D70D1760CD8700E86BAD /* ratioButton.png in Resources */,
  1989. 7D47D70E1760CD8700E86BAD /* ratioButton@2x.png in Resources */,
  1990. 7D47D70F1760CD8700E86BAD /* ratioButtonHighlight.png in Resources */,
  1991. 7D47D7101760CD8700E86BAD /* ratioButtonHighlight@2x.png in Resources */,
  1992. 7D47D7111760CD8700E86BAD /* seekbarBg.png in Resources */,
  1993. 7D47D7131760CD8700E86BAD /* forwardIcon.png in Resources */,
  1994. 7D47D7141760CD8700E86BAD /* forwardIcon@2x.png in Resources */,
  1995. 7D47D7151760CD8700E86BAD /* knobSlider.png in Resources */,
  1996. 7D47D7161760CD8700E86BAD /* knobSlider@2x.png in Resources */,
  1997. 7D47D7191760CD8700E86BAD /* playbackControllerBg.png in Resources */,
  1998. 7D47D71A1760CD8700E86BAD /* playIcon.png in Resources */,
  1999. 7D47D71B1760CD8700E86BAD /* playIcon@2x.png in Resources */,
  2000. 7D47D71C1760CD8700E86BAD /* audioTrackIcon.png in Resources */,
  2001. 7D47D71D1760CD8700E86BAD /* audioTrackIcon@2x.png in Resources */,
  2002. 7D47D71E1760CD8700E86BAD /* backIcon.png in Resources */,
  2003. 7D47D71F1760CD8700E86BAD /* backIcon@2x.png in Resources */,
  2004. 7D47D7201760CD8700E86BAD /* ballSlider.png in Resources */,
  2005. 7D223E1A181EC56E00B36798 /* gradient-cell-ios7-ipad.png in Resources */,
  2006. 7D47D7211760CD8700E86BAD /* ballSlider@2x.png in Resources */,
  2007. 7D88224F185733D500D87252 /* Default-ipad-Landscape.png in Resources */,
  2008. 7DBBF19D183AB4300009A339 /* VLCCloudStorageTableViewController.xib in Resources */,
  2009. 7D47D7271760D77C00E86BAD /* pauseIcon.png in Resources */,
  2010. 7D47D7281760D77C00E86BAD /* pauseIcon@2x.png in Resources */,
  2011. 7D47D72B1760E3A000E86BAD /* sliderminimumTrack.png in Resources */,
  2012. 7D47D72C1760E3A000E86BAD /* sliderminimumTrack@2x.png in Resources */,
  2013. 7DBBF1AB183AB4300009A339 /* VLCPlaylistTableViewCell.xib in Resources */,
  2014. 7D6BD1841762026700AD311A /* thumbOverlayPhone@2x.png in Resources */,
  2015. 7D6BD1851762026700AD311A /* thumbOverlay@2x.png in Resources */,
  2016. 7D882257185733D500D87252 /* Default-Portrait@2x~ipad.png in Resources */,
  2017. 7DBBF19E183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib in Resources */,
  2018. 7D6BD1861762026700AD311A /* thumbOverlayPhone.png in Resources */,
  2019. 7D6BD1871762026700AD311A /* thumbOverlay.png in Resources */,
  2020. 7D1AC3041762996100BD2EB5 /* resetIcon.png in Resources */,
  2021. 7D1AC3051762996100BD2EB5 /* resetIcon@2x.png in Resources */,
  2022. 7D1AC30817629AB600BD2EB5 /* ratioIcon.png in Resources */,
  2023. 7D1AC30917629AB600BD2EB5 /* ratioIcon@2x.png in Resources */,
  2024. 7D1AC30C17629D4600BD2EB5 /* title.png in Resources */,
  2025. 7DBBF1A1183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib in Resources */,
  2026. 7D1AC30D17629D4600BD2EB5 /* title@2x.png in Resources */,
  2027. 7DEB3B5D17647B240038FC70 /* bottomBlackBar@2x.png in Resources */,
  2028. 7DBBF1AC183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib in Resources */,
  2029. 7DEB3B5E17647B240038FC70 /* bottomBlackBar.png in Resources */,
  2030. 7DBBF19C183AB4300009A339 /* VLCDownloadViewController.xib in Resources */,
  2031. 7DEB3B6017647DE30038FC70 /* iTunesArtwork@2x in Resources */,
  2032. 7DEB3B6217647E230038FC70 /* Icon@2x.png in Resources */,
  2033. 7D882258185733D500D87252 /* Default~iphone.png in Resources */,
  2034. 7DBBF1A3183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib in Resources */,
  2035. 7DEB3B6417647E370038FC70 /* Icon.png in Resources */,
  2036. 7DEB3B6617647E440038FC70 /* Icon-72.png in Resources */,
  2037. 7DBBF1A5183AB4300009A339 /* VLCMovieViewController~ipad.xib in Resources */,
  2038. 7DEB3B6817647E480038FC70 /* Icon-72@2x.png in Resources */,
  2039. 7DEB3B6D17647EC10038FC70 /* Icon-Small-50.png in Resources */,
  2040. 7DEB3B6E17647EC10038FC70 /* Icon-Small-50@2x.png in Resources */,
  2041. 7DEB3B6F17647EC10038FC70 /* Icon-Small.png in Resources */,
  2042. 7DEB3B7017647EC10038FC70 /* Icon-Small@2x.png in Resources */,
  2043. 7DEB3B7217649BEB0038FC70 /* Icon-512.png in Resources */,
  2044. 7DEB3B7517649F2C0038FC70 /* menuButton.png in Resources */,
  2045. 7DEB3B7617649F2C0038FC70 /* menuButton@2x.png in Resources */,
  2046. 7DEB3B791764A4040038FC70 /* input@2x.png in Resources */,
  2047. 7DEB3B7A1764A4040038FC70 /* input.png in Resources */,
  2048. 7DBBF198183AB4300009A339 /* VLCAboutViewController~ipad.xib in Resources */,
  2049. 7DBBF1A6183AB4300009A339 /* VLCMovieViewController~iphone.xib in Resources */,
  2050. 7DEB3B851764A4F40038FC70 /* movie@2x.png in Resources */,
  2051. 7DEB3B861764A4F40038FC70 /* movie@4x.png in Resources */,
  2052. 7DEB3B871764A4F40038FC70 /* blank@4x.png in Resources */,
  2053. 7DEB3B881764A4F40038FC70 /* folder.png in Resources */,
  2054. 7DEB3B891764A4F40038FC70 /* folder@2x.png in Resources */,
  2055. 7DEB3B8A1764A4F40038FC70 /* folder@4x.png in Resources */,
  2056. 7DEB3B8B1764A4F40038FC70 /* movie.png in Resources */,
  2057. 7DEB3B8C1764A4F40038FC70 /* blank.png in Resources */,
  2058. 7DEB3B8D1764A4F40038FC70 /* blank@2x.png in Resources */,
  2059. 7D223E1B181EC56E00B36798 /* gradient-cell-ios7-ipad@2x.png in Resources */,
  2060. 7AC8629D1765DC560011611A /* style.css in Resources */,
  2061. 7DF1166C176CC69A009EC05C /* volumeballslider.png in Resources */,
  2062. 7D882255185733D500D87252 /* Default-Landscape@2x~ipad.png in Resources */,
  2063. 7DF1166D176CC69A009EC05C /* volumeballslider@2x.png in Resources */,
  2064. A7990064176E9352009E8267 /* libraryBackground.png in Resources */,
  2065. 7DD2A3A9179C04A7003EB537 /* OpenSans-Regular.ttf in Resources */,
  2066. 7D882250185733D500D87252 /* Default-ipad-Landscape@2x.png in Resources */,
  2067. 7D2A34A41805CDBA004078AA /* gradient-cell-ios7.png in Resources */,
  2068. 7DBBF199183AB4300009A339 /* VLCAboutViewController~iphone.xib in Resources */,
  2069. 7DC72D5E17B7E7C7008A26D0 /* download@4x.png in Resources */,
  2070. 7DC72D5F17B7E7C7008A26D0 /* download.png in Resources */,
  2071. 7DC72D6017B7E7C7008A26D0 /* download@2x.png in Resources */,
  2072. 7D16035D17BF9FE600F29B34 /* sudHeaderBg.png in Resources */,
  2073. 7D16035E17BF9FE600F29B34 /* sudHeaderBg@2x.png in Resources */,
  2074. 7DBBF1A0183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib in Resources */,
  2075. 7D16035F17BF9FE600F29B34 /* headerSidebar@2x.png in Resources */,
  2076. 7D16036017BF9FE600F29B34 /* headerSidebar.png in Resources */,
  2077. 7D0699D617CB1FAE00713BEB /* Settings@2x.png in Resources */,
  2078. 7D711ADA18227A490094E4F0 /* GTMOAuth2ViewTouch.xib in Resources */,
  2079. 7D0699D717CB1FAE00713BEB /* TVShows.png in Resources */,
  2080. 7D0699D817CB1FAE00713BEB /* TVShows@2x.png in Resources */,
  2081. 7D882259185733D500D87252 /* Default@2x~iphone.png in Resources */,
  2082. 7D0699D917CB1FAE00713BEB /* WifiUp.png in Resources */,
  2083. 7D0699DA17CB1FAE00713BEB /* WifiUp@2x.png in Resources */,
  2084. 7D0699DB17CB1FAE00713BEB /* WifiUpOn.png in Resources */,
  2085. 7D0699DC17CB1FAE00713BEB /* WifiUpOn@2x.png in Resources */,
  2086. 7D0699DD17CB1FAE00713BEB /* Dropbox@2x.png in Resources */,
  2087. 7DBBF19A183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib in Resources */,
  2088. 9BF0708F185122AA009B23DD /* audio@2x.png in Resources */,
  2089. 7D0699DE17CB1FAE00713BEB /* Local.png in Resources */,
  2090. 7D882251185733D500D87252 /* Default-ipad-Portrait.png in Resources */,
  2091. 7D0699DF17CB1FAE00713BEB /* Local@2x.png in Resources */,
  2092. 7D0699E017CB1FAE00713BEB /* MusicAlbums.png in Resources */,
  2093. 7D0699E117CB1FAE00713BEB /* MusicAlbums@2x.png in Resources */,
  2094. 7D882252185733D500D87252 /* Default-ipad-Portrait@2x.png in Resources */,
  2095. 7D0699E217CB1FAE00713BEB /* OpenNetStream.png in Resources */,
  2096. 7D882254185733D500D87252 /* Default-Landscape~ipad.png in Resources */,
  2097. 7D0699E317CB1FAE00713BEB /* OpenNetStream@2x.png in Resources */,
  2098. 7D0699E417CB1FAE00713BEB /* Settings.png in Resources */,
  2099. 7D0699E517CB1FAE00713BEB /* About.png in Resources */,
  2100. 7D0699E617CB1FAE00713BEB /* About@2x.png in Resources */,
  2101. 7D0699E717CB1FAE00713BEB /* AllFiles.png in Resources */,
  2102. 7D0699E817CB1FAE00713BEB /* AllFiles@2x.png in Resources */,
  2103. 7D0699E917CB1FAE00713BEB /* Downloads.png in Resources */,
  2104. 7D0699EA17CB1FAE00713BEB /* Downloads@2x.png in Resources */,
  2105. 7D0699EB17CB1FAE00713BEB /* Dropbox.png in Resources */,
  2106. 7D514D4117F779C6007B960C /* Drive@2x.png in Resources */,
  2107. 7D514D4217F779C6007B960C /* DriveWhite.png in Resources */,
  2108. 7D514D4317F779C6007B960C /* DriveWhite@2x.png in Resources */,
  2109. 7D514D4417F779C6007B960C /* Drive.png in Resources */,
  2110. 7D3784DF183A99D2009EE944 /* papasscode_background.png in Resources */,
  2111. 7D3784E0183A99D2009EE944 /* papasscode_background@2x.png in Resources */,
  2112. 7D3784E1183A99D2009EE944 /* papasscode_failed_bg.png in Resources */,
  2113. 7D3784E2183A99D2009EE944 /* papasscode_failed_bg@2x.png in Resources */,
  2114. 7D3784E3183A99D2009EE944 /* papasscode_marker.png in Resources */,
  2115. 7DBBF1AA183AB4300009A339 /* VLCPlaylistGridView.xib in Resources */,
  2116. 7D3784E4183A99D2009EE944 /* papasscode_marker@2x.png in Resources */,
  2117. 7D3784EC183A9A1E009EE944 /* VLC for iOS-Info.plist in Resources */,
  2118. );
  2119. runOnlyForDeploymentPostprocessing = 0;
  2120. };
  2121. /* End PBXResourcesBuildPhase section */
  2122. /* Begin PBXSourcesBuildPhase section */
  2123. 7D94FCD716DE7D1000F2623B /* Sources */ = {
  2124. isa = PBXSourcesBuildPhase;
  2125. buildActionMask = 2147483647;
  2126. files = (
  2127. 9BE4D1CE183D76950006346C /* VLCCloudStorageTableViewCell.m in Sources */,
  2128. 7DADC55F1704FABF001DAC63 /* OBSlider.m in Sources */,
  2129. 2915540117490A1E00B86CAD /* DDData.m in Sources */,
  2130. 2915540217490A1E00B86CAD /* DDNumber.m in Sources */,
  2131. 2915540317490A1E00B86CAD /* DDRange.m in Sources */,
  2132. 2915540417490A1E00B86CAD /* HTTPAuthenticationRequest.m in Sources */,
  2133. 2915540517490A1E00B86CAD /* HTTPConnection.m in Sources */,
  2134. 2915540617490A1E00B86CAD /* HTTPMessage.m in Sources */,
  2135. 2915540717490A1E00B86CAD /* HTTPServer.m in Sources */,
  2136. 2915540817490A1E00B86CAD /* MultipartFormDataParser.m in Sources */,
  2137. 2915540917490A1E00B86CAD /* MultipartMessageHeader.m in Sources */,
  2138. 2915540A17490A1E00B86CAD /* MultipartMessageHeaderField.m in Sources */,
  2139. 2915542217490A9C00B86CAD /* GCDAsyncSocket.m in Sources */,
  2140. 2915542417490A9C00B86CAD /* DDAbstractDatabaseLogger.m in Sources */,
  2141. 2915542517490A9C00B86CAD /* DDASLLogger.m in Sources */,
  2142. 2915542617490A9C00B86CAD /* DDFileLogger.m in Sources */,
  2143. 2915542717490A9C00B86CAD /* DDLog.m in Sources */,
  2144. 2915542817490A9C00B86CAD /* DDTTYLogger.m in Sources */,
  2145. 2915542917490A9C00B86CAD /* ContextFilterLogFormatter.m in Sources */,
  2146. 2915542A17490A9C00B86CAD /* DispatchQueueLogFormatter.m in Sources */,
  2147. 2915543B17490B9C00B86CAD /* HTTPAsyncFileResponse.m in Sources */,
  2148. 2915543C17490B9C00B86CAD /* HTTPDataResponse.m in Sources */,
  2149. 2915543D17490B9C00B86CAD /* HTTPDynamicFileResponse.m in Sources */,
  2150. 2915543E17490B9C00B86CAD /* HTTPErrorResponse.m in Sources */,
  2151. 2915543F17490B9C00B86CAD /* HTTPFileResponse.m in Sources */,
  2152. 2915544017490B9C00B86CAD /* HTTPRedirectResponse.m in Sources */,
  2153. 2915544117490B9C00B86CAD /* WebSocket.m in Sources */,
  2154. 7D6B08EB174D65B500A05173 /* IASKAppSettingsViewController.m in Sources */,
  2155. 7D6B08EC174D65B500A05173 /* IASKAppSettingsWebViewController.m in Sources */,
  2156. 7D6B08ED174D65B500A05173 /* IASKSpecifierValuesViewController.m in Sources */,
  2157. 7D6B08EE174D65B500A05173 /* IASKSettingsReader.m in Sources */,
  2158. 7D6B08EF174D65B500A05173 /* IASKSettingsStore.m in Sources */,
  2159. 7D6B08F0174D65B500A05173 /* IASKSettingsStoreFile.m in Sources */,
  2160. 7D6B08F1174D65B500A05173 /* IASKSettingsStoreUserDefaults.m in Sources */,
  2161. 7D6B08F2174D65B500A05173 /* IASKSpecifier.m in Sources */,
  2162. 7D6B08F3174D65B500A05173 /* IASKPSSliderSpecifierViewCell.m in Sources */,
  2163. 7D6B08F4174D65B500A05173 /* IASKPSTextFieldSpecifierViewCell.m in Sources */,
  2164. 7D6B08F5174D65B500A05173 /* IASKPSTitleValueSpecifierViewCell.m in Sources */,
  2165. 9B5BEF2917FBAEA50016F9CB /* GTLDrive_Sources.m in Sources */,
  2166. 7D6B08F6174D65B500A05173 /* IASKSlider.m in Sources */,
  2167. 7D6B08F7174D65B500A05173 /* IASKSwitch.m in Sources */,
  2168. 7D6B08F8174D65B500A05173 /* IASKTextField.m in Sources */,
  2169. 7D31001D17B64AE100E6516D /* GHRevealViewController.m in Sources */,
  2170. 7DC72D6317B7ED24008A26D0 /* WhiteRaccoon.m in Sources */,
  2171. 7D37848F183A98B6009EE944 /* VLCMovieViewController.m in Sources */,
  2172. 7D378492183A98BF009EE944 /* VLCExternalDisplayController.m in Sources */,
  2173. 7D378499183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m in Sources */,
  2174. 7D37849A183A98D1009EE944 /* VLCPlaylistTableViewCell.m in Sources */,
  2175. 7D37849B183A98D1009EE944 /* VLCPlaylistViewController.m in Sources */,
  2176. 7D37849E183A98DD009EE944 /* VLCThumbnailsCache.m in Sources */,
  2177. 7D3784A1183A98EB009EE944 /* VLCBugreporter.m in Sources */,
  2178. 7D3784A6183A98F5009EE944 /* VLCAboutViewController.m in Sources */,
  2179. 7D3784A7183A98F5009EE944 /* VLCSettingsController.m in Sources */,
  2180. 7D3784AD183A9906009EE944 /* VLCDropboxController.m in Sources */,
  2181. 7D3784AE183A9906009EE944 /* VLCDropboxTableViewController.m in Sources */,
  2182. 7D3784BE183A9938009EE944 /* UIBarButtonItem+Theme.m in Sources */,
  2183. 7D3784BF183A9938009EE944 /* UINavigationController+Theme.m in Sources */,
  2184. 7DBBF182183AB3B80009A339 /* VLCAppDelegate.m in Sources */,
  2185. 7D3784C0183A9938009EE944 /* VLCLinearProgressIndicator.m in Sources */,
  2186. 7D3784C1183A9938009EE944 /* VLCMenuButton.m in Sources */,
  2187. 7D3784C2183A9938009EE944 /* VLCSlider.m in Sources */,
  2188. 7D3784C3183A9938009EE944 /* VLCStatusLabel.m in Sources */,
  2189. 7D3784C8183A9972009EE944 /* NSString+SupportedMedia.m in Sources */,
  2190. 7D3784C9183A9972009EE944 /* UIDevice+SpeedCategory.m in Sources */,
  2191. 7D3784CC183A99BA009EE944 /* PAPasscodeViewController.m in Sources */,
  2192. 7D3784E7183A99E1009EE944 /* Reachability.m in Sources */,
  2193. 7D3784E9183A9A15009EE944 /* main.m in Sources */,
  2194. 7D30F3C2183AB24C00FFC021 /* VLCHTTPConnection.m in Sources */,
  2195. 7D30F3C3183AB24C00FFC021 /* VLCHTTPFileDownloader.m in Sources */,
  2196. 7D30F3C4183AB24C00FFC021 /* VLCHTTPUploaderController.m in Sources */,
  2197. 7D30F3C7183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m in Sources */,
  2198. 7D30F3CA183AB27A00FFC021 /* VLCDownloadViewController.m in Sources */,
  2199. 7D30F3CD183AB29300FFC021 /* VLCMenuTableViewController.m in Sources */,
  2200. 7D30F3D0183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m in Sources */,
  2201. 7D30F3D7183AB2F100FFC021 /* VLCLocalNetworkListCell.m in Sources */,
  2202. 7D30F3D8183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m in Sources */,
  2203. 7D30F3D9183AB2F100FFC021 /* VLCLocalServerListViewController.m in Sources */,
  2204. 7D30F3DC183AB2F900FFC021 /* VLCNetworkLoginViewController.m in Sources */,
  2205. 7D30F3DF183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m in Sources */,
  2206. 7D30F3E2183AB33200FFC021 /* VLCSidebarViewCell.m in Sources */,
  2207. 7D30F3EA183AB34200FFC021 /* VLCGoogleDriveController.m in Sources */,
  2208. 9B088308183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m in Sources */,
  2209. 7D30F3EC183AB34200FFC021 /* VLCGoogleDriveTableViewController.m in Sources */,
  2210. );
  2211. runOnlyForDeploymentPostprocessing = 0;
  2212. };
  2213. /* End PBXSourcesBuildPhase section */
  2214. /* Begin PBXVariantGroup section */
  2215. 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */ = {
  2216. isa = PBXVariantGroup;
  2217. children = (
  2218. 7DE1862A175BA9A5006C0173 /* en */,
  2219. 7DE18635175BA9EB006C0173 /* ru */,
  2220. 7DE18639175BAEAF006C0173 /* de */,
  2221. 7DE1863A175BAEB0006C0173 /* fr */,
  2222. 7DE1863B175BAEB0006C0173 /* it */,
  2223. 7DE1863C175BAEB1006C0173 /* ja */,
  2224. 7D4BE734175F82CA00861CD4 /* fi */,
  2225. 7D7DA5301768A53200C7E95D /* id */,
  2226. 7DC222781773AB0900371B5C /* es */,
  2227. 7D5C204917999A64004F9443 /* da */,
  2228. 7D1AB27D179C98BF004CC271 /* he */,
  2229. 7D1AB282179C98CD004CC271 /* nl */,
  2230. 7D1AB287179C98D4004CC271 /* sk */,
  2231. 7D1AB28C179C98DC004CC271 /* tr */,
  2232. 7D1AB291179C98E4004CC271 /* uk */,
  2233. 7D1AB296179C98F4004CC271 /* vi */,
  2234. 7D1AB2A5179C99AE004CC271 /* zh-Hans */,
  2235. CC87147A17A56C05003C7383 /* mr */,
  2236. CC87147F17A56C61003C7383 /* gl */,
  2237. CC87148417A56C85003C7383 /* ca */,
  2238. 7D4C484517ACF982008D228B /* bs */,
  2239. CCBDA19117B2BEB500489D71 /* pt */,
  2240. 7D19492C17C661A300959800 /* el */,
  2241. 7D9B6B0917C9625F00F9425D /* sl */,
  2242. CCAF837F17DE46D800E3578F /* pl */,
  2243. CC75BE3B17DF4BBD00FAC19D /* ar */,
  2244. CC75BE4017DF744400FAC19D /* ko */,
  2245. 7D2AEDE117FB775900B5281E /* sv */,
  2246. 7D2AEDE617FB785200B5281E /* hu */,
  2247. );
  2248. name = "badgeUnread@2x~ipad.png";
  2249. sourceTree = "<group>";
  2250. };
  2251. 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */ = {
  2252. isa = PBXVariantGroup;
  2253. children = (
  2254. 7DE1862D175BA9A9006C0173 /* en */,
  2255. 7DE18637175BA9F9006C0173 /* ru */,
  2256. 7DE1863D175BAEB5006C0173 /* de */,
  2257. 7DE1863E175BAEB6006C0173 /* fr */,
  2258. 7DE1863F175BAEB7006C0173 /* it */,
  2259. 7DE18640175BAEB7006C0173 /* ja */,
  2260. 7D4BE735175F82CA00861CD4 /* fi */,
  2261. 7D7DA5311768A53200C7E95D /* id */,
  2262. 7DC222791773AB0900371B5C /* es */,
  2263. 7D5C204A17999A64004F9443 /* da */,
  2264. 7D1AB27E179C98BF004CC271 /* he */,
  2265. 7D1AB283179C98CD004CC271 /* nl */,
  2266. 7D1AB288179C98D4004CC271 /* sk */,
  2267. 7D1AB28D179C98DC004CC271 /* tr */,
  2268. 7D1AB292179C98E4004CC271 /* uk */,
  2269. 7D1AB297179C98F4004CC271 /* vi */,
  2270. 7D1AB2A6179C99AE004CC271 /* zh-Hans */,
  2271. CC87147B17A56C05003C7383 /* mr */,
  2272. CC87148017A56C61003C7383 /* gl */,
  2273. CC87148517A56C85003C7383 /* ca */,
  2274. 7D4C484617ACF982008D228B /* bs */,
  2275. CCBDA19217B2BEB500489D71 /* pt */,
  2276. 7D19492D17C661A300959800 /* el */,
  2277. 7D9B6B0A17C9626000F9425D /* sl */,
  2278. CCAF838017DE46D800E3578F /* pl */,
  2279. CC75BE3C17DF4BBD00FAC19D /* ar */,
  2280. CC75BE4117DF744500FAC19D /* ko */,
  2281. 7D2AEDE217FB775900B5281E /* sv */,
  2282. 7D2AEDE717FB785200B5281E /* hu */,
  2283. );
  2284. name = "badgeUnread@2x~iphone.png";
  2285. sourceTree = "<group>";
  2286. };
  2287. 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */ = {
  2288. isa = PBXVariantGroup;
  2289. children = (
  2290. 7DE18630175BA9AC006C0173 /* en */,
  2291. 7DE18636175BA9F4006C0173 /* ru */,
  2292. 7DE18645175BAEBF006C0173 /* de */,
  2293. 7DE18646175BAEC0006C0173 /* fr */,
  2294. 7DE18647175BAEC1006C0173 /* it */,
  2295. 7DE18648175BAEC2006C0173 /* ja */,
  2296. 7D4BE736175F82CA00861CD4 /* fi */,
  2297. 7D7DA5321768A53200C7E95D /* id */,
  2298. 7DC2227A1773AB0900371B5C /* es */,
  2299. 7D5C204B17999A64004F9443 /* da */,
  2300. 7D1AB27F179C98C0004CC271 /* he */,
  2301. 7D1AB284179C98CD004CC271 /* nl */,
  2302. 7D1AB289179C98D4004CC271 /* sk */,
  2303. 7D1AB28E179C98DC004CC271 /* tr */,
  2304. 7D1AB293179C98E4004CC271 /* uk */,
  2305. 7D1AB298179C98F4004CC271 /* vi */,
  2306. 7D1AB2A7179C99AE004CC271 /* zh-Hans */,
  2307. CC87147C17A56C05003C7383 /* mr */,
  2308. CC87148117A56C61003C7383 /* gl */,
  2309. CC87148617A56C85003C7383 /* ca */,
  2310. 7D4C484717ACF982008D228B /* bs */,
  2311. CCBDA19317B2BEB600489D71 /* pt */,
  2312. 7D19492E17C661A300959800 /* el */,
  2313. 7D9B6B0B17C9626000F9425D /* sl */,
  2314. CCAF838117DE46D800E3578F /* pl */,
  2315. CC75BE3D17DF4BBD00FAC19D /* ar */,
  2316. CC75BE4217DF744500FAC19D /* ko */,
  2317. 7D2AEDE317FB775900B5281E /* sv */,
  2318. 7D2AEDE817FB785200B5281E /* hu */,
  2319. );
  2320. name = "badgeUnread~ipad.png";
  2321. sourceTree = "<group>";
  2322. };
  2323. 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */ = {
  2324. isa = PBXVariantGroup;
  2325. children = (
  2326. 7DE18633175BA9AF006C0173 /* en */,
  2327. 7DE18638175BA9FC006C0173 /* ru */,
  2328. 7DE18641175BAEBA006C0173 /* de */,
  2329. 7DE18642175BAEBB006C0173 /* it */,
  2330. 7DE18643175BAEBC006C0173 /* fr */,
  2331. 7DE18644175BAEBD006C0173 /* ja */,
  2332. 7D4BE737175F82CA00861CD4 /* fi */,
  2333. 7D7DA5331768A53200C7E95D /* id */,
  2334. 7DC2227B1773AB0900371B5C /* es */,
  2335. 7D5C204C17999A64004F9443 /* da */,
  2336. 7D1AB280179C98C0004CC271 /* he */,
  2337. 7D1AB285179C98CD004CC271 /* nl */,
  2338. 7D1AB28A179C98D4004CC271 /* sk */,
  2339. 7D1AB28F179C98DC004CC271 /* tr */,
  2340. 7D1AB294179C98E4004CC271 /* uk */,
  2341. 7D1AB299179C98F4004CC271 /* vi */,
  2342. 7D1AB2A8179C99AE004CC271 /* zh-Hans */,
  2343. CC87147D17A56C05003C7383 /* mr */,
  2344. CC87148217A56C61003C7383 /* gl */,
  2345. CC87148717A56C85003C7383 /* ca */,
  2346. 7D4C484817ACF982008D228B /* bs */,
  2347. CCBDA19417B2BEB600489D71 /* pt */,
  2348. 7D19492F17C661A300959800 /* el */,
  2349. 7D9B6B0C17C9626000F9425D /* sl */,
  2350. CCAF838217DE46D800E3578F /* pl */,
  2351. CC75BE3E17DF4BBD00FAC19D /* ar */,
  2352. CC75BE4317DF744500FAC19D /* ko */,
  2353. 7D2AEDE417FB775900B5281E /* sv */,
  2354. 7D2AEDE917FB785200B5281E /* hu */,
  2355. );
  2356. name = "badgeUnread~iphone.png";
  2357. sourceTree = "<group>";
  2358. };
  2359. A79246C6170F11DF0036AAF2 /* Localizable.strings */ = {
  2360. isa = PBXVariantGroup;
  2361. children = (
  2362. A79246C7170F11DF0036AAF2 /* en */,
  2363. A79246C9170F11E40036AAF2 /* ru */,
  2364. 7DC87AEF17413634009DC250 /* de */,
  2365. 7DC87AF017413A17009DC250 /* fr */,
  2366. 7D6D13591758D1A00007EA9A /* it */,
  2367. 7D49E178175A47A4002D1450 /* ja */,
  2368. 7D4BE733175F82CA00861CD4 /* fi */,
  2369. 7D7DA52F1768A53200C7E95D /* id */,
  2370. 7DC222771773AB0900371B5C /* es */,
  2371. 7D5C204D17999A74004F9443 /* da */,
  2372. 7D1AB27C179C98BF004CC271 /* he */,
  2373. 7D1AB281179C98CD004CC271 /* nl */,
  2374. 7D1AB286179C98D4004CC271 /* sk */,
  2375. 7D1AB28B179C98DC004CC271 /* tr */,
  2376. 7D1AB290179C98E3004CC271 /* uk */,
  2377. 7D1AB295179C98F4004CC271 /* vi */,
  2378. 7D1AB2A4179C99AE004CC271 /* zh-Hans */,
  2379. CC87147917A56C05003C7383 /* mr */,
  2380. CC87147E17A56C61003C7383 /* gl */,
  2381. CC87148317A56C85003C7383 /* ca */,
  2382. 7D4C484417ACF982008D228B /* bs */,
  2383. CCBDA19017B2BEB500489D71 /* pt */,
  2384. 7D19492B17C661A300959800 /* el */,
  2385. 7D9B6B0817C9625F00F9425D /* sl */,
  2386. CCAF837E17DE46D800E3578F /* pl */,
  2387. CC75BE3A17DF4BBD00FAC19D /* ar */,
  2388. CC75BE3F17DF744400FAC19D /* ko */,
  2389. 7D2AEDE017FB775900B5281E /* sv */,
  2390. 7D2AEDE517FB785100B5281E /* hu */,
  2391. );
  2392. name = Localizable.strings;
  2393. sourceTree = "<group>";
  2394. };
  2395. /* End PBXVariantGroup section */
  2396. /* Begin XCBuildConfiguration section */
  2397. 7D94FD0816DE7D1100F2623B /* Debug */ = {
  2398. isa = XCBuildConfiguration;
  2399. buildSettings = {
  2400. ALWAYS_SEARCH_USER_PATHS = NO;
  2401. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2402. CLANG_CXX_LIBRARY = "libc++";
  2403. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2404. CLANG_WARN_EMPTY_BODY = YES;
  2405. CLANG_WARN_ENUM_CONVERSION = YES;
  2406. CLANG_WARN_INT_CONVERSION = YES;
  2407. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2408. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2409. COPY_PHASE_STRIP = NO;
  2410. GCC_C_LANGUAGE_STANDARD = gnu99;
  2411. GCC_DYNAMIC_NO_PIC = NO;
  2412. GCC_OPTIMIZATION_LEVEL = 0;
  2413. GCC_PREPROCESSOR_DEFINITIONS = (
  2414. "DEBUG=1",
  2415. "$(inherited)",
  2416. );
  2417. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  2418. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  2419. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  2420. GCC_WARN_UNUSED_VARIABLE = YES;
  2421. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2422. ONLY_ACTIVE_ARCH = YES;
  2423. SDKROOT = iphoneos;
  2424. TARGETED_DEVICE_FAMILY = "1,2";
  2425. };
  2426. name = Debug;
  2427. };
  2428. 7D94FD0916DE7D1100F2623B /* Release */ = {
  2429. isa = XCBuildConfiguration;
  2430. buildSettings = {
  2431. ALWAYS_SEARCH_USER_PATHS = NO;
  2432. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2433. CLANG_CXX_LIBRARY = "libc++";
  2434. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2435. CLANG_WARN_EMPTY_BODY = YES;
  2436. CLANG_WARN_ENUM_CONVERSION = YES;
  2437. CLANG_WARN_INT_CONVERSION = YES;
  2438. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2439. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2440. COPY_PHASE_STRIP = YES;
  2441. GCC_C_LANGUAGE_STANDARD = gnu99;
  2442. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  2443. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  2444. GCC_WARN_UNUSED_VARIABLE = YES;
  2445. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2446. OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
  2447. SDKROOT = iphoneos;
  2448. TARGETED_DEVICE_FAMILY = "1,2";
  2449. VALIDATE_PRODUCT = YES;
  2450. };
  2451. name = Release;
  2452. };
  2453. 7D94FD0B16DE7D1100F2623B /* Debug */ = {
  2454. isa = XCBuildConfiguration;
  2455. buildSettings = {
  2456. CLANG_ENABLE_OBJC_ARC = YES;
  2457. COPY_PHASE_STRIP = NO;
  2458. DEAD_CODE_STRIPPING = NO;
  2459. EXCLUDED_SOURCE_FILE_NAMES = "";
  2460. FRAMEWORK_SEARCH_PATHS = (
  2461. "$(inherited)",
  2462. "\"$(SRCROOT)/ImportedSources/Dropbox\"",
  2463. );
  2464. GCC_C_LANGUAGE_STANDARD = c99;
  2465. GCC_OPTIMIZATION_LEVEL = 2;
  2466. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2467. GCC_PREFIX_HEADER = "Sources/VLC for iOS-Prefix.pch";
  2468. HEADER_SEARCH_PATHS = (
  2469. "$(SRCROOT)/External/MobileVLCKit/include",
  2470. "$(SRCROOT)/External/MediaLibraryKit/include",
  2471. "$(SRCROOT)/ImportedSources/upnpx/src/api",
  2472. "$(SRCROOT)/ImportedSources/upnpx/src/port/ios",
  2473. "$(SRCROOT)/ImportedSources/GDrive/**",
  2474. );
  2475. INFOPLIST_FILE = "Sources/VLC for iOS-Info.plist";
  2476. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2477. LIBRARY_SEARCH_PATHS = (
  2478. "$(inherited)",
  2479. "\"$(SRCROOT)/External/MediaLibraryKit\"",
  2480. "\"$(SRCROOT)/External/MobileVLCKit\"",
  2481. "\"$(SRCROOT)/External/upnpx\"",
  2482. "\"$(SRCROOT)/External/gtl\"",
  2483. "\"$(SDKROOT)/usr/lib/system\"",
  2484. );
  2485. ONLY_ACTIVE_ARCH = YES;
  2486. OTHER_LDFLAGS = "-Wl,-no_pie";
  2487. PRODUCT_NAME = "VLC for iOS";
  2488. };
  2489. name = Debug;
  2490. };
  2491. 7D94FD0C16DE7D1100F2623B /* Release */ = {
  2492. isa = XCBuildConfiguration;
  2493. buildSettings = {
  2494. CLANG_ENABLE_OBJC_ARC = YES;
  2495. CODE_SIGN_IDENTITY = "iPhone Distribution";
  2496. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
  2497. COPY_PHASE_STRIP = YES;
  2498. DEAD_CODE_STRIPPING = NO;
  2499. EXCLUDED_SOURCE_FILE_NAMES = "";
  2500. FRAMEWORK_SEARCH_PATHS = (
  2501. "$(inherited)",
  2502. "\"$(SRCROOT)/ImportedSources/Dropbox\"",
  2503. );
  2504. GCC_C_LANGUAGE_STANDARD = c99;
  2505. GCC_OPTIMIZATION_LEVEL = 3;
  2506. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2507. GCC_PREFIX_HEADER = "Sources/VLC for iOS-Prefix.pch";
  2508. HEADER_SEARCH_PATHS = (
  2509. "$(SRCROOT)/External/MobileVLCKit/include",
  2510. "$(SRCROOT)/External/MediaLibraryKit/include",
  2511. "$(SRCROOT)/ImportedSources/upnpx/src/api",
  2512. "$(SRCROOT)/ImportedSources/upnpx/src/port/ios",
  2513. "$(SRCROOT)/ImportedSources/GDrive/**",
  2514. );
  2515. INFOPLIST_FILE = "Sources/VLC for iOS-Info.plist";
  2516. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2517. LIBRARY_SEARCH_PATHS = (
  2518. "$(inherited)",
  2519. "\"$(SRCROOT)/External/MediaLibraryKit\"",
  2520. "\"$(SRCROOT)/External/MobileVLCKit\"",
  2521. "\"$(SRCROOT)/External/upnpx\"",
  2522. "\"$(SRCROOT)/External/gtl\"",
  2523. "\"$(SDKROOT)/usr/lib/system\"",
  2524. );
  2525. ONLY_ACTIVE_ARCH = NO;
  2526. OTHER_LDFLAGS = "-Wl,-no_pie";
  2527. PRODUCT_NAME = "VLC for iOS";
  2528. PROVISIONING_PROFILE = "";
  2529. "PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
  2530. };
  2531. name = Release;
  2532. };
  2533. A7035BBF174519E40057DFA7 /* Distribution */ = {
  2534. isa = XCBuildConfiguration;
  2535. buildSettings = {
  2536. ALWAYS_SEARCH_USER_PATHS = NO;
  2537. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2538. CLANG_CXX_LIBRARY = "libc++";
  2539. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2540. CLANG_WARN_EMPTY_BODY = YES;
  2541. CLANG_WARN_ENUM_CONVERSION = YES;
  2542. CLANG_WARN_INT_CONVERSION = YES;
  2543. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2544. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2545. COPY_PHASE_STRIP = YES;
  2546. GCC_C_LANGUAGE_STANDARD = gnu99;
  2547. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  2548. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  2549. GCC_WARN_UNUSED_VARIABLE = YES;
  2550. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2551. OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
  2552. SDKROOT = iphoneos;
  2553. TARGETED_DEVICE_FAMILY = "1,2";
  2554. VALIDATE_PRODUCT = YES;
  2555. };
  2556. name = Distribution;
  2557. };
  2558. A7035BC0174519E40057DFA7 /* Distribution */ = {
  2559. isa = XCBuildConfiguration;
  2560. buildSettings = {
  2561. CLANG_ENABLE_OBJC_ARC = YES;
  2562. CODE_SIGN_IDENTITY = "iPhone Distribution";
  2563. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
  2564. COPY_PHASE_STRIP = YES;
  2565. DEAD_CODE_STRIPPING = NO;
  2566. EXCLUDED_SOURCE_FILE_NAMES = "iTunesArtwork*";
  2567. FRAMEWORK_SEARCH_PATHS = (
  2568. "$(inherited)",
  2569. "\"$(SRCROOT)/ImportedSources/Dropbox\"",
  2570. );
  2571. GCC_C_LANGUAGE_STANDARD = c99;
  2572. GCC_OPTIMIZATION_LEVEL = 3;
  2573. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2574. GCC_PREFIX_HEADER = "Sources/VLC for iOS-Prefix.pch";
  2575. HEADER_SEARCH_PATHS = (
  2576. "$(SRCROOT)/External/MobileVLCKit/include",
  2577. "$(SRCROOT)/External/MediaLibraryKit/include",
  2578. "$(SRCROOT)/ImportedSources/upnpx/src/api",
  2579. "$(SRCROOT)/ImportedSources/upnpx/src/port/ios",
  2580. "$(SRCROOT)/ImportedSources/GDrive/**",
  2581. );
  2582. INFOPLIST_FILE = "Sources/VLC for iOS-Info.plist";
  2583. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2584. LIBRARY_SEARCH_PATHS = (
  2585. "$(inherited)",
  2586. "\"$(SRCROOT)/External/MediaLibraryKit\"",
  2587. "\"$(SRCROOT)/External/MobileVLCKit\"",
  2588. "\"$(SRCROOT)/External/upnpx\"",
  2589. "\"$(SRCROOT)/External/gtl\"",
  2590. "\"$(SDKROOT)/usr/lib/system\"",
  2591. );
  2592. ONLY_ACTIVE_ARCH = NO;
  2593. OTHER_LDFLAGS = "-Wl,-no_pie";
  2594. PRODUCT_NAME = "VLC for iOS";
  2595. PROVISIONING_PROFILE = "";
  2596. "PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
  2597. };
  2598. name = Distribution;
  2599. };
  2600. /* End XCBuildConfiguration section */
  2601. /* Begin XCConfigurationList section */
  2602. 7D94FCD616DE7D1000F2623B /* Build configuration list for PBXProject "VLC for iOS" */ = {
  2603. isa = XCConfigurationList;
  2604. buildConfigurations = (
  2605. 7D94FD0816DE7D1100F2623B /* Debug */,
  2606. 7D94FD0916DE7D1100F2623B /* Release */,
  2607. A7035BBF174519E40057DFA7 /* Distribution */,
  2608. );
  2609. defaultConfigurationIsVisible = 0;
  2610. defaultConfigurationName = Release;
  2611. };
  2612. 7D94FD0A16DE7D1100F2623B /* Build configuration list for PBXNativeTarget "vlc-ios" */ = {
  2613. isa = XCConfigurationList;
  2614. buildConfigurations = (
  2615. 7D94FD0B16DE7D1100F2623B /* Debug */,
  2616. 7D94FD0C16DE7D1100F2623B /* Release */,
  2617. A7035BC0174519E40057DFA7 /* Distribution */,
  2618. );
  2619. defaultConfigurationIsVisible = 0;
  2620. defaultConfigurationName = Release;
  2621. };
  2622. /* End XCConfigurationList section */
  2623. };
  2624. rootObject = 7D94FCD316DE7D1000F2623B /* Project object */;
  2625. }