project.pbxproj 256 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 46;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 262C71591A98FA9200F7ED34 /* VLCPlexMediaInformationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 262C71581A98FA9200F7ED34 /* VLCPlexMediaInformationViewController.m */; };
  10. 262C715B1A98FDE300F7ED34 /* VLCPlexMediaInformationViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 262C715A1A98FDE300F7ED34 /* VLCPlexMediaInformationViewController.xib */; };
  11. 2640FAE61B01477A00E359D6 /* VLCPlexWebAPI.m in Sources */ = {isa = PBXBuildFile; fileRef = 2640FAE51B01477A00E359D6 /* VLCPlexWebAPI.m */; };
  12. 265D511C1922746C00E38383 /* VLCLocalPlexFolderListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 265D51191922746C00E38383 /* VLCLocalPlexFolderListViewController.m */; };
  13. 265D511D1922746C00E38383 /* VLCPlexParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 265D511B1922746C00E38383 /* VLCPlexParser.m */; };
  14. 26D4AF8D1A78379000D5EC65 /* VLCSharedLibraryListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 26D4AF8A1A78379000D5EC65 /* VLCSharedLibraryListViewController.m */; };
  15. 26D4AF8E1A78379000D5EC65 /* VLCSharedLibraryParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 26D4AF8C1A78379000D5EC65 /* VLCSharedLibraryParser.m */; };
  16. 26E3A6FE1AAB76A100B32450 /* VLCPlexConnectServerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 26E3A6FD1AAB76A100B32450 /* VLCPlexConnectServerViewController.m */; };
  17. 26E3A7011AAB76D300B32450 /* VLCFuturePlexConnectServerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 26E3A6FF1AAB76D300B32450 /* VLCFuturePlexConnectServerViewController.xib */; };
  18. 26E3A7021AAB76D300B32450 /* VLCPlexConnectServerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 26E3A7001AAB76D300B32450 /* VLCPlexConnectServerViewController.xib */; };
  19. 26F1BFD01A770408001DF30C /* libMediaVLC.xml in Resources */ = {isa = PBXBuildFile; fileRef = 26F1BFCF1A770408001DF30C /* libMediaVLC.xml */; };
  20. 29125E5617492219003F03E5 /* index.html in Resources */ = {isa = PBXBuildFile; fileRef = 29125E5417492219003F03E5 /* index.html */; };
  21. 2915540117490A1E00B86CAD /* DDData.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553EB17490A1E00B86CAD /* DDData.m */; };
  22. 2915540217490A1E00B86CAD /* DDNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553ED17490A1E00B86CAD /* DDNumber.m */; };
  23. 2915540317490A1E00B86CAD /* DDRange.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553EF17490A1E00B86CAD /* DDRange.m */; };
  24. 2915540417490A1E00B86CAD /* HTTPAuthenticationRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F117490A1E00B86CAD /* HTTPAuthenticationRequest.m */; };
  25. 2915540517490A1E00B86CAD /* HTTPConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F317490A1E00B86CAD /* HTTPConnection.m */; };
  26. 2915540617490A1E00B86CAD /* HTTPMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F617490A1E00B86CAD /* HTTPMessage.m */; };
  27. 2915540717490A1E00B86CAD /* HTTPServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553F917490A1E00B86CAD /* HTTPServer.m */; };
  28. 2915540817490A1E00B86CAD /* MultipartFormDataParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553FC17490A1E00B86CAD /* MultipartFormDataParser.m */; };
  29. 2915540917490A1E00B86CAD /* MultipartMessageHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 291553FE17490A1E00B86CAD /* MultipartMessageHeader.m */; };
  30. 2915540A17490A1E00B86CAD /* MultipartMessageHeaderField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915540017490A1E00B86CAD /* MultipartMessageHeaderField.m */; };
  31. 2915542217490A9C00B86CAD /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915540E17490A9C00B86CAD /* GCDAsyncSocket.m */; };
  32. 2915542417490A9C00B86CAD /* DDAbstractDatabaseLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541217490A9C00B86CAD /* DDAbstractDatabaseLogger.m */; };
  33. 2915542517490A9C00B86CAD /* DDASLLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541417490A9C00B86CAD /* DDASLLogger.m */; };
  34. 2915542617490A9C00B86CAD /* DDFileLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541617490A9C00B86CAD /* DDFileLogger.m */; };
  35. 2915542717490A9C00B86CAD /* DDLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541817490A9C00B86CAD /* DDLog.m */; };
  36. 2915542817490A9C00B86CAD /* DDTTYLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541A17490A9C00B86CAD /* DDTTYLogger.m */; };
  37. 2915542917490A9C00B86CAD /* ContextFilterLogFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541D17490A9C00B86CAD /* ContextFilterLogFormatter.m */; };
  38. 2915542A17490A9C00B86CAD /* DispatchQueueLogFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915541F17490A9C00B86CAD /* DispatchQueueLogFormatter.m */; };
  39. 2915543B17490B9C00B86CAD /* HTTPAsyncFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915542E17490B9C00B86CAD /* HTTPAsyncFileResponse.m */; };
  40. 2915543C17490B9C00B86CAD /* HTTPDataResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543017490B9C00B86CAD /* HTTPDataResponse.m */; };
  41. 2915543D17490B9C00B86CAD /* HTTPDynamicFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543217490B9C00B86CAD /* HTTPDynamicFileResponse.m */; };
  42. 2915543E17490B9C00B86CAD /* HTTPErrorResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543417490B9C00B86CAD /* HTTPErrorResponse.m */; };
  43. 2915543F17490B9C00B86CAD /* HTTPFileResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543617490B9C00B86CAD /* HTTPFileResponse.m */; };
  44. 2915544017490B9C00B86CAD /* HTTPRedirectResponse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543817490B9C00B86CAD /* HTTPRedirectResponse.m */; };
  45. 2915544117490B9C00B86CAD /* WebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 2915543A17490B9C00B86CAD /* WebSocket.m */; };
  46. 2915544317490D4A00B86CAD /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2915544217490D4A00B86CAD /* Security.framework */; };
  47. 41273A3C1A955C4100A2EF77 /* VLCMigrationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 41273A3A1A955C4100A2EF77 /* VLCMigrationViewController.m */; };
  48. 41273A3D1A955C4100A2EF77 /* VLCMigrationViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 41273A3B1A955C4100A2EF77 /* VLCMigrationViewController.xib */; };
  49. 4144C4661A0ED6C700918C89 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784E6183A99E1009EE944 /* Reachability.m */; };
  50. 4171D35018A2C19000A16EF9 /* VLCFolderCollectionViewFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 4171D34F18A2C19000A16EF9 /* VLCFolderCollectionViewFlowLayout.m */; };
  51. 4171D35818A2D90200A16EF9 /* LXReorderableCollectionViewFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 4171D35718A2D90200A16EF9 /* LXReorderableCollectionViewFlowLayout.m */; };
  52. 4173AEA61ABF1B850004101D /* VLCPlaylistInterfaceController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4173AEA51ABF1B850004101D /* VLCPlaylistInterfaceController.m */; };
  53. 4173AEA81ABF1B850004101D /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4173AEA71ABF1B850004101D /* Images.xcassets */; };
  54. 4173AEAC1ABF1B850004101D /* VLC for iOS WatchKit App.app in Resources */ = {isa = PBXBuildFile; fileRef = 4173AEAB1ABF1B850004101D /* VLC for iOS WatchKit App.app */; };
  55. 4173AEB41ABF1B860004101D /* Interface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4173AEB21ABF1B860004101D /* Interface.storyboard */; };
  56. 4173AEB61ABF1B860004101D /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4173AEB51ABF1B860004101D /* Images.xcassets */; };
  57. 4173AEB91ABF1B860004101D /* VLC for iOS WatchKit Extension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 4173AEA01ABF1B850004101D /* VLC for iOS WatchKit Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
  58. 417CDA231A48D1F300D9ACE7 /* VLCCloudServicesTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 417CDA211A48D1F300D9ACE7 /* VLCCloudServicesTableViewController.m */; };
  59. 417CDA241A48D1F300D9ACE7 /* VLCCloudServicesTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 417CDA221A48D1F300D9ACE7 /* VLCCloudServicesTableViewController.xib */; };
  60. 4184AA151A5492070063DF5A /* VLCCloudStorageController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4184AA141A5492070063DF5A /* VLCCloudStorageController.m */; };
  61. 418FF4B11A0EC1D5005FE808 /* libPods-vlc-ios.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 418FF4B01A0EC1D5005FE808 /* libPods-vlc-ios.a */; };
  62. 41B93C011A53833B00102E8B /* VLCProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 41B93C001A53833B00102E8B /* VLCProgressView.m */; };
  63. 41B93C051A53835300102E8B /* VLCCloudServiceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 41B93C031A53835300102E8B /* VLCCloudServiceCell.m */; };
  64. 41B93C081A53853B00102E8B /* VLCCloudServiceCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 41B93C071A53853B00102E8B /* VLCCloudServiceCell.xib */; };
  65. 41CD695C1A29D72600E60BCE /* VLCBoxController.m in Sources */ = {isa = PBXBuildFile; fileRef = 41CD69591A29D72600E60BCE /* VLCBoxController.m */; };
  66. 41CD695D1A29D72600E60BCE /* VLCBoxTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 41CD695B1A29D72600E60BCE /* VLCBoxTableViewController.m */; };
  67. 493B1A1D195D06B1000A491A /* BasicUPnPDevice+VLC.m in Sources */ = {isa = PBXBuildFile; fileRef = 493B1A1C195D06B1000A491A /* BasicUPnPDevice+VLC.m */; };
  68. 7AC8629D1765DC560011611A /* style.css in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629B1765DC560011611A /* style.css */; };
  69. 7AC862A61765E9510011611A /* jquery-1.10.1.min.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */; };
  70. 7AC862A71765E9510011611A /* jquery.fileupload.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC8629F1765E90C0011611A /* jquery.fileupload.js */; };
  71. 7AC862A81765E9510011611A /* jquery.iframe-transport.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */; };
  72. 7AC862A91765E9510011611A /* jquery.ui.widget.js in Resources */ = {isa = PBXBuildFile; fileRef = 7AC862A11765E90C0011611A /* jquery.ui.widget.js */; };
  73. 7D00161C177056B700649F27 /* main.js in Resources */ = {isa = PBXBuildFile; fileRef = 7D00161A17704DAC00649F27 /* main.js */; };
  74. 7D0117F1187F4BA400C5671C /* VLCFirstStepsFirstPageViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D0117F0187F4BA400C5671C /* VLCFirstStepsFirstPageViewController~ipad.xib */; };
  75. 7D1052E61A4DC5FF00295F08 /* LiveSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D1052E51A4DC5FF00295F08 /* LiveSDK.framework */; };
  76. 7D1052E91A4DCC1100295F08 /* VLCOneDriveTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D1052E81A4DCC1100295F08 /* VLCOneDriveTableViewController.m */; };
  77. 7D1052EE1A4DCD1E00295F08 /* VLCOneDriveController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D1052ED1A4DCD1E00295F08 /* VLCOneDriveController.m */; };
  78. 7D1276621AADA0E600F0260C /* VLCMultiSelectionMenuView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D1276611AADA0E600F0260C /* VLCMultiSelectionMenuView.m */; };
  79. 7D1516421868D7E0004B18F3 /* VLCFirstStepsFifthPageViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D15163B1868D7E0004B18F3 /* VLCFirstStepsFifthPageViewController.xib */; };
  80. 7D1516431868D7E0004B18F3 /* VLCFirstStepsFirstPageViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D15163C1868D7E0004B18F3 /* VLCFirstStepsFirstPageViewController~iphone.xib */; };
  81. 7D1516461868D7E0004B18F3 /* VLCFirstStepsSixthPageViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D15163F1868D7E0004B18F3 /* VLCFirstStepsSixthPageViewController~iphone.xib */; };
  82. 7D15168B194773630086FB8C /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D15168A194773630086FB8C /* MobileCoreServices.framework */; };
  83. 7D168F7118D4A21B003FAF59 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D168F7018D4A21B003FAF59 /* Accelerate.framework */; };
  84. 7D168F7418D4A33F003FAF59 /* UIImage+Blur.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D168F7318D4A33F003FAF59 /* UIImage+Blur.m */; };
  85. 7D27EB9419DEE11900EF0370 /* Launch Screen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D27EB9319DEE11900EF0370 /* Launch Screen.xib */; };
  86. 7D27EC2B19DF310300EF0370 /* VLCFirstStepsSecondPageViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D27EC2919DF310300EF0370 /* VLCFirstStepsSecondPageViewController~ipad.xib */; };
  87. 7D27EC2C19DF310300EF0370 /* VLCFirstStepsSecondPageViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D27EC2A19DF310300EF0370 /* VLCFirstStepsSecondPageViewController~iphone.xib */; };
  88. 7D298F441AD5827E00A0BF68 /* WatchKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DDF157B31ACB169B00AAFBC6 /* WatchKit.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
  89. 7D298F451AD58A0700A0BF68 /* UIImage+Blur.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D168F7318D4A33F003FAF59 /* UIImage+Blur.m */; };
  90. 7D2D4ECC1ACFFA42006A8DBD /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 7D2D4ECE1ACFFA42006A8DBD /* Localizable.strings */; };
  91. 7D30F3C2183AB24C00FFC021 /* VLCHTTPConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3BD183AB24C00FFC021 /* VLCHTTPConnection.m */; };
  92. 7D30F3C3183AB24C00FFC021 /* VLCHTTPFileDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3BF183AB24C00FFC021 /* VLCHTTPFileDownloader.m */; };
  93. 7D30F3C4183AB24C00FFC021 /* VLCHTTPUploaderController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3C1183AB24C00FFC021 /* VLCHTTPUploaderController.m */; };
  94. 7D30F3C7183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3C6183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m */; };
  95. 7D30F3CA183AB27A00FFC021 /* VLCDownloadViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3C9183AB27A00FFC021 /* VLCDownloadViewController.m */; };
  96. 7D30F3CD183AB29300FFC021 /* VLCMenuTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3CC183AB29300FFC021 /* VLCMenuTableViewController.m */; };
  97. 7D30F3D0183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3CF183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m */; };
  98. 7D30F3D7183AB2F100FFC021 /* VLCLocalNetworkListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3D2183AB2F100FFC021 /* VLCLocalNetworkListCell.m */; };
  99. 7D30F3D8183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3D4183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m */; };
  100. 7D30F3D9183AB2F100FFC021 /* VLCLocalServerListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3D6183AB2F100FFC021 /* VLCLocalServerListViewController.m */; };
  101. 7D30F3DC183AB2F900FFC021 /* VLCNetworkLoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3DB183AB2F900FFC021 /* VLCNetworkLoginViewController.m */; };
  102. 7D30F3DF183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3DE183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m */; };
  103. 7D30F3E2183AB33200FFC021 /* VLCSidebarViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3E1183AB33200FFC021 /* VLCSidebarViewCell.m */; };
  104. 7D30F3EA183AB34200FFC021 /* VLCGoogleDriveController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3E5183AB34200FFC021 /* VLCGoogleDriveController.m */; };
  105. 7D30F3EC183AB34200FFC021 /* VLCGoogleDriveTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D30F3E9183AB34200FFC021 /* VLCGoogleDriveTableViewController.m */; };
  106. 7D32B384185E293D006CA474 /* Raleway.woff in Resources */ = {isa = PBXBuildFile; fileRef = 7D32B383185E293D006CA474 /* Raleway.woff */; };
  107. 7D37848F183A98B6009EE944 /* VLCMovieViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D37848E183A98B6009EE944 /* VLCMovieViewController.m */; };
  108. 7D378492183A98BF009EE944 /* VLCExternalDisplayController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378491183A98BF009EE944 /* VLCExternalDisplayController.m */; };
  109. 7D378499183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378494183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m */; };
  110. 7D37849A183A98D1009EE944 /* VLCPlaylistTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378496183A98D1009EE944 /* VLCPlaylistTableViewCell.m */; };
  111. 7D37849B183A98D1009EE944 /* VLCPlaylistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D378498183A98D1009EE944 /* VLCPlaylistViewController.m */; };
  112. 7D37849E183A98DD009EE944 /* VLCThumbnailsCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D37849D183A98DD009EE944 /* VLCThumbnailsCache.m */; };
  113. 7D3784A1183A98EB009EE944 /* VLCBugreporter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784A0183A98EB009EE944 /* VLCBugreporter.m */; };
  114. 7D3784A6183A98F5009EE944 /* VLCAboutViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784A3183A98F5009EE944 /* VLCAboutViewController.m */; };
  115. 7D3784A7183A98F5009EE944 /* VLCSettingsController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784A5183A98F5009EE944 /* VLCSettingsController.m */; };
  116. 7D3784AD183A9906009EE944 /* VLCDropboxController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784AA183A9906009EE944 /* VLCDropboxController.m */; };
  117. 7D3784AE183A9906009EE944 /* VLCDropboxTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784AC183A9906009EE944 /* VLCDropboxTableViewController.m */; };
  118. 7D3784BE183A9938009EE944 /* UIBarButtonItem+Theme.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B3183A9938009EE944 /* UIBarButtonItem+Theme.m */; };
  119. 7D3784C0183A9938009EE944 /* VLCLinearProgressIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B7183A9938009EE944 /* VLCLinearProgressIndicator.m */; };
  120. 7D3784C1183A9938009EE944 /* VLCMenuButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B9183A9938009EE944 /* VLCMenuButton.m */; };
  121. 7D3784C2183A9938009EE944 /* VLCSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784BB183A9938009EE944 /* VLCSlider.m */; };
  122. 7D3784C3183A9938009EE944 /* VLCStatusLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784BD183A9938009EE944 /* VLCStatusLabel.m */; };
  123. 7D3784C8183A9972009EE944 /* NSString+SupportedMedia.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784C5183A9972009EE944 /* NSString+SupportedMedia.m */; };
  124. 7D3784C9183A9972009EE944 /* UIDevice+VLC.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784C7183A9972009EE944 /* UIDevice+VLC.m */; };
  125. 7D3784CC183A99BA009EE944 /* PAPasscodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784CB183A99BA009EE944 /* PAPasscodeViewController.m */; };
  126. 7D3784E9183A9A15009EE944 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784E8183A9A15009EE944 /* main.m */; };
  127. 7D3EB014174A353E002062C2 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */; };
  128. 7D4625881A5614A1001A80B4 /* VLCEqualizerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D4625871A5614A1001A80B4 /* VLCEqualizerView.m */; };
  129. 7D50903218F41C7900180139 /* VLCAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D50903118F41C7900180139 /* VLCAlertView.m */; };
  130. 7D54ECA91B1B3F370025BE2D /* MediaLibrary.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = DDC7BFAF1B03829100160878 /* MediaLibrary.xcdatamodeld */; };
  131. 7D5CAA891A4AD763003F2CBC /* VLCTrackSelectorTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D5CAA881A4AD763003F2CBC /* VLCTrackSelectorTableViewCell.m */; };
  132. 7D5CAA8C1A4AD8E5003F2CBC /* VLCTrackSelectorHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D5CAA8B1A4AD8E5003F2CBC /* VLCTrackSelectorHeaderView.m */; };
  133. 7D5DD5C717590ABF001421E3 /* About Contents.html in Resources */ = {isa = PBXBuildFile; fileRef = 7D5DD5C617590ABF001421E3 /* About Contents.html */; };
  134. 7D63C19018774B1700BD5256 /* VLCFirstStepsSecondPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D63C18E18774B1700BD5256 /* VLCFirstStepsSecondPageViewController.m */; };
  135. 7D63C19518774E0100BD5256 /* VLCFirstStepsThirdPageViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D63C19418774E0100BD5256 /* VLCFirstStepsThirdPageViewController~ipad.xib */; };
  136. 7D63C19718774F1000BD5256 /* VLCFirstStepsFourthPageViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D63C19618774F1000BD5256 /* VLCFirstStepsFourthPageViewController~ipad.xib */; };
  137. 7D63C1991877504B00BD5256 /* VLCFirstStepsSixthPageViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D63C1981877504B00BD5256 /* VLCFirstStepsSixthPageViewController~ipad.xib */; };
  138. 7D6B08FA174D716200A05173 /* MessageUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D6B08F9174D716200A05173 /* MessageUI.framework */; };
  139. 7D6B08FC174D773C00A05173 /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 7D6B08FB174D773C00A05173 /* Settings.bundle */; };
  140. 7D711ADA18227A490094E4F0 /* GTMOAuth2ViewTouch.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D711AD918227A490094E4F0 /* GTMOAuth2ViewTouch.xib */; };
  141. 7D74177A1AE2D3CE001F1997 /* VLCNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D7417791AE2D3CE001F1997 /* VLCNavigationController.m */; };
  142. 7D7B17F01AD8052B003BF3D7 /* libc++.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D7B17EC1AD8052A003BF3D7 /* libc++.dylib */; };
  143. 7D7B17F11AD8052B003BF3D7 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D7B17ED1AD8052B003BF3D7 /* libz.dylib */; };
  144. 7D871F521AD7257100348D27 /* UIImage+Scaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D871F501AD7257100348D27 /* UIImage+Scaling.m */; };
  145. 7D89786F185DED88009BAB5D /* VLCFutureDownloadViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D89786E185DED88009BAB5D /* VLCFutureDownloadViewController.xib */; };
  146. 7D89787D185DF794009BAB5D /* VLCFutureOpenNetworkStreamViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D89787C185DF794009BAB5D /* VLCFutureOpenNetworkStreamViewController.xib */; };
  147. 7D897895185E14A7009BAB5D /* libGTLTouchStaticLib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D897894185E14A7009BAB5D /* libGTLTouchStaticLib.a */; };
  148. 7D9289751877459B009108FD /* VLCFirstStepsThirdPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D9289731877459B009108FD /* VLCFirstStepsThirdPageViewController.m */; };
  149. 7D9289761877459B009108FD /* VLCFirstStepsThirdPageViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D9289741877459B009108FD /* VLCFirstStepsThirdPageViewController~iphone.xib */; };
  150. 7D92897A1877467E009108FD /* VLCFirstStepsFourthPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D9289781877467E009108FD /* VLCFirstStepsFourthPageViewController.m */; };
  151. 7D92897B1877467E009108FD /* VLCFirstStepsFourthPageViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7D9289791877467E009108FD /* VLCFirstStepsFourthPageViewController~iphone.xib */; };
  152. 7D94FCDF16DE7D1000F2623B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCDE16DE7D1000F2623B /* UIKit.framework */; };
  153. 7D94FCE116DE7D1000F2623B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCE016DE7D1000F2623B /* Foundation.framework */; };
  154. 7D94FCE316DE7D1000F2623B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */; };
  155. 7D95610B1AF3E9E800779745 /* VLCMiniPlaybackView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D95610A1AF3E9E800779745 /* VLCMiniPlaybackView.m */; };
  156. 7D9870641A3E03D5009CF27D /* papasscode_background.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D98705E1A3E03D5009CF27D /* papasscode_background.png */; };
  157. 7D9870651A3E03D5009CF27D /* papasscode_background@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D98705F1A3E03D5009CF27D /* papasscode_background@2x.png */; };
  158. 7D9870661A3E03D5009CF27D /* papasscode_failed_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D9870601A3E03D5009CF27D /* papasscode_failed_bg.png */; };
  159. 7D9870671A3E03D5009CF27D /* papasscode_failed_bg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D9870611A3E03D5009CF27D /* papasscode_failed_bg@2x.png */; };
  160. 7D9870681A3E03D5009CF27D /* papasscode_marker.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D9870621A3E03D5009CF27D /* papasscode_marker.png */; };
  161. 7D9870691A3E03D5009CF27D /* papasscode_marker@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 7D9870631A3E03D5009CF27D /* papasscode_marker@2x.png */; };
  162. 7D9CB9DC1A4C55EF00BB74B4 /* VLCPlaybackNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D9CB9DB1A4C55EF00BB74B4 /* VLCPlaybackNavigationController.m */; };
  163. 7DA8B0FB173318E80029698C /* SourceCodePro-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */; };
  164. 7DB638AB185BC0890003887C /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 7DB638AA185BC0890003887C /* Images.xcassets */; };
  165. 7DB847D71A5871570002DC30 /* VLCOneDriveObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DB847D61A5871570002DC30 /* VLCOneDriveObject.m */; };
  166. 7DBBF182183AB3B80009A339 /* VLCAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DBBF181183AB3B80009A339 /* VLCAppDelegate.m */; };
  167. 7DBBF19A183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF185183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib */; };
  168. 7DBBF19B183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF186183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib */; };
  169. 7DBBF19C183AB4300009A339 /* VLCDownloadViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF187183AB4300009A339 /* VLCDownloadViewController.xib */; };
  170. 7DBBF19D183AB4300009A339 /* VLCCloudStorageTableViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF188183AB4300009A339 /* VLCCloudStorageTableViewController.xib */; };
  171. 7DBBF19E183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF189183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib */; };
  172. 7DBBF19F183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18A183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib */; };
  173. 7DBBF1A0183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18B183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib */; };
  174. 7DBBF1A1183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18C183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib */; };
  175. 7DBBF1A3183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18E183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib */; };
  176. 7DBBF1A4183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF18F183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib */; };
  177. 7DBBF1A5183AB4300009A339 /* VLCMovieViewController~ipad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF190183AB4300009A339 /* VLCMovieViewController~ipad.xib */; };
  178. 7DBBF1A6183AB4300009A339 /* VLCMovieViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF191183AB4300009A339 /* VLCMovieViewController~iphone.xib */; };
  179. 7DBBF1A7183AB4300009A339 /* VLCNetworkLoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF192183AB4300009A339 /* VLCNetworkLoginViewController.xib */; };
  180. 7DBBF1A8183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF193183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib */; };
  181. 7DBBF1A9183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF194183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib */; };
  182. 7DBBF1AB183AB4300009A339 /* VLCPlaylistTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF196183AB4300009A339 /* VLCPlaylistTableViewCell.xib */; };
  183. 7DBBF1AC183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBBF197183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib */; };
  184. 7DBC85631A50B8860098D388 /* LiveAuthDialog_iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBC85611A50B8860098D388 /* LiveAuthDialog_iPad.xib */; };
  185. 7DBC85641A50B8860098D388 /* LiveAuthDialog_iPhone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 7DBC85621A50B8860098D388 /* LiveAuthDialog_iPhone.xib */; };
  186. 7DC0C0551A4D78A4000EE359 /* DropboxSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DC0C0541A4D78A4000EE359 /* DropboxSDK.framework */; };
  187. 7DC19ADF1868C7BB00810BF7 /* VLCFirstStepsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DC19ADD1868C7BB00810BF7 /* VLCFirstStepsViewController.m */; };
  188. 7DC19AE41868C8EC00810BF7 /* VLCFirstStepsFirstPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DC19AE21868C8EC00810BF7 /* VLCFirstStepsFirstPageViewController.m */; };
  189. 7DC19B051868D1C400810BF7 /* VLCFirstStepsFifthPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DC19B031868D1C400810BF7 /* VLCFirstStepsFifthPageViewController.m */; };
  190. 7DC19B0C1868D21800810BF7 /* VLCFirstStepsSixthPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DC19B0A1868D21800810BF7 /* VLCFirstStepsSixthPageViewController.m */; };
  191. 7DC72D6317B7ED24008A26D0 /* WhiteRaccoon.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */; };
  192. 7DD2A3A9179C04A7003EB537 /* OpenSans-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */; };
  193. 7DDD0429172D98E5005A7B10 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */; };
  194. 7DE18629175BA9A5006C0173 /* badgeUnread@2x~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */; };
  195. 7DE1862C175BA9A9006C0173 /* badgeUnread@2x~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */; };
  196. 7DE1862F175BA9AC006C0173 /* badgeUnread~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */; };
  197. 7DE18632175BA9AF006C0173 /* badgeUnread~iphone.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */; };
  198. 7DE56C1A1AD93F9100E8CA00 /* VLCPlaybackController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DE56C191AD93F9100E8CA00 /* VLCPlaybackController.m */; };
  199. 7DE715ED1AD2DAE50075E716 /* VLCThumbnailsCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D37849D183A98DD009EE944 /* VLCThumbnailsCache.m */; };
  200. 7DF04F4D1961F2B8004A5429 /* web-download-fixed.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DF04F491961F2B8004A5429 /* web-download-fixed.png */; };
  201. 7DF04F4E1961F2B8004A5429 /* web-download.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DF04F4A1961F2B8004A5429 /* web-download.png */; };
  202. 7DF04F4F1961F2B8004A5429 /* web-open-fixed.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DF04F4B1961F2B8004A5429 /* web-open-fixed.png */; };
  203. 7DF04F501961F2B8004A5429 /* web-open.png in Resources */ = {isa = PBXBuildFile; fileRef = 7DF04F4C1961F2B8004A5429 /* web-open.png */; };
  204. 7DF7CA0717650C2A00C61739 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */; };
  205. 7DF7E791175F47DC0018858D /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DF7E790175F47DC0018858D /* MediaPlayer.framework */; };
  206. 7DF9352F1958AB0600E60FD4 /* UIColor+Presets.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DF9352E1958AB0600E60FD4 /* UIColor+Presets.m */; };
  207. 8F91EC79195CEC7900F5BCBA /* VLCOpenInActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F91EC78195CEC7900F5BCBA /* VLCOpenInActivity.m */; };
  208. 8F91EC7F195E1DAB00F5BCBA /* AssetsLibrary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8F91EC7E195E1DAB00F5BCBA /* AssetsLibrary.framework */; };
  209. 9B088308183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B088307183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m */; };
  210. 9B5BEF2917FBAEA50016F9CB /* GTLDrive_Sources.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B5BEF2717FBAEA50016F9CB /* GTLDrive_Sources.m */; };
  211. 9B9231C4185A703700F89498 /* VLCFutureNetworkLoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 9B9231C3185A703700F89498 /* VLCFutureNetworkLoginViewController.xib */; };
  212. 9BADAF45185FBD9D00108BD8 /* VLCFrostedGlasView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BADAF44185FBD9D00108BD8 /* VLCFrostedGlasView.m */; };
  213. 9BE4D1CE183D76950006346C /* VLCCloudStorageTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D3784B0183A990F009EE944 /* VLCCloudStorageTableViewCell.m */; };
  214. A7924696170F0BA90036AAF2 /* libMediaLibraryKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */; };
  215. A79246C8170F11DF0036AAF2 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = A79246C6170F11DF0036AAF2 /* Localizable.strings */; };
  216. CC1BBC3F1704934300A20CBF /* libMobileVLCKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */; };
  217. CC1BBC461704938300A20CBF /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC451704938300A20CBF /* libiconv.dylib */; };
  218. CC1BBC481704938B00A20CBF /* libstdc++.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC471704938B00A20CBF /* libstdc++.dylib */; };
  219. CC1BBC4C1704939B00A20CBF /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */; };
  220. CC1BBC4E170493A300A20CBF /* libbz2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4D170493A300A20CBF /* libbz2.dylib */; };
  221. CC1BBC50170493AA00A20CBF /* libxml2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4F170493AA00A20CBF /* libxml2.dylib */; };
  222. CC1BBC52170493B100A20CBF /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC51170493B100A20CBF /* OpenGLES.framework */; };
  223. CC1BBC54170493B800A20CBF /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC53170493B800A20CBF /* AudioToolbox.framework */; };
  224. CC1BBC56170493C100A20CBF /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC55170493C100A20CBF /* QuartzCore.framework */; };
  225. CC1BBC58170493E100A20CBF /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC57170493E100A20CBF /* CoreData.framework */; };
  226. CCE2A22E17A5859E00D9EAAD /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CCE2A22D17A5859E00D9EAAD /* CoreText.framework */; };
  227. DD02C2FF1ACAE7A10026EFEE /* libMediaLibraryKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DD02C2FE1ACAE7A10026EFEE /* libMediaLibraryKit.a */; };
  228. DD02C3011ACAE9690026EFEE /* libMobileVLCKit.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DD02C3001ACAE9690026EFEE /* libMobileVLCKit.a */; };
  229. DD02C3031ACAEB050026EFEE /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC451704938300A20CBF /* libiconv.dylib */; };
  230. DD02C3041ACAEB550026EFEE /* libstdc++.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC471704938B00A20CBF /* libstdc++.dylib */; };
  231. DD02C3051ACAEC560026EFEE /* libxml2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4F170493AA00A20CBF /* libxml2.dylib */; };
  232. DD02C3061ACAEC5F0026EFEE /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC491704939300A20CBF /* libz.dylib */; };
  233. DD02C3071ACAEC690026EFEE /* libbz2.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC4D170493A300A20CBF /* libbz2.dylib */; };
  234. DD02C30B1ACAF0370026EFEE /* libstdc++.6.0.9.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = DD02C30A1ACAF0370026EFEE /* libstdc++.6.0.9.dylib */; };
  235. DD02C30E1ACAF4A50026EFEE /* VLCRowController.m in Sources */ = {isa = PBXBuildFile; fileRef = DD02C30D1ACAF4A50026EFEE /* VLCRowController.m */; };
  236. DD1542121ACFF76400AFD4EC /* VLCWatchTableController.m in Sources */ = {isa = PBXBuildFile; fileRef = DD1542111ACFF76400AFD4EC /* VLCWatchTableController.m */; };
  237. DD3EA6311AF50CFE007FF096 /* VLCWatchMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = DD3EA6301AF50CFE007FF096 /* VLCWatchMessage.m */; };
  238. DD3EA6321AF50D01007FF096 /* VLCWatchMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = DD3EA6301AF50CFE007FF096 /* VLCWatchMessage.m */; };
  239. DD510B701B14E564003BA71C /* VLCPlayerDisplayController.m in Sources */ = {isa = PBXBuildFile; fileRef = DD510B6F1B14E564003BA71C /* VLCPlayerDisplayController.m */; };
  240. DD670C971AFBEED400A2D7AB /* MappingModel_2_5_to_2_6.xcmappingmodel in Sources */ = {isa = PBXBuildFile; fileRef = DDB959411AFBB30500BB8CFF /* MappingModel_2_5_to_2_6.xcmappingmodel */; };
  241. DD6FA7B01ACD641C006DEB2E /* VLCNowPlayingInterfaceController.m in Sources */ = {isa = PBXBuildFile; fileRef = DD6FA7AF1ACD641C006DEB2E /* VLCNowPlayingInterfaceController.m */; };
  242. DD7110F01AF38B2B00854776 /* MLMediaLibrary+playlist.m in Sources */ = {isa = PBXBuildFile; fileRef = DD7110EF1AF38B2B00854776 /* MLMediaLibrary+playlist.m */; };
  243. DD7110F11AF38B2B00854776 /* MLMediaLibrary+playlist.m in Sources */ = {isa = PBXBuildFile; fileRef = DD7110EF1AF38B2B00854776 /* MLMediaLibrary+playlist.m */; };
  244. DD7635D61AF262D100240CB8 /* NSManagedObjectContext+refreshAll.m in Sources */ = {isa = PBXBuildFile; fileRef = DD7635D51AF262D100240CB8 /* NSManagedObjectContext+refreshAll.m */; };
  245. DD8F84311B00EB3B0009138A /* VLCPlaybackController+MediaLibrary.m in Sources */ = {isa = PBXBuildFile; fileRef = DD8F84301B00EB3B0009138A /* VLCPlaybackController+MediaLibrary.m */; };
  246. DDACEB561ADAD11300735484 /* WKInterfaceObject+VLCProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = DDACEB551ADAD11300735484 /* WKInterfaceObject+VLCProgress.m */; };
  247. DDB959421AFBB30500BB8CFF /* MappingModel_2_5_to_2_6.xcmappingmodel in Sources */ = {isa = PBXBuildFile; fileRef = DDB959411AFBB30500BB8CFF /* MappingModel_2_5_to_2_6.xcmappingmodel */; };
  248. DDC10BE41AEE8EA700890DC3 /* VLCTimeNavigationTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = DDC10BE31AEE8EA700890DC3 /* VLCTimeNavigationTitleView.m */; };
  249. DDC7BFB31B03829100160878 /* MediaLibrary.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = DDC7BFAF1B03829100160878 /* MediaLibrary.xcdatamodeld */; };
  250. DDE4906C1ACDB63F00B1B5E3 /* VLCNotificationRelay.m in Sources */ = {isa = PBXBuildFile; fileRef = DDE4906B1ACDB63F00B1B5E3 /* VLCNotificationRelay.m */; };
  251. DDE4906D1ACDBEA000B1B5E3 /* VLCNotificationRelay.m in Sources */ = {isa = PBXBuildFile; fileRef = DDE4906B1ACDB63F00B1B5E3 /* VLCNotificationRelay.m */; };
  252. DDE490701ACE8BBC00B1B5E3 /* VLCDetailInterfaceController.m in Sources */ = {isa = PBXBuildFile; fileRef = DDE4906F1ACE8BBC00B1B5E3 /* VLCDetailInterfaceController.m */; };
  253. DDE490731ACE964200B1B5E3 /* VLCBaseInterfaceController.m in Sources */ = {isa = PBXBuildFile; fileRef = DDE490721ACE964200B1B5E3 /* VLCBaseInterfaceController.m */; };
  254. DDF157B21ACB169600AAFBC6 /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC57170493E100A20CBF /* CoreData.framework */; };
  255. DDF157B41ACB169B00AAFBC6 /* WatchKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DDF157B31ACB169B00AAFBC6 /* WatchKit.framework */; };
  256. DDF157B51ACB16E500AAFBC6 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC1BBC53170493B800A20CBF /* AudioToolbox.framework */; };
  257. E0C04F951A25B4410080331A /* VLCDocumentPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = E0C04F941A25B4410080331A /* VLCDocumentPickerController.m */; };
  258. /* End PBXBuildFile section */
  259. /* Begin PBXContainerItemProxy section */
  260. 4173AEAD1ABF1B850004101D /* PBXContainerItemProxy */ = {
  261. isa = PBXContainerItemProxy;
  262. containerPortal = 7D94FCD316DE7D1000F2623B /* Project object */;
  263. proxyType = 1;
  264. remoteGlobalIDString = 4173AEAA1ABF1B850004101D;
  265. remoteInfo = "VLC for iOS WatchKit App";
  266. };
  267. 4173AEB71ABF1B860004101D /* PBXContainerItemProxy */ = {
  268. isa = PBXContainerItemProxy;
  269. containerPortal = 7D94FCD316DE7D1000F2623B /* Project object */;
  270. proxyType = 1;
  271. remoteGlobalIDString = 4173AE9F1ABF1B850004101D;
  272. remoteInfo = "VLC for iOS WatchKit Extension";
  273. };
  274. /* End PBXContainerItemProxy section */
  275. /* Begin PBXCopyFilesBuildPhase section */
  276. 4173AEC21ABF1B860004101D /* Embed App Extensions */ = {
  277. isa = PBXCopyFilesBuildPhase;
  278. buildActionMask = 2147483647;
  279. dstPath = "";
  280. dstSubfolderSpec = 13;
  281. files = (
  282. 4173AEB91ABF1B860004101D /* VLC for iOS WatchKit Extension.appex in Embed App Extensions */,
  283. );
  284. name = "Embed App Extensions";
  285. runOnlyForDeploymentPostprocessing = 0;
  286. };
  287. /* End PBXCopyFilesBuildPhase section */
  288. /* Begin PBXFileReference section */
  289. 262C71571A98FA9200F7ED34 /* VLCPlexMediaInformationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlexMediaInformationViewController.h; path = Sources/VLCPlexMediaInformationViewController.h; sourceTree = SOURCE_ROOT; };
  290. 262C71581A98FA9200F7ED34 /* VLCPlexMediaInformationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlexMediaInformationViewController.m; path = Sources/VLCPlexMediaInformationViewController.m; sourceTree = SOURCE_ROOT; };
  291. 262C715A1A98FDE300F7ED34 /* VLCPlexMediaInformationViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlexMediaInformationViewController.xib; path = Resources/VLCPlexMediaInformationViewController.xib; sourceTree = SOURCE_ROOT; };
  292. 2640FAE41B01477A00E359D6 /* VLCPlexWebAPI.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlexWebAPI.h; path = Sources/VLCPlexWebAPI.h; sourceTree = SOURCE_ROOT; };
  293. 2640FAE51B01477A00E359D6 /* VLCPlexWebAPI.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlexWebAPI.m; path = Sources/VLCPlexWebAPI.m; sourceTree = SOURCE_ROOT; };
  294. 265D51181922746C00E38383 /* VLCLocalPlexFolderListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLocalPlexFolderListViewController.h; path = Sources/VLCLocalPlexFolderListViewController.h; sourceTree = SOURCE_ROOT; };
  295. 265D51191922746C00E38383 /* VLCLocalPlexFolderListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLocalPlexFolderListViewController.m; path = Sources/VLCLocalPlexFolderListViewController.m; sourceTree = SOURCE_ROOT; };
  296. 265D511A1922746C00E38383 /* VLCPlexParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlexParser.h; path = Sources/VLCPlexParser.h; sourceTree = SOURCE_ROOT; };
  297. 265D511B1922746C00E38383 /* VLCPlexParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlexParser.m; path = Sources/VLCPlexParser.m; sourceTree = SOURCE_ROOT; };
  298. 26D4AF891A78379000D5EC65 /* VLCSharedLibraryListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCSharedLibraryListViewController.h; path = Sources/VLCSharedLibraryListViewController.h; sourceTree = SOURCE_ROOT; };
  299. 26D4AF8A1A78379000D5EC65 /* VLCSharedLibraryListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCSharedLibraryListViewController.m; path = Sources/VLCSharedLibraryListViewController.m; sourceTree = SOURCE_ROOT; };
  300. 26D4AF8B1A78379000D5EC65 /* VLCSharedLibraryParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCSharedLibraryParser.h; path = Sources/VLCSharedLibraryParser.h; sourceTree = SOURCE_ROOT; };
  301. 26D4AF8C1A78379000D5EC65 /* VLCSharedLibraryParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCSharedLibraryParser.m; path = Sources/VLCSharedLibraryParser.m; sourceTree = SOURCE_ROOT; };
  302. 26E3A6FC1AAB76A100B32450 /* VLCPlexConnectServerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlexConnectServerViewController.h; path = Sources/VLCPlexConnectServerViewController.h; sourceTree = SOURCE_ROOT; };
  303. 26E3A6FD1AAB76A100B32450 /* VLCPlexConnectServerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlexConnectServerViewController.m; path = Sources/VLCPlexConnectServerViewController.m; sourceTree = SOURCE_ROOT; };
  304. 26E3A6FF1AAB76D300B32450 /* VLCFuturePlexConnectServerViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCFuturePlexConnectServerViewController.xib; path = Resources/VLCFuturePlexConnectServerViewController.xib; sourceTree = SOURCE_ROOT; };
  305. 26E3A7001AAB76D300B32450 /* VLCPlexConnectServerViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlexConnectServerViewController.xib; path = Resources/VLCPlexConnectServerViewController.xib; sourceTree = SOURCE_ROOT; };
  306. 26F1BFCF1A770408001DF30C /* libMediaVLC.xml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = libMediaVLC.xml; sourceTree = "<group>"; };
  307. 29125E5417492219003F03E5 /* index.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = index.html; sourceTree = "<group>"; };
  308. 291553EA17490A1E00B86CAD /* DDData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDData.h; sourceTree = "<group>"; };
  309. 291553EB17490A1E00B86CAD /* DDData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDData.m; sourceTree = "<group>"; };
  310. 291553EC17490A1E00B86CAD /* DDNumber.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDNumber.h; sourceTree = "<group>"; };
  311. 291553ED17490A1E00B86CAD /* DDNumber.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDNumber.m; sourceTree = "<group>"; };
  312. 291553EE17490A1E00B86CAD /* DDRange.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDRange.h; sourceTree = "<group>"; };
  313. 291553EF17490A1E00B86CAD /* DDRange.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDRange.m; sourceTree = "<group>"; };
  314. 291553F017490A1E00B86CAD /* HTTPAuthenticationRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPAuthenticationRequest.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPAuthenticationRequest.h; sourceTree = SOURCE_ROOT; };
  315. 291553F117490A1E00B86CAD /* HTTPAuthenticationRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPAuthenticationRequest.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPAuthenticationRequest.m; sourceTree = SOURCE_ROOT; };
  316. 291553F217490A1E00B86CAD /* HTTPConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPConnection.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPConnection.h; sourceTree = SOURCE_ROOT; };
  317. 291553F317490A1E00B86CAD /* HTTPConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPConnection.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPConnection.m; sourceTree = SOURCE_ROOT; };
  318. 291553F417490A1E00B86CAD /* HTTPLogging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPLogging.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPLogging.h; sourceTree = SOURCE_ROOT; };
  319. 291553F517490A1E00B86CAD /* HTTPMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPMessage.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPMessage.h; sourceTree = SOURCE_ROOT; };
  320. 291553F617490A1E00B86CAD /* HTTPMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPMessage.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPMessage.m; sourceTree = SOURCE_ROOT; };
  321. 291553F717490A1E00B86CAD /* HTTPResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPResponse.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPResponse.h; sourceTree = SOURCE_ROOT; };
  322. 291553F817490A1E00B86CAD /* HTTPServer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = HTTPServer.h; path = ImportedSources/CocoaHTTPServer/Core/HTTPServer.h; sourceTree = SOURCE_ROOT; };
  323. 291553F917490A1E00B86CAD /* HTTPServer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = HTTPServer.m; path = ImportedSources/CocoaHTTPServer/Core/HTTPServer.m; sourceTree = SOURCE_ROOT; };
  324. 291553FB17490A1E00B86CAD /* MultipartFormDataParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartFormDataParser.h; sourceTree = "<group>"; };
  325. 291553FC17490A1E00B86CAD /* MultipartFormDataParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartFormDataParser.m; sourceTree = "<group>"; };
  326. 291553FD17490A1E00B86CAD /* MultipartMessageHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartMessageHeader.h; sourceTree = "<group>"; };
  327. 291553FE17490A1E00B86CAD /* MultipartMessageHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartMessageHeader.m; sourceTree = "<group>"; };
  328. 291553FF17490A1E00B86CAD /* MultipartMessageHeaderField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MultipartMessageHeaderField.h; sourceTree = "<group>"; };
  329. 2915540017490A1E00B86CAD /* MultipartMessageHeaderField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MultipartMessageHeaderField.m; sourceTree = "<group>"; };
  330. 2915540D17490A9C00B86CAD /* GCDAsyncSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GCDAsyncSocket.h; sourceTree = "<group>"; };
  331. 2915540E17490A9C00B86CAD /* GCDAsyncSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GCDAsyncSocket.m; sourceTree = "<group>"; };
  332. 2915541017490A9C00B86CAD /* About.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = About.txt; sourceTree = "<group>"; };
  333. 2915541117490A9C00B86CAD /* DDAbstractDatabaseLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDAbstractDatabaseLogger.h; sourceTree = "<group>"; };
  334. 2915541217490A9C00B86CAD /* DDAbstractDatabaseLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDAbstractDatabaseLogger.m; sourceTree = "<group>"; };
  335. 2915541317490A9C00B86CAD /* DDASLLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDASLLogger.h; sourceTree = "<group>"; };
  336. 2915541417490A9C00B86CAD /* DDASLLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDASLLogger.m; sourceTree = "<group>"; };
  337. 2915541517490A9C00B86CAD /* DDFileLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDFileLogger.h; sourceTree = "<group>"; };
  338. 2915541617490A9C00B86CAD /* DDFileLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDFileLogger.m; sourceTree = "<group>"; };
  339. 2915541717490A9C00B86CAD /* DDLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDLog.h; sourceTree = "<group>"; };
  340. 2915541817490A9C00B86CAD /* DDLog.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDLog.m; sourceTree = "<group>"; };
  341. 2915541917490A9C00B86CAD /* DDTTYLogger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDTTYLogger.h; sourceTree = "<group>"; };
  342. 2915541A17490A9C00B86CAD /* DDTTYLogger.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDTTYLogger.m; sourceTree = "<group>"; };
  343. 2915541C17490A9C00B86CAD /* ContextFilterLogFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContextFilterLogFormatter.h; sourceTree = "<group>"; };
  344. 2915541D17490A9C00B86CAD /* ContextFilterLogFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContextFilterLogFormatter.m; sourceTree = "<group>"; };
  345. 2915541E17490A9C00B86CAD /* DispatchQueueLogFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DispatchQueueLogFormatter.h; sourceTree = "<group>"; };
  346. 2915541F17490A9C00B86CAD /* DispatchQueueLogFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DispatchQueueLogFormatter.m; sourceTree = "<group>"; };
  347. 2915542017490A9C00B86CAD /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
  348. 2915542D17490B9C00B86CAD /* HTTPAsyncFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPAsyncFileResponse.h; sourceTree = "<group>"; };
  349. 2915542E17490B9C00B86CAD /* HTTPAsyncFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPAsyncFileResponse.m; sourceTree = "<group>"; };
  350. 2915542F17490B9C00B86CAD /* HTTPDataResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPDataResponse.h; sourceTree = "<group>"; };
  351. 2915543017490B9C00B86CAD /* HTTPDataResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPDataResponse.m; sourceTree = "<group>"; };
  352. 2915543117490B9C00B86CAD /* HTTPDynamicFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPDynamicFileResponse.h; sourceTree = "<group>"; };
  353. 2915543217490B9C00B86CAD /* HTTPDynamicFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPDynamicFileResponse.m; sourceTree = "<group>"; };
  354. 2915543317490B9C00B86CAD /* HTTPErrorResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPErrorResponse.h; sourceTree = "<group>"; };
  355. 2915543417490B9C00B86CAD /* HTTPErrorResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPErrorResponse.m; sourceTree = "<group>"; };
  356. 2915543517490B9C00B86CAD /* HTTPFileResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPFileResponse.h; sourceTree = "<group>"; };
  357. 2915543617490B9C00B86CAD /* HTTPFileResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPFileResponse.m; sourceTree = "<group>"; };
  358. 2915543717490B9C00B86CAD /* HTTPRedirectResponse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPRedirectResponse.h; sourceTree = "<group>"; };
  359. 2915543817490B9C00B86CAD /* HTTPRedirectResponse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPRedirectResponse.m; sourceTree = "<group>"; };
  360. 2915543917490B9C00B86CAD /* WebSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WebSocket.h; path = ImportedSources/CocoaHTTPServer/Core/WebSocket.h; sourceTree = SOURCE_ROOT; };
  361. 2915543A17490B9C00B86CAD /* WebSocket.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WebSocket.m; path = ImportedSources/CocoaHTTPServer/Core/WebSocket.m; sourceTree = SOURCE_ROOT; };
  362. 2915544217490D4A00B86CAD /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
  363. 41273A391A955C4100A2EF77 /* VLCMigrationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMigrationViewController.h; path = Sources/VLCMigrationViewController.h; sourceTree = SOURCE_ROOT; };
  364. 41273A3A1A955C4100A2EF77 /* VLCMigrationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMigrationViewController.m; path = Sources/VLCMigrationViewController.m; sourceTree = SOURCE_ROOT; };
  365. 41273A3B1A955C4100A2EF77 /* VLCMigrationViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCMigrationViewController.xib; path = Sources/VLCMigrationViewController.xib; sourceTree = SOURCE_ROOT; };
  366. 4171D34E18A2C19000A16EF9 /* VLCFolderCollectionViewFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCFolderCollectionViewFlowLayout.h; path = Sources/VLCFolderCollectionViewFlowLayout.h; sourceTree = SOURCE_ROOT; };
  367. 4171D34F18A2C19000A16EF9 /* VLCFolderCollectionViewFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCFolderCollectionViewFlowLayout.m; path = Sources/VLCFolderCollectionViewFlowLayout.m; sourceTree = SOURCE_ROOT; };
  368. 4171D35618A2D90200A16EF9 /* LXReorderableCollectionViewFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LXReorderableCollectionViewFlowLayout.h; sourceTree = "<group>"; };
  369. 4171D35718A2D90200A16EF9 /* LXReorderableCollectionViewFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LXReorderableCollectionViewFlowLayout.m; sourceTree = "<group>"; };
  370. 4173AEA01ABF1B850004101D /* VLC for iOS WatchKit Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "VLC for iOS WatchKit Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
  371. 4173AEA31ABF1B850004101D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  372. 4173AEA41ABF1B850004101D /* VLCPlaylistInterfaceController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VLCPlaylistInterfaceController.h; sourceTree = "<group>"; };
  373. 4173AEA51ABF1B850004101D /* VLCPlaylistInterfaceController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VLCPlaylistInterfaceController.m; sourceTree = "<group>"; };
  374. 4173AEA71ABF1B850004101D /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  375. 4173AEAB1ABF1B850004101D /* VLC for iOS WatchKit App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "VLC for iOS WatchKit App.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  376. 4173AEB11ABF1B860004101D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  377. 4173AEB31ABF1B860004101D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Interface.storyboard; sourceTree = "<group>"; };
  378. 4173AEB51ABF1B860004101D /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
  379. 417CDA201A48D1F300D9ACE7 /* VLCCloudServicesTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCCloudServicesTableViewController.h; path = Sources/VLCCloudServicesTableViewController.h; sourceTree = SOURCE_ROOT; };
  380. 417CDA211A48D1F300D9ACE7 /* VLCCloudServicesTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCCloudServicesTableViewController.m; path = Sources/VLCCloudServicesTableViewController.m; sourceTree = SOURCE_ROOT; };
  381. 417CDA221A48D1F300D9ACE7 /* VLCCloudServicesTableViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCCloudServicesTableViewController.xib; path = Resources/VLCCloudServicesTableViewController.xib; sourceTree = SOURCE_ROOT; };
  382. 4184AA131A5492070063DF5A /* VLCCloudStorageController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCCloudStorageController.h; path = Sources/VLCCloudStorageController.h; sourceTree = SOURCE_ROOT; };
  383. 4184AA141A5492070063DF5A /* VLCCloudStorageController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCCloudStorageController.m; path = Sources/VLCCloudStorageController.m; sourceTree = SOURCE_ROOT; };
  384. 418FF4B01A0EC1D5005FE808 /* libPods-vlc-ios.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libPods-vlc-ios.a"; path = "Pods/build/Debug-iphoneos/libPods-vlc-ios.a"; sourceTree = "<group>"; };
  385. 41B93BFF1A53833B00102E8B /* VLCProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCProgressView.h; path = Sources/VLCProgressView.h; sourceTree = SOURCE_ROOT; };
  386. 41B93C001A53833B00102E8B /* VLCProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCProgressView.m; path = Sources/VLCProgressView.m; sourceTree = SOURCE_ROOT; };
  387. 41B93C021A53835300102E8B /* VLCCloudServiceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCCloudServiceCell.h; path = Sources/VLCCloudServiceCell.h; sourceTree = SOURCE_ROOT; };
  388. 41B93C031A53835300102E8B /* VLCCloudServiceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCCloudServiceCell.m; path = Sources/VLCCloudServiceCell.m; sourceTree = SOURCE_ROOT; };
  389. 41B93C071A53853B00102E8B /* VLCCloudServiceCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCCloudServiceCell.xib; path = Resources/VLCCloudServiceCell.xib; sourceTree = SOURCE_ROOT; };
  390. 41CD69571A29D72600E60BCE /* VLCBoxConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCBoxConstants.h; path = Sources/VLCBoxConstants.h; sourceTree = SOURCE_ROOT; };
  391. 41CD69581A29D72600E60BCE /* VLCBoxController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCBoxController.h; path = Sources/VLCBoxController.h; sourceTree = SOURCE_ROOT; };
  392. 41CD69591A29D72600E60BCE /* VLCBoxController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCBoxController.m; path = Sources/VLCBoxController.m; sourceTree = SOURCE_ROOT; };
  393. 41CD695A1A29D72600E60BCE /* VLCBoxTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCBoxTableViewController.h; path = Sources/VLCBoxTableViewController.h; sourceTree = SOURCE_ROOT; };
  394. 41CD695B1A29D72600E60BCE /* VLCBoxTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCBoxTableViewController.m; path = Sources/VLCBoxTableViewController.m; sourceTree = SOURCE_ROOT; };
  395. 493B1A1B195D06B1000A491A /* BasicUPnPDevice+VLC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "BasicUPnPDevice+VLC.h"; path = "Sources/BasicUPnPDevice+VLC.h"; sourceTree = SOURCE_ROOT; };
  396. 493B1A1C195D06B1000A491A /* BasicUPnPDevice+VLC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "BasicUPnPDevice+VLC.m"; path = "Sources/BasicUPnPDevice+VLC.m"; sourceTree = SOURCE_ROOT; };
  397. 521108CBC3CAA0810AF3CBA8 /* Pods-vlc-ios.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-vlc-ios.debug.xcconfig"; path = "Pods/Target Support Files/Pods-vlc-ios/Pods-vlc-ios.debug.xcconfig"; sourceTree = "<group>"; };
  398. 6AB5E0853B398B35369938EC /* Pods-vlc-ios.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-vlc-ios.release.xcconfig"; path = "Pods/Target Support Files/Pods-vlc-ios/Pods-vlc-ios.release.xcconfig"; sourceTree = "<group>"; };
  399. 7AC8629B1765DC560011611A /* style.css */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.css; path = style.css; sourceTree = "<group>"; };
  400. 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "jquery-1.10.1.min.js"; sourceTree = "<group>"; };
  401. 7AC8629F1765E90C0011611A /* jquery.fileupload.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jquery.fileupload.js; sourceTree = "<group>"; };
  402. 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = "jquery.iframe-transport.js"; sourceTree = "<group>"; };
  403. 7AC862A11765E90C0011611A /* jquery.ui.widget.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = jquery.ui.widget.js; sourceTree = "<group>"; };
  404. 7D00161A17704DAC00649F27 /* main.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = main.js; sourceTree = "<group>"; };
  405. 7D0117F0187F4BA400C5671C /* VLCFirstStepsFirstPageViewController~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCFirstStepsFirstPageViewController~ipad.xib"; path = "Resources/VLCFirstStepsFirstPageViewController~ipad.xib"; sourceTree = SOURCE_ROOT; };
  406. 7D1052E51A4DC5FF00295F08 /* LiveSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = LiveSDK.framework; path = External/OneDrive/LiveSDK.framework; sourceTree = "<group>"; };
  407. 7D1052E71A4DCC1100295F08 /* VLCOneDriveTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCOneDriveTableViewController.h; path = Sources/VLCOneDriveTableViewController.h; sourceTree = SOURCE_ROOT; };
  408. 7D1052E81A4DCC1100295F08 /* VLCOneDriveTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCOneDriveTableViewController.m; path = Sources/VLCOneDriveTableViewController.m; sourceTree = SOURCE_ROOT; };
  409. 7D1052EB1A4DCC4B00295F08 /* VLCOneDriveConstants.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = VLCOneDriveConstants.h; path = Sources/VLCOneDriveConstants.h; sourceTree = SOURCE_ROOT; };
  410. 7D1052EC1A4DCD1E00295F08 /* VLCOneDriveController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCOneDriveController.h; path = Sources/VLCOneDriveController.h; sourceTree = SOURCE_ROOT; };
  411. 7D1052ED1A4DCD1E00295F08 /* VLCOneDriveController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCOneDriveController.m; path = Sources/VLCOneDriveController.m; sourceTree = SOURCE_ROOT; };
  412. 7D1276601AADA0E600F0260C /* VLCMultiSelectionMenuView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMultiSelectionMenuView.h; path = Sources/VLCMultiSelectionMenuView.h; sourceTree = SOURCE_ROOT; };
  413. 7D1276611AADA0E600F0260C /* VLCMultiSelectionMenuView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMultiSelectionMenuView.m; path = Sources/VLCMultiSelectionMenuView.m; sourceTree = SOURCE_ROOT; };
  414. 7D15163B1868D7E0004B18F3 /* VLCFirstStepsFifthPageViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCFirstStepsFifthPageViewController.xib; path = Resources/VLCFirstStepsFifthPageViewController.xib; sourceTree = SOURCE_ROOT; };
  415. 7D15163C1868D7E0004B18F3 /* VLCFirstStepsFirstPageViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCFirstStepsFirstPageViewController~iphone.xib"; path = "Resources/VLCFirstStepsFirstPageViewController~iphone.xib"; sourceTree = SOURCE_ROOT; };
  416. 7D15163F1868D7E0004B18F3 /* VLCFirstStepsSixthPageViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCFirstStepsSixthPageViewController~iphone.xib"; path = "Resources/VLCFirstStepsSixthPageViewController~iphone.xib"; sourceTree = SOURCE_ROOT; };
  417. 7D15168A194773630086FB8C /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
  418. 7D168F6B18D49E74003FAF59 /* lv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = lv; path = lv.lproj/Localizable.strings; sourceTree = "<group>"; };
  419. 7D168F6C18D49E74003FAF59 /* lv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = lv; path = "lv.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  420. 7D168F6D18D49E74003FAF59 /* lv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = lv; path = "lv.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  421. 7D168F6E18D49E74003FAF59 /* lv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = lv; path = "lv.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  422. 7D168F6F18D49E74003FAF59 /* lv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = lv; path = "lv.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  423. 7D168F7018D4A21B003FAF59 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; };
  424. 7D168F7218D4A317003FAF59 /* UIImage+Blur.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIImage+Blur.h"; path = "Sources/UIImage+Blur.h"; sourceTree = SOURCE_ROOT; };
  425. 7D168F7318D4A33F003FAF59 /* UIImage+Blur.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Blur.m"; path = "Sources/UIImage+Blur.m"; sourceTree = SOURCE_ROOT; };
  426. 7D19492B17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/Localizable.strings; sourceTree = "<group>"; };
  427. 7D19492C17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  428. 7D19492D17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  429. 7D19492E17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  430. 7D19492F17C661A300959800 /* el */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = el; path = "el.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  431. 7D1AB27C179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/Localizable.strings; sourceTree = "<group>"; };
  432. 7D1AB27D179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  433. 7D1AB27E179C98BF004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  434. 7D1AB27F179C98C0004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  435. 7D1AB280179C98C0004CC271 /* he */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = he; path = "he.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  436. 7D1AB281179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  437. 7D1AB282179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  438. 7D1AB283179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  439. 7D1AB284179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  440. 7D1AB285179C98CD004CC271 /* nl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = nl; path = "nl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  441. 7D1AB286179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = "<group>"; };
  442. 7D1AB287179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  443. 7D1AB288179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  444. 7D1AB289179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  445. 7D1AB28A179C98D4004CC271 /* sk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sk; path = "sk.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  446. 7D1AB28B179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  447. 7D1AB28C179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  448. 7D1AB28D179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  449. 7D1AB28E179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  450. 7D1AB28F179C98DC004CC271 /* tr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = tr; path = "tr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  451. 7D1AB290179C98E3004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
  452. 7D1AB291179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  453. 7D1AB292179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  454. 7D1AB293179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  455. 7D1AB294179C98E4004CC271 /* uk */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = uk; path = "uk.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  456. 7D1AB295179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Localizable.strings; sourceTree = "<group>"; };
  457. 7D1AB296179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  458. 7D1AB297179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  459. 7D1AB298179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  460. 7D1AB299179C98F4004CC271 /* vi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = vi; path = "vi.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  461. 7D1AB2A4179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  462. 7D1AB2A5179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  463. 7D1AB2A6179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  464. 7D1AB2A7179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  465. 7D1AB2A8179C99AE004CC271 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hans"; path = "zh-Hans.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  466. 7D27EB9319DEE11900EF0370 /* Launch Screen.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "Launch Screen.xib"; path = "Resources/Launch Screen.xib"; sourceTree = SOURCE_ROOT; };
  467. 7D27EC2919DF310300EF0370 /* VLCFirstStepsSecondPageViewController~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCFirstStepsSecondPageViewController~ipad.xib"; path = "Resources/VLCFirstStepsSecondPageViewController~ipad.xib"; sourceTree = SOURCE_ROOT; };
  468. 7D27EC2A19DF310300EF0370 /* VLCFirstStepsSecondPageViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCFirstStepsSecondPageViewController~iphone.xib"; path = "Resources/VLCFirstStepsSecondPageViewController~iphone.xib"; sourceTree = SOURCE_ROOT; };
  469. 7D2AEDE017FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  470. 7D2AEDE117FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  471. 7D2AEDE217FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  472. 7D2AEDE317FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  473. 7D2AEDE417FB775900B5281E /* sv */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sv; path = "sv.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  474. 7D2AEDE517FB785100B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = "<group>"; };
  475. 7D2AEDE617FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  476. 7D2AEDE717FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  477. 7D2AEDE817FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  478. 7D2AEDE917FB785200B5281E /* hu */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = hu; path = "hu.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  479. 7D2D4ECD1ACFFA42006A8DBD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  480. 7D2D4ECF1ACFFA46006A8DBD /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  481. 7D2E27891AD6DF72001FFE28 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
  482. 7D2E278A1AD6DFE4001FFE28 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  483. 7D2E278B1AD6E02D001FFE28 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = "<group>"; };
  484. 7D2E278C1AD6E07B001FFE28 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = "<group>"; };
  485. 7D2E278D1AD6E1AD001FFE28 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  486. 7D2E278E1AD6E2E8001FFE28 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  487. 7D2E278F1AD6E318001FFE28 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = "<group>"; };
  488. 7D2E27901AD6E3C9001FFE28 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  489. 7D2E27911AD6E415001FFE28 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/Localizable.strings; sourceTree = "<group>"; };
  490. 7D2E27921AD6E4D3001FFE28 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  491. 7D2E27931AD6E4FA001FFE28 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = "<group>"; };
  492. 7D2E27941AD6E538001FFE28 /* ta */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ta; path = ta.lproj/Localizable.strings; sourceTree = "<group>"; };
  493. 7D2E27951AD6E554001FFE28 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
  494. 7D2E27961AD6E583001FFE28 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  495. 7D2E27971AD6E59C001FFE28 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  496. 7D30F3BC183AB24C00FFC021 /* VLCHTTPConnection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCHTTPConnection.h; path = Sources/VLCHTTPConnection.h; sourceTree = SOURCE_ROOT; };
  497. 7D30F3BD183AB24C00FFC021 /* VLCHTTPConnection.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCHTTPConnection.m; path = Sources/VLCHTTPConnection.m; sourceTree = SOURCE_ROOT; };
  498. 7D30F3BE183AB24C00FFC021 /* VLCHTTPFileDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCHTTPFileDownloader.h; path = Sources/VLCHTTPFileDownloader.h; sourceTree = SOURCE_ROOT; };
  499. 7D30F3BF183AB24C00FFC021 /* VLCHTTPFileDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCHTTPFileDownloader.m; path = Sources/VLCHTTPFileDownloader.m; sourceTree = SOURCE_ROOT; };
  500. 7D30F3C0183AB24C00FFC021 /* VLCHTTPUploaderController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCHTTPUploaderController.h; path = Sources/VLCHTTPUploaderController.h; sourceTree = SOURCE_ROOT; };
  501. 7D30F3C1183AB24C00FFC021 /* VLCHTTPUploaderController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCHTTPUploaderController.m; path = Sources/VLCHTTPUploaderController.m; sourceTree = SOURCE_ROOT; };
  502. 7D30F3C5183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCOpenNetworkStreamViewController.h; path = Sources/VLCOpenNetworkStreamViewController.h; sourceTree = SOURCE_ROOT; };
  503. 7D30F3C6183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCOpenNetworkStreamViewController.m; path = Sources/VLCOpenNetworkStreamViewController.m; sourceTree = SOURCE_ROOT; };
  504. 7D30F3C8183AB27A00FFC021 /* VLCDownloadViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDownloadViewController.h; path = Sources/VLCDownloadViewController.h; sourceTree = SOURCE_ROOT; };
  505. 7D30F3C9183AB27A00FFC021 /* VLCDownloadViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCDownloadViewController.m; path = Sources/VLCDownloadViewController.m; sourceTree = SOURCE_ROOT; };
  506. 7D30F3CB183AB29300FFC021 /* VLCMenuTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMenuTableViewController.h; path = Sources/VLCMenuTableViewController.h; sourceTree = SOURCE_ROOT; };
  507. 7D30F3CC183AB29300FFC021 /* VLCMenuTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMenuTableViewController.m; path = Sources/VLCMenuTableViewController.m; sourceTree = SOURCE_ROOT; };
  508. 7D30F3CE183AB2AC00FFC021 /* VLCMediaFileDiscoverer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMediaFileDiscoverer.h; path = Sources/VLCMediaFileDiscoverer.h; sourceTree = SOURCE_ROOT; };
  509. 7D30F3CF183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMediaFileDiscoverer.m; path = Sources/VLCMediaFileDiscoverer.m; sourceTree = SOURCE_ROOT; };
  510. 7D30F3D1183AB2F100FFC021 /* VLCLocalNetworkListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLocalNetworkListCell.h; path = Sources/VLCLocalNetworkListCell.h; sourceTree = SOURCE_ROOT; };
  511. 7D30F3D2183AB2F100FFC021 /* VLCLocalNetworkListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLocalNetworkListCell.m; path = Sources/VLCLocalNetworkListCell.m; sourceTree = SOURCE_ROOT; };
  512. 7D30F3D3183AB2F100FFC021 /* VLCLocalServerFolderListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLocalServerFolderListViewController.h; path = Sources/VLCLocalServerFolderListViewController.h; sourceTree = SOURCE_ROOT; };
  513. 7D30F3D4183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLocalServerFolderListViewController.m; path = Sources/VLCLocalServerFolderListViewController.m; sourceTree = SOURCE_ROOT; };
  514. 7D30F3D5183AB2F100FFC021 /* VLCLocalServerListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLocalServerListViewController.h; path = Sources/VLCLocalServerListViewController.h; sourceTree = SOURCE_ROOT; };
  515. 7D30F3D6183AB2F100FFC021 /* VLCLocalServerListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLocalServerListViewController.m; path = Sources/VLCLocalServerListViewController.m; sourceTree = SOURCE_ROOT; };
  516. 7D30F3DA183AB2F900FFC021 /* VLCNetworkLoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCNetworkLoginViewController.h; path = Sources/VLCNetworkLoginViewController.h; sourceTree = SOURCE_ROOT; };
  517. 7D30F3DB183AB2F900FFC021 /* VLCNetworkLoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCNetworkLoginViewController.m; path = Sources/VLCNetworkLoginViewController.m; sourceTree = SOURCE_ROOT; };
  518. 7D30F3DD183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCWiFiUploadTableViewCell.h; path = Sources/VLCWiFiUploadTableViewCell.h; sourceTree = SOURCE_ROOT; };
  519. 7D30F3DE183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCWiFiUploadTableViewCell.m; path = Sources/VLCWiFiUploadTableViewCell.m; sourceTree = SOURCE_ROOT; };
  520. 7D30F3E0183AB33200FFC021 /* VLCSidebarViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCSidebarViewCell.h; path = Sources/VLCSidebarViewCell.h; sourceTree = SOURCE_ROOT; };
  521. 7D30F3E1183AB33200FFC021 /* VLCSidebarViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCSidebarViewCell.m; path = Sources/VLCSidebarViewCell.m; sourceTree = SOURCE_ROOT; };
  522. 7D30F3E3183AB34200FFC021 /* VLCGoogleDriveConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCGoogleDriveConstants.h; path = Sources/VLCGoogleDriveConstants.h; sourceTree = SOURCE_ROOT; };
  523. 7D30F3E4183AB34200FFC021 /* VLCGoogleDriveController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCGoogleDriveController.h; path = Sources/VLCGoogleDriveController.h; sourceTree = SOURCE_ROOT; };
  524. 7D30F3E5183AB34200FFC021 /* VLCGoogleDriveController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCGoogleDriveController.m; path = Sources/VLCGoogleDriveController.m; sourceTree = SOURCE_ROOT; };
  525. 7D30F3E8183AB34200FFC021 /* VLCGoogleDriveTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCGoogleDriveTableViewController.h; path = Sources/VLCGoogleDriveTableViewController.h; sourceTree = SOURCE_ROOT; };
  526. 7D30F3E9183AB34200FFC021 /* VLCGoogleDriveTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCGoogleDriveTableViewController.m; path = Sources/VLCGoogleDriveTableViewController.m; sourceTree = SOURCE_ROOT; };
  527. 7D31001F17B6768B00E6516D /* libupnpx.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libupnpx.a; path = External/upnpx/libupnpx.a; sourceTree = "<group>"; };
  528. 7D31719C19FEC91F0019357A /* VLC for iOS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.xml; name = "VLC for iOS.entitlements"; path = "vlc-ios/VLC for iOS.entitlements"; sourceTree = "<group>"; };
  529. 7D32B383185E293D006CA474 /* Raleway.woff */ = {isa = PBXFileReference; lastKnownFileType = file; path = Raleway.woff; sourceTree = "<group>"; };
  530. 7D3323FB18E61DD5000ABEA5 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/Localizable.strings"; sourceTree = "<group>"; };
  531. 7D3323FC18E61DD5000ABEA5 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "en-GB"; path = "en-GB.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  532. 7D3323FD18E61DD5000ABEA5 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "en-GB"; path = "en-GB.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  533. 7D3323FE18E61DD5000ABEA5 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "en-GB"; path = "en-GB.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  534. 7D3323FF18E61DD5000ABEA5 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "en-GB"; path = "en-GB.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  535. 7D37848D183A98B6009EE944 /* VLCMovieViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMovieViewController.h; path = Sources/VLCMovieViewController.h; sourceTree = SOURCE_ROOT; };
  536. 7D37848E183A98B6009EE944 /* VLCMovieViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMovieViewController.m; path = Sources/VLCMovieViewController.m; sourceTree = SOURCE_ROOT; };
  537. 7D378490183A98BF009EE944 /* VLCExternalDisplayController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCExternalDisplayController.h; path = Sources/VLCExternalDisplayController.h; sourceTree = SOURCE_ROOT; };
  538. 7D378491183A98BF009EE944 /* VLCExternalDisplayController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCExternalDisplayController.m; path = Sources/VLCExternalDisplayController.m; sourceTree = SOURCE_ROOT; };
  539. 7D378493183A98D1009EE944 /* VLCPlaylistCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlaylistCollectionViewCell.h; path = Sources/VLCPlaylistCollectionViewCell.h; sourceTree = SOURCE_ROOT; };
  540. 7D378494183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlaylistCollectionViewCell.m; path = Sources/VLCPlaylistCollectionViewCell.m; sourceTree = SOURCE_ROOT; };
  541. 7D378495183A98D1009EE944 /* VLCPlaylistTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlaylistTableViewCell.h; path = Sources/VLCPlaylistTableViewCell.h; sourceTree = SOURCE_ROOT; };
  542. 7D378496183A98D1009EE944 /* VLCPlaylistTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlaylistTableViewCell.m; path = Sources/VLCPlaylistTableViewCell.m; sourceTree = SOURCE_ROOT; };
  543. 7D378497183A98D1009EE944 /* VLCPlaylistViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlaylistViewController.h; path = Sources/VLCPlaylistViewController.h; sourceTree = SOURCE_ROOT; };
  544. 7D378498183A98D1009EE944 /* VLCPlaylistViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlaylistViewController.m; path = Sources/VLCPlaylistViewController.m; sourceTree = SOURCE_ROOT; };
  545. 7D37849C183A98DD009EE944 /* VLCThumbnailsCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCThumbnailsCache.h; path = Sources/VLCThumbnailsCache.h; sourceTree = SOURCE_ROOT; };
  546. 7D37849D183A98DD009EE944 /* VLCThumbnailsCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCThumbnailsCache.m; path = Sources/VLCThumbnailsCache.m; sourceTree = SOURCE_ROOT; };
  547. 7D37849F183A98EB009EE944 /* VLCBugreporter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCBugreporter.h; path = Sources/VLCBugreporter.h; sourceTree = SOURCE_ROOT; };
  548. 7D3784A0183A98EB009EE944 /* VLCBugreporter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCBugreporter.m; path = Sources/VLCBugreporter.m; sourceTree = SOURCE_ROOT; };
  549. 7D3784A2183A98F5009EE944 /* VLCAboutViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCAboutViewController.h; path = Sources/VLCAboutViewController.h; sourceTree = SOURCE_ROOT; };
  550. 7D3784A3183A98F5009EE944 /* VLCAboutViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCAboutViewController.m; path = Sources/VLCAboutViewController.m; sourceTree = SOURCE_ROOT; };
  551. 7D3784A4183A98F5009EE944 /* VLCSettingsController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCSettingsController.h; path = Sources/VLCSettingsController.h; sourceTree = SOURCE_ROOT; };
  552. 7D3784A5183A98F5009EE944 /* VLCSettingsController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCSettingsController.m; path = Sources/VLCSettingsController.m; sourceTree = SOURCE_ROOT; };
  553. 7D3784A8183A9906009EE944 /* VLCDropboxConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDropboxConstants.h; path = Sources/VLCDropboxConstants.h; sourceTree = SOURCE_ROOT; };
  554. 7D3784A9183A9906009EE944 /* VLCDropboxController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDropboxController.h; path = Sources/VLCDropboxController.h; sourceTree = SOURCE_ROOT; };
  555. 7D3784AA183A9906009EE944 /* VLCDropboxController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCDropboxController.m; path = Sources/VLCDropboxController.m; sourceTree = SOURCE_ROOT; };
  556. 7D3784AB183A9906009EE944 /* VLCDropboxTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDropboxTableViewController.h; path = Sources/VLCDropboxTableViewController.h; sourceTree = SOURCE_ROOT; };
  557. 7D3784AC183A9906009EE944 /* VLCDropboxTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCDropboxTableViewController.m; path = Sources/VLCDropboxTableViewController.m; sourceTree = SOURCE_ROOT; };
  558. 7D3784AF183A990F009EE944 /* VLCCloudStorageTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCCloudStorageTableViewCell.h; path = Sources/VLCCloudStorageTableViewCell.h; sourceTree = SOURCE_ROOT; };
  559. 7D3784B0183A990F009EE944 /* VLCCloudStorageTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCCloudStorageTableViewCell.m; path = Sources/VLCCloudStorageTableViewCell.m; sourceTree = SOURCE_ROOT; };
  560. 7D3784B2183A9938009EE944 /* UIBarButtonItem+Theme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIBarButtonItem+Theme.h"; path = "Sources/UIBarButtonItem+Theme.h"; sourceTree = SOURCE_ROOT; };
  561. 7D3784B3183A9938009EE944 /* UIBarButtonItem+Theme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIBarButtonItem+Theme.m"; path = "Sources/UIBarButtonItem+Theme.m"; sourceTree = SOURCE_ROOT; };
  562. 7D3784B6183A9938009EE944 /* VLCLinearProgressIndicator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCLinearProgressIndicator.h; path = Sources/VLCLinearProgressIndicator.h; sourceTree = SOURCE_ROOT; };
  563. 7D3784B7183A9938009EE944 /* VLCLinearProgressIndicator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCLinearProgressIndicator.m; path = Sources/VLCLinearProgressIndicator.m; sourceTree = SOURCE_ROOT; };
  564. 7D3784B8183A9938009EE944 /* VLCMenuButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMenuButton.h; path = Sources/VLCMenuButton.h; sourceTree = SOURCE_ROOT; };
  565. 7D3784B9183A9938009EE944 /* VLCMenuButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMenuButton.m; path = Sources/VLCMenuButton.m; sourceTree = SOURCE_ROOT; };
  566. 7D3784BA183A9938009EE944 /* VLCSlider.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCSlider.h; path = Sources/VLCSlider.h; sourceTree = SOURCE_ROOT; };
  567. 7D3784BB183A9938009EE944 /* VLCSlider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCSlider.m; path = Sources/VLCSlider.m; sourceTree = SOURCE_ROOT; };
  568. 7D3784BC183A9938009EE944 /* VLCStatusLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCStatusLabel.h; path = Sources/VLCStatusLabel.h; sourceTree = SOURCE_ROOT; };
  569. 7D3784BD183A9938009EE944 /* VLCStatusLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCStatusLabel.m; path = Sources/VLCStatusLabel.m; sourceTree = SOURCE_ROOT; };
  570. 7D3784C4183A9972009EE944 /* NSString+SupportedMedia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "NSString+SupportedMedia.h"; path = "Sources/NSString+SupportedMedia.h"; sourceTree = SOURCE_ROOT; };
  571. 7D3784C5183A9972009EE944 /* NSString+SupportedMedia.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "NSString+SupportedMedia.m"; path = "Sources/NSString+SupportedMedia.m"; sourceTree = SOURCE_ROOT; };
  572. 7D3784C6183A9972009EE944 /* UIDevice+VLC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIDevice+VLC.h"; path = "Sources/UIDevice+VLC.h"; sourceTree = SOURCE_ROOT; };
  573. 7D3784C7183A9972009EE944 /* UIDevice+VLC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIDevice+VLC.m"; path = "Sources/UIDevice+VLC.m"; sourceTree = SOURCE_ROOT; };
  574. 7D3784CA183A99BA009EE944 /* PAPasscodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PAPasscodeViewController.h; path = PAPasscode/PAPasscodeViewController.h; sourceTree = SOURCE_ROOT; };
  575. 7D3784CB183A99BA009EE944 /* PAPasscodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PAPasscodeViewController.m; path = PAPasscode/PAPasscodeViewController.m; sourceTree = SOURCE_ROOT; };
  576. 7D3784E5183A99E1009EE944 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Reachability.h; path = Sources/Reachability.h; sourceTree = SOURCE_ROOT; };
  577. 7D3784E6183A99E1009EE944 /* Reachability.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = Reachability.m; path = Sources/Reachability.m; sourceTree = SOURCE_ROOT; };
  578. 7D3784E8183A9A15009EE944 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Sources/main.m; sourceTree = SOURCE_ROOT; };
  579. 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; };
  580. 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; };
  581. 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
  582. 7D4136621896710500D7B4B2 /* si */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = si; path = si.lproj/Localizable.strings; sourceTree = "<group>"; };
  583. 7D4136631896710500D7B4B2 /* si */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = si; path = "si.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  584. 7D4136641896710500D7B4B2 /* si */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = si; path = "si.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  585. 7D4136651896710500D7B4B2 /* si */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = si; path = "si.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  586. 7D4136661896710500D7B4B2 /* si */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = si; path = "si.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  587. 7D4625861A5614A1001A80B4 /* VLCEqualizerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCEqualizerView.h; path = Sources/VLCEqualizerView.h; sourceTree = SOURCE_ROOT; };
  588. 7D4625871A5614A1001A80B4 /* VLCEqualizerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCEqualizerView.m; path = Sources/VLCEqualizerView.m; sourceTree = SOURCE_ROOT; };
  589. 7D49E178175A47A4002D1450 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = "<group>"; };
  590. 7D4BE733175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = "<group>"; };
  591. 7D4BE734175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  592. 7D4BE735175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  593. 7D4BE736175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  594. 7D4BE737175F82CA00861CD4 /* fi */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fi; path = "fi.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  595. 7D4C484417ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bs; path = bs.lproj/Localizable.strings; sourceTree = "<group>"; };
  596. 7D4C484517ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  597. 7D4C484617ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  598. 7D4C484717ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  599. 7D4C484817ACF982008D228B /* bs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = bs; path = "bs.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  600. 7D50903018F41C7900180139 /* VLCAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCAlertView.h; path = Sources/VLCAlertView.h; sourceTree = SOURCE_ROOT; };
  601. 7D50903118F41C7900180139 /* VLCAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCAlertView.m; path = Sources/VLCAlertView.m; sourceTree = SOURCE_ROOT; };
  602. 7D5C204917999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  603. 7D5C204A17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  604. 7D5C204B17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  605. 7D5C204C17999A64004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = da; path = "da.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  606. 7D5C204D17999A74004F9443 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = "<group>"; };
  607. 7D5CAA871A4AD763003F2CBC /* VLCTrackSelectorTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCTrackSelectorTableViewCell.h; path = Sources/VLCTrackSelectorTableViewCell.h; sourceTree = SOURCE_ROOT; };
  608. 7D5CAA881A4AD763003F2CBC /* VLCTrackSelectorTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCTrackSelectorTableViewCell.m; path = Sources/VLCTrackSelectorTableViewCell.m; sourceTree = SOURCE_ROOT; };
  609. 7D5CAA8A1A4AD8E5003F2CBC /* VLCTrackSelectorHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCTrackSelectorHeaderView.h; path = Sources/VLCTrackSelectorHeaderView.h; sourceTree = SOURCE_ROOT; };
  610. 7D5CAA8B1A4AD8E5003F2CBC /* VLCTrackSelectorHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCTrackSelectorHeaderView.m; path = Sources/VLCTrackSelectorHeaderView.m; sourceTree = SOURCE_ROOT; };
  611. 7D5DD5C617590ABF001421E3 /* About Contents.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; path = "About Contents.html"; sourceTree = "<group>"; };
  612. 7D63C18D18774B1700BD5256 /* VLCFirstStepsSecondPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCFirstStepsSecondPageViewController.h; path = Sources/VLCFirstStepsSecondPageViewController.h; sourceTree = SOURCE_ROOT; };
  613. 7D63C18E18774B1700BD5256 /* VLCFirstStepsSecondPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCFirstStepsSecondPageViewController.m; path = Sources/VLCFirstStepsSecondPageViewController.m; sourceTree = SOURCE_ROOT; };
  614. 7D63C19418774E0100BD5256 /* VLCFirstStepsThirdPageViewController~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCFirstStepsThirdPageViewController~ipad.xib"; path = "Resources/VLCFirstStepsThirdPageViewController~ipad.xib"; sourceTree = SOURCE_ROOT; };
  615. 7D63C19618774F1000BD5256 /* VLCFirstStepsFourthPageViewController~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCFirstStepsFourthPageViewController~ipad.xib"; path = "Resources/VLCFirstStepsFourthPageViewController~ipad.xib"; sourceTree = SOURCE_ROOT; };
  616. 7D63C1981877504B00BD5256 /* VLCFirstStepsSixthPageViewController~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCFirstStepsSixthPageViewController~ipad.xib"; path = "Resources/VLCFirstStepsSixthPageViewController~ipad.xib"; sourceTree = SOURCE_ROOT; };
  617. 7D685A861AAF73DD006CD82A /* af */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = af; path = af.lproj/Localizable.strings; sourceTree = "<group>"; };
  618. 7D685A871AAF73DD006CD82A /* af */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = af; path = "af.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  619. 7D685A881AAF73DE006CD82A /* af */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = af; path = "af.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  620. 7D685A891AAF73DE006CD82A /* af */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = af; path = "af.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  621. 7D685A8A1AAF73DE006CD82A /* af */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = af; path = "af.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  622. 7D685A8B1AAF73F2006CD82A /* be */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = be; path = be.lproj/Localizable.strings; sourceTree = "<group>"; };
  623. 7D685A8C1AAF73F3006CD82A /* be */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = be; path = "be.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  624. 7D685A8D1AAF73F3006CD82A /* be */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = be; path = "be.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  625. 7D685A8E1AAF73F3006CD82A /* be */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = be; path = "be.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  626. 7D685A8F1AAF73F3006CD82A /* be */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = be; path = "be.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  627. 7D685A901AAF7406006CD82A /* fo */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fo; path = fo.lproj/Localizable.strings; sourceTree = "<group>"; };
  628. 7D685A911AAF7406006CD82A /* fo */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fo; path = "fo.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  629. 7D685A921AAF7406006CD82A /* fo */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fo; path = "fo.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  630. 7D685A931AAF7406006CD82A /* fo */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fo; path = "fo.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  631. 7D685A941AAF7407006CD82A /* fo */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fo; path = "fo.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  632. 7D685A951AAF741D006CD82A /* km */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = km; path = km.lproj/Localizable.strings; sourceTree = "<group>"; };
  633. 7D685A961AAF741D006CD82A /* km */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = km; path = "km.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  634. 7D685A971AAF741D006CD82A /* km */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = km; path = "km.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  635. 7D685A981AAF741D006CD82A /* km */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = km; path = "km.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  636. 7D685A991AAF741D006CD82A /* km */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = km; path = "km.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  637. 7D685A9F1AAF745B006CD82A /* ta */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ta; path = ta.lproj/Localizable.strings; sourceTree = "<group>"; };
  638. 7D685AA01AAF745B006CD82A /* ta */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ta; path = "ta.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  639. 7D685AA11AAF745B006CD82A /* ta */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ta; path = "ta.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  640. 7D685AA21AAF745B006CD82A /* ta */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ta; path = "ta.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  641. 7D685AA31AAF745B006CD82A /* ta */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ta; path = "ta.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  642. 7D685AA41AAF7472006CD82A /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = "<group>"; };
  643. 7D685AA51AAF7472006CD82A /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "pt-PT"; path = "pt-PT.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  644. 7D685AA61AAF7472006CD82A /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "pt-PT"; path = "pt-PT.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  645. 7D685AA71AAF7472006CD82A /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "pt-PT"; path = "pt-PT.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  646. 7D685AA81AAF7472006CD82A /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "pt-PT"; path = "pt-PT.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  647. 7D685AA91AAF7488006CD82A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = "<group>"; };
  648. 7D685AAA1AAF7488006CD82A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "pt-BR"; path = "pt-BR.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  649. 7D685AAB1AAF7488006CD82A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "pt-BR"; path = "pt-BR.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  650. 7D685AAC1AAF7488006CD82A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "pt-BR"; path = "pt-BR.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  651. 7D685AAD1AAF7488006CD82A /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "pt-BR"; path = "pt-BR.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  652. 7D685AAE1AAF74F9006CD82A /* sr-Latn */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sr-Latn"; path = "sr-Latn.lproj/Localizable.strings"; sourceTree = "<group>"; };
  653. 7D685AAF1AAF74F9006CD82A /* sr-Latn */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "sr-Latn"; path = "sr-Latn.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  654. 7D685AB01AAF74F9006CD82A /* sr-Latn */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "sr-Latn"; path = "sr-Latn.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  655. 7D685AB11AAF74F9006CD82A /* sr-Latn */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "sr-Latn"; path = "sr-Latn.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  656. 7D685AB21AAF74F9006CD82A /* sr-Latn */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "sr-Latn"; path = "sr-Latn.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  657. 7D6B08BB174A72A900A05173 /* VLCConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCConstants.h; path = Sources/VLCConstants.h; sourceTree = "<group>"; };
  658. 7D6B08F9174D716200A05173 /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
  659. 7D6B08FB174D773C00A05173 /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = Settings.bundle; path = Resources/Settings.bundle; sourceTree = SOURCE_ROOT; };
  660. 7D6D13591758D1A00007EA9A /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = "<group>"; };
  661. 7D711AD918227A490094E4F0 /* GTMOAuth2ViewTouch.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = GTMOAuth2ViewTouch.xib; path = ImportedSources/GDrive/OAuth2/Touch/GTMOAuth2ViewTouch.xib; sourceTree = SOURCE_ROOT; };
  662. 7D7417781AE2D3CE001F1997 /* VLCNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCNavigationController.h; path = Sources/VLCNavigationController.h; sourceTree = SOURCE_ROOT; };
  663. 7D7417791AE2D3CE001F1997 /* VLCNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCNavigationController.m; path = Sources/VLCNavigationController.m; sourceTree = SOURCE_ROOT; };
  664. 7D7B17EC1AD8052A003BF3D7 /* libc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libc++.dylib"; path = "usr/lib/libc++.dylib"; sourceTree = SDKROOT; };
  665. 7D7B17ED1AD8052B003BF3D7 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
  666. 7D7DA52F1768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = "<group>"; };
  667. 7D7DA5301768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  668. 7D7DA5311768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  669. 7D7DA5321768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  670. 7D7DA5331768A53200C7E95D /* id */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = id; path = "id.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  671. 7D8139BE18651FEE00D65504 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = "<group>"; };
  672. 7D8139BF18651FEE00D65504 /* cs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = cs; path = "cs.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  673. 7D8139C018651FEE00D65504 /* cs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = cs; path = "cs.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  674. 7D8139C118651FEE00D65504 /* cs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = cs; path = "cs.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  675. 7D8139C218651FEE00D65504 /* cs */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = cs; path = "cs.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  676. 7D8139C31865206200D65504 /* fa */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fa; path = fa.lproj/Localizable.strings; sourceTree = "<group>"; };
  677. 7D8139C41865206300D65504 /* fa */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fa; path = "fa.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  678. 7D8139C51865206300D65504 /* fa */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fa; path = "fa.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  679. 7D8139C61865206300D65504 /* fa */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fa; path = "fa.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  680. 7D8139C71865206300D65504 /* fa */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fa; path = "fa.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  681. 7D8139C8186520A800D65504 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-MX"; path = "es-MX.lproj/Localizable.strings"; sourceTree = "<group>"; };
  682. 7D8139C9186520A800D65504 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "es-MX"; path = "es-MX.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  683. 7D8139CA186520A800D65504 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "es-MX"; path = "es-MX.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  684. 7D8139CB186520A800D65504 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "es-MX"; path = "es-MX.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  685. 7D8139CC186520A800D65504 /* es-MX */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "es-MX"; path = "es-MX.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  686. 7D8139CD1865211900D65504 /* ms */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ms; path = ms.lproj/Localizable.strings; sourceTree = "<group>"; };
  687. 7D8139CE1865211900D65504 /* ms */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ms; path = "ms.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  688. 7D8139CF1865211900D65504 /* ms */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ms; path = "ms.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  689. 7D8139D01865211900D65504 /* ms */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ms; path = "ms.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  690. 7D8139D11865211900D65504 /* ms */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ms; path = "ms.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  691. 7D871F4F1AD7257100348D27 /* UIImage+Scaling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIImage+Scaling.h"; path = "Sources/UIImage+Scaling.h"; sourceTree = SOURCE_ROOT; };
  692. 7D871F501AD7257100348D27 /* UIImage+Scaling.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Scaling.m"; path = "Sources/UIImage+Scaling.m"; sourceTree = SOURCE_ROOT; };
  693. 7D89786E185DED88009BAB5D /* VLCFutureDownloadViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCFutureDownloadViewController.xib; path = Resources/VLCFutureDownloadViewController.xib; sourceTree = SOURCE_ROOT; };
  694. 7D89787C185DF794009BAB5D /* VLCFutureOpenNetworkStreamViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCFutureOpenNetworkStreamViewController.xib; path = Resources/VLCFutureOpenNetworkStreamViewController.xib; sourceTree = SOURCE_ROOT; };
  695. 7D897894185E14A7009BAB5D /* libGTLTouchStaticLib.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libGTLTouchStaticLib.a; path = External/gtl/libGTLTouchStaticLib.a; sourceTree = "<group>"; };
  696. 7D9289721877459B009108FD /* VLCFirstStepsThirdPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCFirstStepsThirdPageViewController.h; path = Sources/VLCFirstStepsThirdPageViewController.h; sourceTree = SOURCE_ROOT; };
  697. 7D9289731877459B009108FD /* VLCFirstStepsThirdPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCFirstStepsThirdPageViewController.m; path = Sources/VLCFirstStepsThirdPageViewController.m; sourceTree = SOURCE_ROOT; };
  698. 7D9289741877459B009108FD /* VLCFirstStepsThirdPageViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCFirstStepsThirdPageViewController~iphone.xib"; path = "Resources/VLCFirstStepsThirdPageViewController~iphone.xib"; sourceTree = SOURCE_ROOT; };
  699. 7D9289771877467E009108FD /* VLCFirstStepsFourthPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCFirstStepsFourthPageViewController.h; path = Sources/VLCFirstStepsFourthPageViewController.h; sourceTree = SOURCE_ROOT; };
  700. 7D9289781877467E009108FD /* VLCFirstStepsFourthPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCFirstStepsFourthPageViewController.m; path = Sources/VLCFirstStepsFourthPageViewController.m; sourceTree = SOURCE_ROOT; };
  701. 7D9289791877467E009108FD /* VLCFirstStepsFourthPageViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCFirstStepsFourthPageViewController~iphone.xib"; path = "Resources/VLCFirstStepsFourthPageViewController~iphone.xib"; sourceTree = SOURCE_ROOT; };
  702. 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "VLC for iOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  703. 7D94FCDE16DE7D1000F2623B /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
  704. 7D94FCE016DE7D1000F2623B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
  705. 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  706. 7D9561091AF3E9E800779745 /* VLCMiniPlaybackView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCMiniPlaybackView.h; path = Sources/VLCMiniPlaybackView.h; sourceTree = SOURCE_ROOT; };
  707. 7D95610A1AF3E9E800779745 /* VLCMiniPlaybackView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCMiniPlaybackView.m; path = Sources/VLCMiniPlaybackView.m; sourceTree = SOURCE_ROOT; };
  708. 7D98705E1A3E03D5009CF27D /* papasscode_background.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_background.png; sourceTree = "<group>"; };
  709. 7D98705F1A3E03D5009CF27D /* papasscode_background@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_background@2x.png"; sourceTree = "<group>"; };
  710. 7D9870601A3E03D5009CF27D /* papasscode_failed_bg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_failed_bg.png; sourceTree = "<group>"; };
  711. 7D9870611A3E03D5009CF27D /* papasscode_failed_bg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_failed_bg@2x.png"; sourceTree = "<group>"; };
  712. 7D9870621A3E03D5009CF27D /* papasscode_marker.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = papasscode_marker.png; sourceTree = "<group>"; };
  713. 7D9870631A3E03D5009CF27D /* papasscode_marker@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "papasscode_marker@2x.png"; sourceTree = "<group>"; };
  714. 7D9B6B0817C9625F00F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sl; path = sl.lproj/Localizable.strings; sourceTree = "<group>"; };
  715. 7D9B6B0917C9625F00F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  716. 7D9B6B0A17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  717. 7D9B6B0B17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  718. 7D9B6B0C17C9626000F9425D /* sl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = sl; path = "sl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  719. 7D9CB9DA1A4C55EF00BB74B4 /* VLCPlaybackNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlaybackNavigationController.h; path = Sources/VLCPlaybackNavigationController.h; sourceTree = SOURCE_ROOT; };
  720. 7D9CB9DB1A4C55EF00BB74B4 /* VLCPlaybackNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlaybackNavigationController.m; path = Sources/VLCPlaybackNavigationController.m; sourceTree = SOURCE_ROOT; };
  721. 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SourceCodePro-Regular.ttf"; sourceTree = "<group>"; };
  722. 7DB2486E18EA1D6D0097ADD2 /* ro */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ro; path = ro.lproj/Localizable.strings; sourceTree = "<group>"; };
  723. 7DB2486F18EA1D6D0097ADD2 /* ro */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ro; path = "ro.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  724. 7DB2487018EA1D6D0097ADD2 /* ro */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ro; path = "ro.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  725. 7DB2487118EA1D6E0097ADD2 /* ro */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ro; path = "ro.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  726. 7DB2487218EA1D6E0097ADD2 /* ro */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ro; path = "ro.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  727. 7DB638AA185BC0890003887C /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = "vlc-ios/Images.xcassets"; sourceTree = "<group>"; };
  728. 7DB847D51A5871570002DC30 /* VLCOneDriveObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCOneDriveObject.h; path = Sources/VLCOneDriveObject.h; sourceTree = SOURCE_ROOT; };
  729. 7DB847D61A5871570002DC30 /* VLCOneDriveObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCOneDriveObject.m; path = Sources/VLCOneDriveObject.m; sourceTree = SOURCE_ROOT; };
  730. 7DBBF180183AB3B80009A339 /* VLCAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCAppDelegate.h; path = Sources/VLCAppDelegate.h; sourceTree = SOURCE_ROOT; };
  731. 7DBBF181183AB3B80009A339 /* VLCAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCAppDelegate.m; path = Sources/VLCAppDelegate.m; sourceTree = SOURCE_ROOT; };
  732. 7DBBF185183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCCloudStorageTableViewCell~ipad.xib"; path = "Resources/VLCCloudStorageTableViewCell~ipad.xib"; sourceTree = SOURCE_ROOT; };
  733. 7DBBF186183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCCloudStorageTableViewCell~iphone.xib"; path = "Resources/VLCCloudStorageTableViewCell~iphone.xib"; sourceTree = SOURCE_ROOT; };
  734. 7DBBF187183AB4300009A339 /* VLCDownloadViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCDownloadViewController.xib; path = Resources/VLCDownloadViewController.xib; sourceTree = SOURCE_ROOT; };
  735. 7DBBF188183AB4300009A339 /* VLCCloudStorageTableViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCCloudStorageTableViewController.xib; path = Resources/VLCCloudStorageTableViewController.xib; sourceTree = SOURCE_ROOT; };
  736. 7DBBF189183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCEmptyLibraryView~ipad.xib"; path = "Resources/VLCEmptyLibraryView~ipad.xib"; sourceTree = SOURCE_ROOT; };
  737. 7DBBF18A183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCEmptyLibraryView~iphone.xib"; path = "Resources/VLCEmptyLibraryView~iphone.xib"; sourceTree = SOURCE_ROOT; };
  738. 7DBBF18B183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCFuturePlaylistCollectionViewCell.xib; path = Resources/VLCFuturePlaylistCollectionViewCell.xib; sourceTree = SOURCE_ROOT; };
  739. 7DBBF18C183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCFuturePlaylistTableViewCell.xib; path = Resources/VLCFuturePlaylistTableViewCell.xib; sourceTree = SOURCE_ROOT; };
  740. 7DBBF18E183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCLocalNetworkListCell~ipad.xib"; path = "Resources/VLCLocalNetworkListCell~ipad.xib"; sourceTree = SOURCE_ROOT; };
  741. 7DBBF18F183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCLocalNetworkListCell~iphone.xib"; path = "Resources/VLCLocalNetworkListCell~iphone.xib"; sourceTree = SOURCE_ROOT; };
  742. 7DBBF190183AB4300009A339 /* VLCMovieViewController~ipad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCMovieViewController~ipad.xib"; path = "Resources/VLCMovieViewController~ipad.xib"; sourceTree = SOURCE_ROOT; };
  743. 7DBBF191183AB4300009A339 /* VLCMovieViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = "VLCMovieViewController~iphone.xib"; path = "Resources/VLCMovieViewController~iphone.xib"; sourceTree = SOURCE_ROOT; };
  744. 7DBBF192183AB4300009A339 /* VLCNetworkLoginViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCNetworkLoginViewController.xib; path = Resources/VLCNetworkLoginViewController.xib; sourceTree = SOURCE_ROOT; };
  745. 7DBBF193183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCOpenNetworkStreamViewController.xib; path = Resources/VLCOpenNetworkStreamViewController.xib; sourceTree = SOURCE_ROOT; };
  746. 7DBBF194183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlaylistCollectionViewCell.xib; path = Resources/VLCPlaylistCollectionViewCell.xib; sourceTree = SOURCE_ROOT; };
  747. 7DBBF196183AB4300009A339 /* VLCPlaylistTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCPlaylistTableViewCell.xib; path = Resources/VLCPlaylistTableViewCell.xib; sourceTree = SOURCE_ROOT; };
  748. 7DBBF197183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCWiFiUploadTableViewCell.xib; path = Resources/VLCWiFiUploadTableViewCell.xib; sourceTree = SOURCE_ROOT; };
  749. 7DBC85611A50B8860098D388 /* LiveAuthDialog_iPad.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = LiveAuthDialog_iPad.xib; path = ImportedSources/OneDrive/src/LiveSDK/Library/Internal/LiveAuthDialog_iPad.xib; sourceTree = SOURCE_ROOT; };
  750. 7DBC85621A50B8860098D388 /* LiveAuthDialog_iPhone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = LiveAuthDialog_iPhone.xib; path = ImportedSources/OneDrive/src/LiveSDK/Library/Internal/LiveAuthDialog_iPhone.xib; sourceTree = SOURCE_ROOT; };
  751. 7DC0C0541A4D78A4000EE359 /* DropboxSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = DropboxSDK.framework; path = ImportedSources/Dropbox/DropboxSDK.framework; sourceTree = "<group>"; };
  752. 7DC19ADC1868C7BB00810BF7 /* VLCFirstStepsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCFirstStepsViewController.h; path = Sources/VLCFirstStepsViewController.h; sourceTree = SOURCE_ROOT; };
  753. 7DC19ADD1868C7BB00810BF7 /* VLCFirstStepsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCFirstStepsViewController.m; path = Sources/VLCFirstStepsViewController.m; sourceTree = SOURCE_ROOT; };
  754. 7DC19AE11868C8EC00810BF7 /* VLCFirstStepsFirstPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCFirstStepsFirstPageViewController.h; path = Sources/VLCFirstStepsFirstPageViewController.h; sourceTree = SOURCE_ROOT; };
  755. 7DC19AE21868C8EC00810BF7 /* VLCFirstStepsFirstPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCFirstStepsFirstPageViewController.m; path = Sources/VLCFirstStepsFirstPageViewController.m; sourceTree = SOURCE_ROOT; };
  756. 7DC19B021868D1C400810BF7 /* VLCFirstStepsFifthPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCFirstStepsFifthPageViewController.h; path = Sources/VLCFirstStepsFifthPageViewController.h; sourceTree = SOURCE_ROOT; };
  757. 7DC19B031868D1C400810BF7 /* VLCFirstStepsFifthPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCFirstStepsFifthPageViewController.m; path = Sources/VLCFirstStepsFifthPageViewController.m; sourceTree = SOURCE_ROOT; };
  758. 7DC19B091868D21800810BF7 /* VLCFirstStepsSixthPageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCFirstStepsSixthPageViewController.h; path = Sources/VLCFirstStepsSixthPageViewController.h; sourceTree = SOURCE_ROOT; };
  759. 7DC19B0A1868D21800810BF7 /* VLCFirstStepsSixthPageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCFirstStepsSixthPageViewController.m; path = Sources/VLCFirstStepsSixthPageViewController.m; sourceTree = SOURCE_ROOT; };
  760. 7DC222771773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/Localizable.strings; sourceTree = "<group>"; };
  761. 7DC222781773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  762. 7DC222791773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  763. 7DC2227A1773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  764. 7DC2227B1773AB0900371B5C /* es */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = es; path = "es.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  765. 7DC72D6117B7ED24008A26D0 /* WhiteRaccoon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WhiteRaccoon.h; path = ImportedSources/WhiteRaccoon/WhiteRaccoon.h; sourceTree = SOURCE_ROOT; };
  766. 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WhiteRaccoon.m; path = ImportedSources/WhiteRaccoon/WhiteRaccoon.m; sourceTree = SOURCE_ROOT; };
  767. 7DC87AEF17413634009DC250 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = "<group>"; };
  768. 7DC87AF017413A17009DC250 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = "<group>"; };
  769. 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "OpenSans-Regular.ttf"; sourceTree = "<group>"; };
  770. 7DD32D22194F1946002510A9 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Localizable.strings"; sourceTree = "<group>"; };
  771. 7DD32D23194F1946002510A9 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hant"; path = "zh-Hant.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  772. 7DD32D24194F1946002510A9 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hant"; path = "zh-Hant.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  773. 7DD32D25194F1946002510A9 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hant"; path = "zh-Hant.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  774. 7DD32D26194F1946002510A9 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "zh-Hant"; path = "zh-Hant.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  775. 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
  776. 7DE1862A175BA9A5006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  777. 7DE1862D175BA9A9006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  778. 7DE18630175BA9AC006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  779. 7DE18633175BA9AF006C0173 /* en */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = en; path = "en.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  780. 7DE18635175BA9EB006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  781. 7DE18636175BA9F4006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  782. 7DE18637175BA9F9006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  783. 7DE18638175BA9FC006C0173 /* ru */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ru; path = "ru.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  784. 7DE18639175BAEAF006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  785. 7DE1863A175BAEB0006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  786. 7DE1863B175BAEB0006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  787. 7DE1863C175BAEB1006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  788. 7DE1863D175BAEB5006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  789. 7DE1863E175BAEB6006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  790. 7DE1863F175BAEB7006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  791. 7DE18640175BAEB7006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  792. 7DE18641175BAEBA006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  793. 7DE18642175BAEBB006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  794. 7DE18643175BAEBC006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  795. 7DE18644175BAEBD006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  796. 7DE18645175BAEBF006C0173 /* de */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = de; path = "de.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  797. 7DE18646175BAEC0006C0173 /* fr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = fr; path = "fr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  798. 7DE18647175BAEC1006C0173 /* it */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = it; path = "it.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  799. 7DE18648175BAEC2006C0173 /* ja */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ja; path = "ja.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  800. 7DE56C181AD93F9100E8CA00 /* VLCPlaybackController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlaybackController.h; path = Sources/VLCPlaybackController.h; sourceTree = SOURCE_ROOT; };
  801. 7DE56C191AD93F9100E8CA00 /* VLCPlaybackController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlaybackController.m; path = Sources/VLCPlaybackController.m; sourceTree = SOURCE_ROOT; };
  802. 7DEB3B5F17647DE30038FC70 /* iTunesArtwork@2x */ = {isa = PBXFileReference; lastKnownFileType = file; path = "iTunesArtwork@2x"; sourceTree = "<group>"; };
  803. 7DF04F491961F2B8004A5429 /* web-download-fixed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "web-download-fixed.png"; path = "Resources/web-download-fixed.png"; sourceTree = SOURCE_ROOT; };
  804. 7DF04F4A1961F2B8004A5429 /* web-download.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "web-download.png"; path = "Resources/web-download.png"; sourceTree = SOURCE_ROOT; };
  805. 7DF04F4B1961F2B8004A5429 /* web-open-fixed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "web-open-fixed.png"; path = "Resources/web-open-fixed.png"; sourceTree = SOURCE_ROOT; };
  806. 7DF04F4C1961F2B8004A5429 /* web-open.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "web-open.png"; path = "Resources/web-open.png"; sourceTree = SOURCE_ROOT; };
  807. 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  808. 7DF7E790175F47DC0018858D /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; };
  809. 7DF9352D1958AB0600E60FD4 /* UIColor+Presets.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIColor+Presets.h"; path = "Sources/UIColor+Presets.h"; sourceTree = SOURCE_ROOT; };
  810. 7DF9352E1958AB0600E60FD4 /* UIColor+Presets.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIColor+Presets.m"; path = "Sources/UIColor+Presets.m"; sourceTree = SOURCE_ROOT; };
  811. 8F91EC77195CEC7900F5BCBA /* VLCOpenInActivity.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCOpenInActivity.h; path = Sources/VLCOpenInActivity.h; sourceTree = SOURCE_ROOT; };
  812. 8F91EC78195CEC7900F5BCBA /* VLCOpenInActivity.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCOpenInActivity.m; path = Sources/VLCOpenInActivity.m; sourceTree = SOURCE_ROOT; };
  813. 8F91EC7E195E1DAB00F5BCBA /* AssetsLibrary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = System/Library/Frameworks/AssetsLibrary.framework; sourceTree = SDKROOT; };
  814. 9B088306183D7BEC004B5C2A /* VLCCloudStorageTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCCloudStorageTableViewController.h; path = Sources/VLCCloudStorageTableViewController.h; sourceTree = SOURCE_ROOT; };
  815. 9B088307183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCCloudStorageTableViewController.m; path = Sources/VLCCloudStorageTableViewController.m; sourceTree = SOURCE_ROOT; };
  816. 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; };
  817. 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; };
  818. 9B9231C3185A703700F89498 /* VLCFutureNetworkLoginViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = VLCFutureNetworkLoginViewController.xib; path = Resources/VLCFutureNetworkLoginViewController.xib; sourceTree = SOURCE_ROOT; };
  819. 9BADAF43185FBD9D00108BD8 /* VLCFrostedGlasView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCFrostedGlasView.h; path = Sources/VLCFrostedGlasView.h; sourceTree = SOURCE_ROOT; };
  820. 9BADAF44185FBD9D00108BD8 /* VLCFrostedGlasView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCFrostedGlasView.m; path = Sources/VLCFrostedGlasView.m; sourceTree = SOURCE_ROOT; };
  821. A7035BBD174519600057DFA7 /* iTunesArtwork */ = {isa = PBXFileReference; lastKnownFileType = file; path = iTunesArtwork; sourceTree = "<group>"; };
  822. A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libMediaLibraryKit.a; path = External/MediaLibraryKit/libMediaLibraryKit.a; sourceTree = "<group>"; };
  823. A79246C7170F11DF0036AAF2 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  824. A79246C9170F11E40036AAF2 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = "<group>"; };
  825. CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libMobileVLCKit.a; path = External/MobileVLCKit/libMobileVLCKit.a; sourceTree = "<group>"; };
  826. CC1BBC451704938300A20CBF /* libiconv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.dylib; path = usr/lib/libiconv.dylib; sourceTree = SDKROOT; };
  827. CC1BBC471704938B00A20CBF /* libstdc++.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libstdc++.dylib"; path = "usr/lib/libstdc++.dylib"; sourceTree = SDKROOT; };
  828. CC1BBC491704939300A20CBF /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
  829. CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libsqlite3.dylib; path = usr/lib/libsqlite3.dylib; sourceTree = SDKROOT; };
  830. CC1BBC4D170493A300A20CBF /* libbz2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libbz2.dylib; path = usr/lib/libbz2.dylib; sourceTree = SDKROOT; };
  831. CC1BBC4F170493AA00A20CBF /* libxml2.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libxml2.dylib; path = usr/lib/libxml2.dylib; sourceTree = SDKROOT; };
  832. CC1BBC51170493B100A20CBF /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
  833. CC1BBC53170493B800A20CBF /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  834. CC1BBC55170493C100A20CBF /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  835. CC1BBC57170493E100A20CBF /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
  836. CC75BE3A17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = "<group>"; };
  837. CC75BE3B17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  838. CC75BE3C17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  839. CC75BE3D17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  840. CC75BE3E17DF4BBD00FAC19D /* ar */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ar; path = "ar.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  841. CC75BE3F17DF744400FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = "<group>"; };
  842. CC75BE4017DF744400FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  843. CC75BE4117DF744500FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  844. CC75BE4217DF744500FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  845. CC75BE4317DF744500FAC19D /* ko */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ko; path = "ko.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  846. CC87147917A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = mr; path = mr.lproj/Localizable.strings; sourceTree = "<group>"; };
  847. CC87147A17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  848. CC87147B17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  849. CC87147C17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  850. CC87147D17A56C05003C7383 /* mr */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = mr; path = "mr.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  851. CC87147E17A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Localizable.strings; sourceTree = "<group>"; };
  852. CC87147F17A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  853. CC87148017A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  854. CC87148117A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  855. CC87148217A56C61003C7383 /* gl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = gl; path = "gl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  856. CC87148317A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/Localizable.strings; sourceTree = "<group>"; };
  857. CC87148417A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  858. CC87148517A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  859. CC87148617A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  860. CC87148717A56C85003C7383 /* ca */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ca; path = "ca.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  861. CCAF837E17DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = "<group>"; };
  862. CCAF837F17DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread@2x~ipad.png"; sourceTree = "<group>"; };
  863. CCAF838017DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread@2x~iphone.png"; sourceTree = "<group>"; };
  864. CCAF838117DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread~ipad.png"; sourceTree = "<group>"; };
  865. CCAF838217DE46D800E3578F /* pl */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = pl; path = "pl.lproj/badgeUnread~iphone.png"; sourceTree = "<group>"; };
  866. CCE2A22D17A5859E00D9EAAD /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
  867. DAF8927B0BE9C328466C0EA7 /* libPods-vlc-ios.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-vlc-ios.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  868. DD02C2FC1ACACF400026EFEE /* VLC for iOS WatchKit Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = "VLC for iOS WatchKit Extension.entitlements"; sourceTree = "<group>"; };
  869. DD02C2FE1ACAE7A10026EFEE /* libMediaLibraryKit.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libMediaLibraryKit.a; path = External/MediaLibraryKit/libMediaLibraryKit.a; sourceTree = "<group>"; };
  870. DD02C3001ACAE9690026EFEE /* libMobileVLCKit.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libMobileVLCKit.a; path = External/MobileVLCKit/libMobileVLCKit.a; sourceTree = "<group>"; };
  871. DD02C30A1ACAF0370026EFEE /* libstdc++.6.0.9.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = "libstdc++.6.0.9.dylib"; path = "usr/lib/libstdc++.6.0.9.dylib"; sourceTree = SDKROOT; };
  872. DD02C30C1ACAF4A50026EFEE /* VLCRowController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCRowController.h; sourceTree = "<group>"; };
  873. DD02C30D1ACAF4A50026EFEE /* VLCRowController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCRowController.m; sourceTree = "<group>"; };
  874. DD1542101ACFF76400AFD4EC /* VLCWatchTableController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCWatchTableController.h; sourceTree = "<group>"; };
  875. DD1542111ACFF76400AFD4EC /* VLCWatchTableController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCWatchTableController.m; sourceTree = "<group>"; };
  876. DD3EA62F1AF50CFE007FF096 /* VLCWatchMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCWatchMessage.h; sourceTree = "<group>"; };
  877. DD3EA6301AF50CFE007FF096 /* VLCWatchMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCWatchMessage.m; sourceTree = "<group>"; };
  878. DD510B6E1B14E564003BA71C /* VLCPlayerDisplayController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCPlayerDisplayController.h; path = Sources/VLCPlayerDisplayController.h; sourceTree = SOURCE_ROOT; };
  879. DD510B6F1B14E564003BA71C /* VLCPlayerDisplayController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCPlayerDisplayController.m; path = Sources/VLCPlayerDisplayController.m; sourceTree = SOURCE_ROOT; };
  880. DD6FA7AE1ACD641C006DEB2E /* VLCNowPlayingInterfaceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCNowPlayingInterfaceController.h; sourceTree = "<group>"; };
  881. DD6FA7AF1ACD641C006DEB2E /* VLCNowPlayingInterfaceController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCNowPlayingInterfaceController.m; sourceTree = "<group>"; };
  882. DD7110EE1AF38B2B00854776 /* MLMediaLibrary+playlist.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MLMediaLibrary+playlist.h"; sourceTree = "<group>"; };
  883. DD7110EF1AF38B2B00854776 /* MLMediaLibrary+playlist.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MLMediaLibrary+playlist.m"; sourceTree = "<group>"; };
  884. DD7635D41AF262D100240CB8 /* NSManagedObjectContext+refreshAll.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSManagedObjectContext+refreshAll.h"; sourceTree = "<group>"; };
  885. DD7635D51AF262D100240CB8 /* NSManagedObjectContext+refreshAll.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSManagedObjectContext+refreshAll.m"; sourceTree = "<group>"; };
  886. DD8F842F1B00EB3B0009138A /* VLCPlaybackController+MediaLibrary.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "VLCPlaybackController+MediaLibrary.h"; path = "Sources/VLCPlaybackController+MediaLibrary.h"; sourceTree = SOURCE_ROOT; };
  887. DD8F84301B00EB3B0009138A /* VLCPlaybackController+MediaLibrary.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "VLCPlaybackController+MediaLibrary.m"; path = "Sources/VLCPlaybackController+MediaLibrary.m"; sourceTree = SOURCE_ROOT; };
  888. DDACEB541ADAD11300735484 /* WKInterfaceObject+VLCProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "WKInterfaceObject+VLCProgress.h"; sourceTree = "<group>"; };
  889. DDACEB551ADAD11300735484 /* WKInterfaceObject+VLCProgress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "WKInterfaceObject+VLCProgress.m"; sourceTree = "<group>"; };
  890. DDB959411AFBB30500BB8CFF /* MappingModel_2_5_to_2_6.xcmappingmodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcmappingmodel; name = MappingModel_2_5_to_2_6.xcmappingmodel; path = ImportedSources/MediaLibraryKit/MappingModel_2_5_to_2_6.xcmappingmodel; sourceTree = "<group>"; };
  891. DDC10BE21AEE8EA700890DC3 /* VLCTimeNavigationTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCTimeNavigationTitleView.h; path = Sources/VLCTimeNavigationTitleView.h; sourceTree = SOURCE_ROOT; };
  892. DDC10BE31AEE8EA700890DC3 /* VLCTimeNavigationTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCTimeNavigationTitleView.m; path = Sources/VLCTimeNavigationTitleView.m; sourceTree = SOURCE_ROOT; };
  893. DDC7BFB01B03829100160878 /* MediaLibrary-2.1.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "MediaLibrary-2.1.xcdatamodel"; sourceTree = "<group>"; };
  894. DDC7BFB11B03829100160878 /* MediaLibrary-2.5.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "MediaLibrary-2.5.xcdatamodel"; sourceTree = "<group>"; };
  895. DDC7BFB21B03829100160878 /* MediaLibrary-2.6.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "MediaLibrary-2.6.xcdatamodel"; sourceTree = "<group>"; };
  896. DDE4906A1ACDB63F00B1B5E3 /* VLCNotificationRelay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCNotificationRelay.h; sourceTree = "<group>"; };
  897. DDE4906B1ACDB63F00B1B5E3 /* VLCNotificationRelay.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCNotificationRelay.m; sourceTree = "<group>"; };
  898. DDE4906E1ACE8BBC00B1B5E3 /* VLCDetailInterfaceController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VLCDetailInterfaceController.h; sourceTree = "<group>"; };
  899. DDE4906F1ACE8BBC00B1B5E3 /* VLCDetailInterfaceController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VLCDetailInterfaceController.m; sourceTree = "<group>"; };
  900. DDE490711ACE964200B1B5E3 /* VLCBaseInterfaceController.h */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = VLCBaseInterfaceController.h; sourceTree = "<group>"; tabWidth = 4; usesTabs = 0; wrapsLines = 1; };
  901. DDE490721ACE964200B1B5E3 /* VLCBaseInterfaceController.m */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = sourcecode.c.objc; path = VLCBaseInterfaceController.m; sourceTree = "<group>"; tabWidth = 4; usesTabs = 0; wrapsLines = 1; };
  902. DDF157B31ACB169B00AAFBC6 /* WatchKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WatchKit.framework; path = System/Library/Frameworks/WatchKit.framework; sourceTree = SDKROOT; };
  903. E09EACF57CDD22ABAE66CDD0 /* Pods-vlc-ios.distribution.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-vlc-ios.distribution.xcconfig"; path = "Pods/Target Support Files/Pods-vlc-ios/Pods-vlc-ios.distribution.xcconfig"; sourceTree = "<group>"; };
  904. E0C04F931A25B4410080331A /* VLCDocumentPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VLCDocumentPickerController.h; path = Sources/VLCDocumentPickerController.h; sourceTree = SOURCE_ROOT; };
  905. E0C04F941A25B4410080331A /* VLCDocumentPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VLCDocumentPickerController.m; path = Sources/VLCDocumentPickerController.m; sourceTree = SOURCE_ROOT; };
  906. /* End PBXFileReference section */
  907. /* Begin PBXFrameworksBuildPhase section */
  908. 4173AE9D1ABF1B850004101D /* Frameworks */ = {
  909. isa = PBXFrameworksBuildPhase;
  910. buildActionMask = 2147483647;
  911. files = (
  912. DDF157B51ACB16E500AAFBC6 /* AudioToolbox.framework in Frameworks */,
  913. DDF157B41ACB169B00AAFBC6 /* WatchKit.framework in Frameworks */,
  914. DDF157B21ACB169600AAFBC6 /* CoreData.framework in Frameworks */,
  915. DD02C30B1ACAF0370026EFEE /* libstdc++.6.0.9.dylib in Frameworks */,
  916. DD02C3071ACAEC690026EFEE /* libbz2.dylib in Frameworks */,
  917. DD02C3061ACAEC5F0026EFEE /* libz.dylib in Frameworks */,
  918. DD02C3051ACAEC560026EFEE /* libxml2.dylib in Frameworks */,
  919. DD02C3041ACAEB550026EFEE /* libstdc++.dylib in Frameworks */,
  920. DD02C3031ACAEB050026EFEE /* libiconv.dylib in Frameworks */,
  921. DD02C3011ACAE9690026EFEE /* libMobileVLCKit.a in Frameworks */,
  922. DD02C2FF1ACAE7A10026EFEE /* libMediaLibraryKit.a in Frameworks */,
  923. );
  924. runOnlyForDeploymentPostprocessing = 0;
  925. };
  926. 7D94FCD816DE7D1000F2623B /* Frameworks */ = {
  927. isa = PBXFrameworksBuildPhase;
  928. buildActionMask = 2147483647;
  929. files = (
  930. 7D298F441AD5827E00A0BF68 /* WatchKit.framework in Frameworks */,
  931. 418FF4B11A0EC1D5005FE808 /* libPods-vlc-ios.a in Frameworks */,
  932. 8F91EC7F195E1DAB00F5BCBA /* AssetsLibrary.framework in Frameworks */,
  933. 7D15168B194773630086FB8C /* MobileCoreServices.framework in Frameworks */,
  934. 7DC0C0551A4D78A4000EE359 /* DropboxSDK.framework in Frameworks */,
  935. 7D168F7118D4A21B003FAF59 /* Accelerate.framework in Frameworks */,
  936. CCE2A22E17A5859E00D9EAAD /* CoreText.framework in Frameworks */,
  937. 7DF7CA0717650C2A00C61739 /* AVFoundation.framework in Frameworks */,
  938. 7D1052E61A4DC5FF00295F08 /* LiveSDK.framework in Frameworks */,
  939. 7D897895185E14A7009BAB5D /* libGTLTouchStaticLib.a in Frameworks */,
  940. 7DF7E791175F47DC0018858D /* MediaPlayer.framework in Frameworks */,
  941. 7D7B17F11AD8052B003BF3D7 /* libz.dylib in Frameworks */,
  942. 7D6B08FA174D716200A05173 /* MessageUI.framework in Frameworks */,
  943. 7D3EB014174A353E002062C2 /* SystemConfiguration.framework in Frameworks */,
  944. 2915544317490D4A00B86CAD /* Security.framework in Frameworks */,
  945. 7DDD0429172D98E5005A7B10 /* CFNetwork.framework in Frameworks */,
  946. CC1BBC58170493E100A20CBF /* CoreData.framework in Frameworks */,
  947. CC1BBC56170493C100A20CBF /* QuartzCore.framework in Frameworks */,
  948. CC1BBC54170493B800A20CBF /* AudioToolbox.framework in Frameworks */,
  949. CC1BBC52170493B100A20CBF /* OpenGLES.framework in Frameworks */,
  950. CC1BBC50170493AA00A20CBF /* libxml2.dylib in Frameworks */,
  951. CC1BBC4E170493A300A20CBF /* libbz2.dylib in Frameworks */,
  952. CC1BBC4C1704939B00A20CBF /* libsqlite3.dylib in Frameworks */,
  953. CC1BBC481704938B00A20CBF /* libstdc++.dylib in Frameworks */,
  954. CC1BBC461704938300A20CBF /* libiconv.dylib in Frameworks */,
  955. CC1BBC3F1704934300A20CBF /* libMobileVLCKit.a in Frameworks */,
  956. 7D94FCDF16DE7D1000F2623B /* UIKit.framework in Frameworks */,
  957. 7D94FCE116DE7D1000F2623B /* Foundation.framework in Frameworks */,
  958. 7D94FCE316DE7D1000F2623B /* CoreGraphics.framework in Frameworks */,
  959. A7924696170F0BA90036AAF2 /* libMediaLibraryKit.a in Frameworks */,
  960. 7D7B17F01AD8052B003BF3D7 /* libc++.dylib in Frameworks */,
  961. );
  962. runOnlyForDeploymentPostprocessing = 0;
  963. };
  964. /* End PBXFrameworksBuildPhase section */
  965. /* Begin PBXGroup section */
  966. 29125E5317492219003F03E5 /* web */ = {
  967. isa = PBXGroup;
  968. children = (
  969. 26F1BFCF1A770408001DF30C /* libMediaVLC.xml */,
  970. 7D32B383185E293D006CA474 /* Raleway.woff */,
  971. 7AC8629E1765E90C0011611A /* jquery-1.10.1.min.js */,
  972. 7AC8629F1765E90C0011611A /* jquery.fileupload.js */,
  973. 7AC862A01765E90C0011611A /* jquery.iframe-transport.js */,
  974. 7AC862A11765E90C0011611A /* jquery.ui.widget.js */,
  975. 7AC8629B1765DC560011611A /* style.css */,
  976. 7D00161A17704DAC00649F27 /* main.js */,
  977. 29125E5417492219003F03E5 /* index.html */,
  978. 7DF04F491961F2B8004A5429 /* web-download-fixed.png */,
  979. 7DF04F4A1961F2B8004A5429 /* web-download.png */,
  980. 7DF04F4B1961F2B8004A5429 /* web-open-fixed.png */,
  981. 7DF04F4C1961F2B8004A5429 /* web-open.png */,
  982. );
  983. path = web;
  984. sourceTree = "<group>";
  985. };
  986. 291553E817490A0400B86CAD /* CocoaHTTPServer */ = {
  987. isa = PBXGroup;
  988. children = (
  989. 2915542C17490B9C00B86CAD /* Responses */,
  990. 2915543917490B9C00B86CAD /* WebSocket.h */,
  991. 2915543A17490B9C00B86CAD /* WebSocket.m */,
  992. 2915540B17490A9C00B86CAD /* CocoaAsyncSocket */,
  993. 2915540F17490A9C00B86CAD /* CocoaLumberjack */,
  994. 291553E917490A1E00B86CAD /* Categories */,
  995. 291553F017490A1E00B86CAD /* HTTPAuthenticationRequest.h */,
  996. 291553F117490A1E00B86CAD /* HTTPAuthenticationRequest.m */,
  997. 291553F217490A1E00B86CAD /* HTTPConnection.h */,
  998. 291553F317490A1E00B86CAD /* HTTPConnection.m */,
  999. 291553F417490A1E00B86CAD /* HTTPLogging.h */,
  1000. 291553F517490A1E00B86CAD /* HTTPMessage.h */,
  1001. 291553F617490A1E00B86CAD /* HTTPMessage.m */,
  1002. 291553F717490A1E00B86CAD /* HTTPResponse.h */,
  1003. 291553F817490A1E00B86CAD /* HTTPServer.h */,
  1004. 291553F917490A1E00B86CAD /* HTTPServer.m */,
  1005. 291553FA17490A1E00B86CAD /* Mime */,
  1006. );
  1007. name = CocoaHTTPServer;
  1008. sourceTree = "<group>";
  1009. };
  1010. 291553E917490A1E00B86CAD /* Categories */ = {
  1011. isa = PBXGroup;
  1012. children = (
  1013. 291553EA17490A1E00B86CAD /* DDData.h */,
  1014. 291553EB17490A1E00B86CAD /* DDData.m */,
  1015. 291553EC17490A1E00B86CAD /* DDNumber.h */,
  1016. 291553ED17490A1E00B86CAD /* DDNumber.m */,
  1017. 291553EE17490A1E00B86CAD /* DDRange.h */,
  1018. 291553EF17490A1E00B86CAD /* DDRange.m */,
  1019. );
  1020. name = Categories;
  1021. path = ImportedSources/CocoaHTTPServer/Core/Categories;
  1022. sourceTree = SOURCE_ROOT;
  1023. };
  1024. 291553FA17490A1E00B86CAD /* Mime */ = {
  1025. isa = PBXGroup;
  1026. children = (
  1027. 291553FB17490A1E00B86CAD /* MultipartFormDataParser.h */,
  1028. 291553FC17490A1E00B86CAD /* MultipartFormDataParser.m */,
  1029. 291553FD17490A1E00B86CAD /* MultipartMessageHeader.h */,
  1030. 291553FE17490A1E00B86CAD /* MultipartMessageHeader.m */,
  1031. 291553FF17490A1E00B86CAD /* MultipartMessageHeaderField.h */,
  1032. 2915540017490A1E00B86CAD /* MultipartMessageHeaderField.m */,
  1033. );
  1034. name = Mime;
  1035. path = ImportedSources/CocoaHTTPServer/Core/Mime;
  1036. sourceTree = SOURCE_ROOT;
  1037. };
  1038. 2915540B17490A9C00B86CAD /* CocoaAsyncSocket */ = {
  1039. isa = PBXGroup;
  1040. children = (
  1041. 2915540D17490A9C00B86CAD /* GCDAsyncSocket.h */,
  1042. 2915540E17490A9C00B86CAD /* GCDAsyncSocket.m */,
  1043. );
  1044. name = CocoaAsyncSocket;
  1045. path = ImportedSources/CocoaHTTPServer/Vendor/CocoaAsyncSocket;
  1046. sourceTree = SOURCE_ROOT;
  1047. };
  1048. 2915540F17490A9C00B86CAD /* CocoaLumberjack */ = {
  1049. isa = PBXGroup;
  1050. children = (
  1051. 2915541017490A9C00B86CAD /* About.txt */,
  1052. 2915541117490A9C00B86CAD /* DDAbstractDatabaseLogger.h */,
  1053. 2915541217490A9C00B86CAD /* DDAbstractDatabaseLogger.m */,
  1054. 2915541317490A9C00B86CAD /* DDASLLogger.h */,
  1055. 2915541417490A9C00B86CAD /* DDASLLogger.m */,
  1056. 2915541517490A9C00B86CAD /* DDFileLogger.h */,
  1057. 2915541617490A9C00B86CAD /* DDFileLogger.m */,
  1058. 2915541717490A9C00B86CAD /* DDLog.h */,
  1059. 2915541817490A9C00B86CAD /* DDLog.m */,
  1060. 2915541917490A9C00B86CAD /* DDTTYLogger.h */,
  1061. 2915541A17490A9C00B86CAD /* DDTTYLogger.m */,
  1062. 2915541B17490A9C00B86CAD /* Extensions */,
  1063. );
  1064. name = CocoaLumberjack;
  1065. path = ImportedSources/CocoaHTTPServer/Vendor/CocoaLumberjack;
  1066. sourceTree = SOURCE_ROOT;
  1067. };
  1068. 2915541B17490A9C00B86CAD /* Extensions */ = {
  1069. isa = PBXGroup;
  1070. children = (
  1071. 2915541C17490A9C00B86CAD /* ContextFilterLogFormatter.h */,
  1072. 2915541D17490A9C00B86CAD /* ContextFilterLogFormatter.m */,
  1073. 2915541E17490A9C00B86CAD /* DispatchQueueLogFormatter.h */,
  1074. 2915541F17490A9C00B86CAD /* DispatchQueueLogFormatter.m */,
  1075. 2915542017490A9C00B86CAD /* README.txt */,
  1076. );
  1077. path = Extensions;
  1078. sourceTree = "<group>";
  1079. };
  1080. 2915542C17490B9C00B86CAD /* Responses */ = {
  1081. isa = PBXGroup;
  1082. children = (
  1083. 2915542D17490B9C00B86CAD /* HTTPAsyncFileResponse.h */,
  1084. 2915542E17490B9C00B86CAD /* HTTPAsyncFileResponse.m */,
  1085. 2915542F17490B9C00B86CAD /* HTTPDataResponse.h */,
  1086. 2915543017490B9C00B86CAD /* HTTPDataResponse.m */,
  1087. 2915543117490B9C00B86CAD /* HTTPDynamicFileResponse.h */,
  1088. 2915543217490B9C00B86CAD /* HTTPDynamicFileResponse.m */,
  1089. 2915543317490B9C00B86CAD /* HTTPErrorResponse.h */,
  1090. 2915543417490B9C00B86CAD /* HTTPErrorResponse.m */,
  1091. 2915543517490B9C00B86CAD /* HTTPFileResponse.h */,
  1092. 2915543617490B9C00B86CAD /* HTTPFileResponse.m */,
  1093. 2915543717490B9C00B86CAD /* HTTPRedirectResponse.h */,
  1094. 2915543817490B9C00B86CAD /* HTTPRedirectResponse.m */,
  1095. );
  1096. name = Responses;
  1097. path = ImportedSources/CocoaHTTPServer/Core/Responses;
  1098. sourceTree = SOURCE_ROOT;
  1099. };
  1100. 4171D35518A2D90200A16EF9 /* LXReorderableCollectionViewFlowLayout */ = {
  1101. isa = PBXGroup;
  1102. children = (
  1103. 4171D35618A2D90200A16EF9 /* LXReorderableCollectionViewFlowLayout.h */,
  1104. 4171D35718A2D90200A16EF9 /* LXReorderableCollectionViewFlowLayout.m */,
  1105. );
  1106. name = LXReorderableCollectionViewFlowLayout;
  1107. path = ImportedSources/LXReorderableCollectionViewFlowLayout/LXReorderableCollectionViewFlowLayout;
  1108. sourceTree = SOURCE_ROOT;
  1109. };
  1110. 4173AEA11ABF1B850004101D /* VLC for iOS WatchKit Extension */ = {
  1111. isa = PBXGroup;
  1112. children = (
  1113. DD02C2FC1ACACF400026EFEE /* VLC for iOS WatchKit Extension.entitlements */,
  1114. DD7635D41AF262D100240CB8 /* NSManagedObjectContext+refreshAll.h */,
  1115. DD7635D51AF262D100240CB8 /* NSManagedObjectContext+refreshAll.m */,
  1116. DDACEB541ADAD11300735484 /* WKInterfaceObject+VLCProgress.h */,
  1117. DDACEB551ADAD11300735484 /* WKInterfaceObject+VLCProgress.m */,
  1118. DDE4906A1ACDB63F00B1B5E3 /* VLCNotificationRelay.h */,
  1119. DDE4906B1ACDB63F00B1B5E3 /* VLCNotificationRelay.m */,
  1120. DDE490711ACE964200B1B5E3 /* VLCBaseInterfaceController.h */,
  1121. DDE490721ACE964200B1B5E3 /* VLCBaseInterfaceController.m */,
  1122. 4173AEA41ABF1B850004101D /* VLCPlaylistInterfaceController.h */,
  1123. 4173AEA51ABF1B850004101D /* VLCPlaylistInterfaceController.m */,
  1124. DD1542101ACFF76400AFD4EC /* VLCWatchTableController.h */,
  1125. DD1542111ACFF76400AFD4EC /* VLCWatchTableController.m */,
  1126. DD6FA7AE1ACD641C006DEB2E /* VLCNowPlayingInterfaceController.h */,
  1127. DD6FA7AF1ACD641C006DEB2E /* VLCNowPlayingInterfaceController.m */,
  1128. DDE4906E1ACE8BBC00B1B5E3 /* VLCDetailInterfaceController.h */,
  1129. DDE4906F1ACE8BBC00B1B5E3 /* VLCDetailInterfaceController.m */,
  1130. DD02C30C1ACAF4A50026EFEE /* VLCRowController.h */,
  1131. DD02C30D1ACAF4A50026EFEE /* VLCRowController.m */,
  1132. 7D2D4ECE1ACFFA42006A8DBD /* Localizable.strings */,
  1133. 4173AEA71ABF1B850004101D /* Images.xcassets */,
  1134. 4173AEA21ABF1B850004101D /* Supporting Files */,
  1135. );
  1136. path = "VLC for iOS WatchKit Extension";
  1137. sourceTree = "<group>";
  1138. };
  1139. 4173AEA21ABF1B850004101D /* Supporting Files */ = {
  1140. isa = PBXGroup;
  1141. children = (
  1142. 4173AEA31ABF1B850004101D /* Info.plist */,
  1143. );
  1144. name = "Supporting Files";
  1145. sourceTree = "<group>";
  1146. };
  1147. 4173AEAF1ABF1B850004101D /* VLC for iOS WatchKit App */ = {
  1148. isa = PBXGroup;
  1149. children = (
  1150. 4173AEB21ABF1B860004101D /* Interface.storyboard */,
  1151. 4173AEB51ABF1B860004101D /* Images.xcassets */,
  1152. 4173AEB01ABF1B860004101D /* Supporting Files */,
  1153. );
  1154. path = "VLC for iOS WatchKit App";
  1155. sourceTree = "<group>";
  1156. };
  1157. 4173AEB01ABF1B860004101D /* Supporting Files */ = {
  1158. isa = PBXGroup;
  1159. children = (
  1160. 4173AEB11ABF1B860004101D /* Info.plist */,
  1161. );
  1162. name = "Supporting Files";
  1163. sourceTree = "<group>";
  1164. };
  1165. 41CD69561A29D71B00E60BCE /* Box */ = {
  1166. isa = PBXGroup;
  1167. children = (
  1168. 41CD69571A29D72600E60BCE /* VLCBoxConstants.h */,
  1169. 41CD69581A29D72600E60BCE /* VLCBoxController.h */,
  1170. 41CD69591A29D72600E60BCE /* VLCBoxController.m */,
  1171. 41CD695A1A29D72600E60BCE /* VLCBoxTableViewController.h */,
  1172. 41CD695B1A29D72600E60BCE /* VLCBoxTableViewController.m */,
  1173. );
  1174. name = Box;
  1175. sourceTree = "<group>";
  1176. };
  1177. 5BC7EE378D444805CA59B5BA /* Pods */ = {
  1178. isa = PBXGroup;
  1179. children = (
  1180. 521108CBC3CAA0810AF3CBA8 /* Pods-vlc-ios.debug.xcconfig */,
  1181. 6AB5E0853B398B35369938EC /* Pods-vlc-ios.release.xcconfig */,
  1182. E09EACF57CDD22ABAE66CDD0 /* Pods-vlc-ios.distribution.xcconfig */,
  1183. );
  1184. name = Pods;
  1185. sourceTree = "<group>";
  1186. };
  1187. 7D1052EA1A4DCC1700295F08 /* OneDrive */ = {
  1188. isa = PBXGroup;
  1189. children = (
  1190. 7D1052EB1A4DCC4B00295F08 /* VLCOneDriveConstants.h */,
  1191. 7D1052E71A4DCC1100295F08 /* VLCOneDriveTableViewController.h */,
  1192. 7D1052E81A4DCC1100295F08 /* VLCOneDriveTableViewController.m */,
  1193. 7D1052EC1A4DCD1E00295F08 /* VLCOneDriveController.h */,
  1194. 7D1052ED1A4DCD1E00295F08 /* VLCOneDriveController.m */,
  1195. 7DB847D51A5871570002DC30 /* VLCOneDriveObject.h */,
  1196. 7DB847D61A5871570002DC30 /* VLCOneDriveObject.m */,
  1197. );
  1198. name = OneDrive;
  1199. sourceTree = "<group>";
  1200. };
  1201. 7D10BC661743F9AC00DA7059 /* Library View */ = {
  1202. isa = PBXGroup;
  1203. children = (
  1204. 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */,
  1205. 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */,
  1206. 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */,
  1207. 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */,
  1208. );
  1209. name = "Library View";
  1210. sourceTree = "<group>";
  1211. };
  1212. 7D2339AB176DE70E008D223C /* Menu */ = {
  1213. isa = PBXGroup;
  1214. children = (
  1215. 7D30F3CB183AB29300FFC021 /* VLCMenuTableViewController.h */,
  1216. 7D30F3CC183AB29300FFC021 /* VLCMenuTableViewController.m */,
  1217. 7D30F3DD183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.h */,
  1218. 7D30F3DE183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m */,
  1219. 7D30F3C5183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.h */,
  1220. 7D30F3C6183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m */,
  1221. 7D30F3E0183AB33200FFC021 /* VLCSidebarViewCell.h */,
  1222. 7D30F3E1183AB33200FFC021 /* VLCSidebarViewCell.m */,
  1223. );
  1224. name = Menu;
  1225. sourceTree = "<group>";
  1226. };
  1227. 7D31002117B676D500E6516D /* Local Network Connectivity */ = {
  1228. isa = PBXGroup;
  1229. children = (
  1230. 265D511A1922746C00E38383 /* VLCPlexParser.h */,
  1231. 265D511B1922746C00E38383 /* VLCPlexParser.m */,
  1232. 2640FAE41B01477A00E359D6 /* VLCPlexWebAPI.h */,
  1233. 2640FAE51B01477A00E359D6 /* VLCPlexWebAPI.m */,
  1234. 26D4AF8B1A78379000D5EC65 /* VLCSharedLibraryParser.h */,
  1235. 26D4AF8C1A78379000D5EC65 /* VLCSharedLibraryParser.m */,
  1236. 7D30F3D1183AB2F100FFC021 /* VLCLocalNetworkListCell.h */,
  1237. 7D30F3D2183AB2F100FFC021 /* VLCLocalNetworkListCell.m */,
  1238. 7D30F3D3183AB2F100FFC021 /* VLCLocalServerFolderListViewController.h */,
  1239. 7D30F3D4183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m */,
  1240. 265D51181922746C00E38383 /* VLCLocalPlexFolderListViewController.h */,
  1241. 265D51191922746C00E38383 /* VLCLocalPlexFolderListViewController.m */,
  1242. 262C71571A98FA9200F7ED34 /* VLCPlexMediaInformationViewController.h */,
  1243. 262C71581A98FA9200F7ED34 /* VLCPlexMediaInformationViewController.m */,
  1244. 26E3A6FC1AAB76A100B32450 /* VLCPlexConnectServerViewController.h */,
  1245. 26E3A6FD1AAB76A100B32450 /* VLCPlexConnectServerViewController.m */,
  1246. 26D4AF891A78379000D5EC65 /* VLCSharedLibraryListViewController.h */,
  1247. 26D4AF8A1A78379000D5EC65 /* VLCSharedLibraryListViewController.m */,
  1248. 7D30F3D5183AB2F100FFC021 /* VLCLocalServerListViewController.h */,
  1249. 7D30F3D6183AB2F100FFC021 /* VLCLocalServerListViewController.m */,
  1250. 7D30F3DA183AB2F900FFC021 /* VLCNetworkLoginViewController.h */,
  1251. 7D30F3DB183AB2F900FFC021 /* VLCNetworkLoginViewController.m */,
  1252. );
  1253. name = "Local Network Connectivity";
  1254. sourceTree = "<group>";
  1255. };
  1256. 7D31CF061746AEF2005997E0 /* UI Elements */ = {
  1257. isa = PBXGroup;
  1258. children = (
  1259. 7D9561091AF3E9E800779745 /* VLCMiniPlaybackView.h */,
  1260. 7D95610A1AF3E9E800779745 /* VLCMiniPlaybackView.m */,
  1261. 9BADAF43185FBD9D00108BD8 /* VLCFrostedGlasView.h */,
  1262. 9BADAF44185FBD9D00108BD8 /* VLCFrostedGlasView.m */,
  1263. 7D3784B2183A9938009EE944 /* UIBarButtonItem+Theme.h */,
  1264. 7D3784B3183A9938009EE944 /* UIBarButtonItem+Theme.m */,
  1265. 7D7417781AE2D3CE001F1997 /* VLCNavigationController.h */,
  1266. 7D7417791AE2D3CE001F1997 /* VLCNavigationController.m */,
  1267. 7D3784B6183A9938009EE944 /* VLCLinearProgressIndicator.h */,
  1268. 7D3784B7183A9938009EE944 /* VLCLinearProgressIndicator.m */,
  1269. 7D3784B8183A9938009EE944 /* VLCMenuButton.h */,
  1270. 7D3784B9183A9938009EE944 /* VLCMenuButton.m */,
  1271. 7D3784BA183A9938009EE944 /* VLCSlider.h */,
  1272. 7D3784BB183A9938009EE944 /* VLCSlider.m */,
  1273. 7D3784BC183A9938009EE944 /* VLCStatusLabel.h */,
  1274. 7D3784BD183A9938009EE944 /* VLCStatusLabel.m */,
  1275. 7D50903018F41C7900180139 /* VLCAlertView.h */,
  1276. 7D50903118F41C7900180139 /* VLCAlertView.m */,
  1277. 7D9CB9DA1A4C55EF00BB74B4 /* VLCPlaybackNavigationController.h */,
  1278. 7D9CB9DB1A4C55EF00BB74B4 /* VLCPlaybackNavigationController.m */,
  1279. DDC10BE21AEE8EA700890DC3 /* VLCTimeNavigationTitleView.h */,
  1280. DDC10BE31AEE8EA700890DC3 /* VLCTimeNavigationTitleView.m */,
  1281. );
  1282. name = "UI Elements";
  1283. sourceTree = "<group>";
  1284. };
  1285. 7D5E39CC174FCDBE007DAFA1 /* Cloud Integration */ = {
  1286. isa = PBXGroup;
  1287. children = (
  1288. 41B93C021A53835300102E8B /* VLCCloudServiceCell.h */,
  1289. 41B93C031A53835300102E8B /* VLCCloudServiceCell.m */,
  1290. 41B93BFF1A53833B00102E8B /* VLCProgressView.h */,
  1291. 41B93C001A53833B00102E8B /* VLCProgressView.m */,
  1292. 41CD69561A29D71B00E60BCE /* Box */,
  1293. E0C04F921A25B41C0080331A /* Document Picker */,
  1294. 9B51719A17EDEC8900F8FBA7 /* GoogleDrive */,
  1295. 7DFB1567185CC38A008D49BB /* Dropbox */,
  1296. 7D1052EA1A4DCC1700295F08 /* OneDrive */,
  1297. 7D3784AF183A990F009EE944 /* VLCCloudStorageTableViewCell.h */,
  1298. 7D3784B0183A990F009EE944 /* VLCCloudStorageTableViewCell.m */,
  1299. 9B088306183D7BEC004B5C2A /* VLCCloudStorageTableViewController.h */,
  1300. 9B088307183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m */,
  1301. 417CDA201A48D1F300D9ACE7 /* VLCCloudServicesTableViewController.h */,
  1302. 417CDA211A48D1F300D9ACE7 /* VLCCloudServicesTableViewController.m */,
  1303. 4184AA131A5492070063DF5A /* VLCCloudStorageController.h */,
  1304. 4184AA141A5492070063DF5A /* VLCCloudStorageController.m */,
  1305. );
  1306. name = "Cloud Integration";
  1307. sourceTree = "<group>";
  1308. };
  1309. 7D5F7AB717526573006CCCFA /* Accessory dialogs */ = {
  1310. isa = PBXGroup;
  1311. children = (
  1312. 7D3784A2183A98F5009EE944 /* VLCAboutViewController.h */,
  1313. 7D3784A3183A98F5009EE944 /* VLCAboutViewController.m */,
  1314. 7D3784A4183A98F5009EE944 /* VLCSettingsController.h */,
  1315. 7D3784A5183A98F5009EE944 /* VLCSettingsController.m */,
  1316. 7D37849F183A98EB009EE944 /* VLCBugreporter.h */,
  1317. 7D3784A0183A98EB009EE944 /* VLCBugreporter.m */,
  1318. 7DC19AEB1868C91400810BF7 /* First Steps */,
  1319. );
  1320. name = "Accessory dialogs";
  1321. sourceTree = "<group>";
  1322. };
  1323. 7D5F7AB81752658E006CCCFA /* Everything Playlist */ = {
  1324. isa = PBXGroup;
  1325. children = (
  1326. 4171D34E18A2C19000A16EF9 /* VLCFolderCollectionViewFlowLayout.h */,
  1327. 4171D34F18A2C19000A16EF9 /* VLCFolderCollectionViewFlowLayout.m */,
  1328. 7D378493183A98D1009EE944 /* VLCPlaylistCollectionViewCell.h */,
  1329. 7D378494183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m */,
  1330. 7D378495183A98D1009EE944 /* VLCPlaylistTableViewCell.h */,
  1331. 7D378496183A98D1009EE944 /* VLCPlaylistTableViewCell.m */,
  1332. 7D378497183A98D1009EE944 /* VLCPlaylistViewController.h */,
  1333. 7D378498183A98D1009EE944 /* VLCPlaylistViewController.m */,
  1334. 8F91EC77195CEC7900F5BCBA /* VLCOpenInActivity.h */,
  1335. 8F91EC78195CEC7900F5BCBA /* VLCOpenInActivity.m */,
  1336. 7D37849C183A98DD009EE944 /* VLCThumbnailsCache.h */,
  1337. 7D37849D183A98DD009EE944 /* VLCThumbnailsCache.m */,
  1338. );
  1339. name = "Everything Playlist";
  1340. sourceTree = "<group>";
  1341. };
  1342. 7D5F7AB9175265B2006CCCFA /* Playback */ = {
  1343. isa = PBXGroup;
  1344. children = (
  1345. 7DE56C181AD93F9100E8CA00 /* VLCPlaybackController.h */,
  1346. 7DE56C191AD93F9100E8CA00 /* VLCPlaybackController.m */,
  1347. DD510B6E1B14E564003BA71C /* VLCPlayerDisplayController.h */,
  1348. DD510B6F1B14E564003BA71C /* VLCPlayerDisplayController.m */,
  1349. DD8F842F1B00EB3B0009138A /* VLCPlaybackController+MediaLibrary.h */,
  1350. DD8F84301B00EB3B0009138A /* VLCPlaybackController+MediaLibrary.m */,
  1351. 7D37848D183A98B6009EE944 /* VLCMovieViewController.h */,
  1352. 7D37848E183A98B6009EE944 /* VLCMovieViewController.m */,
  1353. 7D378490183A98BF009EE944 /* VLCExternalDisplayController.h */,
  1354. 7D378491183A98BF009EE944 /* VLCExternalDisplayController.m */,
  1355. 7D4625861A5614A1001A80B4 /* VLCEqualizerView.h */,
  1356. 7D4625871A5614A1001A80B4 /* VLCEqualizerView.m */,
  1357. 7D5CAA871A4AD763003F2CBC /* VLCTrackSelectorTableViewCell.h */,
  1358. 7D5CAA881A4AD763003F2CBC /* VLCTrackSelectorTableViewCell.m */,
  1359. 7D5CAA8A1A4AD8E5003F2CBC /* VLCTrackSelectorHeaderView.h */,
  1360. 7D5CAA8B1A4AD8E5003F2CBC /* VLCTrackSelectorHeaderView.m */,
  1361. 7D1276601AADA0E600F0260C /* VLCMultiSelectionMenuView.h */,
  1362. 7D1276611AADA0E600F0260C /* VLCMultiSelectionMenuView.m */,
  1363. );
  1364. name = Playback;
  1365. sourceTree = "<group>";
  1366. };
  1367. 7D5F7ABA175265CB006CCCFA /* HTTP Connectivity */ = {
  1368. isa = PBXGroup;
  1369. children = (
  1370. 7D30F3BC183AB24C00FFC021 /* VLCHTTPConnection.h */,
  1371. 7D30F3BD183AB24C00FFC021 /* VLCHTTPConnection.m */,
  1372. 7D30F3BE183AB24C00FFC021 /* VLCHTTPFileDownloader.h */,
  1373. 7D30F3BF183AB24C00FFC021 /* VLCHTTPFileDownloader.m */,
  1374. 7D30F3C0183AB24C00FFC021 /* VLCHTTPUploaderController.h */,
  1375. 7D30F3C1183AB24C00FFC021 /* VLCHTTPUploaderController.m */,
  1376. 7D30F3C8183AB27A00FFC021 /* VLCDownloadViewController.h */,
  1377. 7D30F3C9183AB27A00FFC021 /* VLCDownloadViewController.m */,
  1378. );
  1379. name = "HTTP Connectivity";
  1380. sourceTree = "<group>";
  1381. };
  1382. 7D6BEF1D19E027A100DF3972 /* Cloud */ = {
  1383. isa = PBXGroup;
  1384. children = (
  1385. 41B93C071A53853B00102E8B /* VLCCloudServiceCell.xib */,
  1386. 417CDA221A48D1F300D9ACE7 /* VLCCloudServicesTableViewController.xib */,
  1387. 7DBBF185183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib */,
  1388. 7DBBF186183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib */,
  1389. 7DBBF188183AB4300009A339 /* VLCCloudStorageTableViewController.xib */,
  1390. 7D711AD918227A490094E4F0 /* GTMOAuth2ViewTouch.xib */,
  1391. 7DBC85611A50B8860098D388 /* LiveAuthDialog_iPad.xib */,
  1392. 7DBC85621A50B8860098D388 /* LiveAuthDialog_iPhone.xib */,
  1393. );
  1394. name = Cloud;
  1395. sourceTree = "<group>";
  1396. };
  1397. 7D6BEF1E19E027BE00DF3972 /* Library */ = {
  1398. isa = PBXGroup;
  1399. children = (
  1400. 7DBBF189183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib */,
  1401. 7DBBF18A183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib */,
  1402. 7DBBF18B183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib */,
  1403. 7DBBF18C183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib */,
  1404. 7DBBF194183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib */,
  1405. 7DBBF196183AB4300009A339 /* VLCPlaylistTableViewCell.xib */,
  1406. );
  1407. name = Library;
  1408. sourceTree = "<group>";
  1409. };
  1410. 7D6BEF1F19E027DA00DF3972 /* Download & Network */ = {
  1411. isa = PBXGroup;
  1412. children = (
  1413. 7DBBF187183AB4300009A339 /* VLCDownloadViewController.xib */,
  1414. 7D89786E185DED88009BAB5D /* VLCFutureDownloadViewController.xib */,
  1415. 7DBBF18E183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib */,
  1416. 7DBBF18F183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib */,
  1417. 7DBBF192183AB4300009A339 /* VLCNetworkLoginViewController.xib */,
  1418. 9B9231C3185A703700F89498 /* VLCFutureNetworkLoginViewController.xib */,
  1419. 7DBBF193183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib */,
  1420. 7D89787C185DF794009BAB5D /* VLCFutureOpenNetworkStreamViewController.xib */,
  1421. 262C715A1A98FDE300F7ED34 /* VLCPlexMediaInformationViewController.xib */,
  1422. 26E3A6FF1AAB76D300B32450 /* VLCFuturePlexConnectServerViewController.xib */,
  1423. 26E3A7001AAB76D300B32450 /* VLCPlexConnectServerViewController.xib */,
  1424. );
  1425. name = "Download & Network";
  1426. sourceTree = "<group>";
  1427. };
  1428. 7D94FCD216DE7D1000F2623B = {
  1429. isa = PBXGroup;
  1430. children = (
  1431. DDB959411AFBB30500BB8CFF /* MappingModel_2_5_to_2_6.xcmappingmodel */,
  1432. DDC7BFAF1B03829100160878 /* MediaLibrary.xcdatamodeld */,
  1433. 7D31719C19FEC91F0019357A /* VLC for iOS.entitlements */,
  1434. 7DB638AA185BC0890003887C /* Images.xcassets */,
  1435. 7D94FCE416DE7D1000F2623B /* Classes */,
  1436. 7DADC55C1704FAA8001DAC63 /* XIBs */,
  1437. A7924697170F0ED20036AAF2 /* Resources */,
  1438. 7D94FCE516DE7D1000F2623B /* Supporting Files */,
  1439. CC1BBC441704936500A20CBF /* External VLC Libraries */,
  1440. DD7110ED1AF38AFD00854776 /* SharedSources */,
  1441. 4173AEA11ABF1B850004101D /* VLC for iOS WatchKit Extension */,
  1442. 4173AEAF1ABF1B850004101D /* VLC for iOS WatchKit App */,
  1443. 7D94FCDD16DE7D1000F2623B /* Frameworks */,
  1444. 7D94FCDC16DE7D1000F2623B /* Products */,
  1445. 5BC7EE378D444805CA59B5BA /* Pods */,
  1446. );
  1447. sourceTree = "<group>";
  1448. usesTabs = 0;
  1449. };
  1450. 7D94FCDC16DE7D1000F2623B /* Products */ = {
  1451. isa = PBXGroup;
  1452. children = (
  1453. 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */,
  1454. 4173AEA01ABF1B850004101D /* VLC for iOS WatchKit Extension.appex */,
  1455. 4173AEAB1ABF1B850004101D /* VLC for iOS WatchKit App.app */,
  1456. );
  1457. name = Products;
  1458. sourceTree = "<group>";
  1459. };
  1460. 7D94FCDD16DE7D1000F2623B /* Frameworks */ = {
  1461. isa = PBXGroup;
  1462. children = (
  1463. 7D7B17EC1AD8052A003BF3D7 /* libc++.dylib */,
  1464. 7D7B17ED1AD8052B003BF3D7 /* libz.dylib */,
  1465. DDF157B31ACB169B00AAFBC6 /* WatchKit.framework */,
  1466. DD02C30A1ACAF0370026EFEE /* libstdc++.6.0.9.dylib */,
  1467. DD02C3001ACAE9690026EFEE /* libMobileVLCKit.a */,
  1468. DD02C2FE1ACAE7A10026EFEE /* libMediaLibraryKit.a */,
  1469. 418FF4B01A0EC1D5005FE808 /* libPods-vlc-ios.a */,
  1470. 8F91EC7E195E1DAB00F5BCBA /* AssetsLibrary.framework */,
  1471. 7D15168A194773630086FB8C /* MobileCoreServices.framework */,
  1472. 7D168F7018D4A21B003FAF59 /* Accelerate.framework */,
  1473. 7D897894185E14A7009BAB5D /* libGTLTouchStaticLib.a */,
  1474. 7D1052E51A4DC5FF00295F08 /* LiveSDK.framework */,
  1475. CCE2A22D17A5859E00D9EAAD /* CoreText.framework */,
  1476. 7DF7CA0617650C2A00C61739 /* AVFoundation.framework */,
  1477. 7DF7E790175F47DC0018858D /* MediaPlayer.framework */,
  1478. 7D6B08F9174D716200A05173 /* MessageUI.framework */,
  1479. 7D3EB013174A353E002062C2 /* SystemConfiguration.framework */,
  1480. 2915544217490D4A00B86CAD /* Security.framework */,
  1481. 7DDD0428172D98E5005A7B10 /* CFNetwork.framework */,
  1482. 7DC0C0541A4D78A4000EE359 /* DropboxSDK.framework */,
  1483. CC1BBC57170493E100A20CBF /* CoreData.framework */,
  1484. CC1BBC55170493C100A20CBF /* QuartzCore.framework */,
  1485. CC1BBC53170493B800A20CBF /* AudioToolbox.framework */,
  1486. CC1BBC51170493B100A20CBF /* OpenGLES.framework */,
  1487. CC1BBC4F170493AA00A20CBF /* libxml2.dylib */,
  1488. 7D31001F17B6768B00E6516D /* libupnpx.a */,
  1489. CC1BBC4D170493A300A20CBF /* libbz2.dylib */,
  1490. CC1BBC4B1704939B00A20CBF /* libsqlite3.dylib */,
  1491. CC1BBC491704939300A20CBF /* libz.dylib */,
  1492. CC1BBC471704938B00A20CBF /* libstdc++.dylib */,
  1493. CC1BBC451704938300A20CBF /* libiconv.dylib */,
  1494. 7D94FCDE16DE7D1000F2623B /* UIKit.framework */,
  1495. 7D94FCE016DE7D1000F2623B /* Foundation.framework */,
  1496. 7D94FCE216DE7D1000F2623B /* CoreGraphics.framework */,
  1497. DAF8927B0BE9C328466C0EA7 /* libPods-vlc-ios.a */,
  1498. );
  1499. name = Frameworks;
  1500. sourceTree = "<group>";
  1501. };
  1502. 7D94FCE416DE7D1000F2623B /* Classes */ = {
  1503. isa = PBXGroup;
  1504. children = (
  1505. 41273A391A955C4100A2EF77 /* VLCMigrationViewController.h */,
  1506. 41273A3A1A955C4100A2EF77 /* VLCMigrationViewController.m */,
  1507. 7D6B08BB174A72A900A05173 /* VLCConstants.h */,
  1508. 7DBBF180183AB3B80009A339 /* VLCAppDelegate.h */,
  1509. 7DBBF181183AB3B80009A339 /* VLCAppDelegate.m */,
  1510. A7D03A4817A4249F0022C16F /* MediaDiscovering */,
  1511. 7D2339AB176DE70E008D223C /* Menu */,
  1512. 7D5F7ABA175265CB006CCCFA /* HTTP Connectivity */,
  1513. 7D31002117B676D500E6516D /* Local Network Connectivity */,
  1514. 7D5F7AB9175265B2006CCCFA /* Playback */,
  1515. 7D5F7AB81752658E006CCCFA /* Everything Playlist */,
  1516. 7D5F7AB717526573006CCCFA /* Accessory dialogs */,
  1517. 7D5E39CC174FCDBE007DAFA1 /* Cloud Integration */,
  1518. 7D31CF061746AEF2005997E0 /* UI Elements */,
  1519. A7C3025A175A538700AD4388 /* Extensions */,
  1520. 7DADC5601704FACC001DAC63 /* Imported */,
  1521. );
  1522. name = Classes;
  1523. path = AspenProject;
  1524. sourceTree = "<group>";
  1525. };
  1526. 7D94FCE516DE7D1000F2623B /* Supporting Files */ = {
  1527. isa = PBXGroup;
  1528. children = (
  1529. 7D3784E8183A9A15009EE944 /* main.m */,
  1530. 7D3784EA183A9A1E009EE944 /* VLC for iOS-Info.plist */,
  1531. 7D3784EB183A9A1E009EE944 /* VLC for iOS-Prefix.pch */,
  1532. );
  1533. name = "Supporting Files";
  1534. path = AspenProject;
  1535. sourceTree = "<group>";
  1536. };
  1537. 7D98705D1A3E03D5009CF27D /* PAPasscode */ = {
  1538. isa = PBXGroup;
  1539. children = (
  1540. 7D98705E1A3E03D5009CF27D /* papasscode_background.png */,
  1541. 7D98705F1A3E03D5009CF27D /* papasscode_background@2x.png */,
  1542. 7D9870601A3E03D5009CF27D /* papasscode_failed_bg.png */,
  1543. 7D9870611A3E03D5009CF27D /* papasscode_failed_bg@2x.png */,
  1544. 7D9870621A3E03D5009CF27D /* papasscode_marker.png */,
  1545. 7D9870631A3E03D5009CF27D /* papasscode_marker@2x.png */,
  1546. );
  1547. name = PAPasscode;
  1548. path = PAPasscode/Assets;
  1549. sourceTree = SOURCE_ROOT;
  1550. };
  1551. 7DADC55C1704FAA8001DAC63 /* XIBs */ = {
  1552. isa = PBXGroup;
  1553. children = (
  1554. 41273A3B1A955C4100A2EF77 /* VLCMigrationViewController.xib */,
  1555. 7DC19AF41868CDB800810BF7 /* First Steps */,
  1556. 7D6BEF1D19E027A100DF3972 /* Cloud */,
  1557. 7D6BEF1F19E027DA00DF3972 /* Download & Network */,
  1558. 7D6BEF1E19E027BE00DF3972 /* Library */,
  1559. 7DBBF190183AB4300009A339 /* VLCMovieViewController~ipad.xib */,
  1560. 7DBBF191183AB4300009A339 /* VLCMovieViewController~iphone.xib */,
  1561. 7DBBF197183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib */,
  1562. 7D27EB9319DEE11900EF0370 /* Launch Screen.xib */,
  1563. );
  1564. name = XIBs;
  1565. path = AspenProject;
  1566. sourceTree = "<group>";
  1567. };
  1568. 7DADC5601704FACC001DAC63 /* Imported */ = {
  1569. isa = PBXGroup;
  1570. children = (
  1571. 4171D35518A2D90200A16EF9 /* LXReorderableCollectionViewFlowLayout */,
  1572. 9B2E0CED17FB5B3F0098E3DF /* GoogleDrive */,
  1573. A7A0E9EB174BA66000162F25 /* PAPasscode */,
  1574. 7DC72D6517B7ED36008A26D0 /* Reachability */,
  1575. 7DC72D6417B7ED2A008A26D0 /* WhiteRaccoon */,
  1576. 291553E817490A0400B86CAD /* CocoaHTTPServer */,
  1577. );
  1578. name = Imported;
  1579. sourceTree = "<group>";
  1580. };
  1581. 7DC19AEB1868C91400810BF7 /* First Steps */ = {
  1582. isa = PBXGroup;
  1583. children = (
  1584. 7DC19ADC1868C7BB00810BF7 /* VLCFirstStepsViewController.h */,
  1585. 7DC19ADD1868C7BB00810BF7 /* VLCFirstStepsViewController.m */,
  1586. 7DC19AE11868C8EC00810BF7 /* VLCFirstStepsFirstPageViewController.h */,
  1587. 7DC19AE21868C8EC00810BF7 /* VLCFirstStepsFirstPageViewController.m */,
  1588. 7D63C18D18774B1700BD5256 /* VLCFirstStepsSecondPageViewController.h */,
  1589. 7D63C18E18774B1700BD5256 /* VLCFirstStepsSecondPageViewController.m */,
  1590. 7D9289721877459B009108FD /* VLCFirstStepsThirdPageViewController.h */,
  1591. 7D9289731877459B009108FD /* VLCFirstStepsThirdPageViewController.m */,
  1592. 7D9289771877467E009108FD /* VLCFirstStepsFourthPageViewController.h */,
  1593. 7D9289781877467E009108FD /* VLCFirstStepsFourthPageViewController.m */,
  1594. 7DC19B021868D1C400810BF7 /* VLCFirstStepsFifthPageViewController.h */,
  1595. 7DC19B031868D1C400810BF7 /* VLCFirstStepsFifthPageViewController.m */,
  1596. 7DC19B091868D21800810BF7 /* VLCFirstStepsSixthPageViewController.h */,
  1597. 7DC19B0A1868D21800810BF7 /* VLCFirstStepsSixthPageViewController.m */,
  1598. );
  1599. name = "First Steps";
  1600. sourceTree = "<group>";
  1601. };
  1602. 7DC19AF41868CDB800810BF7 /* First Steps */ = {
  1603. isa = PBXGroup;
  1604. children = (
  1605. 7D15163C1868D7E0004B18F3 /* VLCFirstStepsFirstPageViewController~iphone.xib */,
  1606. 7D0117F0187F4BA400C5671C /* VLCFirstStepsFirstPageViewController~ipad.xib */,
  1607. 7D27EC2919DF310300EF0370 /* VLCFirstStepsSecondPageViewController~ipad.xib */,
  1608. 7D27EC2A19DF310300EF0370 /* VLCFirstStepsSecondPageViewController~iphone.xib */,
  1609. 7D9289741877459B009108FD /* VLCFirstStepsThirdPageViewController~iphone.xib */,
  1610. 7D63C19418774E0100BD5256 /* VLCFirstStepsThirdPageViewController~ipad.xib */,
  1611. 7D9289791877467E009108FD /* VLCFirstStepsFourthPageViewController~iphone.xib */,
  1612. 7D63C19618774F1000BD5256 /* VLCFirstStepsFourthPageViewController~ipad.xib */,
  1613. 7D15163B1868D7E0004B18F3 /* VLCFirstStepsFifthPageViewController.xib */,
  1614. 7D15163F1868D7E0004B18F3 /* VLCFirstStepsSixthPageViewController~iphone.xib */,
  1615. 7D63C1981877504B00BD5256 /* VLCFirstStepsSixthPageViewController~ipad.xib */,
  1616. );
  1617. name = "First Steps";
  1618. sourceTree = "<group>";
  1619. };
  1620. 7DC72D6417B7ED2A008A26D0 /* WhiteRaccoon */ = {
  1621. isa = PBXGroup;
  1622. children = (
  1623. 7DC72D6117B7ED24008A26D0 /* WhiteRaccoon.h */,
  1624. 7DC72D6217B7ED24008A26D0 /* WhiteRaccoon.m */,
  1625. );
  1626. name = WhiteRaccoon;
  1627. sourceTree = "<group>";
  1628. };
  1629. 7DC72D6517B7ED36008A26D0 /* Reachability */ = {
  1630. isa = PBXGroup;
  1631. children = (
  1632. 7D3784E5183A99E1009EE944 /* Reachability.h */,
  1633. 7D3784E6183A99E1009EE944 /* Reachability.m */,
  1634. );
  1635. name = Reachability;
  1636. sourceTree = "<group>";
  1637. };
  1638. 7DFB1567185CC38A008D49BB /* Dropbox */ = {
  1639. isa = PBXGroup;
  1640. children = (
  1641. 7D3784A8183A9906009EE944 /* VLCDropboxConstants.h */,
  1642. 7D3784A9183A9906009EE944 /* VLCDropboxController.h */,
  1643. 7D3784AA183A9906009EE944 /* VLCDropboxController.m */,
  1644. 7D3784AB183A9906009EE944 /* VLCDropboxTableViewController.h */,
  1645. 7D3784AC183A9906009EE944 /* VLCDropboxTableViewController.m */,
  1646. );
  1647. name = Dropbox;
  1648. sourceTree = "<group>";
  1649. };
  1650. 9B2E0CED17FB5B3F0098E3DF /* GoogleDrive */ = {
  1651. isa = PBXGroup;
  1652. children = (
  1653. 9B5BEF2717FBAEA50016F9CB /* GTLDrive_Sources.m */,
  1654. 9B5BEF2817FBAEA50016F9CB /* GTLDrive.h */,
  1655. );
  1656. name = GoogleDrive;
  1657. sourceTree = "<group>";
  1658. };
  1659. 9B51719A17EDEC8900F8FBA7 /* GoogleDrive */ = {
  1660. isa = PBXGroup;
  1661. children = (
  1662. 7D30F3E3183AB34200FFC021 /* VLCGoogleDriveConstants.h */,
  1663. 7D30F3E4183AB34200FFC021 /* VLCGoogleDriveController.h */,
  1664. 7D30F3E5183AB34200FFC021 /* VLCGoogleDriveController.m */,
  1665. 7D30F3E8183AB34200FFC021 /* VLCGoogleDriveTableViewController.h */,
  1666. 7D30F3E9183AB34200FFC021 /* VLCGoogleDriveTableViewController.m */,
  1667. );
  1668. name = GoogleDrive;
  1669. sourceTree = "<group>";
  1670. };
  1671. A7924697170F0ED20036AAF2 /* Resources */ = {
  1672. isa = PBXGroup;
  1673. children = (
  1674. 7D98705D1A3E03D5009CF27D /* PAPasscode */,
  1675. 7D6B08FB174D773C00A05173 /* Settings.bundle */,
  1676. 29125E5317492219003F03E5 /* web */,
  1677. A7035BBD174519600057DFA7 /* iTunesArtwork */,
  1678. 7DEB3B5F17647DE30038FC70 /* iTunesArtwork@2x */,
  1679. 7DA8B0F9173318E80029698C /* SourceCodePro-Regular.ttf */,
  1680. 7DD2A3A8179C04A6003EB537 /* OpenSans-Regular.ttf */,
  1681. 7D5DD5C617590ABF001421E3 /* About Contents.html */,
  1682. A79246C6170F11DF0036AAF2 /* Localizable.strings */,
  1683. 7D10BC661743F9AC00DA7059 /* Library View */,
  1684. );
  1685. path = Resources;
  1686. sourceTree = SOURCE_ROOT;
  1687. };
  1688. A7A0E9EB174BA66000162F25 /* PAPasscode */ = {
  1689. isa = PBXGroup;
  1690. children = (
  1691. 7D3784CA183A99BA009EE944 /* PAPasscodeViewController.h */,
  1692. 7D3784CB183A99BA009EE944 /* PAPasscodeViewController.m */,
  1693. );
  1694. name = PAPasscode;
  1695. path = ../PAPasscode;
  1696. sourceTree = "<group>";
  1697. };
  1698. A7C3025A175A538700AD4388 /* Extensions */ = {
  1699. isa = PBXGroup;
  1700. children = (
  1701. 493B1A1B195D06B1000A491A /* BasicUPnPDevice+VLC.h */,
  1702. 493B1A1C195D06B1000A491A /* BasicUPnPDevice+VLC.m */,
  1703. 7D3784C4183A9972009EE944 /* NSString+SupportedMedia.h */,
  1704. 7D3784C5183A9972009EE944 /* NSString+SupportedMedia.m */,
  1705. 7D3784C6183A9972009EE944 /* UIDevice+VLC.h */,
  1706. 7D3784C7183A9972009EE944 /* UIDevice+VLC.m */,
  1707. 7D168F7218D4A317003FAF59 /* UIImage+Blur.h */,
  1708. 7D168F7318D4A33F003FAF59 /* UIImage+Blur.m */,
  1709. 7D871F4F1AD7257100348D27 /* UIImage+Scaling.h */,
  1710. 7D871F501AD7257100348D27 /* UIImage+Scaling.m */,
  1711. 7DF9352D1958AB0600E60FD4 /* UIColor+Presets.h */,
  1712. 7DF9352E1958AB0600E60FD4 /* UIColor+Presets.m */,
  1713. );
  1714. name = Extensions;
  1715. sourceTree = "<group>";
  1716. };
  1717. A7D03A4817A4249F0022C16F /* MediaDiscovering */ = {
  1718. isa = PBXGroup;
  1719. children = (
  1720. 7D30F3CE183AB2AC00FFC021 /* VLCMediaFileDiscoverer.h */,
  1721. 7D30F3CF183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m */,
  1722. );
  1723. name = MediaDiscovering;
  1724. sourceTree = "<group>";
  1725. };
  1726. CC1BBC441704936500A20CBF /* External VLC Libraries */ = {
  1727. isa = PBXGroup;
  1728. children = (
  1729. A7924695170F0BA90036AAF2 /* libMediaLibraryKit.a */,
  1730. CC1BBC3E1704934200A20CBF /* libMobileVLCKit.a */,
  1731. );
  1732. name = "External VLC Libraries";
  1733. sourceTree = "<group>";
  1734. };
  1735. DD7110ED1AF38AFD00854776 /* SharedSources */ = {
  1736. isa = PBXGroup;
  1737. children = (
  1738. DD7110EE1AF38B2B00854776 /* MLMediaLibrary+playlist.h */,
  1739. DD7110EF1AF38B2B00854776 /* MLMediaLibrary+playlist.m */,
  1740. DD3EA62F1AF50CFE007FF096 /* VLCWatchMessage.h */,
  1741. DD3EA6301AF50CFE007FF096 /* VLCWatchMessage.m */,
  1742. );
  1743. path = SharedSources;
  1744. sourceTree = "<group>";
  1745. };
  1746. E0C04F921A25B41C0080331A /* Document Picker */ = {
  1747. isa = PBXGroup;
  1748. children = (
  1749. E0C04F931A25B4410080331A /* VLCDocumentPickerController.h */,
  1750. E0C04F941A25B4410080331A /* VLCDocumentPickerController.m */,
  1751. );
  1752. name = "Document Picker";
  1753. sourceTree = "<group>";
  1754. };
  1755. /* End PBXGroup section */
  1756. /* Begin PBXNativeTarget section */
  1757. 4173AE9F1ABF1B850004101D /* VLC for iOS WatchKit Extension */ = {
  1758. isa = PBXNativeTarget;
  1759. buildConfigurationList = 4173AEBE1ABF1B860004101D /* Build configuration list for PBXNativeTarget "VLC for iOS WatchKit Extension" */;
  1760. buildPhases = (
  1761. 4173AE9C1ABF1B850004101D /* Sources */,
  1762. 4173AE9D1ABF1B850004101D /* Frameworks */,
  1763. 4173AE9E1ABF1B850004101D /* Resources */,
  1764. );
  1765. buildRules = (
  1766. );
  1767. dependencies = (
  1768. 4173AEAE1ABF1B850004101D /* PBXTargetDependency */,
  1769. );
  1770. name = "VLC for iOS WatchKit Extension";
  1771. productName = "VLC for iOS WatchKit Extension";
  1772. productReference = 4173AEA01ABF1B850004101D /* VLC for iOS WatchKit Extension.appex */;
  1773. productType = "com.apple.product-type.watchkit-extension";
  1774. };
  1775. 4173AEAA1ABF1B850004101D /* VLC for iOS WatchKit App */ = {
  1776. isa = PBXNativeTarget;
  1777. buildConfigurationList = 4173AEBA1ABF1B860004101D /* Build configuration list for PBXNativeTarget "VLC for iOS WatchKit App" */;
  1778. buildPhases = (
  1779. 4173AEA91ABF1B850004101D /* Resources */,
  1780. );
  1781. buildRules = (
  1782. );
  1783. dependencies = (
  1784. );
  1785. name = "VLC for iOS WatchKit App";
  1786. productName = "VLC for iOS WatchKit App";
  1787. productReference = 4173AEAB1ABF1B850004101D /* VLC for iOS WatchKit App.app */;
  1788. productType = "com.apple.product-type.application.watchapp";
  1789. };
  1790. 7D94FCDA16DE7D1000F2623B /* vlc-ios */ = {
  1791. isa = PBXNativeTarget;
  1792. buildConfigurationList = 7D94FD0A16DE7D1100F2623B /* Build configuration list for PBXNativeTarget "vlc-ios" */;
  1793. buildPhases = (
  1794. 1674E6FD23580CE308961687 /* Check Pods Manifest.lock */,
  1795. 7D94FCD716DE7D1000F2623B /* Sources */,
  1796. 7D94FCD816DE7D1000F2623B /* Frameworks */,
  1797. 7D94FCD916DE7D1000F2623B /* Resources */,
  1798. F2C5CAE560C074258A574B08 /* Copy Pods Resources */,
  1799. 4173AEC21ABF1B860004101D /* Embed App Extensions */,
  1800. );
  1801. buildRules = (
  1802. );
  1803. dependencies = (
  1804. 4173AEB81ABF1B860004101D /* PBXTargetDependency */,
  1805. );
  1806. name = "vlc-ios";
  1807. productName = AspenProject;
  1808. productReference = 7D94FCDB16DE7D1000F2623B /* VLC for iOS.app */;
  1809. productType = "com.apple.product-type.application";
  1810. };
  1811. /* End PBXNativeTarget section */
  1812. /* Begin PBXProject section */
  1813. 7D94FCD316DE7D1000F2623B /* Project object */ = {
  1814. isa = PBXProject;
  1815. attributes = {
  1816. CLASSPREFIX = VLC;
  1817. LastUpgradeCheck = 0630;
  1818. ORGANIZATIONNAME = VideoLAN;
  1819. TargetAttributes = {
  1820. 4173AE9F1ABF1B850004101D = {
  1821. CreatedOnToolsVersion = 6.2;
  1822. DevelopmentTeam = 75GAHG3SZQ;
  1823. SystemCapabilities = {
  1824. com.apple.ApplicationGroups.iOS = {
  1825. enabled = 1;
  1826. };
  1827. };
  1828. };
  1829. 4173AEAA1ABF1B850004101D = {
  1830. CreatedOnToolsVersion = 6.2;
  1831. DevelopmentTeam = 75GAHG3SZQ;
  1832. };
  1833. 7D94FCDA16DE7D1000F2623B = {
  1834. DevelopmentTeam = 75GAHG3SZQ;
  1835. SystemCapabilities = {
  1836. com.apple.ApplicationGroups.iOS = {
  1837. enabled = 1;
  1838. };
  1839. com.apple.iCloud = {
  1840. enabled = 1;
  1841. };
  1842. };
  1843. };
  1844. };
  1845. };
  1846. buildConfigurationList = 7D94FCD616DE7D1000F2623B /* Build configuration list for PBXProject "VLC for iOS" */;
  1847. compatibilityVersion = "Xcode 3.2";
  1848. developmentRegion = English;
  1849. hasScannedForEncodings = 0;
  1850. knownRegions = (
  1851. en,
  1852. ru,
  1853. de,
  1854. fr,
  1855. it,
  1856. ja,
  1857. fi,
  1858. id,
  1859. es,
  1860. da,
  1861. he,
  1862. nl,
  1863. sk,
  1864. tr,
  1865. uk,
  1866. vi,
  1867. "zh-Hans",
  1868. "zh-Hant",
  1869. mr,
  1870. gl,
  1871. ca,
  1872. bs,
  1873. el,
  1874. sl,
  1875. pl,
  1876. ar,
  1877. ko,
  1878. sv,
  1879. hu,
  1880. cs,
  1881. fa,
  1882. "es-MX",
  1883. ms,
  1884. si,
  1885. lv,
  1886. "en-GB",
  1887. ro,
  1888. af,
  1889. be,
  1890. fo,
  1891. km,
  1892. ta,
  1893. "pt-PT",
  1894. "pt-BR",
  1895. "sr-Latn",
  1896. Base,
  1897. );
  1898. mainGroup = 7D94FCD216DE7D1000F2623B;
  1899. productRefGroup = 7D94FCDC16DE7D1000F2623B /* Products */;
  1900. projectDirPath = "";
  1901. projectRoot = "";
  1902. targets = (
  1903. 7D94FCDA16DE7D1000F2623B /* vlc-ios */,
  1904. 4173AE9F1ABF1B850004101D /* VLC for iOS WatchKit Extension */,
  1905. 4173AEAA1ABF1B850004101D /* VLC for iOS WatchKit App */,
  1906. );
  1907. };
  1908. /* End PBXProject section */
  1909. /* Begin PBXResourcesBuildPhase section */
  1910. 4173AE9E1ABF1B850004101D /* Resources */ = {
  1911. isa = PBXResourcesBuildPhase;
  1912. buildActionMask = 2147483647;
  1913. files = (
  1914. 4173AEAC1ABF1B850004101D /* VLC for iOS WatchKit App.app in Resources */,
  1915. 7D2D4ECC1ACFFA42006A8DBD /* Localizable.strings in Resources */,
  1916. 4173AEA81ABF1B850004101D /* Images.xcassets in Resources */,
  1917. );
  1918. runOnlyForDeploymentPostprocessing = 0;
  1919. };
  1920. 4173AEA91ABF1B850004101D /* Resources */ = {
  1921. isa = PBXResourcesBuildPhase;
  1922. buildActionMask = 2147483647;
  1923. files = (
  1924. 4173AEB41ABF1B860004101D /* Interface.storyboard in Resources */,
  1925. 4173AEB61ABF1B860004101D /* Images.xcassets in Resources */,
  1926. );
  1927. runOnlyForDeploymentPostprocessing = 0;
  1928. };
  1929. 7D94FCD916DE7D1000F2623B /* Resources */ = {
  1930. isa = PBXResourcesBuildPhase;
  1931. buildActionMask = 2147483647;
  1932. files = (
  1933. 7D00161C177056B700649F27 /* main.js in Resources */,
  1934. 7AC862A61765E9510011611A /* jquery-1.10.1.min.js in Resources */,
  1935. 7AC862A71765E9510011611A /* jquery.fileupload.js in Resources */,
  1936. 7AC862A81765E9510011611A /* jquery.iframe-transport.js in Resources */,
  1937. 7AC862A91765E9510011611A /* jquery.ui.widget.js in Resources */,
  1938. A79246C8170F11DF0036AAF2 /* Localizable.strings in Resources */,
  1939. 9B9231C4185A703700F89498 /* VLCFutureNetworkLoginViewController.xib in Resources */,
  1940. 7D1516431868D7E0004B18F3 /* VLCFirstStepsFirstPageViewController~iphone.xib in Resources */,
  1941. 7DF04F4E1961F2B8004A5429 /* web-download.png in Resources */,
  1942. 7DBBF1A8183AB4300009A339 /* VLCOpenNetworkStreamViewController.xib in Resources */,
  1943. 7DBBF1A9183AB4300009A339 /* VLCPlaylistCollectionViewCell.xib in Resources */,
  1944. 7DA8B0FB173318E80029698C /* SourceCodePro-Regular.ttf in Resources */,
  1945. 41B93C081A53853B00102E8B /* VLCCloudServiceCell.xib in Resources */,
  1946. 29125E5617492219003F03E5 /* index.html in Resources */,
  1947. 7DB638AB185BC0890003887C /* Images.xcassets in Resources */,
  1948. 7D27EB9419DEE11900EF0370 /* Launch Screen.xib in Resources */,
  1949. 7D6B08FC174D773C00A05173 /* Settings.bundle in Resources */,
  1950. 7DBBF1A4183AB4300009A339 /* VLCLocalNetworkListCell~iphone.xib in Resources */,
  1951. 7DF04F501961F2B8004A5429 /* web-open.png in Resources */,
  1952. 7DBBF1A7183AB4300009A339 /* VLCNetworkLoginViewController.xib in Resources */,
  1953. 7D9870661A3E03D5009CF27D /* papasscode_failed_bg.png in Resources */,
  1954. 7D9870681A3E03D5009CF27D /* papasscode_marker.png in Resources */,
  1955. 7D32B384185E293D006CA474 /* Raleway.woff in Resources */,
  1956. 7D9870691A3E03D5009CF27D /* papasscode_marker@2x.png in Resources */,
  1957. 7D5DD5C717590ABF001421E3 /* About Contents.html in Resources */,
  1958. 7DE18629175BA9A5006C0173 /* badgeUnread@2x~ipad.png in Resources */,
  1959. 7DE1862C175BA9A9006C0173 /* badgeUnread@2x~iphone.png in Resources */,
  1960. 7DE1862F175BA9AC006C0173 /* badgeUnread~ipad.png in Resources */,
  1961. 7DBBF19B183AB4300009A339 /* VLCCloudStorageTableViewCell~iphone.xib in Resources */,
  1962. 262C715B1A98FDE300F7ED34 /* VLCPlexMediaInformationViewController.xib in Resources */,
  1963. 7DE18632175BA9AF006C0173 /* badgeUnread~iphone.png in Resources */,
  1964. 26E3A7021AAB76D300B32450 /* VLCPlexConnectServerViewController.xib in Resources */,
  1965. 7DBBF19F183AB4300009A339 /* VLCEmptyLibraryView~iphone.xib in Resources */,
  1966. 7DBC85641A50B8860098D388 /* LiveAuthDialog_iPhone.xib in Resources */,
  1967. 7D92897B1877467E009108FD /* VLCFirstStepsFourthPageViewController~iphone.xib in Resources */,
  1968. 7D1516461868D7E0004B18F3 /* VLCFirstStepsSixthPageViewController~iphone.xib in Resources */,
  1969. 41273A3D1A955C4100A2EF77 /* VLCMigrationViewController.xib in Resources */,
  1970. 7DBBF19D183AB4300009A339 /* VLCCloudStorageTableViewController.xib in Resources */,
  1971. 7D9289761877459B009108FD /* VLCFirstStepsThirdPageViewController~iphone.xib in Resources */,
  1972. 7DBBF1AB183AB4300009A339 /* VLCPlaylistTableViewCell.xib in Resources */,
  1973. 7DBBF19E183AB4300009A339 /* VLCEmptyLibraryView~ipad.xib in Resources */,
  1974. 7D63C19518774E0100BD5256 /* VLCFirstStepsThirdPageViewController~ipad.xib in Resources */,
  1975. 7D9870651A3E03D5009CF27D /* papasscode_background@2x.png in Resources */,
  1976. 7DBBF1A1183AB4300009A339 /* VLCFuturePlaylistTableViewCell.xib in Resources */,
  1977. 7DBBF1AC183AB4300009A339 /* VLCWiFiUploadTableViewCell.xib in Resources */,
  1978. 7DBBF19C183AB4300009A339 /* VLCDownloadViewController.xib in Resources */,
  1979. 7D63C19718774F1000BD5256 /* VLCFirstStepsFourthPageViewController~ipad.xib in Resources */,
  1980. 7DBC85631A50B8860098D388 /* LiveAuthDialog_iPad.xib in Resources */,
  1981. 7DBBF1A3183AB4300009A339 /* VLCLocalNetworkListCell~ipad.xib in Resources */,
  1982. 7DBBF1A5183AB4300009A339 /* VLCMovieViewController~ipad.xib in Resources */,
  1983. 26F1BFD01A770408001DF30C /* libMediaVLC.xml in Resources */,
  1984. 7DBBF1A6183AB4300009A339 /* VLCMovieViewController~iphone.xib in Resources */,
  1985. 7D89787D185DF794009BAB5D /* VLCFutureOpenNetworkStreamViewController.xib in Resources */,
  1986. 7D27EC2C19DF310300EF0370 /* VLCFirstStepsSecondPageViewController~iphone.xib in Resources */,
  1987. 7AC8629D1765DC560011611A /* style.css in Resources */,
  1988. 7DD2A3A9179C04A7003EB537 /* OpenSans-Regular.ttf in Resources */,
  1989. 7D27EC2B19DF310300EF0370 /* VLCFirstStepsSecondPageViewController~ipad.xib in Resources */,
  1990. 26E3A7011AAB76D300B32450 /* VLCFuturePlexConnectServerViewController.xib in Resources */,
  1991. 7DBBF1A0183AB4300009A339 /* VLCFuturePlaylistCollectionViewCell.xib in Resources */,
  1992. 7D711ADA18227A490094E4F0 /* GTMOAuth2ViewTouch.xib in Resources */,
  1993. 417CDA241A48D1F300D9ACE7 /* VLCCloudServicesTableViewController.xib in Resources */,
  1994. 7D9870671A3E03D5009CF27D /* papasscode_failed_bg@2x.png in Resources */,
  1995. 7DF04F4F1961F2B8004A5429 /* web-open-fixed.png in Resources */,
  1996. 7DBBF19A183AB4300009A339 /* VLCCloudStorageTableViewCell~ipad.xib in Resources */,
  1997. 7D1516421868D7E0004B18F3 /* VLCFirstStepsFifthPageViewController.xib in Resources */,
  1998. 7D9870641A3E03D5009CF27D /* papasscode_background.png in Resources */,
  1999. 7D0117F1187F4BA400C5671C /* VLCFirstStepsFirstPageViewController~ipad.xib in Resources */,
  2000. 7D63C1991877504B00BD5256 /* VLCFirstStepsSixthPageViewController~ipad.xib in Resources */,
  2001. 7DF04F4D1961F2B8004A5429 /* web-download-fixed.png in Resources */,
  2002. 7D89786F185DED88009BAB5D /* VLCFutureDownloadViewController.xib in Resources */,
  2003. );
  2004. runOnlyForDeploymentPostprocessing = 0;
  2005. };
  2006. /* End PBXResourcesBuildPhase section */
  2007. /* Begin PBXShellScriptBuildPhase section */
  2008. 1674E6FD23580CE308961687 /* Check Pods Manifest.lock */ = {
  2009. isa = PBXShellScriptBuildPhase;
  2010. buildActionMask = 2147483647;
  2011. files = (
  2012. );
  2013. inputPaths = (
  2014. );
  2015. name = "Check Pods Manifest.lock";
  2016. outputPaths = (
  2017. );
  2018. runOnlyForDeploymentPostprocessing = 0;
  2019. shellPath = /bin/sh;
  2020. shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
  2021. showEnvVarsInLog = 0;
  2022. };
  2023. F2C5CAE560C074258A574B08 /* Copy Pods Resources */ = {
  2024. isa = PBXShellScriptBuildPhase;
  2025. buildActionMask = 2147483647;
  2026. files = (
  2027. );
  2028. inputPaths = (
  2029. );
  2030. name = "Copy Pods Resources";
  2031. outputPaths = (
  2032. );
  2033. runOnlyForDeploymentPostprocessing = 0;
  2034. shellPath = /bin/sh;
  2035. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-vlc-ios/Pods-vlc-ios-resources.sh\"\n";
  2036. showEnvVarsInLog = 0;
  2037. };
  2038. /* End PBXShellScriptBuildPhase section */
  2039. /* Begin PBXSourcesBuildPhase section */
  2040. 4173AE9C1ABF1B850004101D /* Sources */ = {
  2041. isa = PBXSourcesBuildPhase;
  2042. buildActionMask = 2147483647;
  2043. files = (
  2044. DD3EA6321AF50D01007FF096 /* VLCWatchMessage.m in Sources */,
  2045. DD6FA7B01ACD641C006DEB2E /* VLCNowPlayingInterfaceController.m in Sources */,
  2046. 7DE715ED1AD2DAE50075E716 /* VLCThumbnailsCache.m in Sources */,
  2047. 7D298F451AD58A0700A0BF68 /* UIImage+Blur.m in Sources */,
  2048. 7D871F521AD7257100348D27 /* UIImage+Scaling.m in Sources */,
  2049. DDE490731ACE964200B1B5E3 /* VLCBaseInterfaceController.m in Sources */,
  2050. 7D54ECA91B1B3F370025BE2D /* MediaLibrary.xcdatamodeld in Sources */,
  2051. DDE4906C1ACDB63F00B1B5E3 /* VLCNotificationRelay.m in Sources */,
  2052. DD7110F11AF38B2B00854776 /* MLMediaLibrary+playlist.m in Sources */,
  2053. DD670C971AFBEED400A2D7AB /* MappingModel_2_5_to_2_6.xcmappingmodel in Sources */,
  2054. DD1542121ACFF76400AFD4EC /* VLCWatchTableController.m in Sources */,
  2055. DD02C30E1ACAF4A50026EFEE /* VLCRowController.m in Sources */,
  2056. DD7635D61AF262D100240CB8 /* NSManagedObjectContext+refreshAll.m in Sources */,
  2057. DDE490701ACE8BBC00B1B5E3 /* VLCDetailInterfaceController.m in Sources */,
  2058. 4173AEA61ABF1B850004101D /* VLCPlaylistInterfaceController.m in Sources */,
  2059. DDACEB561ADAD11300735484 /* WKInterfaceObject+VLCProgress.m in Sources */,
  2060. );
  2061. runOnlyForDeploymentPostprocessing = 0;
  2062. };
  2063. 7D94FCD716DE7D1000F2623B /* Sources */ = {
  2064. isa = PBXSourcesBuildPhase;
  2065. buildActionMask = 2147483647;
  2066. files = (
  2067. 4144C4661A0ED6C700918C89 /* Reachability.m in Sources */,
  2068. 4184AA151A5492070063DF5A /* VLCCloudStorageController.m in Sources */,
  2069. 9BE4D1CE183D76950006346C /* VLCCloudStorageTableViewCell.m in Sources */,
  2070. 2915540117490A1E00B86CAD /* DDData.m in Sources */,
  2071. 2915540217490A1E00B86CAD /* DDNumber.m in Sources */,
  2072. 7D92897A1877467E009108FD /* VLCFirstStepsFourthPageViewController.m in Sources */,
  2073. 2915540317490A1E00B86CAD /* DDRange.m in Sources */,
  2074. 4171D35818A2D90200A16EF9 /* LXReorderableCollectionViewFlowLayout.m in Sources */,
  2075. 2915540417490A1E00B86CAD /* HTTPAuthenticationRequest.m in Sources */,
  2076. 2915540517490A1E00B86CAD /* HTTPConnection.m in Sources */,
  2077. DDC7BFB31B03829100160878 /* MediaLibrary.xcdatamodeld in Sources */,
  2078. 2915540617490A1E00B86CAD /* HTTPMessage.m in Sources */,
  2079. 7DC19B0C1868D21800810BF7 /* VLCFirstStepsSixthPageViewController.m in Sources */,
  2080. 2915540717490A1E00B86CAD /* HTTPServer.m in Sources */,
  2081. 2915540817490A1E00B86CAD /* MultipartFormDataParser.m in Sources */,
  2082. 2915540917490A1E00B86CAD /* MultipartMessageHeader.m in Sources */,
  2083. 2915540A17490A1E00B86CAD /* MultipartMessageHeaderField.m in Sources */,
  2084. 2915542217490A9C00B86CAD /* GCDAsyncSocket.m in Sources */,
  2085. 7D9289751877459B009108FD /* VLCFirstStepsThirdPageViewController.m in Sources */,
  2086. 2915542417490A9C00B86CAD /* DDAbstractDatabaseLogger.m in Sources */,
  2087. 2915542517490A9C00B86CAD /* DDASLLogger.m in Sources */,
  2088. 2915542617490A9C00B86CAD /* DDFileLogger.m in Sources */,
  2089. 26D4AF8D1A78379000D5EC65 /* VLCSharedLibraryListViewController.m in Sources */,
  2090. 2915542717490A9C00B86CAD /* DDLog.m in Sources */,
  2091. 7D95610B1AF3E9E800779745 /* VLCMiniPlaybackView.m in Sources */,
  2092. 2915542817490A9C00B86CAD /* DDTTYLogger.m in Sources */,
  2093. 2915542917490A9C00B86CAD /* ContextFilterLogFormatter.m in Sources */,
  2094. 2915542A17490A9C00B86CAD /* DispatchQueueLogFormatter.m in Sources */,
  2095. 7DC19B051868D1C400810BF7 /* VLCFirstStepsFifthPageViewController.m in Sources */,
  2096. 2915543B17490B9C00B86CAD /* HTTPAsyncFileResponse.m in Sources */,
  2097. 2915543C17490B9C00B86CAD /* HTTPDataResponse.m in Sources */,
  2098. 2915543D17490B9C00B86CAD /* HTTPDynamicFileResponse.m in Sources */,
  2099. 9BADAF45185FBD9D00108BD8 /* VLCFrostedGlasView.m in Sources */,
  2100. DDC10BE41AEE8EA700890DC3 /* VLCTimeNavigationTitleView.m in Sources */,
  2101. 2915543E17490B9C00B86CAD /* HTTPErrorResponse.m in Sources */,
  2102. E0C04F951A25B4410080331A /* VLCDocumentPickerController.m in Sources */,
  2103. 2915543F17490B9C00B86CAD /* HTTPFileResponse.m in Sources */,
  2104. 41B93C011A53833B00102E8B /* VLCProgressView.m in Sources */,
  2105. 417CDA231A48D1F300D9ACE7 /* VLCCloudServicesTableViewController.m in Sources */,
  2106. 2915544017490B9C00B86CAD /* HTTPRedirectResponse.m in Sources */,
  2107. 2915544117490B9C00B86CAD /* WebSocket.m in Sources */,
  2108. 7D168F7418D4A33F003FAF59 /* UIImage+Blur.m in Sources */,
  2109. 9B5BEF2917FBAEA50016F9CB /* GTLDrive_Sources.m in Sources */,
  2110. 7DC19ADF1868C7BB00810BF7 /* VLCFirstStepsViewController.m in Sources */,
  2111. 7DE56C1A1AD93F9100E8CA00 /* VLCPlaybackController.m in Sources */,
  2112. 7DC72D6317B7ED24008A26D0 /* WhiteRaccoon.m in Sources */,
  2113. DD7110F01AF38B2B00854776 /* MLMediaLibrary+playlist.m in Sources */,
  2114. 7D5CAA891A4AD763003F2CBC /* VLCTrackSelectorTableViewCell.m in Sources */,
  2115. 7D63C19018774B1700BD5256 /* VLCFirstStepsSecondPageViewController.m in Sources */,
  2116. 8F91EC79195CEC7900F5BCBA /* VLCOpenInActivity.m in Sources */,
  2117. 7D37848F183A98B6009EE944 /* VLCMovieViewController.m in Sources */,
  2118. 7D378492183A98BF009EE944 /* VLCExternalDisplayController.m in Sources */,
  2119. 7D378499183A98D1009EE944 /* VLCPlaylistCollectionViewCell.m in Sources */,
  2120. DD8F84311B00EB3B0009138A /* VLCPlaybackController+MediaLibrary.m in Sources */,
  2121. 7D37849A183A98D1009EE944 /* VLCPlaylistTableViewCell.m in Sources */,
  2122. 7D37849B183A98D1009EE944 /* VLCPlaylistViewController.m in Sources */,
  2123. 7D37849E183A98DD009EE944 /* VLCThumbnailsCache.m in Sources */,
  2124. 7D3784A1183A98EB009EE944 /* VLCBugreporter.m in Sources */,
  2125. 7D3784A6183A98F5009EE944 /* VLCAboutViewController.m in Sources */,
  2126. 7D3784A7183A98F5009EE944 /* VLCSettingsController.m in Sources */,
  2127. 7DC19AE41868C8EC00810BF7 /* VLCFirstStepsFirstPageViewController.m in Sources */,
  2128. 7D3784AD183A9906009EE944 /* VLCDropboxController.m in Sources */,
  2129. 7D3784AE183A9906009EE944 /* VLCDropboxTableViewController.m in Sources */,
  2130. 7D3784BE183A9938009EE944 /* UIBarButtonItem+Theme.m in Sources */,
  2131. 41B93C051A53835300102E8B /* VLCCloudServiceCell.m in Sources */,
  2132. 7D4625881A5614A1001A80B4 /* VLCEqualizerView.m in Sources */,
  2133. 7DF9352F1958AB0600E60FD4 /* UIColor+Presets.m in Sources */,
  2134. 7D50903218F41C7900180139 /* VLCAlertView.m in Sources */,
  2135. 7DBBF182183AB3B80009A339 /* VLCAppDelegate.m in Sources */,
  2136. 7D3784C0183A9938009EE944 /* VLCLinearProgressIndicator.m in Sources */,
  2137. DD3EA6311AF50CFE007FF096 /* VLCWatchMessage.m in Sources */,
  2138. 41CD695D1A29D72600E60BCE /* VLCBoxTableViewController.m in Sources */,
  2139. 7D3784C1183A9938009EE944 /* VLCMenuButton.m in Sources */,
  2140. 41CD695C1A29D72600E60BCE /* VLCBoxController.m in Sources */,
  2141. 7D3784C2183A9938009EE944 /* VLCSlider.m in Sources */,
  2142. 7D3784C3183A9938009EE944 /* VLCStatusLabel.m in Sources */,
  2143. 7D1276621AADA0E600F0260C /* VLCMultiSelectionMenuView.m in Sources */,
  2144. 7D3784C8183A9972009EE944 /* NSString+SupportedMedia.m in Sources */,
  2145. 7D3784C9183A9972009EE944 /* UIDevice+VLC.m in Sources */,
  2146. 262C71591A98FA9200F7ED34 /* VLCPlexMediaInformationViewController.m in Sources */,
  2147. 7D3784CC183A99BA009EE944 /* PAPasscodeViewController.m in Sources */,
  2148. 7D3784E9183A9A15009EE944 /* main.m in Sources */,
  2149. 7D30F3C2183AB24C00FFC021 /* VLCHTTPConnection.m in Sources */,
  2150. 26E3A6FE1AAB76A100B32450 /* VLCPlexConnectServerViewController.m in Sources */,
  2151. 7D30F3C3183AB24C00FFC021 /* VLCHTTPFileDownloader.m in Sources */,
  2152. 41273A3C1A955C4100A2EF77 /* VLCMigrationViewController.m in Sources */,
  2153. 7D30F3C4183AB24C00FFC021 /* VLCHTTPUploaderController.m in Sources */,
  2154. 7D30F3C7183AB26F00FFC021 /* VLCOpenNetworkStreamViewController.m in Sources */,
  2155. 7D5CAA8C1A4AD8E5003F2CBC /* VLCTrackSelectorHeaderView.m in Sources */,
  2156. 4171D35018A2C19000A16EF9 /* VLCFolderCollectionViewFlowLayout.m in Sources */,
  2157. 7D30F3CA183AB27A00FFC021 /* VLCDownloadViewController.m in Sources */,
  2158. 26D4AF8E1A78379000D5EC65 /* VLCSharedLibraryParser.m in Sources */,
  2159. 7D30F3CD183AB29300FFC021 /* VLCMenuTableViewController.m in Sources */,
  2160. 7D9CB9DC1A4C55EF00BB74B4 /* VLCPlaybackNavigationController.m in Sources */,
  2161. 7D30F3D0183AB2AC00FFC021 /* VLCMediaFileDiscoverer.m in Sources */,
  2162. 493B1A1D195D06B1000A491A /* BasicUPnPDevice+VLC.m in Sources */,
  2163. 265D511D1922746C00E38383 /* VLCPlexParser.m in Sources */,
  2164. 2640FAE61B01477A00E359D6 /* VLCPlexWebAPI.m in Sources */,
  2165. 7DB847D71A5871570002DC30 /* VLCOneDriveObject.m in Sources */,
  2166. 7D1052E91A4DCC1100295F08 /* VLCOneDriveTableViewController.m in Sources */,
  2167. 7D30F3D7183AB2F100FFC021 /* VLCLocalNetworkListCell.m in Sources */,
  2168. 265D511C1922746C00E38383 /* VLCLocalPlexFolderListViewController.m in Sources */,
  2169. 7D1052EE1A4DCD1E00295F08 /* VLCOneDriveController.m in Sources */,
  2170. 7D30F3D8183AB2F100FFC021 /* VLCLocalServerFolderListViewController.m in Sources */,
  2171. 7D30F3D9183AB2F100FFC021 /* VLCLocalServerListViewController.m in Sources */,
  2172. 7D30F3DC183AB2F900FFC021 /* VLCNetworkLoginViewController.m in Sources */,
  2173. DDB959421AFBB30500BB8CFF /* MappingModel_2_5_to_2_6.xcmappingmodel in Sources */,
  2174. 7D30F3DF183AB31E00FFC021 /* VLCWiFiUploadTableViewCell.m in Sources */,
  2175. 7D74177A1AE2D3CE001F1997 /* VLCNavigationController.m in Sources */,
  2176. 7D30F3E2183AB33200FFC021 /* VLCSidebarViewCell.m in Sources */,
  2177. 7D30F3EA183AB34200FFC021 /* VLCGoogleDriveController.m in Sources */,
  2178. DD510B701B14E564003BA71C /* VLCPlayerDisplayController.m in Sources */,
  2179. 9B088308183D7BEC004B5C2A /* VLCCloudStorageTableViewController.m in Sources */,
  2180. DDE4906D1ACDBEA000B1B5E3 /* VLCNotificationRelay.m in Sources */,
  2181. 7D30F3EC183AB34200FFC021 /* VLCGoogleDriveTableViewController.m in Sources */,
  2182. );
  2183. runOnlyForDeploymentPostprocessing = 0;
  2184. };
  2185. /* End PBXSourcesBuildPhase section */
  2186. /* Begin PBXTargetDependency section */
  2187. 4173AEAE1ABF1B850004101D /* PBXTargetDependency */ = {
  2188. isa = PBXTargetDependency;
  2189. target = 4173AEAA1ABF1B850004101D /* VLC for iOS WatchKit App */;
  2190. targetProxy = 4173AEAD1ABF1B850004101D /* PBXContainerItemProxy */;
  2191. };
  2192. 4173AEB81ABF1B860004101D /* PBXTargetDependency */ = {
  2193. isa = PBXTargetDependency;
  2194. target = 4173AE9F1ABF1B850004101D /* VLC for iOS WatchKit Extension */;
  2195. targetProxy = 4173AEB71ABF1B860004101D /* PBXContainerItemProxy */;
  2196. };
  2197. /* End PBXTargetDependency section */
  2198. /* Begin PBXVariantGroup section */
  2199. 4173AEB21ABF1B860004101D /* Interface.storyboard */ = {
  2200. isa = PBXVariantGroup;
  2201. children = (
  2202. 4173AEB31ABF1B860004101D /* Base */,
  2203. );
  2204. name = Interface.storyboard;
  2205. sourceTree = "<group>";
  2206. };
  2207. 7D2D4ECE1ACFFA42006A8DBD /* Localizable.strings */ = {
  2208. isa = PBXVariantGroup;
  2209. children = (
  2210. 7D2D4ECD1ACFFA42006A8DBD /* en */,
  2211. 7D2D4ECF1ACFFA46006A8DBD /* de */,
  2212. 7D2E27891AD6DF72001FFE28 /* ja */,
  2213. 7D2E278A1AD6DFE4001FFE28 /* zh-Hans */,
  2214. 7D2E278B1AD6E02D001FFE28 /* sv */,
  2215. 7D2E278C1AD6E07B001FFE28 /* tr */,
  2216. 7D2E278D1AD6E1AD001FFE28 /* pt-PT */,
  2217. 7D2E278E1AD6E2E8001FFE28 /* fr */,
  2218. 7D2E278F1AD6E318001FFE28 /* uk */,
  2219. 7D2E27901AD6E3C9001FFE28 /* ru */,
  2220. 7D2E27911AD6E415001FFE28 /* el */,
  2221. 7D2E27921AD6E4D3001FFE28 /* da */,
  2222. 7D2E27931AD6E4FA001FFE28 /* nl */,
  2223. 7D2E27941AD6E538001FFE28 /* ta */,
  2224. 7D2E27951AD6E554001FFE28 /* fi */,
  2225. 7D2E27961AD6E583001FFE28 /* it */,
  2226. 7D2E27971AD6E59C001FFE28 /* es */,
  2227. );
  2228. name = Localizable.strings;
  2229. sourceTree = "<group>";
  2230. };
  2231. 7DE1862B175BA9A5006C0173 /* badgeUnread@2x~ipad.png */ = {
  2232. isa = PBXVariantGroup;
  2233. children = (
  2234. 7DE1862A175BA9A5006C0173 /* en */,
  2235. 7DE18635175BA9EB006C0173 /* ru */,
  2236. 7DE18639175BAEAF006C0173 /* de */,
  2237. 7DE1863A175BAEB0006C0173 /* fr */,
  2238. 7DE1863B175BAEB0006C0173 /* it */,
  2239. 7DE1863C175BAEB1006C0173 /* ja */,
  2240. 7D4BE734175F82CA00861CD4 /* fi */,
  2241. 7D7DA5301768A53200C7E95D /* id */,
  2242. 7DC222781773AB0900371B5C /* es */,
  2243. 7D5C204917999A64004F9443 /* da */,
  2244. 7D1AB27D179C98BF004CC271 /* he */,
  2245. 7D1AB282179C98CD004CC271 /* nl */,
  2246. 7D1AB287179C98D4004CC271 /* sk */,
  2247. 7D1AB28C179C98DC004CC271 /* tr */,
  2248. 7D1AB291179C98E4004CC271 /* uk */,
  2249. 7D1AB296179C98F4004CC271 /* vi */,
  2250. 7D1AB2A5179C99AE004CC271 /* zh-Hans */,
  2251. CC87147A17A56C05003C7383 /* mr */,
  2252. CC87147F17A56C61003C7383 /* gl */,
  2253. CC87148417A56C85003C7383 /* ca */,
  2254. 7D4C484517ACF982008D228B /* bs */,
  2255. 7D19492C17C661A300959800 /* el */,
  2256. 7D9B6B0917C9625F00F9425D /* sl */,
  2257. CCAF837F17DE46D800E3578F /* pl */,
  2258. CC75BE3B17DF4BBD00FAC19D /* ar */,
  2259. CC75BE4017DF744400FAC19D /* ko */,
  2260. 7D2AEDE117FB775900B5281E /* sv */,
  2261. 7D2AEDE617FB785200B5281E /* hu */,
  2262. 7D8139BF18651FEE00D65504 /* cs */,
  2263. 7D8139C41865206300D65504 /* fa */,
  2264. 7D8139C9186520A800D65504 /* es-MX */,
  2265. 7D8139CE1865211900D65504 /* ms */,
  2266. 7D4136631896710500D7B4B2 /* si */,
  2267. 7D168F6C18D49E74003FAF59 /* lv */,
  2268. 7D3323FC18E61DD5000ABEA5 /* en-GB */,
  2269. 7DB2486F18EA1D6D0097ADD2 /* ro */,
  2270. 7DD32D23194F1946002510A9 /* zh-Hant */,
  2271. 7D685A871AAF73DD006CD82A /* af */,
  2272. 7D685A8C1AAF73F3006CD82A /* be */,
  2273. 7D685A911AAF7406006CD82A /* fo */,
  2274. 7D685A961AAF741D006CD82A /* km */,
  2275. 7D685AA01AAF745B006CD82A /* ta */,
  2276. 7D685AA51AAF7472006CD82A /* pt-PT */,
  2277. 7D685AAA1AAF7488006CD82A /* pt-BR */,
  2278. 7D685AAF1AAF74F9006CD82A /* sr-Latn */,
  2279. );
  2280. name = "badgeUnread@2x~ipad.png";
  2281. sourceTree = "<group>";
  2282. };
  2283. 7DE1862E175BA9A9006C0173 /* badgeUnread@2x~iphone.png */ = {
  2284. isa = PBXVariantGroup;
  2285. children = (
  2286. 7DE1862D175BA9A9006C0173 /* en */,
  2287. 7DE18637175BA9F9006C0173 /* ru */,
  2288. 7DE1863D175BAEB5006C0173 /* de */,
  2289. 7DE1863E175BAEB6006C0173 /* fr */,
  2290. 7DE1863F175BAEB7006C0173 /* it */,
  2291. 7DE18640175BAEB7006C0173 /* ja */,
  2292. 7D4BE735175F82CA00861CD4 /* fi */,
  2293. 7D7DA5311768A53200C7E95D /* id */,
  2294. 7DC222791773AB0900371B5C /* es */,
  2295. 7D5C204A17999A64004F9443 /* da */,
  2296. 7D1AB27E179C98BF004CC271 /* he */,
  2297. 7D1AB283179C98CD004CC271 /* nl */,
  2298. 7D1AB288179C98D4004CC271 /* sk */,
  2299. 7D1AB28D179C98DC004CC271 /* tr */,
  2300. 7D1AB292179C98E4004CC271 /* uk */,
  2301. 7D1AB297179C98F4004CC271 /* vi */,
  2302. 7D1AB2A6179C99AE004CC271 /* zh-Hans */,
  2303. CC87147B17A56C05003C7383 /* mr */,
  2304. CC87148017A56C61003C7383 /* gl */,
  2305. CC87148517A56C85003C7383 /* ca */,
  2306. 7D4C484617ACF982008D228B /* bs */,
  2307. 7D19492D17C661A300959800 /* el */,
  2308. 7D9B6B0A17C9626000F9425D /* sl */,
  2309. CCAF838017DE46D800E3578F /* pl */,
  2310. CC75BE3C17DF4BBD00FAC19D /* ar */,
  2311. CC75BE4117DF744500FAC19D /* ko */,
  2312. 7D2AEDE217FB775900B5281E /* sv */,
  2313. 7D2AEDE717FB785200B5281E /* hu */,
  2314. 7D8139C018651FEE00D65504 /* cs */,
  2315. 7D8139C51865206300D65504 /* fa */,
  2316. 7D8139CA186520A800D65504 /* es-MX */,
  2317. 7D8139CF1865211900D65504 /* ms */,
  2318. 7D4136641896710500D7B4B2 /* si */,
  2319. 7D168F6D18D49E74003FAF59 /* lv */,
  2320. 7D3323FD18E61DD5000ABEA5 /* en-GB */,
  2321. 7DB2487018EA1D6D0097ADD2 /* ro */,
  2322. 7DD32D24194F1946002510A9 /* zh-Hant */,
  2323. 7D685A881AAF73DE006CD82A /* af */,
  2324. 7D685A8D1AAF73F3006CD82A /* be */,
  2325. 7D685A921AAF7406006CD82A /* fo */,
  2326. 7D685A971AAF741D006CD82A /* km */,
  2327. 7D685AA11AAF745B006CD82A /* ta */,
  2328. 7D685AA61AAF7472006CD82A /* pt-PT */,
  2329. 7D685AAB1AAF7488006CD82A /* pt-BR */,
  2330. 7D685AB01AAF74F9006CD82A /* sr-Latn */,
  2331. );
  2332. name = "badgeUnread@2x~iphone.png";
  2333. sourceTree = "<group>";
  2334. };
  2335. 7DE18631175BA9AC006C0173 /* badgeUnread~ipad.png */ = {
  2336. isa = PBXVariantGroup;
  2337. children = (
  2338. 7DE18630175BA9AC006C0173 /* en */,
  2339. 7DE18636175BA9F4006C0173 /* ru */,
  2340. 7DE18645175BAEBF006C0173 /* de */,
  2341. 7DE18646175BAEC0006C0173 /* fr */,
  2342. 7DE18647175BAEC1006C0173 /* it */,
  2343. 7DE18648175BAEC2006C0173 /* ja */,
  2344. 7D4BE736175F82CA00861CD4 /* fi */,
  2345. 7D7DA5321768A53200C7E95D /* id */,
  2346. 7DC2227A1773AB0900371B5C /* es */,
  2347. 7D5C204B17999A64004F9443 /* da */,
  2348. 7D1AB27F179C98C0004CC271 /* he */,
  2349. 7D1AB284179C98CD004CC271 /* nl */,
  2350. 7D1AB289179C98D4004CC271 /* sk */,
  2351. 7D1AB28E179C98DC004CC271 /* tr */,
  2352. 7D1AB293179C98E4004CC271 /* uk */,
  2353. 7D1AB298179C98F4004CC271 /* vi */,
  2354. 7D1AB2A7179C99AE004CC271 /* zh-Hans */,
  2355. CC87147C17A56C05003C7383 /* mr */,
  2356. CC87148117A56C61003C7383 /* gl */,
  2357. CC87148617A56C85003C7383 /* ca */,
  2358. 7D4C484717ACF982008D228B /* bs */,
  2359. 7D19492E17C661A300959800 /* el */,
  2360. 7D9B6B0B17C9626000F9425D /* sl */,
  2361. CCAF838117DE46D800E3578F /* pl */,
  2362. CC75BE3D17DF4BBD00FAC19D /* ar */,
  2363. CC75BE4217DF744500FAC19D /* ko */,
  2364. 7D2AEDE317FB775900B5281E /* sv */,
  2365. 7D2AEDE817FB785200B5281E /* hu */,
  2366. 7D8139C118651FEE00D65504 /* cs */,
  2367. 7D8139C61865206300D65504 /* fa */,
  2368. 7D8139CB186520A800D65504 /* es-MX */,
  2369. 7D8139D01865211900D65504 /* ms */,
  2370. 7D4136651896710500D7B4B2 /* si */,
  2371. 7D168F6E18D49E74003FAF59 /* lv */,
  2372. 7D3323FE18E61DD5000ABEA5 /* en-GB */,
  2373. 7DB2487118EA1D6E0097ADD2 /* ro */,
  2374. 7DD32D25194F1946002510A9 /* zh-Hant */,
  2375. 7D685A891AAF73DE006CD82A /* af */,
  2376. 7D685A8E1AAF73F3006CD82A /* be */,
  2377. 7D685A931AAF7406006CD82A /* fo */,
  2378. 7D685A981AAF741D006CD82A /* km */,
  2379. 7D685AA21AAF745B006CD82A /* ta */,
  2380. 7D685AA71AAF7472006CD82A /* pt-PT */,
  2381. 7D685AAC1AAF7488006CD82A /* pt-BR */,
  2382. 7D685AB11AAF74F9006CD82A /* sr-Latn */,
  2383. );
  2384. name = "badgeUnread~ipad.png";
  2385. sourceTree = "<group>";
  2386. };
  2387. 7DE18634175BA9AF006C0173 /* badgeUnread~iphone.png */ = {
  2388. isa = PBXVariantGroup;
  2389. children = (
  2390. 7DE18633175BA9AF006C0173 /* en */,
  2391. 7DE18638175BA9FC006C0173 /* ru */,
  2392. 7DE18641175BAEBA006C0173 /* de */,
  2393. 7DE18642175BAEBB006C0173 /* it */,
  2394. 7DE18643175BAEBC006C0173 /* fr */,
  2395. 7DE18644175BAEBD006C0173 /* ja */,
  2396. 7D4BE737175F82CA00861CD4 /* fi */,
  2397. 7D7DA5331768A53200C7E95D /* id */,
  2398. 7DC2227B1773AB0900371B5C /* es */,
  2399. 7D5C204C17999A64004F9443 /* da */,
  2400. 7D1AB280179C98C0004CC271 /* he */,
  2401. 7D1AB285179C98CD004CC271 /* nl */,
  2402. 7D1AB28A179C98D4004CC271 /* sk */,
  2403. 7D1AB28F179C98DC004CC271 /* tr */,
  2404. 7D1AB294179C98E4004CC271 /* uk */,
  2405. 7D1AB299179C98F4004CC271 /* vi */,
  2406. 7D1AB2A8179C99AE004CC271 /* zh-Hans */,
  2407. CC87147D17A56C05003C7383 /* mr */,
  2408. CC87148217A56C61003C7383 /* gl */,
  2409. CC87148717A56C85003C7383 /* ca */,
  2410. 7D4C484817ACF982008D228B /* bs */,
  2411. 7D19492F17C661A300959800 /* el */,
  2412. 7D9B6B0C17C9626000F9425D /* sl */,
  2413. CCAF838217DE46D800E3578F /* pl */,
  2414. CC75BE3E17DF4BBD00FAC19D /* ar */,
  2415. CC75BE4317DF744500FAC19D /* ko */,
  2416. 7D2AEDE417FB775900B5281E /* sv */,
  2417. 7D2AEDE917FB785200B5281E /* hu */,
  2418. 7D8139C218651FEE00D65504 /* cs */,
  2419. 7D8139C71865206300D65504 /* fa */,
  2420. 7D8139CC186520A800D65504 /* es-MX */,
  2421. 7D8139D11865211900D65504 /* ms */,
  2422. 7D4136661896710500D7B4B2 /* si */,
  2423. 7D168F6F18D49E74003FAF59 /* lv */,
  2424. 7D3323FF18E61DD5000ABEA5 /* en-GB */,
  2425. 7DB2487218EA1D6E0097ADD2 /* ro */,
  2426. 7DD32D26194F1946002510A9 /* zh-Hant */,
  2427. 7D685A8A1AAF73DE006CD82A /* af */,
  2428. 7D685A8F1AAF73F3006CD82A /* be */,
  2429. 7D685A941AAF7407006CD82A /* fo */,
  2430. 7D685A991AAF741D006CD82A /* km */,
  2431. 7D685AA31AAF745B006CD82A /* ta */,
  2432. 7D685AA81AAF7472006CD82A /* pt-PT */,
  2433. 7D685AAD1AAF7488006CD82A /* pt-BR */,
  2434. 7D685AB21AAF74F9006CD82A /* sr-Latn */,
  2435. );
  2436. name = "badgeUnread~iphone.png";
  2437. sourceTree = "<group>";
  2438. };
  2439. A79246C6170F11DF0036AAF2 /* Localizable.strings */ = {
  2440. isa = PBXVariantGroup;
  2441. children = (
  2442. A79246C7170F11DF0036AAF2 /* en */,
  2443. A79246C9170F11E40036AAF2 /* ru */,
  2444. 7DC87AEF17413634009DC250 /* de */,
  2445. 7DC87AF017413A17009DC250 /* fr */,
  2446. 7D6D13591758D1A00007EA9A /* it */,
  2447. 7D49E178175A47A4002D1450 /* ja */,
  2448. 7D4BE733175F82CA00861CD4 /* fi */,
  2449. 7D7DA52F1768A53200C7E95D /* id */,
  2450. 7DC222771773AB0900371B5C /* es */,
  2451. 7D5C204D17999A74004F9443 /* da */,
  2452. 7D1AB27C179C98BF004CC271 /* he */,
  2453. 7D1AB281179C98CD004CC271 /* nl */,
  2454. 7D1AB286179C98D4004CC271 /* sk */,
  2455. 7D1AB28B179C98DC004CC271 /* tr */,
  2456. 7D1AB290179C98E3004CC271 /* uk */,
  2457. 7D1AB295179C98F4004CC271 /* vi */,
  2458. 7D1AB2A4179C99AE004CC271 /* zh-Hans */,
  2459. CC87147917A56C05003C7383 /* mr */,
  2460. CC87147E17A56C61003C7383 /* gl */,
  2461. CC87148317A56C85003C7383 /* ca */,
  2462. 7D4C484417ACF982008D228B /* bs */,
  2463. 7D19492B17C661A300959800 /* el */,
  2464. 7D9B6B0817C9625F00F9425D /* sl */,
  2465. CCAF837E17DE46D800E3578F /* pl */,
  2466. CC75BE3A17DF4BBD00FAC19D /* ar */,
  2467. CC75BE3F17DF744400FAC19D /* ko */,
  2468. 7D2AEDE017FB775900B5281E /* sv */,
  2469. 7D2AEDE517FB785100B5281E /* hu */,
  2470. 7D8139BE18651FEE00D65504 /* cs */,
  2471. 7D8139C31865206200D65504 /* fa */,
  2472. 7D8139C8186520A800D65504 /* es-MX */,
  2473. 7D8139CD1865211900D65504 /* ms */,
  2474. 7D4136621896710500D7B4B2 /* si */,
  2475. 7D168F6B18D49E74003FAF59 /* lv */,
  2476. 7D3323FB18E61DD5000ABEA5 /* en-GB */,
  2477. 7DB2486E18EA1D6D0097ADD2 /* ro */,
  2478. 7DD32D22194F1946002510A9 /* zh-Hant */,
  2479. 7D685A861AAF73DD006CD82A /* af */,
  2480. 7D685A8B1AAF73F2006CD82A /* be */,
  2481. 7D685A901AAF7406006CD82A /* fo */,
  2482. 7D685A951AAF741D006CD82A /* km */,
  2483. 7D685A9F1AAF745B006CD82A /* ta */,
  2484. 7D685AA41AAF7472006CD82A /* pt-PT */,
  2485. 7D685AA91AAF7488006CD82A /* pt-BR */,
  2486. 7D685AAE1AAF74F9006CD82A /* sr-Latn */,
  2487. );
  2488. name = Localizable.strings;
  2489. sourceTree = "<group>";
  2490. };
  2491. /* End PBXVariantGroup section */
  2492. /* Begin XCBuildConfiguration section */
  2493. 4173AEBB1ABF1B860004101D /* Debug */ = {
  2494. isa = XCBuildConfiguration;
  2495. buildSettings = {
  2496. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2497. CLANG_ENABLE_MODULES = YES;
  2498. CLANG_ENABLE_OBJC_ARC = YES;
  2499. CLANG_WARN_BOOL_CONVERSION = YES;
  2500. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2501. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2502. CLANG_WARN_UNREACHABLE_CODE = YES;
  2503. CODE_SIGN_IDENTITY = "iPhone Developer";
  2504. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2505. GCC_OPTIMIZATION_LEVEL = 0;
  2506. GCC_PREPROCESSOR_DEFINITIONS = (
  2507. "DEBUG=1",
  2508. "$(inherited)",
  2509. );
  2510. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2511. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2512. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2513. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2514. GCC_WARN_UNUSED_FUNCTION = YES;
  2515. IBSC_MODULE = VLC_for_iOS_WatchKit_Extension;
  2516. INFOPLIST_FILE = "VLC for iOS WatchKit App/Info.plist";
  2517. IPHONEOS_DEPLOYMENT_TARGET = 8.2;
  2518. MTL_ENABLE_DEBUG_INFO = YES;
  2519. PRODUCT_NAME = "$(TARGET_NAME)";
  2520. SKIP_INSTALL = YES;
  2521. TARGETED_DEVICE_FAMILY = 4;
  2522. "TARGETED_DEVICE_FAMILY[sdk=iphonesimulator*]" = "1,4";
  2523. };
  2524. name = Debug;
  2525. };
  2526. 4173AEBC1ABF1B860004101D /* Release */ = {
  2527. isa = XCBuildConfiguration;
  2528. buildSettings = {
  2529. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2530. CLANG_ENABLE_MODULES = YES;
  2531. CLANG_ENABLE_OBJC_ARC = YES;
  2532. CLANG_WARN_BOOL_CONVERSION = YES;
  2533. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2534. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2535. CLANG_WARN_UNREACHABLE_CODE = YES;
  2536. CODE_SIGN_IDENTITY = "iPhone Developer";
  2537. COPY_PHASE_STRIP = NO;
  2538. ENABLE_NS_ASSERTIONS = NO;
  2539. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2540. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2541. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2542. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2543. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2544. GCC_WARN_UNUSED_FUNCTION = YES;
  2545. IBSC_MODULE = VLC_for_iOS_WatchKit_Extension;
  2546. INFOPLIST_FILE = "VLC for iOS WatchKit App/Info.plist";
  2547. IPHONEOS_DEPLOYMENT_TARGET = 8.2;
  2548. MTL_ENABLE_DEBUG_INFO = NO;
  2549. PRODUCT_NAME = "$(TARGET_NAME)";
  2550. SKIP_INSTALL = YES;
  2551. TARGETED_DEVICE_FAMILY = 4;
  2552. "TARGETED_DEVICE_FAMILY[sdk=iphonesimulator*]" = "1,4";
  2553. };
  2554. name = Release;
  2555. };
  2556. 4173AEBD1ABF1B860004101D /* Distribution */ = {
  2557. isa = XCBuildConfiguration;
  2558. buildSettings = {
  2559. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2560. CLANG_ENABLE_MODULES = YES;
  2561. CLANG_ENABLE_OBJC_ARC = YES;
  2562. CLANG_WARN_BOOL_CONVERSION = YES;
  2563. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2564. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2565. CLANG_WARN_UNREACHABLE_CODE = YES;
  2566. CODE_SIGN_IDENTITY = "iPhone Developer";
  2567. COPY_PHASE_STRIP = NO;
  2568. ENABLE_NS_ASSERTIONS = NO;
  2569. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2570. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2571. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2572. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2573. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2574. GCC_WARN_UNUSED_FUNCTION = YES;
  2575. IBSC_MODULE = VLC_for_iOS_WatchKit_Extension;
  2576. INFOPLIST_FILE = "VLC for iOS WatchKit App/Info.plist";
  2577. IPHONEOS_DEPLOYMENT_TARGET = 8.2;
  2578. MTL_ENABLE_DEBUG_INFO = NO;
  2579. PRODUCT_NAME = "$(TARGET_NAME)";
  2580. SKIP_INSTALL = YES;
  2581. TARGETED_DEVICE_FAMILY = 4;
  2582. "TARGETED_DEVICE_FAMILY[sdk=iphonesimulator*]" = "1,4";
  2583. };
  2584. name = Distribution;
  2585. };
  2586. 4173AEBF1ABF1B860004101D /* Debug */ = {
  2587. isa = XCBuildConfiguration;
  2588. buildSettings = {
  2589. ARCHS = (
  2590. "$(ARCHS_STANDARD)",
  2591. armv7s,
  2592. );
  2593. CLANG_ENABLE_MODULES = YES;
  2594. CLANG_ENABLE_OBJC_ARC = YES;
  2595. CLANG_WARN_BOOL_CONVERSION = YES;
  2596. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2597. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2598. CLANG_WARN_UNREACHABLE_CODE = YES;
  2599. CODE_SIGN_ENTITLEMENTS = "VLC for iOS WatchKit Extension/VLC for iOS WatchKit Extension.entitlements";
  2600. CODE_SIGN_IDENTITY = "iPhone Developer";
  2601. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2602. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2603. GCC_OPTIMIZATION_LEVEL = 0;
  2604. GCC_PREPROCESSOR_DEFINITIONS = (
  2605. "DEBUG=1",
  2606. "$(inherited)",
  2607. );
  2608. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2609. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2610. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2611. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2612. GCC_WARN_UNUSED_FUNCTION = YES;
  2613. HEADER_SEARCH_PATHS = (
  2614. "$(SRCROOT)/External/MobileVLCKit/include",
  2615. "$(SRCROOT)/External/MediaLibraryKit/include",
  2616. "$(inherited)",
  2617. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
  2618. );
  2619. INFOPLIST_FILE = "VLC for iOS WatchKit Extension/Info.plist";
  2620. IPHONEOS_DEPLOYMENT_TARGET = 8.2;
  2621. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  2622. LIBRARY_SEARCH_PATHS = (
  2623. "$(inherited)",
  2624. "$(SRCROOT)/External/MobileVLCKit/",
  2625. "$(SRCROOT)/External/MediaLibraryKit/",
  2626. );
  2627. MTL_ENABLE_DEBUG_INFO = YES;
  2628. PRODUCT_NAME = "${TARGET_NAME}";
  2629. PROVISIONING_PROFILE = "";
  2630. SKIP_INSTALL = YES;
  2631. };
  2632. name = Debug;
  2633. };
  2634. 4173AEC01ABF1B860004101D /* Release */ = {
  2635. isa = XCBuildConfiguration;
  2636. buildSettings = {
  2637. ARCHS = (
  2638. "$(ARCHS_STANDARD)",
  2639. armv7s,
  2640. );
  2641. CLANG_ENABLE_MODULES = YES;
  2642. CLANG_ENABLE_OBJC_ARC = YES;
  2643. CLANG_WARN_BOOL_CONVERSION = YES;
  2644. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2645. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2646. CLANG_WARN_UNREACHABLE_CODE = YES;
  2647. CODE_SIGN_ENTITLEMENTS = "VLC for iOS WatchKit Extension/VLC for iOS WatchKit Extension.entitlements";
  2648. CODE_SIGN_IDENTITY = "iPhone Developer";
  2649. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2650. COPY_PHASE_STRIP = NO;
  2651. ENABLE_NS_ASSERTIONS = NO;
  2652. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2653. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2654. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2655. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2656. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2657. GCC_WARN_UNUSED_FUNCTION = YES;
  2658. HEADER_SEARCH_PATHS = (
  2659. "$(SRCROOT)/External/MobileVLCKit/include",
  2660. "$(SRCROOT)/External/MediaLibraryKit/include",
  2661. "$(inherited)",
  2662. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
  2663. );
  2664. INFOPLIST_FILE = "VLC for iOS WatchKit Extension/Info.plist";
  2665. IPHONEOS_DEPLOYMENT_TARGET = 8.2;
  2666. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  2667. LIBRARY_SEARCH_PATHS = (
  2668. "$(inherited)",
  2669. "$(SRCROOT)/External/MobileVLCKit/",
  2670. "$(SRCROOT)/External/MediaLibraryKit/",
  2671. );
  2672. MTL_ENABLE_DEBUG_INFO = NO;
  2673. PRODUCT_NAME = "${TARGET_NAME}";
  2674. PROVISIONING_PROFILE = "";
  2675. SKIP_INSTALL = YES;
  2676. };
  2677. name = Release;
  2678. };
  2679. 4173AEC11ABF1B860004101D /* Distribution */ = {
  2680. isa = XCBuildConfiguration;
  2681. buildSettings = {
  2682. ARCHS = (
  2683. "$(ARCHS_STANDARD)",
  2684. armv7s,
  2685. );
  2686. CLANG_ENABLE_MODULES = YES;
  2687. CLANG_ENABLE_OBJC_ARC = YES;
  2688. CLANG_WARN_BOOL_CONVERSION = YES;
  2689. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2690. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2691. CLANG_WARN_UNREACHABLE_CODE = YES;
  2692. CODE_SIGN_ENTITLEMENTS = "VLC for iOS WatchKit Extension/VLC for iOS WatchKit Extension.entitlements";
  2693. CODE_SIGN_IDENTITY = "iPhone Developer";
  2694. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2695. COPY_PHASE_STRIP = NO;
  2696. ENABLE_NS_ASSERTIONS = NO;
  2697. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2698. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2699. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2700. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2701. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2702. GCC_WARN_UNUSED_FUNCTION = YES;
  2703. HEADER_SEARCH_PATHS = (
  2704. "$(SRCROOT)/External/MobileVLCKit/include",
  2705. "$(SRCROOT)/External/MediaLibraryKit/include",
  2706. "$(inherited)",
  2707. /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
  2708. );
  2709. INFOPLIST_FILE = "VLC for iOS WatchKit Extension/Info.plist";
  2710. IPHONEOS_DEPLOYMENT_TARGET = 8.2;
  2711. LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
  2712. LIBRARY_SEARCH_PATHS = (
  2713. "$(inherited)",
  2714. "$(SRCROOT)/External/MobileVLCKit/",
  2715. "$(SRCROOT)/External/MediaLibraryKit/",
  2716. );
  2717. MTL_ENABLE_DEBUG_INFO = NO;
  2718. PRODUCT_NAME = "${TARGET_NAME}";
  2719. PROVISIONING_PROFILE = "";
  2720. SKIP_INSTALL = YES;
  2721. };
  2722. name = Distribution;
  2723. };
  2724. 7D94FD0816DE7D1100F2623B /* Debug */ = {
  2725. isa = XCBuildConfiguration;
  2726. buildSettings = {
  2727. ALWAYS_SEARCH_USER_PATHS = NO;
  2728. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2729. CLANG_CXX_LIBRARY = "libc++";
  2730. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2731. CLANG_WARN_EMPTY_BODY = YES;
  2732. CLANG_WARN_ENUM_CONVERSION = YES;
  2733. CLANG_WARN_INT_CONVERSION = YES;
  2734. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2735. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2736. COPY_PHASE_STRIP = NO;
  2737. GCC_C_LANGUAGE_STANDARD = gnu99;
  2738. GCC_DYNAMIC_NO_PIC = NO;
  2739. GCC_PREPROCESSOR_DEFINITIONS = (
  2740. "DEBUG=1",
  2741. "$(inherited)",
  2742. );
  2743. GCC_SYMBOLS_PRIVATE_EXTERN = NO;
  2744. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  2745. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  2746. GCC_WARN_UNUSED_VARIABLE = YES;
  2747. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2748. ONLY_ACTIVE_ARCH = YES;
  2749. OTHER_LDFLAGS = "-ObjC";
  2750. SDKROOT = iphoneos;
  2751. TARGETED_DEVICE_FAMILY = "1,2";
  2752. };
  2753. name = Debug;
  2754. };
  2755. 7D94FD0916DE7D1100F2623B /* Release */ = {
  2756. isa = XCBuildConfiguration;
  2757. buildSettings = {
  2758. ALWAYS_SEARCH_USER_PATHS = NO;
  2759. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2760. CLANG_CXX_LIBRARY = "libc++";
  2761. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2762. CLANG_WARN_EMPTY_BODY = YES;
  2763. CLANG_WARN_ENUM_CONVERSION = YES;
  2764. CLANG_WARN_INT_CONVERSION = YES;
  2765. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2766. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2767. COPY_PHASE_STRIP = YES;
  2768. GCC_C_LANGUAGE_STANDARD = gnu99;
  2769. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  2770. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  2771. GCC_WARN_UNUSED_VARIABLE = YES;
  2772. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2773. OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
  2774. OTHER_LDFLAGS = "-ObjC";
  2775. SDKROOT = iphoneos;
  2776. TARGETED_DEVICE_FAMILY = "1,2";
  2777. VALIDATE_PRODUCT = YES;
  2778. };
  2779. name = Release;
  2780. };
  2781. 7D94FD0B16DE7D1100F2623B /* Debug */ = {
  2782. isa = XCBuildConfiguration;
  2783. baseConfigurationReference = 521108CBC3CAA0810AF3CBA8 /* Pods-vlc-ios.debug.xcconfig */;
  2784. buildSettings = {
  2785. ARCHS = (
  2786. "$(ARCHS_STANDARD)",
  2787. armv7s,
  2788. );
  2789. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2790. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  2791. CLANG_ENABLE_OBJC_ARC = YES;
  2792. CODE_SIGN_ENTITLEMENTS = "vlc-ios/VLC for iOS.entitlements";
  2793. CODE_SIGN_IDENTITY = "iPhone Developer";
  2794. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2795. COPY_PHASE_STRIP = NO;
  2796. DEAD_CODE_STRIPPING = NO;
  2797. ENABLE_NS_ASSERTIONS = YES;
  2798. EXCLUDED_SOURCE_FILE_NAMES = "";
  2799. FRAMEWORK_SEARCH_PATHS = (
  2800. "$(inherited)",
  2801. "$(PROJECT_DIR)/ImportedSources/Dropbox",
  2802. "$(PROJECT_DIR)/External/OneDrive",
  2803. "$(PROJECT_DIR)",
  2804. );
  2805. GCC_C_LANGUAGE_STANDARD = c99;
  2806. GCC_OPTIMIZATION_LEVEL = 0;
  2807. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2808. GCC_PREFIX_HEADER = "Sources/VLC for iOS-Prefix.pch";
  2809. HEADER_SEARCH_PATHS = (
  2810. "$(SRCROOT)/External/MobileVLCKit/include",
  2811. "$(SRCROOT)/External/MediaLibraryKit/include",
  2812. "$(SRCROOT)/ImportedSources/GDrive/**",
  2813. "\"$(SRCROOT)/ImportedSources/OneDrive/src/LiveSDK/Library\"/**",
  2814. "$(inherited)",
  2815. );
  2816. INFOPLIST_FILE = "Sources/VLC for iOS-Info.plist";
  2817. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2818. LIBRARY_SEARCH_PATHS = (
  2819. "$(inherited)",
  2820. "\"$(SRCROOT)/External/MediaLibraryKit\"",
  2821. "\"$(SRCROOT)/External/MobileVLCKit\"",
  2822. "\"$(SRCROOT)/External/gtl\"",
  2823. "\"$(SDKROOT)/usr/lib/system\"",
  2824. );
  2825. ONLY_ACTIVE_ARCH = YES;
  2826. OTHER_LDFLAGS = (
  2827. "-Wl,-no_pie",
  2828. "$(inherited)",
  2829. );
  2830. PRODUCT_NAME = "VLC for iOS";
  2831. PROVISIONING_PROFILE = "";
  2832. SKIP_INSTALL = NO;
  2833. };
  2834. name = Debug;
  2835. };
  2836. 7D94FD0C16DE7D1100F2623B /* Release */ = {
  2837. isa = XCBuildConfiguration;
  2838. baseConfigurationReference = 6AB5E0853B398B35369938EC /* Pods-vlc-ios.release.xcconfig */;
  2839. buildSettings = {
  2840. ARCHS = (
  2841. "$(ARCHS_STANDARD)",
  2842. armv7s,
  2843. );
  2844. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2845. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  2846. CLANG_ENABLE_OBJC_ARC = YES;
  2847. CODE_SIGN_ENTITLEMENTS = "vlc-ios/VLC for iOS.entitlements";
  2848. CODE_SIGN_IDENTITY = "iPhone Developer";
  2849. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2850. COPY_PHASE_STRIP = YES;
  2851. DEAD_CODE_STRIPPING = NO;
  2852. ENABLE_NS_ASSERTIONS = NO;
  2853. EXCLUDED_SOURCE_FILE_NAMES = "";
  2854. FRAMEWORK_SEARCH_PATHS = (
  2855. "$(inherited)",
  2856. "$(PROJECT_DIR)/ImportedSources/Dropbox",
  2857. "$(PROJECT_DIR)/External/OneDrive",
  2858. "$(PROJECT_DIR)",
  2859. );
  2860. GCC_C_LANGUAGE_STANDARD = c99;
  2861. GCC_OPTIMIZATION_LEVEL = 0;
  2862. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2863. GCC_PREFIX_HEADER = "Sources/VLC for iOS-Prefix.pch";
  2864. HEADER_SEARCH_PATHS = (
  2865. "$(SRCROOT)/External/MobileVLCKit/include",
  2866. "$(SRCROOT)/External/MediaLibraryKit/include",
  2867. "$(SRCROOT)/ImportedSources/GDrive/**",
  2868. "\"$(SRCROOT)/ImportedSources/OneDrive/src/LiveSDK/Library\"/**",
  2869. "$(inherited)",
  2870. );
  2871. INFOPLIST_FILE = "Sources/VLC for iOS-Info.plist";
  2872. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2873. LIBRARY_SEARCH_PATHS = (
  2874. "$(inherited)",
  2875. "\"$(SRCROOT)/External/MediaLibraryKit\"",
  2876. "\"$(SRCROOT)/External/MobileVLCKit\"",
  2877. "\"$(SRCROOT)/External/gtl\"",
  2878. "\"$(SDKROOT)/usr/lib/system\"",
  2879. );
  2880. ONLY_ACTIVE_ARCH = NO;
  2881. OTHER_LDFLAGS = (
  2882. "-Wl,-no_pie",
  2883. "$(inherited)",
  2884. );
  2885. PRODUCT_NAME = "VLC for iOS";
  2886. PROVISIONING_PROFILE = "";
  2887. "PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
  2888. SKIP_INSTALL = NO;
  2889. };
  2890. name = Release;
  2891. };
  2892. A7035BBF174519E40057DFA7 /* Distribution */ = {
  2893. isa = XCBuildConfiguration;
  2894. buildSettings = {
  2895. ALWAYS_SEARCH_USER_PATHS = NO;
  2896. CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
  2897. CLANG_CXX_LIBRARY = "libc++";
  2898. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2899. CLANG_WARN_EMPTY_BODY = YES;
  2900. CLANG_WARN_ENUM_CONVERSION = YES;
  2901. CLANG_WARN_INT_CONVERSION = YES;
  2902. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2903. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2904. COPY_PHASE_STRIP = YES;
  2905. GCC_C_LANGUAGE_STANDARD = gnu99;
  2906. GCC_WARN_ABOUT_RETURN_TYPE = YES;
  2907. GCC_WARN_UNINITIALIZED_AUTOS = YES;
  2908. GCC_WARN_UNUSED_VARIABLE = YES;
  2909. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2910. OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
  2911. OTHER_LDFLAGS = "-ObjC";
  2912. SDKROOT = iphoneos;
  2913. TARGETED_DEVICE_FAMILY = "1,2";
  2914. VALIDATE_PRODUCT = YES;
  2915. };
  2916. name = Distribution;
  2917. };
  2918. A7035BC0174519E40057DFA7 /* Distribution */ = {
  2919. isa = XCBuildConfiguration;
  2920. baseConfigurationReference = E09EACF57CDD22ABAE66CDD0 /* Pods-vlc-ios.distribution.xcconfig */;
  2921. buildSettings = {
  2922. ARCHS = (
  2923. "$(ARCHS_STANDARD)",
  2924. armv7s,
  2925. );
  2926. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2927. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  2928. CLANG_ENABLE_OBJC_ARC = YES;
  2929. CODE_SIGN_ENTITLEMENTS = "vlc-ios/VLC for iOS.entitlements";
  2930. CODE_SIGN_IDENTITY = "iPhone Developer";
  2931. "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
  2932. COPY_PHASE_STRIP = YES;
  2933. DEAD_CODE_STRIPPING = NO;
  2934. ENABLE_NS_ASSERTIONS = NO;
  2935. EXCLUDED_SOURCE_FILE_NAMES = "iTunesArtwork*";
  2936. FRAMEWORK_SEARCH_PATHS = (
  2937. "$(inherited)",
  2938. "$(PROJECT_DIR)/ImportedSources/Dropbox",
  2939. "$(PROJECT_DIR)/External/OneDrive",
  2940. "$(PROJECT_DIR)",
  2941. );
  2942. GCC_C_LANGUAGE_STANDARD = c99;
  2943. GCC_OPTIMIZATION_LEVEL = 3;
  2944. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2945. GCC_PREFIX_HEADER = "Sources/VLC for iOS-Prefix.pch";
  2946. HEADER_SEARCH_PATHS = (
  2947. "$(SRCROOT)/External/MobileVLCKit/include",
  2948. "$(SRCROOT)/External/MediaLibraryKit/include",
  2949. "$(SRCROOT)/ImportedSources/GDrive/**",
  2950. "\"$(SRCROOT)/ImportedSources/OneDrive/src/LiveSDK/Library\"/**",
  2951. "$(inherited)",
  2952. );
  2953. INFOPLIST_FILE = "Sources/VLC for iOS-Info.plist";
  2954. IPHONEOS_DEPLOYMENT_TARGET = 6.1;
  2955. LIBRARY_SEARCH_PATHS = (
  2956. "$(inherited)",
  2957. "\"$(SRCROOT)/External/MediaLibraryKit\"",
  2958. "\"$(SRCROOT)/External/MobileVLCKit\"",
  2959. "\"$(SRCROOT)/External/gtl\"",
  2960. "\"$(SDKROOT)/usr/lib/system\"",
  2961. );
  2962. ONLY_ACTIVE_ARCH = NO;
  2963. OTHER_LDFLAGS = (
  2964. "-Wl,-no_pie",
  2965. "$(inherited)",
  2966. );
  2967. PRODUCT_NAME = "VLC for iOS";
  2968. PROVISIONING_PROFILE = "";
  2969. "PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
  2970. SKIP_INSTALL = NO;
  2971. };
  2972. name = Distribution;
  2973. };
  2974. /* End XCBuildConfiguration section */
  2975. /* Begin XCConfigurationList section */
  2976. 4173AEBA1ABF1B860004101D /* Build configuration list for PBXNativeTarget "VLC for iOS WatchKit App" */ = {
  2977. isa = XCConfigurationList;
  2978. buildConfigurations = (
  2979. 4173AEBB1ABF1B860004101D /* Debug */,
  2980. 4173AEBC1ABF1B860004101D /* Release */,
  2981. 4173AEBD1ABF1B860004101D /* Distribution */,
  2982. );
  2983. defaultConfigurationIsVisible = 0;
  2984. defaultConfigurationName = Release;
  2985. };
  2986. 4173AEBE1ABF1B860004101D /* Build configuration list for PBXNativeTarget "VLC for iOS WatchKit Extension" */ = {
  2987. isa = XCConfigurationList;
  2988. buildConfigurations = (
  2989. 4173AEBF1ABF1B860004101D /* Debug */,
  2990. 4173AEC01ABF1B860004101D /* Release */,
  2991. 4173AEC11ABF1B860004101D /* Distribution */,
  2992. );
  2993. defaultConfigurationIsVisible = 0;
  2994. defaultConfigurationName = Release;
  2995. };
  2996. 7D94FCD616DE7D1000F2623B /* Build configuration list for PBXProject "VLC for iOS" */ = {
  2997. isa = XCConfigurationList;
  2998. buildConfigurations = (
  2999. 7D94FD0816DE7D1100F2623B /* Debug */,
  3000. 7D94FD0916DE7D1100F2623B /* Release */,
  3001. A7035BBF174519E40057DFA7 /* Distribution */,
  3002. );
  3003. defaultConfigurationIsVisible = 0;
  3004. defaultConfigurationName = Release;
  3005. };
  3006. 7D94FD0A16DE7D1100F2623B /* Build configuration list for PBXNativeTarget "vlc-ios" */ = {
  3007. isa = XCConfigurationList;
  3008. buildConfigurations = (
  3009. 7D94FD0B16DE7D1100F2623B /* Debug */,
  3010. 7D94FD0C16DE7D1100F2623B /* Release */,
  3011. A7035BC0174519E40057DFA7 /* Distribution */,
  3012. );
  3013. defaultConfigurationIsVisible = 0;
  3014. defaultConfigurationName = Release;
  3015. };
  3016. /* End XCConfigurationList section */
  3017. /* Begin XCVersionGroup section */
  3018. DDC7BFAF1B03829100160878 /* MediaLibrary.xcdatamodeld */ = {
  3019. isa = XCVersionGroup;
  3020. children = (
  3021. DDC7BFB01B03829100160878 /* MediaLibrary-2.1.xcdatamodel */,
  3022. DDC7BFB11B03829100160878 /* MediaLibrary-2.5.xcdatamodel */,
  3023. DDC7BFB21B03829100160878 /* MediaLibrary-2.6.xcdatamodel */,
  3024. );
  3025. currentVersion = DDC7BFB21B03829100160878 /* MediaLibrary-2.6.xcdatamodel */;
  3026. name = MediaLibrary.xcdatamodeld;
  3027. path = ImportedSources/MediaLibraryKit/MediaLibrary.xcdatamodeld;
  3028. sourceTree = "<group>";
  3029. versionGroupType = wrapper.xcdatamodel;
  3030. };
  3031. /* End XCVersionGroup section */
  3032. };
  3033. rootObject = 7D94FCD316DE7D1000F2623B /* Project object */;
  3034. }