├── .gitignore ├── .gitlab ├── issue_templates │ ├── Default.md │ ├── VLC for Android - Bug.md │ ├── VLC for Android - Feature Request.md │ └── libvlc - Bug.md └── merge_request_templates │ └── merge_request.md ├── .lgtm.yml ├── .mailmap ├── .tx └── config ├── COPYING ├── NEWS ├── README.md ├── application ├── app │ ├── .gitignore │ ├── build.gradle │ ├── flavors │ │ └── release │ │ │ └── AndroidManifest.xml │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── org │ │ │ └── videolan │ │ │ └── vlc │ │ │ ├── BaseUITest.kt │ │ │ ├── DemoModeEnabler.kt │ │ │ ├── DemoModeRule.kt │ │ │ ├── MultidexTestRunner.kt │ │ │ ├── PhoneScreenhotsInstrumentedTest.kt │ │ │ ├── PreferenceMatcher.kt │ │ │ ├── TvScreenhotsInstrumentedTest.kt │ │ │ ├── UtilAdapterMatcher.kt │ │ │ ├── UtilViewActions.kt │ │ │ ├── UtilViewMatchers.kt │ │ │ ├── database │ │ │ ├── BrowserFavDaoTest.kt │ │ │ ├── CustomDirectoryDaoTest.kt │ │ │ ├── DbTest.kt │ │ │ ├── ExternalSubDaoTest.kt │ │ │ ├── MigrationTest.kt │ │ │ ├── SlaveDaoTest.kt │ │ │ └── helpers │ │ │ │ ├── SqliteDatabaseTestHelper.kt │ │ │ │ └── SqliteTestDbOpenHelper.kt │ │ │ ├── gui │ │ │ ├── HeaderMediaListActivityUITest.kt │ │ │ ├── PlaylistFragmentUITest.kt │ │ │ ├── browser │ │ │ │ ├── FileBrowserFragmentUITest.kt │ │ │ │ ├── FilePickerFragmentUITest.kt │ │ │ │ └── StorageBrowserFragmentUITest.kt │ │ │ └── preferences │ │ │ │ ├── BasePreferenceUITest.kt │ │ │ │ ├── PreferencesAudioUITest.kt │ │ │ │ ├── PreferencesCastingUITest.kt │ │ │ │ ├── PreferencesFragmentUITest.kt │ │ │ │ ├── PreferencesSubtitlesUITest.kt │ │ │ │ ├── PreferencesUIUITest.kt │ │ │ │ └── PreferencesVideoUITest.kt │ │ │ └── util │ │ │ ├── DpadHelper.kt │ │ │ ├── KExtensions.kt │ │ │ ├── LiveDataTestUtil.kt │ │ │ ├── MockitoExt.kt │ │ │ ├── ScreenshotUtil.kt │ │ │ ├── TestCoroutineContextProvider.kt │ │ │ ├── TestUtil.kt │ │ │ └── UiUtils.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── org │ │ │ └── videolan │ │ │ └── mobile │ │ │ └── app │ │ │ ├── AppSetupDelegate.kt │ │ │ ├── VLCApplication.kt │ │ │ └── delegates │ │ │ ├── IIndexersDelegate.kt │ │ │ └── IMediaContentDelegate.kt │ │ └── test │ │ └── java │ │ └── org │ │ └── videolan │ │ └── mobile │ │ └── app │ │ └── ExampleUnitTest.kt ├── donations │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── videolan │ │ │ └── vlc │ │ │ └── donations │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── aidl │ │ │ └── com │ │ │ │ └── android │ │ │ │ └── vending │ │ │ │ └── billing │ │ │ │ └── IInAppBillingService.aidl │ │ └── java │ │ │ └── org │ │ │ └── videolan │ │ │ └── vlc │ │ │ └── donations │ │ │ ├── VLCBilling.kt │ │ │ └── util │ │ │ ├── IabBroadcastReceiver.kt │ │ │ ├── IabException.kt │ │ │ ├── IabHelper.kt │ │ │ ├── IabResult.kt │ │ │ ├── Inventory.kt │ │ │ ├── Purchase.kt │ │ │ ├── Security.kt │ │ │ └── SkuDetails.kt │ │ └── test │ │ └── java │ │ └── org │ │ └── videolan │ │ └── vlc │ │ └── donations │ │ └── ExampleUnitTest.kt ├── live-plot-graph │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── videolan │ │ │ └── liveplotgraph │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── videolan │ │ │ │ └── liveplotgraph │ │ │ │ ├── LegendView.kt │ │ │ │ ├── LineGraph.kt │ │ │ │ └── PlotView.kt │ │ └── res │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ └── strings.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── videolan │ │ └── liveplotgraph │ │ └── ExampleUnitTest.kt ├── mediadb │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── videolan │ │ │ └── vlc │ │ │ └── mediadb │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── org │ │ │ └── videolan │ │ │ └── vlc │ │ │ ├── database │ │ │ ├── BrowserFavDao.kt │ │ │ ├── CustomDirectoryDao.kt │ │ │ ├── ExternalSubDao.kt │ │ │ ├── MediaDatabase.kt │ │ │ ├── Migrations.kt │ │ │ ├── SlaveDao.kt │ │ │ └── WidgetDao.kt │ │ │ └── mediadb │ │ │ ├── Converters.kt │ │ │ └── models │ │ │ ├── BrowserFav.kt │ │ │ ├── CustomDirectory.kt │ │ │ ├── ExternalSub.kt │ │ │ ├── Slave.kt │ │ │ └── Widget.kt │ │ └── test │ │ └── java │ │ └── org │ │ └── videolan │ │ └── vlc │ │ └── mediadb │ │ └── ExampleUnitTest.kt ├── moviepedia │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── videolan │ │ │ └── moviepedia │ │ │ └── database │ │ │ └── ConvertersTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── videolan │ │ │ │ └── moviepedia │ │ │ │ ├── Helpers.kt │ │ │ │ ├── IMoviepediaApiService.kt │ │ │ │ ├── MediaScraper.kt │ │ │ │ ├── MoviepediaApiService.kt │ │ │ │ ├── database │ │ │ │ ├── Converters.kt │ │ │ │ ├── MediaImageDao.kt │ │ │ │ ├── MediaMetadataDao.kt │ │ │ │ ├── MediaMetadataDataFullDao.kt │ │ │ │ ├── MediaPersonJoinDao.kt │ │ │ │ ├── MoviePediaDatabase.kt │ │ │ │ ├── PersonDao.kt │ │ │ │ └── models │ │ │ │ │ └── MediaMetadata.kt │ │ │ │ ├── models │ │ │ │ ├── body │ │ │ │ │ └── ScrobbleBody.kt │ │ │ │ ├── identify │ │ │ │ │ ├── IdentifyBatchResult.kt │ │ │ │ │ └── IdentifyResult.kt │ │ │ │ ├── media │ │ │ │ │ ├── MediaResult.kt │ │ │ │ │ └── cast │ │ │ │ │ │ └── CastResult.kt │ │ │ │ └── resolver │ │ │ │ │ └── ResolverDataModel.kt │ │ │ │ ├── provider │ │ │ │ ├── MediaScrapingMovieProvider.kt │ │ │ │ ├── MediaScrapingProvider.kt │ │ │ │ ├── MediaScrapingTvshowProvider.kt │ │ │ │ └── datasources │ │ │ │ │ └── MovieDataSourceFactory.kt │ │ │ │ ├── repository │ │ │ │ ├── MediaMetadataRepository.kt │ │ │ │ ├── MediaPersonRepository.kt │ │ │ │ ├── MediaResolverApi.kt │ │ │ │ ├── MoviepediaApiRepository.kt │ │ │ │ └── PersonRepository.kt │ │ │ │ ├── ui │ │ │ │ ├── MediaScrapingActivity.kt │ │ │ │ └── MediaScrapingResultAdapter.kt │ │ │ │ └── viewmodel │ │ │ │ ├── MediaMetadataModel.kt │ │ │ │ └── MediaScrapingModel.kt │ │ └── res │ │ │ └── layout │ │ │ ├── moviepedia_activity.xml │ │ │ └── moviepedia_item.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── videolan │ │ └── moviepedia │ │ └── ExampleUnitTest.kt ├── remote-access-client │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── gradle.properties │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ └── AndroidManifest.xml ├── remote-access-server │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── videolan │ │ │ └── vlc │ │ │ └── remoteaccessserver │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── videolan │ │ │ │ └── vlc │ │ │ │ └── remoteaccessserver │ │ │ │ ├── RemoteAccessOTP.kt │ │ │ │ ├── RemoteAccessRouting.kt │ │ │ │ ├── RemoteAccessServer.kt │ │ │ │ ├── RemoteAccessService.kt │ │ │ │ ├── RemoteAccessSession.kt │ │ │ │ ├── ServerStatus.kt │ │ │ │ ├── TranslationMapping.kt │ │ │ │ ├── gui │ │ │ │ └── remoteaccess │ │ │ │ │ ├── RemoteAccessShareActivity.kt │ │ │ │ │ ├── adapters │ │ │ │ │ └── ConnnectionAdapter.kt │ │ │ │ │ └── onboarding │ │ │ │ │ ├── RemoteAccessOnboardingActivity.kt │ │ │ │ │ ├── RemoteAccessOnboardingContentFragment.kt │ │ │ │ │ ├── RemoteAccessOnboardingFragment.kt │ │ │ │ │ ├── RemoteAccessOnboardingHowFragment.kt │ │ │ │ │ ├── RemoteAccessOnboardingOtpFragment.kt │ │ │ │ │ ├── RemoteAccessOnboardingSslFragment.kt │ │ │ │ │ └── RemoteAccessOnboardingWelcomeFragment.kt │ │ │ │ ├── ssl │ │ │ │ └── SecretGenerator.kt │ │ │ │ ├── utils │ │ │ │ ├── CypherUtils.kt │ │ │ │ ├── MediaZipUtils.kt │ │ │ │ └── PreferenceUtil.kt │ │ │ │ ├── viewmodels │ │ │ │ └── RemoteAccessOnboardingViewModel.kt │ │ │ │ └── websockets │ │ │ │ ├── RemoteAccessWebSockets.kt │ │ │ │ ├── WSAuthTicket.kt │ │ │ │ └── WSIncomingMessage.kt │ │ └── res │ │ │ ├── layout-land │ │ │ ├── remote_access_onboarding_content.xml │ │ │ ├── remote_access_onboarding_how.xml │ │ │ ├── remote_access_onboarding_otp.xml │ │ │ ├── remote_access_onboarding_ssl.xml │ │ │ └── remote_access_onboarding_welcome.xml │ │ │ ├── layout │ │ │ ├── remote_access_connection_item.xml │ │ │ ├── remote_access_onboarding_content.xml │ │ │ ├── remote_access_onboarding_how.xml │ │ │ ├── remote_access_onboarding_otp.xml │ │ │ ├── remote_access_onboarding_ssl.xml │ │ │ ├── remote_access_onboarding_welcome.xml │ │ │ └── remote_access_share_activity.xml │ │ │ └── menu │ │ │ └── remote_access_share.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── videolan │ │ └── vlc │ │ └── remoteaccessserver │ │ └── ExampleUnitTest.kt ├── resources │ ├── .gitignore │ ├── assets │ │ ├── anims │ │ │ ├── anim_delete.shapeshifter │ │ │ ├── now_playing.shapeshifter │ │ │ ├── play_pause.shapeshifter │ │ │ └── play_pause_video.shapeshifter │ │ └── images │ │ │ └── svg │ │ │ ├── banner.svg │ │ │ ├── banner_debug.svg │ │ │ ├── ic_about_logo.svg │ │ │ ├── ic_abrepeat.svg │ │ │ ├── ic_abrepeat_audio.svg │ │ │ ├── ic_abrepeat_chips.svg │ │ │ ├── ic_abrepeat_marker.svg │ │ │ ├── ic_abrepeat_marker_audio.svg │ │ │ ├── ic_abrepeat_reset.svg │ │ │ ├── ic_abrepeat_reset_audio.svg │ │ │ ├── ic_abrepeat_reset_marker.svg │ │ │ ├── ic_abrepeat_reset_marker_audio.svg │ │ │ ├── ic_abrepeat_warning.svg │ │ │ ├── ic_action_mode_select.svg │ │ │ ├── ic_action_mode_select_1610.svg │ │ │ ├── ic_add_big.svg │ │ │ ├── ic_add_to_group.svg │ │ │ ├── ic_add_to_scan.svg │ │ │ ├── ic_advanced_player.svg │ │ │ ├── ic_album.svg │ │ │ ├── ic_album_big.svg │ │ │ ├── ic_album_shuffle.svg │ │ │ ├── ic_am_addtoplaylist.svg │ │ │ ├── ic_am_append.svg │ │ │ ├── ic_am_delete.svg │ │ │ ├── ic_am_folder.svg │ │ │ ├── ic_am_information.svg │ │ │ ├── ic_am_play.svg │ │ │ ├── ic_am_playasaudio.svg │ │ │ ├── ic_am_renderer.svg │ │ │ ├── ic_am_renderer_on.svg │ │ │ ├── ic_am_ringtone.svg │ │ │ ├── ic_am_share.svg │ │ │ ├── ic_arrow_back.svg │ │ │ ├── ic_artist.svg │ │ │ ├── ic_artist_big.svg │ │ │ ├── ic_audio_controls.svg │ │ │ ├── ic_audiotips.svg │ │ │ ├── ic_auto_forward.svg │ │ │ ├── ic_auto_forward_10.svg │ │ │ ├── ic_auto_history.svg │ │ │ ├── ic_auto_history_circle.svg │ │ │ ├── ic_auto_new.svg │ │ │ ├── ic_auto_new_circle.svg │ │ │ ├── ic_auto_notif_audio.svg │ │ │ ├── ic_auto_playall_circle.svg │ │ │ ├── ic_auto_repeat.svg │ │ │ ├── ic_auto_repeat_one.svg │ │ │ ├── ic_auto_rewind.svg │ │ │ ├── ic_auto_rewind_10.svg │ │ │ ├── ic_auto_shuffle_circle.svg │ │ │ ├── ic_auto_shuffle_enable.svg │ │ │ ├── ic_auto_speed.svg │ │ │ ├── ic_auto_speed_0.50.svg │ │ │ ├── ic_auto_speed_0.80.svg │ │ │ ├── ic_auto_speed_1.00.svg │ │ │ ├── ic_auto_speed_1.10.svg │ │ │ ├── ic_auto_speed_1.20.svg │ │ │ ├── ic_auto_speed_1.50.svg │ │ │ ├── ic_auto_speed_2.00.svg │ │ │ ├── ic_backspace.svg │ │ │ ├── ic_backward_normal.svg │ │ │ ├── ic_browser_archive_big_normal.svg │ │ │ ├── ic_browser_archive_normal.svg │ │ │ ├── ic_channel_icon.svg │ │ │ ├── ic_chapter.svg │ │ │ ├── ic_chapter_w.svg │ │ │ ├── ic_checkbox_false.svg │ │ │ ├── ic_checkbox_partialy_normal.svg │ │ │ ├── ic_checkbox_partialy_pressed.svg │ │ │ ├── ic_checkbox_true.svg │ │ │ ├── ic_close.svg │ │ │ ├── ic_cone_o.svg │ │ │ ├── ic_cone_w.svg │ │ │ ├── ic_crop_player.svg │ │ │ ├── ic_default_cone.svg │ │ │ ├── ic_delay.svg │ │ │ ├── ic_dial.svg │ │ │ ├── ic_divider.svg │ │ │ ├── ic_down_on_circle_player.svg │ │ │ ├── ic_download.svg │ │ │ ├── ic_download_subtitles.svg │ │ │ ├── ic_downsub_w.svg │ │ │ ├── ic_duration.svg │ │ │ ├── ic_emoji_favorite.svg │ │ │ ├── ic_emoji_file.svg │ │ │ ├── ic_emoji_folder.svg │ │ │ ├── ic_emoji_network_media.svg │ │ │ ├── ic_emoji_network_media_off.svg │ │ │ ├── ic_empty_big.svg │ │ │ ├── ic_equalizer.svg │ │ │ ├── ic_fab_add.svg │ │ │ ├── ic_fab_play.svg │ │ │ ├── ic_fab_shuffle.svg │ │ │ ├── ic_fabtv_preferences.svg │ │ │ ├── ic_fabtvmini_favorite.svg │ │ │ ├── ic_fabtvmini_favorite_outline.svg │ │ │ ├── ic_fabtvmini_grid.svg │ │ │ ├── ic_fabtvmini_jumptoheader.svg │ │ │ ├── ic_fabtvmini_list.svg │ │ │ ├── ic_fabtvmini_sort.svg │ │ │ ├── ic_fav_empty_big.svg │ │ │ ├── ic_favicon_remote_access.svg │ │ │ ├── ic_fluent_book_open_microphone_20_regular.svg │ │ │ ├── ic_folder_big.svg │ │ │ ├── ic_folder_download.svg │ │ │ ├── ic_folder_download_big.svg │ │ │ ├── ic_folder_movies.svg │ │ │ ├── ic_folder_movies_big.svg │ │ │ ├── ic_folder_music.svg │ │ │ ├── ic_folder_music_big.svg │ │ │ ├── ic_folder_podcasts.svg │ │ │ ├── ic_folder_podcasts_big.svg │ │ │ ├── ic_folder_usb.svg │ │ │ ├── ic_folder_usb_big.svg │ │ │ ├── ic_forward_normal.svg │ │ │ ├── ic_forward_player.svg │ │ │ ├── ic_genre.svg │ │ │ ├── ic_genre_big.svg │ │ │ ├── ic_gesture_finger_1.svg │ │ │ ├── ic_gesture_finger_2.svg │ │ │ ├── ic_gesture_finger_3.svg │ │ │ ├── ic_gesture_swipe_horizontally.svg │ │ │ ├── ic_gesture_swipe_vertically.svg │ │ │ ├── ic_group_auto.svg │ │ │ ├── ic_group_display.svg │ │ │ ├── ic_half_seek_forward.svg │ │ │ ├── ic_half_seek_rewind.svg │ │ │ ├── ic_hidden.svg │ │ │ ├── ic_home.svg │ │ │ ├── ic_info_big.svg │ │ │ ├── ic_inverted_round.svg │ │ │ ├── ic_jumpto.svg │ │ │ ├── ic_lastplayqueue.svg │ │ │ ├── ic_launcher.svg │ │ │ ├── ic_launcher_background.svg │ │ │ ├── ic_launcher_background_debug.svg │ │ │ ├── ic_launcher_debug.svg │ │ │ ├── ic_launcher_foreground.svg │ │ │ ├── ic_launcher_foreground_debug.svg │ │ │ ├── ic_launcher_monochrome.svg │ │ │ ├── ic_launcher_preview │ │ │ ├── ic_launcher_debug_circle.svg │ │ │ ├── ic_launcher_debug_square.svg │ │ │ ├── ic_launcher_debug_squircle.svg │ │ │ ├── ic_launcher_reporter_circle.svg │ │ │ ├── ic_launcher_reporter_square.svg │ │ │ ├── ic_launcher_reporter_squircle.svg │ │ │ ├── ic_launcher_source_circle.svg │ │ │ ├── ic_launcher_source_square.svg │ │ │ └── ic_launcher_source_squircle.svg │ │ │ ├── ic_launcher_reporter.svg │ │ │ ├── ic_launcher_reporter_background.svg │ │ │ ├── ic_launcher_reporter_foreground.svg │ │ │ ├── ic_logo_w.svg │ │ │ ├── ic_mark_as_not_played.svg │ │ │ ├── ic_medialibrary_date.svg │ │ │ ├── ic_medialibrary_scan.svg │ │ │ ├── ic_minus_circle_normal_o.svg │ │ │ ├── ic_minus_circle_pressed_o.svg │ │ │ ├── ic_more.svg │ │ │ ├── ic_move_media.svg │ │ │ ├── ic_moviepedia.svg │ │ │ ├── ic_moviepedia_big.svg │ │ │ ├── ic_moviepedia_placeholder.svg │ │ │ ├── ic_moviepedia_tvshow.svg │ │ │ ├── ic_moviepedia_tvshow_big.svg │ │ │ ├── ic_multimedia.svg │ │ │ ├── ic_nav_more.svg │ │ │ ├── ic_network.svg │ │ │ ├── ic_network_add_big.svg │ │ │ ├── ic_network_big.svg │ │ │ ├── ic_network_media.svg │ │ │ ├── ic_network_media_off.svg │ │ │ ├── ic_next_normal.svg │ │ │ ├── ic_no_media.svg │ │ │ ├── ic_no_thumbnail_1610.svg │ │ │ ├── ic_no_thumbnail_song.svg │ │ │ ├── ic_notif_audio.svg │ │ │ ├── ic_notif_bookmark_add.svg │ │ │ ├── ic_notif_forward.svg │ │ │ ├── ic_notif_forward_10.svg │ │ │ ├── ic_notif_remote_access.svg │ │ │ ├── ic_notif_rewind.svg │ │ │ ├── ic_notif_rewind_10.svg │ │ │ ├── ic_notif_scan.svg │ │ │ ├── ic_notif_speed_0_50.svg │ │ │ ├── ic_notif_speed_0_80.svg │ │ │ ├── ic_notif_speed_1_00.svg │ │ │ ├── ic_notif_speed_1_10.svg │ │ │ ├── ic_notif_speed_1_20.svg │ │ │ ├── ic_notif_speed_1_50.svg │ │ │ ├── ic_notif_speed_2_00.svg │ │ │ ├── ic_notif_video.svg │ │ │ ├── ic_now_playing_paused.svg │ │ │ ├── ic_onboarding_no_permission.svg │ │ │ ├── ic_onboarding_notification.svg │ │ │ ├── ic_onboarding_scan.svg │ │ │ ├── ic_passthrough.svg │ │ │ ├── ic_pause_normal.svg │ │ │ ├── ic_pause_player.svg │ │ │ ├── ic_people_big.svg │ │ │ ├── ic_perm_all.svg │ │ │ ├── ic_perm_media.svg │ │ │ ├── ic_perm_none.svg │ │ │ ├── ic_permission_check_checked.svg │ │ │ ├── ic_permission_check_unchecked.svg │ │ │ ├── ic_permission_media_audio.svg │ │ │ ├── ic_permission_media_video.svg │ │ │ ├── ic_pin_lock_big.svg │ │ │ ├── ic_play.svg │ │ │ ├── ic_play_all.svg │ │ │ ├── ic_play_append.svg │ │ │ ├── ic_play_as_audio.svg │ │ │ ├── ic_play_circle_card.svg │ │ │ ├── ic_play_from_start.svg │ │ │ ├── ic_play_next.svg │ │ │ ├── ic_play_player.svg │ │ │ ├── ic_playasaudio_off.svg │ │ │ ├── ic_playasaudio_on.svg │ │ │ ├── ic_player_audiotrack.svg │ │ │ ├── ic_player_bookmark_next.svg │ │ │ ├── ic_player_bookmark_previous.svg │ │ │ ├── ic_player_brightness.svg │ │ │ ├── ic_player_cover_audiotrack.svg │ │ │ ├── ic_player_forward_10.svg │ │ │ ├── ic_player_lock_landscape.svg │ │ │ ├── ic_player_lock_portrait.svg │ │ │ ├── ic_player_more.svg │ │ │ ├── ic_player_navmenu.svg │ │ │ ├── ic_player_next.svg │ │ │ ├── ic_player_previous.svg │ │ │ ├── ic_player_ratio.svg │ │ │ ├── ic_player_renderer.svg │ │ │ ├── ic_player_renderer_on.svg │ │ │ ├── ic_player_rewind_10.svg │ │ │ ├── ic_player_rotate.svg │ │ │ ├── ic_player_screenshare.svg │ │ │ ├── ic_player_screenshare_stop.svg │ │ │ ├── ic_player_volume.svg │ │ │ ├── ic_playlist.svg │ │ │ ├── ic_playlist_big.svg │ │ │ ├── ic_playlisttips.svg │ │ │ ├── ic_playqueue_big.svg │ │ │ ├── ic_popup_dim.svg │ │ │ ├── ic_popup_expand.svg │ │ │ ├── ic_popup_pause.svg │ │ │ ├── ic_popup_play.svg │ │ │ ├── ic_previous.svg │ │ │ ├── ic_remote_access.svg │ │ │ ├── ic_remote_access_big.svg │ │ │ ├── ic_remove_from_group.svg │ │ │ ├── ic_renderer_background_cone.svg │ │ │ ├── ic_repeat.svg │ │ │ ├── ic_repeat_one.svg │ │ │ ├── ic_reset.svg │ │ │ ├── ic_rewind_player.svg │ │ │ ├── ic_scan_big.svg │ │ │ ├── ic_seekbar_thumb_audio_tv_normal.svg │ │ │ ├── ic_seekbar_thumb_audio_tv_pressed.svg │ │ │ ├── ic_seekbar_thumb_normal.svg │ │ │ ├── ic_seekbar_thumb_pressed.svg │ │ │ ├── ic_seen_normal.svg │ │ │ ├── ic_seen_tv_normal.svg │ │ │ ├── ic_send.svg │ │ │ ├── ic_settings_big.svg │ │ │ ├── ic_shortcut_resume_playback.svg │ │ │ ├── ic_song.svg │ │ │ ├── ic_song_background.svg │ │ │ ├── ic_song_big.svg │ │ │ ├── ic_song_vertical.svg │ │ │ ├── ic_song_vertical_filled.svg │ │ │ ├── ic_sourcecode.svg │ │ │ ├── ic_speed_all.svg │ │ │ ├── ic_stop_after_this.svg │ │ │ ├── ic_storage.svg │ │ │ ├── ic_stream.svg │ │ │ ├── ic_stream_big.svg │ │ │ ├── ic_subtitles_big.svg │ │ │ ├── ic_subtitles_circle.svg │ │ │ ├── ic_swipe_unlock.svg │ │ │ ├── ic_theme_dark.svg │ │ │ ├── ic_theme_daynight.svg │ │ │ ├── ic_theme_light.svg │ │ │ ├── ic_trash.svg │ │ │ ├── ic_tv_browser_grid.svg │ │ │ ├── ic_tv_browser_jumptoheader.svg │ │ │ ├── ic_tv_browser_list.svg │ │ │ ├── ic_tv_browser_sort.svg │ │ │ ├── ic_tv_list_addtoplaylist.svg │ │ │ ├── ic_tv_list_append.svg │ │ │ ├── ic_tv_list_delete.svg │ │ │ ├── ic_tv_list_movedown.svg │ │ │ ├── ic_tv_list_moveup.svg │ │ │ ├── ic_tv_list_play.svg │ │ │ ├── ic_tv_list_playnext.svg │ │ │ ├── ic_tv_list_remove_from_playqueue.svg │ │ │ ├── ic_unknown.svg │ │ │ ├── ic_unknown_big.svg │ │ │ ├── ic_up_on_circle_player.svg │ │ │ ├── ic_video_big.svg │ │ │ ├── ic_video_controls.svg │ │ │ ├── ic_videotips.svg │ │ │ ├── ic_warning.svg │ │ │ ├── ic_widget_close.svg │ │ │ ├── ic_widget_close_normal.svg │ │ │ ├── ic_widget_close_normal_w.svg │ │ │ ├── ic_widget_close_pressed.svg │ │ │ ├── ic_widget_icon.svg │ │ │ ├── ic_widget_next.svg │ │ │ ├── ic_widget_next_normal.svg │ │ │ ├── ic_widget_pause.svg │ │ │ ├── ic_widget_pause_inner.svg │ │ │ ├── ic_widget_pause_normal.svg │ │ │ ├── ic_widget_play.svg │ │ │ ├── ic_widget_play_normal.svg │ │ │ ├── ic_widget_previous_normal.svg │ │ │ ├── icon.svg │ │ │ ├── icon_debug.svg │ │ │ ├── icon_vlc4.svg │ │ │ ├── img_tips_audioplayer.svg │ │ │ ├── img_tips_playlist.svg │ │ │ ├── img_tips_sdcard.svg │ │ │ ├── nav_header_background.svg │ │ │ ├── play_console_icon.png │ │ │ ├── play_console_icon.svg │ │ │ ├── source.svg │ │ │ ├── tips_gesture.svg │ │ │ ├── tips_gesture_horizontal.svg │ │ │ └── tv_channel_default.svg │ ├── build.gradle │ ├── flavors │ │ └── debug │ │ │ └── res │ │ │ └── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_launcher_foreground.xml │ ├── proguard-rules.pro │ ├── src │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── org │ │ │ │ └── videolan │ │ │ │ └── resources │ │ │ │ ├── AndroidDevices.kt │ │ │ │ ├── AppContextProvider.kt │ │ │ │ ├── Constants.kt │ │ │ │ ├── VLCInstance.kt │ │ │ │ ├── VLCOptions.kt │ │ │ │ ├── interfaces │ │ │ │ ├── FocusListener.kt │ │ │ │ ├── IMediaContentResolver.kt │ │ │ │ └── IndexingListener.kt │ │ │ │ ├── opensubtitles │ │ │ │ ├── IOpenSubtitleService.kt │ │ │ │ ├── Models.kt │ │ │ │ ├── OpenSubtitleRepository.kt │ │ │ │ ├── OpenSubtitleService.kt │ │ │ │ ├── OpenSubtitlesLimit.kt │ │ │ │ ├── OpenSubtitlesUser.kt │ │ │ │ └── OpenSubtitlesUtils.kt │ │ │ │ └── util │ │ │ │ ├── ConnectivityInterceptor.kt │ │ │ │ ├── Extensions.kt │ │ │ │ ├── HeaderProvider.kt │ │ │ │ ├── Helpers.kt │ │ │ │ └── VLCCrashHandler.kt │ │ │ └── res │ │ │ ├── color │ │ │ ├── dialog_circle_background.xml │ │ │ ├── dialog_circle_background_dark.xml │ │ │ ├── donate_text_color.xml │ │ │ ├── list_subtitle.xml │ │ │ ├── list_subtitle_dark.xml │ │ │ ├── list_title.xml │ │ │ ├── list_title_dark.xml │ │ │ ├── list_title_last.xml │ │ │ ├── navigationview_color.xml │ │ │ ├── navigationview_color_dark.xml │ │ │ ├── player_circle_background.xml │ │ │ ├── player_delay_button_background_tint.xml │ │ │ ├── simple_list_title.xml │ │ │ ├── simple_list_title_tv.xml │ │ │ ├── standard_selection.xml │ │ │ ├── standard_selection_black.xml │ │ │ ├── standard_selection_control_normal.xml │ │ │ ├── standard_selection_control_normal_primary.xml │ │ │ ├── standard_selection_grey600_orange200.xml │ │ │ ├── standard_selection_invisible_primary.xml │ │ │ ├── standard_selection_orange500.xml │ │ │ ├── standard_selection_orange500_orange200.xml │ │ │ ├── standard_selection_orange500_orange700.xml │ │ │ ├── standard_selection_transparent.xml │ │ │ └── tv_menu_selection.xml │ │ │ ├── drawable-anydpi-v21 │ │ │ ├── ic_notif_audio.xml │ │ │ ├── ic_notif_bookmark_add_w.xml │ │ │ ├── ic_notif_forward_10_disabled.xml │ │ │ ├── ic_notif_forward_10_w.xml │ │ │ ├── ic_notif_forward_disabled.xml │ │ │ ├── ic_notif_forward_w.xml │ │ │ ├── ic_notif_next_disabled.xml │ │ │ ├── ic_notif_next_w.xml │ │ │ ├── ic_notif_previous_disabled.xml │ │ │ ├── ic_notif_previous_w.xml │ │ │ ├── ic_notif_remote_access.xml │ │ │ ├── ic_notif_rewind_10_disabled.xml │ │ │ ├── ic_notif_rewind_10_w.xml │ │ │ ├── ic_notif_rewind_disabled.xml │ │ │ ├── ic_notif_rewind_w.xml │ │ │ ├── ic_notif_scan.xml │ │ │ ├── ic_notif_speed_0_50_w.xml │ │ │ ├── ic_notif_speed_0_80_w.xml │ │ │ ├── ic_notif_speed_1_00_w.xml │ │ │ ├── ic_notif_speed_1_10_w.xml │ │ │ ├── ic_notif_speed_1_20_w.xml │ │ │ ├── ic_notif_speed_1_50_w.xml │ │ │ ├── ic_notif_speed_2_00_w.xml │ │ │ ├── ic_notif_video.xml │ │ │ ├── ic_widget_close_normal_w.xml │ │ │ ├── ic_widget_close_pressed.xml │ │ │ ├── ic_widget_pause_normal_w.xml │ │ │ ├── ic_widget_pause_pressed.xml │ │ │ ├── ic_widget_play_normal_w.xml │ │ │ └── ic_widget_play_pressed.xml │ │ │ ├── drawable-hdpi │ │ │ ├── banner.png │ │ │ ├── drawer_shadow.9.png │ │ │ ├── ic_channel_icon.png │ │ │ ├── ic_gesture_finger_1.png │ │ │ ├── ic_gesture_finger_2.png │ │ │ ├── ic_gesture_finger_3.png │ │ │ ├── ic_gesture_swipe_horizontally.png │ │ │ ├── ic_gesture_swipe_vertically.png │ │ │ ├── ic_notif_audio.png │ │ │ ├── ic_notif_bookmark_add_w.png │ │ │ ├── ic_notif_forward_10_disabled.png │ │ │ ├── ic_notif_forward_10_w.png │ │ │ ├── ic_notif_forward_disabled.png │ │ │ ├── ic_notif_forward_w.png │ │ │ ├── ic_notif_next_disabled.png │ │ │ ├── ic_notif_next_w.png │ │ │ ├── ic_notif_previous_disabled.png │ │ │ ├── ic_notif_previous_w.png │ │ │ ├── ic_notif_remote_access.png │ │ │ ├── ic_notif_rewind_10_disabled.png │ │ │ ├── ic_notif_rewind_10_w.png │ │ │ ├── ic_notif_rewind_disabled.png │ │ │ ├── ic_notif_rewind_w.png │ │ │ ├── ic_notif_scan.png │ │ │ ├── ic_notif_speed_0_50_w.png │ │ │ ├── ic_notif_speed_0_80_w.png │ │ │ ├── ic_notif_speed_1_00_w.png │ │ │ ├── ic_notif_speed_1_10_w.png │ │ │ ├── ic_notif_speed_1_20_w.png │ │ │ ├── ic_notif_speed_1_50_w.png │ │ │ ├── ic_notif_speed_2_00_w.png │ │ │ ├── ic_notif_video.png │ │ │ ├── ic_pause_notif.png │ │ │ ├── ic_play_notif.png │ │ │ ├── ic_player_brightness.png │ │ │ ├── ic_player_volume.png │ │ │ ├── ic_popup_close_w.png │ │ │ ├── ic_popup_fullscreen.png │ │ │ ├── ic_popup_pause.png │ │ │ ├── ic_popup_play.png │ │ │ ├── ic_stat_vlc.png │ │ │ ├── ic_widget_close_normal.png │ │ │ ├── ic_widget_close_normal_w.png │ │ │ ├── ic_widget_close_pressed.png │ │ │ ├── ic_widget_icon.png │ │ │ ├── ic_widget_pause_normal_w.png │ │ │ ├── ic_widget_pause_pressed.png │ │ │ ├── ic_widget_play.png │ │ │ ├── ic_widget_play_normal_w.png │ │ │ ├── ic_widget_play_pressed.png │ │ │ ├── icon.png │ │ │ ├── img_tips_audioplayer.png │ │ │ ├── img_tips_playlist.png │ │ │ └── img_tips_sdcard.png │ │ │ ├── drawable-ldpi │ │ │ ├── banner.png │ │ │ ├── ic_channel_icon.png │ │ │ ├── ic_gesture_finger_1.png │ │ │ ├── ic_gesture_finger_2.png │ │ │ ├── ic_gesture_finger_3.png │ │ │ ├── ic_gesture_swipe_horizontally.png │ │ │ ├── ic_gesture_swipe_vertically.png │ │ │ ├── ic_widget_close_normal_w.png │ │ │ ├── ic_widget_close_pressed.png │ │ │ ├── icon.png │ │ │ ├── img_tips_audioplayer.png │ │ │ ├── img_tips_playlist.png │ │ │ └── img_tips_sdcard.png │ │ │ ├── drawable-ldrtl │ │ │ ├── fastscroller_bubble.xml │ │ │ ├── fastscroller_bubble_black.xml │ │ │ ├── fastscroller_handle.xml │ │ │ ├── fastscroller_handle_black.xml │ │ │ ├── ic_next_chapter.xml │ │ │ ├── ic_player_bookmark_next.xml │ │ │ ├── ic_player_bookmark_previous.xml │ │ │ ├── ic_player_forward_10.xml │ │ │ ├── ic_player_forward_10_disabled.xml │ │ │ ├── ic_player_next.xml │ │ │ ├── ic_player_previous.xml │ │ │ ├── ic_player_rewind_10.xml │ │ │ ├── ic_player_rewind_10_disabled.xml │ │ │ ├── ic_previous_chapter.xml │ │ │ └── rectangle_circle_right_orange.xml │ │ │ ├── drawable-mdpi │ │ │ ├── banner.png │ │ │ ├── drawer_shadow.9.png │ │ │ ├── ic_channel_icon.png │ │ │ ├── ic_gesture_finger_1.png │ │ │ ├── ic_gesture_finger_2.png │ │ │ ├── ic_gesture_finger_3.png │ │ │ ├── ic_gesture_swipe_horizontally.png │ │ │ ├── ic_gesture_swipe_vertically.png │ │ │ ├── ic_notif_audio.png │ │ │ ├── ic_notif_bookmark_add_w.png │ │ │ ├── ic_notif_forward_10_disabled.png │ │ │ ├── ic_notif_forward_10_w.png │ │ │ ├── ic_notif_forward_disabled.png │ │ │ ├── ic_notif_forward_w.png │ │ │ ├── ic_notif_next_disabled.png │ │ │ ├── ic_notif_next_w.png │ │ │ ├── ic_notif_previous_disabled.png │ │ │ ├── ic_notif_previous_w.png │ │ │ ├── ic_notif_remote_access.png │ │ │ ├── ic_notif_rewind_10_disabled.png │ │ │ ├── ic_notif_rewind_10_w.png │ │ │ ├── ic_notif_rewind_disabled.png │ │ │ ├── ic_notif_rewind_w.png │ │ │ ├── ic_notif_scan.png │ │ │ ├── ic_notif_speed_0_50_w.png │ │ │ ├── ic_notif_speed_0_80_w.png │ │ │ ├── ic_notif_speed_1_00_w.png │ │ │ ├── ic_notif_speed_1_10_w.png │ │ │ ├── ic_notif_speed_1_20_w.png │ │ │ ├── ic_notif_speed_1_50_w.png │ │ │ ├── ic_notif_speed_2_00_w.png │ │ │ ├── ic_notif_video.png │ │ │ ├── ic_pause_notif.png │ │ │ ├── ic_play_notif.png │ │ │ ├── ic_player_brightness.png │ │ │ ├── ic_player_volume.png │ │ │ ├── ic_popup_close_w.png │ │ │ ├── ic_popup_fullscreen.png │ │ │ ├── ic_popup_pause.png │ │ │ ├── ic_popup_play.png │ │ │ ├── ic_stat_vlc.png │ │ │ ├── ic_widget_close_normal.png │ │ │ ├── ic_widget_close_normal_w.png │ │ │ ├── ic_widget_close_pressed.png │ │ │ ├── ic_widget_icon.png │ │ │ ├── ic_widget_pause_normal_w.png │ │ │ ├── ic_widget_pause_pressed.png │ │ │ ├── ic_widget_play.png │ │ │ ├── ic_widget_play_normal_w.png │ │ │ ├── ic_widget_play_pressed.png │ │ │ ├── icon.png │ │ │ ├── img_tips_audioplayer.png │ │ │ ├── img_tips_playlist.png │ │ │ └── img_tips_sdcard.png │ │ │ ├── drawable-nodpi │ │ │ ├── nav_header_background.png │ │ │ ├── qr_unsubscribe.png │ │ │ ├── vlc_fake_cover.png │ │ │ ├── vlc_widget_macro.png │ │ │ ├── vlc_widget_micro.png │ │ │ ├── vlc_widget_mini.png │ │ │ └── vlc_widget_pill.png │ │ │ ├── drawable-v21 │ │ │ ├── audio_seekbar.xml │ │ │ ├── audio_seekbar_black.xml │ │ │ ├── background_item.xml │ │ │ ├── donate_button_ripple.xml │ │ │ ├── po_seekbar.xml │ │ │ └── ripple_white.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── banner.png │ │ │ ├── drawer_shadow.9.png │ │ │ ├── ic_channel_icon.png │ │ │ ├── ic_gesture_finger_1.png │ │ │ ├── ic_gesture_finger_2.png │ │ │ ├── ic_gesture_finger_3.png │ │ │ ├── ic_gesture_swipe_horizontally.png │ │ │ ├── ic_gesture_swipe_vertically.png │ │ │ ├── ic_notif_audio.png │ │ │ ├── ic_notif_bookmark_add_w.png │ │ │ ├── ic_notif_forward_10_disabled.png │ │ │ ├── ic_notif_forward_10_w.png │ │ │ ├── ic_notif_forward_disabled.png │ │ │ ├── ic_notif_forward_w.png │ │ │ ├── ic_notif_next_disabled.png │ │ │ ├── ic_notif_next_w.png │ │ │ ├── ic_notif_previous_disabled.png │ │ │ ├── ic_notif_previous_w.png │ │ │ ├── ic_notif_remote_access.png │ │ │ ├── ic_notif_rewind_10_disabled.png │ │ │ ├── ic_notif_rewind_10_w.png │ │ │ ├── ic_notif_rewind_disabled.png │ │ │ ├── ic_notif_rewind_w.png │ │ │ ├── ic_notif_scan.png │ │ │ ├── ic_notif_speed_0_50_w.png │ │ │ ├── ic_notif_speed_0_80_w.png │ │ │ ├── ic_notif_speed_1_00_w.png │ │ │ ├── ic_notif_speed_1_10_w.png │ │ │ ├── ic_notif_speed_1_20_w.png │ │ │ ├── ic_notif_speed_1_50_w.png │ │ │ ├── ic_notif_speed_2_00_w.png │ │ │ ├── ic_notif_video.png │ │ │ ├── ic_pause_notif.png │ │ │ ├── ic_play_notif.png │ │ │ ├── ic_player_brightness.png │ │ │ ├── ic_player_volume.png │ │ │ ├── ic_popup_close_w.png │ │ │ ├── ic_popup_fullscreen.png │ │ │ ├── ic_popup_pause.png │ │ │ ├── ic_popup_play.png │ │ │ ├── ic_stat_vlc.png │ │ │ ├── ic_widget_close_normal.png │ │ │ ├── ic_widget_close_normal_w.png │ │ │ ├── ic_widget_close_pressed.png │ │ │ ├── ic_widget_icon.png │ │ │ ├── ic_widget_pause_normal_w.png │ │ │ ├── ic_widget_pause_pressed.png │ │ │ ├── ic_widget_play.png │ │ │ ├── ic_widget_play_normal_w.png │ │ │ ├── ic_widget_play_pressed.png │ │ │ ├── icon.png │ │ │ ├── img_tips_audioplayer.png │ │ │ ├── img_tips_playlist.png │ │ │ └── img_tips_sdcard.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_notif_audio.png │ │ │ ├── ic_notif_bookmark_add_w.png │ │ │ ├── ic_notif_forward_10_disabled.png │ │ │ ├── ic_notif_forward_10_w.png │ │ │ ├── ic_notif_forward_disabled.png │ │ │ ├── ic_notif_forward_w.png │ │ │ ├── ic_notif_next_disabled.png │ │ │ ├── ic_notif_next_w.png │ │ │ ├── ic_notif_previous_disabled.png │ │ │ ├── ic_notif_previous_w.png │ │ │ ├── ic_notif_remote_access.png │ │ │ ├── ic_notif_rewind_10_disabled.png │ │ │ ├── ic_notif_rewind_10_w.png │ │ │ ├── ic_notif_rewind_disabled.png │ │ │ ├── ic_notif_rewind_w.png │ │ │ ├── ic_notif_scan.png │ │ │ ├── ic_notif_speed_0_50_w.png │ │ │ ├── ic_notif_speed_0_80_w.png │ │ │ ├── ic_notif_speed_1_00_w.png │ │ │ ├── ic_notif_speed_1_10_w.png │ │ │ ├── ic_notif_speed_1_20_w.png │ │ │ ├── ic_notif_speed_1_50_w.png │ │ │ ├── ic_notif_speed_2_00_w.png │ │ │ ├── ic_notif_video.png │ │ │ ├── ic_pause_notif.png │ │ │ ├── ic_play_notif.png │ │ │ ├── ic_player_brightness.png │ │ │ ├── ic_player_volume.png │ │ │ ├── ic_popup_close_w.png │ │ │ ├── ic_popup_fullscreen.png │ │ │ ├── ic_popup_pause.png │ │ │ ├── ic_popup_play.png │ │ │ ├── ic_widget_close_normal.png │ │ │ ├── ic_widget_close_normal_w.png │ │ │ ├── ic_widget_icon.png │ │ │ ├── ic_widget_pause_normal_w.png │ │ │ ├── ic_widget_pause_pressed.png │ │ │ ├── ic_widget_play.png │ │ │ ├── ic_widget_play_normal_w.png │ │ │ ├── ic_widget_play_pressed.png │ │ │ └── icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_notif_audio.png │ │ │ ├── ic_notif_bookmark_add_w.png │ │ │ ├── ic_notif_forward_10_disabled.png │ │ │ ├── ic_notif_forward_10_w.png │ │ │ ├── ic_notif_forward_disabled.png │ │ │ ├── ic_notif_forward_w.png │ │ │ ├── ic_notif_next_disabled.png │ │ │ ├── ic_notif_next_w.png │ │ │ ├── ic_notif_previous_disabled.png │ │ │ ├── ic_notif_previous_w.png │ │ │ ├── ic_notif_remote_access.png │ │ │ ├── ic_notif_rewind_10_disabled.png │ │ │ ├── ic_notif_rewind_10_w.png │ │ │ ├── ic_notif_rewind_disabled.png │ │ │ ├── ic_notif_rewind_w.png │ │ │ ├── ic_notif_scan.png │ │ │ ├── ic_notif_speed_0_50_w.png │ │ │ ├── ic_notif_speed_0_80_w.png │ │ │ ├── ic_notif_speed_1_00_w.png │ │ │ ├── ic_notif_speed_1_10_w.png │ │ │ ├── ic_notif_speed_1_20_w.png │ │ │ ├── ic_notif_speed_1_50_w.png │ │ │ ├── ic_notif_speed_2_00_w.png │ │ │ ├── ic_notif_video.png │ │ │ ├── ic_pause_notif.png │ │ │ ├── ic_play_notif.png │ │ │ ├── ic_player_brightness.png │ │ │ ├── ic_player_volume.png │ │ │ ├── ic_popup_close_w.png │ │ │ ├── ic_popup_fullscreen.png │ │ │ ├── ic_popup_pause.png │ │ │ ├── ic_popup_play.png │ │ │ ├── ic_widget_close_normal.png │ │ │ ├── ic_widget_close_normal_w.png │ │ │ ├── ic_widget_icon.png │ │ │ ├── ic_widget_pause_normal_w.png │ │ │ ├── ic_widget_pause_pressed.png │ │ │ ├── ic_widget_play.png │ │ │ ├── ic_widget_play_normal_w.png │ │ │ ├── ic_widget_play_pressed.png │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ ├── advanced_options_background.xml │ │ │ ├── advanced_options_background_dark.xml │ │ │ ├── advanced_options_background_light.xml │ │ │ ├── anim_delete.xml │ │ │ ├── anim_now_playing.xml │ │ │ ├── anim_pause_play_video.xml │ │ │ ├── anim_play_pause_video.xml │ │ │ ├── audio_list_background.xml │ │ │ ├── audio_list_background_black.xml │ │ │ ├── audio_seekbar.xml │ │ │ ├── audio_seekbar_black.xml │ │ │ ├── background_chapter_item.xml │ │ │ ├── background_item.xml │ │ │ ├── background_round_item.xml │ │ │ ├── background_simple_item.xml │ │ │ ├── black_gradient.xml │ │ │ ├── bottom_navigation_background.xml │ │ │ ├── bottom_navigation_background_dark.xml │ │ │ ├── bottom_sheet_background.xml │ │ │ ├── button_background.xml │ │ │ ├── button_background_selected.xml │ │ │ ├── button_circle_white_selector.xml │ │ │ ├── button_oval.xml │ │ │ ├── circle_white.xml │ │ │ ├── cursor_o.xml │ │ │ ├── cursor_w.xml │ │ │ ├── device_dialog_background.xml │ │ │ ├── divider_tv_card_content_dark.xml │ │ │ ├── donate_background_color.xml │ │ │ ├── donate_background_color_dark.xml │ │ │ ├── donate_button_background.xml │ │ │ ├── donate_button_ripple.xml │ │ │ ├── donate_purchased_background_color.xml │ │ │ ├── donate_text_background.xml │ │ │ ├── edittext_bottom_border.xml │ │ │ ├── empty.xml │ │ │ ├── fastscroll_thumb.xml │ │ │ ├── fastscroll_thumb_drawable.xml │ │ │ ├── fastscroll_thumb_pressed.xml │ │ │ ├── fastscroll_track.xml │ │ │ ├── fastscroll_track_drawable.xml │ │ │ ├── fastscroller_bubble.xml │ │ │ ├── fastscroller_bubble_black.xml │ │ │ ├── fastscroller_handle.xml │ │ │ ├── fastscroller_handle_black.xml │ │ │ ├── gradient_audio_player_bottom.xml │ │ │ ├── gradient_audio_player_bottom_dark.xml │ │ │ ├── gradient_audio_player_top.xml │ │ │ ├── gradient_audio_player_top_dark.xml │ │ │ ├── gradient_background_tv.xml │ │ │ ├── gradient_hud_player.xml │ │ │ ├── gradient_title_player.xml │ │ │ ├── gridview_progressbar.xml │ │ │ ├── gridview_progressbar_w.xml │ │ │ ├── half_circle_tv_left.xml │ │ │ ├── half_circle_tv_right.xml │ │ │ ├── header_background_content.xml │ │ │ ├── header_background_no_content.xml │ │ │ ├── ic_about_logo.xml │ │ │ ├── ic_abrepeat.xml │ │ │ ├── ic_abrepeat_chips.xml │ │ │ ├── ic_abrepeat_marker.xml │ │ │ ├── ic_abrepeat_marker_audio.xml │ │ │ ├── ic_abrepeat_reset_audio.xml │ │ │ ├── ic_abrepeat_reset_circle.xml │ │ │ ├── ic_abrepeat_reset_marker.xml │ │ │ ├── ic_abrepeat_reset_marker_audio.xml │ │ │ ├── ic_abrepeat_reset_marker_circle.xml │ │ │ ├── ic_abrepeat_warning.xml │ │ │ ├── ic_account.xml │ │ │ ├── ic_add.xml │ │ │ ├── ic_add_to_group.xml │ │ │ ├── ic_add_to_playlist.xml │ │ │ ├── ic_add_to_scan.xml │ │ │ ├── ic_addtoplaylist.xml │ │ │ ├── ic_album.xml │ │ │ ├── ic_album_addtoplaylist.xml │ │ │ ├── ic_album_big.xml │ │ │ ├── ic_album_shuffle.xml │ │ │ ├── ic_app_shortcut.xml │ │ │ ├── ic_arrow_back.xml │ │ │ ├── ic_arrow_forward.xml │ │ │ ├── ic_arrow_left.xml │ │ │ ├── ic_arrow_right.xml │ │ │ ├── ic_artist_big.xml │ │ │ ├── ic_audio_controls.xml │ │ │ ├── ic_audiosub_info.xml │ │ │ ├── ic_audiotips.xml │ │ │ ├── ic_author.xml │ │ │ ├── ic_authors.xml │ │ │ ├── ic_auto_album.xml │ │ │ ├── ic_auto_album_unknown.xml │ │ │ ├── ic_auto_artist.xml │ │ │ ├── ic_auto_artist_unknown.xml │ │ │ ├── ic_auto_audio.xml │ │ │ ├── ic_auto_forward.xml │ │ │ ├── ic_auto_forward_10.xml │ │ │ ├── ic_auto_genre.xml │ │ │ ├── ic_auto_genre_unknown.xml │ │ │ ├── ic_auto_history_circle.xml │ │ │ ├── ic_auto_home.xml │ │ │ ├── ic_auto_my_library.xml │ │ │ ├── ic_auto_new_circle.xml │ │ │ ├── ic_auto_nothumb.xml │ │ │ ├── ic_auto_notif_audio.xml │ │ │ ├── ic_auto_playall.xml │ │ │ ├── ic_auto_playall_circle.xml │ │ │ ├── ic_auto_playlist.xml │ │ │ ├── ic_auto_playlist_unknown.xml │ │ │ ├── ic_auto_repeat_normal.xml │ │ │ ├── ic_auto_repeat_one_pressed.xml │ │ │ ├── ic_auto_repeat_pressed.xml │ │ │ ├── ic_auto_rewind.xml │ │ │ ├── ic_auto_rewind_10.xml │ │ │ ├── ic_auto_shuffle_circle.xml │ │ │ ├── ic_auto_shuffle_disabled.xml │ │ │ ├── ic_auto_shuffle_enabled.xml │ │ │ ├── ic_auto_speed.xml │ │ │ ├── ic_auto_speed_0_50.xml │ │ │ ├── ic_auto_speed_0_80.xml │ │ │ ├── ic_auto_speed_1_00.xml │ │ │ ├── ic_auto_speed_1_10.xml │ │ │ ├── ic_auto_speed_1_20.xml │ │ │ ├── ic_auto_speed_1_50.xml │ │ │ ├── ic_auto_speed_2_00.xml │ │ │ ├── ic_auto_stream.xml │ │ │ ├── ic_auto_stream_unknown.xml │ │ │ ├── ic_backspace.xml │ │ │ ├── ic_backspace_white.xml │ │ │ ├── ic_ban.xml │ │ │ ├── ic_banned.xml │ │ │ ├── ic_bookmark.xml │ │ │ ├── ic_bookmark_add.xml │ │ │ ├── ic_bookmark_marker.xml │ │ │ ├── ic_browse_parent.xml │ │ │ ├── ic_browser.xml │ │ │ ├── ic_browser_movie.xml │ │ │ ├── ic_browser_movie_big.xml │ │ │ ├── ic_browser_tvshow.xml │ │ │ ├── ic_browser_tvshow_big.xml │ │ │ ├── ic_chapter.xml │ │ │ ├── ic_check.xml │ │ │ ├── ic_check_disabled.xml │ │ │ ├── ic_check_large.xml │ │ │ ├── ic_check_small.xml │ │ │ ├── ic_checkbox_disabled.xml │ │ │ ├── ic_checkbox_false.xml │ │ │ ├── ic_checkbox_not_checked.xml │ │ │ ├── ic_checkbox_partialy.xml │ │ │ ├── ic_checkbox_partialy_normal.xml │ │ │ ├── ic_checkbox_partialy_pressed.xml │ │ │ ├── ic_checkbox_true.xml │ │ │ ├── ic_checkbox_true_normal.xml │ │ │ ├── ic_checkbox_true_pressed.xml │ │ │ ├── ic_chevron_left.xml │ │ │ ├── ic_chevron_right.xml │ │ │ ├── ic_circle_audio_player.xml │ │ │ ├── ic_circle_audio_player_focused.xml │ │ │ ├── ic_circle_audio_player_not_focused.xml │ │ │ ├── ic_close_small.xml │ │ │ ├── ic_close_up.xml │ │ │ ├── ic_collapse_arrow.xml │ │ │ ├── ic_cone_o.xml │ │ │ ├── ic_cone_w.xml │ │ │ ├── ic_copy.xml │ │ │ ├── ic_ctx_delete.xml │ │ │ ├── ic_ctx_fav_add.xml │ │ │ ├── ic_default_cone.xml │ │ │ ├── ic_delay.xml │ │ │ ├── ic_delay_done.xml │ │ │ ├── ic_delete.xml │ │ │ ├── ic_dialog_renderer.xml │ │ │ ├── ic_dialog_unknown.xml │ │ │ ├── ic_display_settings.xml │ │ │ ├── ic_divider.xml │ │ │ ├── ic_documentation.xml │ │ │ ├── ic_donate.xml │ │ │ ├── ic_donate_big.xml │ │ │ ├── ic_done.xml │ │ │ ├── ic_down_on_circle_dialog.xml │ │ │ ├── ic_down_on_circle_player.xml │ │ │ ├── ic_download.xml │ │ │ ├── ic_download_subtitles.xml │ │ │ ├── ic_duration.xml │ │ │ ├── ic_edit.xml │ │ │ ├── ic_email.xml │ │ │ ├── ic_emoji_absent.xml │ │ │ ├── ic_emoji_clap_hands.xml │ │ │ ├── ic_emoji_eyes_heart.xml │ │ │ ├── ic_emoji_eyes_star.xml │ │ │ ├── ic_emoji_favorite.xml │ │ │ ├── ic_emoji_favorite_white.xml │ │ │ ├── ic_emoji_file.xml │ │ │ ├── ic_emoji_folder.xml │ │ │ ├── ic_emoji_media_absent.xml │ │ │ ├── ic_emoji_media_present.xml │ │ │ ├── ic_emoji_network.xml │ │ │ ├── ic_emoji_otg.xml │ │ │ ├── ic_emoji_party.xml │ │ │ ├── ic_emoji_sd.xml │ │ │ ├── ic_emoji_thumb_up.xml │ │ │ ├── ic_empty.xml │ │ │ ├── ic_empty_warning.xml │ │ │ ├── ic_equalizer.xml │ │ │ ├── ic_fab_add.xml │ │ │ ├── ic_fab_play.xml │ │ │ ├── ic_fab_shuffle.xml │ │ │ ├── ic_fabtv_preferences.xml │ │ │ ├── ic_fabtvmini_favorite.xml │ │ │ ├── ic_fabtvmini_favorite_outline.xml │ │ │ ├── ic_fabtvmini_grid.xml │ │ │ ├── ic_fabtvmini_jumptoheader.xml │ │ │ ├── ic_fabtvmini_list.xml │ │ │ ├── ic_fabtvmini_sort.xml │ │ │ ├── ic_fav_add.xml │ │ │ ├── ic_fav_empty.xml │ │ │ ├── ic_fav_remove.xml │ │ │ ├── ic_favorite.xml │ │ │ ├── ic_favorite_tv_badge.xml │ │ │ ├── ic_feedback.xml │ │ │ ├── ic_folder.xml │ │ │ ├── ic_folder_big.xml │ │ │ ├── ic_folder_download.xml │ │ │ ├── ic_folder_download_big.xml │ │ │ ├── ic_folder_movies.xml │ │ │ ├── ic_folder_movies_big.xml │ │ │ ├── ic_folder_music.xml │ │ │ ├── ic_folder_music_big.xml │ │ │ ├── ic_folder_podcasts.xml │ │ │ ├── ic_folder_podcasts_big.xml │ │ │ ├── ic_folder_usb.xml │ │ │ ├── ic_folder_usb_big.xml │ │ │ ├── ic_forum.xml │ │ │ ├── ic_genre.xml │ │ │ ├── ic_genre_big.xml │ │ │ ├── ic_go_to_folder.xml │ │ │ ├── ic_group.xml │ │ │ ├── ic_group_auto.xml │ │ │ ├── ic_group_display.xml │ │ │ ├── ic_half_seek_forward.xml │ │ │ ├── ic_half_seek_forward_tv.xml │ │ │ ├── ic_half_seek_rewind.xml │ │ │ ├── ic_half_seek_rewind_tv.xml │ │ │ ├── ic_header_media_favorite.xml │ │ │ ├── ic_header_media_favorite_outline.xml │ │ │ ├── ic_hearing_impaired.xml │ │ │ ├── ic_hidden.xml │ │ │ ├── ic_hide_source.xml │ │ │ ├── ic_history.xml │ │ │ ├── ic_icon.xml │ │ │ ├── ic_icon_vlc4.xml │ │ │ ├── ic_incognito.xml │ │ │ ├── ic_info_big.xml │ │ │ ├── ic_information.xml │ │ │ ├── ic_inverted_round.xml │ │ │ ├── ic_jumpto.xml │ │ │ ├── ic_language.xml │ │ │ ├── ic_last_playqueue.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── ic_launcher_monochrome.xml │ │ │ ├── ic_link.xml │ │ │ ├── ic_lock_player.xml │ │ │ ├── ic_mark_all_as_not_played.xml │ │ │ ├── ic_mark_all_as_played.xml │ │ │ ├── ic_mark_as_not_played.xml │ │ │ ├── ic_mark_as_played.xml │ │ │ ├── ic_medialibrary_date.xml │ │ │ ├── ic_medialibrary_scan.xml │ │ │ ├── ic_menu_audio.xml │ │ │ ├── ic_more.xml │ │ │ ├── ic_more_about.xml │ │ │ ├── ic_more_preferences.xml │ │ │ ├── ic_more_stream.xml │ │ │ ├── ic_more_w.xml │ │ │ ├── ic_move_media.xml │ │ │ ├── ic_movie_placeholder.xml │ │ │ ├── ic_multimedia.xml │ │ │ ├── ic_nav_more.xml │ │ │ ├── ic_network.xml │ │ │ ├── ic_network_add_big.xml │ │ │ ├── ic_network_big.xml │ │ │ ├── ic_next.xml │ │ │ ├── ic_next_chapter.xml │ │ │ ├── ic_no_album.xml │ │ │ ├── ic_no_artist.xml │ │ │ ├── ic_no_media.xml │ │ │ ├── ic_no_song.xml │ │ │ ├── ic_no_thumbnail_1610.xml │ │ │ ├── ic_no_thumbnail_song.xml │ │ │ ├── ic_notif_bookmark_add.xml │ │ │ ├── ic_notif_forward.xml │ │ │ ├── ic_notif_forward_10.xml │ │ │ ├── ic_notif_next.xml │ │ │ ├── ic_notif_previous.xml │ │ │ ├── ic_notif_rewind.xml │ │ │ ├── ic_notif_rewind_10.xml │ │ │ ├── ic_notif_speed_0_50.xml │ │ │ ├── ic_notif_speed_0_80.xml │ │ │ ├── ic_notif_speed_1_00.xml │ │ │ ├── ic_notif_speed_1_10.xml │ │ │ ├── ic_notif_speed_1_20.xml │ │ │ ├── ic_notif_speed_1_50.xml │ │ │ ├── ic_notif_speed_2_00.xml │ │ │ ├── ic_now_playing_paused.xml │ │ │ ├── ic_onboarding_next.xml │ │ │ ├── ic_onboarding_no_permission.xml │ │ │ ├── ic_onboarding_notification.xml │ │ │ ├── ic_onboarding_previous.xml │ │ │ ├── ic_onboarding_scan.xml │ │ │ ├── ic_options_check.xml │ │ │ ├── ic_overflow_audio.xml │ │ │ ├── ic_overflow_tv_audio.xml │ │ │ ├── ic_passthrough.xml │ │ │ ├── ic_passthrough_on.xml │ │ │ ├── ic_pause_player.xml │ │ │ ├── ic_people_big.xml │ │ │ ├── ic_perm_all.xml │ │ │ ├── ic_perm_media.xml │ │ │ ├── ic_perm_none.xml │ │ │ ├── ic_permission.xml │ │ │ ├── ic_permission_big.xml │ │ │ ├── ic_permission_check_checked.xml │ │ │ ├── ic_permission_check_unchecked.xml │ │ │ ├── ic_permission_media_audio.xml │ │ │ ├── ic_permission_media_audio_denied.xml │ │ │ ├── ic_permission_media_video.xml │ │ │ ├── ic_permission_media_video_denied.xml │ │ │ ├── ic_permission_notification.xml │ │ │ ├── ic_pin_lock.xml │ │ │ ├── ic_pin_lock_big.xml │ │ │ ├── ic_pin_unlock.xml │ │ │ ├── ic_play.xml │ │ │ ├── ic_play_all.xml │ │ │ ├── ic_play_append.xml │ │ │ ├── ic_play_as_audio.xml │ │ │ ├── ic_play_circle_card.xml │ │ │ ├── ic_play_from_start.xml │ │ │ ├── ic_play_next.xml │ │ │ ├── ic_play_player.xml │ │ │ ├── ic_play_player_disabled.xml │ │ │ ├── ic_play_tv.xml │ │ │ ├── ic_playasaudio_off.xml │ │ │ ├── ic_playasaudio_on.xml │ │ │ ├── ic_player_audiotrack.xml │ │ │ ├── ic_player_bookmark_next.xml │ │ │ ├── ic_player_bookmark_previous.xml │ │ │ ├── ic_player_forward_10.xml │ │ │ ├── ic_player_forward_10_disabled.xml │ │ │ ├── ic_player_lock_landscape.xml │ │ │ ├── ic_player_lock_portrait.xml │ │ │ ├── ic_player_more.xml │ │ │ ├── ic_player_navmenu.xml │ │ │ ├── ic_player_next.xml │ │ │ ├── ic_player_playqueue.xml │ │ │ ├── ic_player_previous.xml │ │ │ ├── ic_player_ratio.xml │ │ │ ├── ic_player_renderer.xml │ │ │ ├── ic_player_renderer_on.xml │ │ │ ├── ic_player_rewind_10.xml │ │ │ ├── ic_player_rewind_10_disabled.xml │ │ │ ├── ic_player_rotate.xml │ │ │ ├── ic_player_screenshare.xml │ │ │ ├── ic_player_screenshare_stop.xml │ │ │ ├── ic_player_screenshot.xml │ │ │ ├── ic_player_shuffle.xml │ │ │ ├── ic_playlist.xml │ │ │ ├── ic_playlist_audio.xml │ │ │ ├── ic_playlist_audio_on.xml │ │ │ ├── ic_playlist_big.xml │ │ │ ├── ic_playlist_delete.xml │ │ │ ├── ic_playlist_movedown.xml │ │ │ ├── ic_playlist_moveup.xml │ │ │ ├── ic_playlist_on.xml │ │ │ ├── ic_playlisttips.xml │ │ │ ├── ic_popup_dim.xml │ │ │ ├── ic_previous.xml │ │ │ ├── ic_previous_chapter.xml │ │ │ ├── ic_qr_code.xml │ │ │ ├── ic_rate.xml │ │ │ ├── ic_refresh.xml │ │ │ ├── ic_remote_access.xml │ │ │ ├── ic_remote_access_big.xml │ │ │ ├── ic_remote_access_onboarding_denied.xml │ │ │ ├── ic_remote_access_onboarding_encryption.xml │ │ │ ├── ic_remote_access_onboarding_file.xml │ │ │ ├── ic_remote_access_onboarding_pause.xml │ │ │ ├── ic_remote_access_onboarding_play.xml │ │ │ ├── ic_remote_access_onboarding_verified.xml │ │ │ ├── ic_remote_album_unknown.xml │ │ │ ├── ic_remote_album_unknown_big.xml │ │ │ ├── ic_remote_artist_unknown.xml │ │ │ ├── ic_remote_artist_unknown_big.xml │ │ │ ├── ic_remote_genre_unknown.xml │ │ │ ├── ic_remote_genre_unknown_big.xml │ │ │ ├── ic_remote_playlist_unknown.xml │ │ │ ├── ic_remote_playlist_unknown_big.xml │ │ │ ├── ic_remote_song_unknown.xml │ │ │ ├── ic_remote_song_unknown_big.xml │ │ │ ├── ic_remote_stream_add.xml │ │ │ ├── ic_remote_stream_add_big.xml │ │ │ ├── ic_remote_video_unknown.xml │ │ │ ├── ic_remote_video_unknown_big.xml │ │ │ ├── ic_remove_from_group.xml │ │ │ ├── ic_remove_from_playlist.xml │ │ │ ├── ic_renderer.xml │ │ │ ├── ic_renderer_background_cone.xml │ │ │ ├── ic_renderer_on.xml │ │ │ ├── ic_repeat.xml │ │ │ ├── ic_repeat_all.xml │ │ │ ├── ic_repeat_all_audio.xml │ │ │ ├── ic_repeat_audio.xml │ │ │ ├── ic_repeat_one.xml │ │ │ ├── ic_repeat_one_audio.xml │ │ │ ├── ic_resume_playback.xml │ │ │ ├── ic_scan_big.xml │ │ │ ├── ic_search.xml │ │ │ ├── ic_search_audio.xml │ │ │ ├── ic_seekbar_thumb.xml │ │ │ ├── ic_seekbar_thumb_audio.xml │ │ │ ├── ic_seekbar_thumb_audio_normal.xml │ │ │ ├── ic_seekbar_thumb_audio_pressed.xml │ │ │ ├── ic_seekbar_thumb_audio_tv.xml │ │ │ ├── ic_seekbar_thumb_audio_tv_normal.xml │ │ │ ├── ic_seekbar_thumb_audio_tv_pressed.xml │ │ │ ├── ic_seekbar_thumb_normal.xml │ │ │ ├── ic_seekbar_thumb_pressed.xml │ │ │ ├── ic_seen_normal.xml │ │ │ ├── ic_seen_tv_normal.xml │ │ │ ├── ic_send.xml │ │ │ ├── ic_set_ringtone.xml │ │ │ ├── ic_settings_big.xml │ │ │ ├── ic_share.xml │ │ │ ├── ic_shortcut_audio.xml │ │ │ ├── ic_shortcut_folder.xml │ │ │ ├── ic_shortcut_resume_playback.xml │ │ │ ├── ic_shortcut_video.xml │ │ │ ├── ic_show_tips_w.xml │ │ │ ├── ic_shuffle.xml │ │ │ ├── ic_shuffle_audio.xml │ │ │ ├── ic_shuffle_on.xml │ │ │ ├── ic_shuffle_on_48dp.xml │ │ │ ├── ic_sleep.xml │ │ │ ├── ic_smartphone.xml │ │ │ ├── ic_song.xml │ │ │ ├── ic_song_background.xml │ │ │ ├── ic_song_big.xml │ │ │ ├── ic_song_vertical.xml │ │ │ ├── ic_sort.xml │ │ │ ├── ic_sort_album.xml │ │ │ ├── ic_sort_alpha.xml │ │ │ ├── ic_sort_artist.xml │ │ │ ├── ic_sort_date.xml │ │ │ ├── ic_sort_filename.xml │ │ │ ├── ic_sort_length.xml │ │ │ ├── ic_sort_number.xml │ │ │ ├── ic_sort_track.xml │ │ │ ├── ic_sourcecode.xml │ │ │ ├── ic_sources.xml │ │ │ ├── ic_speed.xml │ │ │ ├── ic_speed_all.xml │ │ │ ├── ic_star.xml │ │ │ ├── ic_star_border.xml │ │ │ ├── ic_star_half.xml │ │ │ ├── ic_stop_after_this.xml │ │ │ ├── ic_storage.xml │ │ │ ├── ic_stream_add.xml │ │ │ ├── ic_stream_big.xml │ │ │ ├── ic_subtitles.xml │ │ │ ├── ic_subtitles_big.xml │ │ │ ├── ic_subtitles_file.xml │ │ │ ├── ic_swipe_unlock.xml │ │ │ ├── ic_theme.xml │ │ │ ├── ic_theme_dark.xml │ │ │ ├── ic_theme_daynight.xml │ │ │ ├── ic_theme_light.xml │ │ │ ├── ic_translate.xml │ │ │ ├── ic_trash.xml │ │ │ ├── ic_tv.xml │ │ │ ├── ic_tv_browser_favorite.xml │ │ │ ├── ic_tv_browser_favorite_outline.xml │ │ │ ├── ic_tv_browser_grid.xml │ │ │ ├── ic_tv_browser_jumptoheader.xml │ │ │ ├── ic_tv_browser_list.xml │ │ │ ├── ic_tv_browser_sort.xml │ │ │ ├── ic_tv_list_addtoplaylist.xml │ │ │ ├── ic_tv_list_append.xml │ │ │ ├── ic_tv_list_delete.xml │ │ │ ├── ic_tv_list_movedown.xml │ │ │ ├── ic_tv_list_moveup.xml │ │ │ ├── ic_tv_list_play.xml │ │ │ ├── ic_tv_list_play_big.xml │ │ │ ├── ic_tv_list_playnext.xml │ │ │ ├── ic_tv_list_removefromplaylist.xml │ │ │ ├── ic_unknown.xml │ │ │ ├── ic_unknown_big.xml │ │ │ ├── ic_up_on_circle_dialog.xml │ │ │ ├── ic_up_on_circle_player.xml │ │ │ ├── ic_update.xml │ │ │ ├── ic_video.xml │ │ │ ├── ic_video_big.xml │ │ │ ├── ic_video_controls.xml │ │ │ ├── ic_video_grid_check.xml │ │ │ ├── ic_video_stats.xml │ │ │ ├── ic_videotips.xml │ │ │ ├── ic_view_grid.xml │ │ │ ├── ic_view_list.xml │ │ │ ├── ic_warning.xml │ │ │ ├── ic_warning_medium.xml │ │ │ ├── ic_warning_small.xml │ │ │ ├── ic_website.xml │ │ │ ├── ic_whats_new.xml │ │ │ ├── ic_whats_new_favorites.xml │ │ │ ├── ic_whats_new_web_server.xml │ │ │ ├── ic_widget_close_w.xml │ │ │ ├── ic_widget_configure.xml │ │ │ ├── ic_widget_forward_10.xml │ │ │ ├── ic_widget_icon.xml │ │ │ ├── ic_widget_next_normal.xml │ │ │ ├── ic_widget_pause.xml │ │ │ ├── ic_widget_pause_inner.xml │ │ │ ├── ic_widget_pause_w.xml │ │ │ ├── ic_widget_play.xml │ │ │ ├── ic_widget_play_w.xml │ │ │ ├── ic_widget_previous_normal.xml │ │ │ ├── ic_widget_rewind_10.xml │ │ │ ├── keyboard_button_background.xml │ │ │ ├── keyboard_button_background_focused.xml │ │ │ ├── keyboard_button_background_normal.xml │ │ │ ├── permission_selection_rounded.xml │ │ │ ├── po_seekbar.xml │ │ │ ├── po_seekbar_video.xml │ │ │ ├── progress_mini_player.xml │ │ │ ├── progress_mini_player_black.xml │ │ │ ├── progress_widget.xml │ │ │ ├── rectangle_circle_right_orange.xml │ │ │ ├── rectangle_circle_right_orange_selector.xml │ │ │ ├── rectangle_circle_right_white.xml │ │ │ ├── rectangle_circle_right_white_selector.xml │ │ │ ├── rectangle_default_darker_border_primary.xml │ │ │ ├── rectangle_default_grey_200.xml │ │ │ ├── rectangle_grey_700.xml │ │ │ ├── rectangle_orange_300.xml │ │ │ ├── rectangle_orange_400.xml │ │ │ ├── rectangle_orange_500.xml │ │ │ ├── rectangle_primary.xml │ │ │ ├── rectangle_transparent.xml │ │ │ ├── rectangle_white_transparent.xml │ │ │ ├── round_background.xml │ │ │ ├── round_background_dark.xml │ │ │ ├── round_black_transparent.xml │ │ │ ├── round_black_transparent_50.xml │ │ │ ├── round_border.xml │ │ │ ├── round_border_normal.xml │ │ │ ├── round_border_pressed.xml │ │ │ ├── round_white_transparent.xml │ │ │ ├── rounded_corners.xml │ │ │ ├── rounded_corners_audio.xml │ │ │ ├── rounded_corners_audio_dark.xml │ │ │ ├── rounded_corners_black_bottom_right.xml │ │ │ ├── rounded_corners_black_more_transparent.xml │ │ │ ├── rounded_corners_bottom_default_darker_dark.xml │ │ │ ├── rounded_corners_bottom_default_darker_light.xml │ │ │ ├── rounded_corners_bottom_orange_500.xml │ │ │ ├── rounded_corners_full.xml │ │ │ ├── rounded_corners_grey.xml │ │ │ ├── rounded_corners_line.xml │ │ │ ├── rounded_corners_orange.xml │ │ │ ├── rounded_corners_otp_code.xml │ │ │ ├── rounded_corners_otp_code_dark.xml │ │ │ ├── rounded_corners_permissions_explanation.xml │ │ │ ├── rounded_corners_permissions_warning.xml │ │ │ ├── rounded_corners_scan_progress.xml │ │ │ ├── rounded_corners_scan_progress_dark.xml │ │ │ ├── rounded_corners_white.xml │ │ │ ├── rounded_top_corners_left_background.xml │ │ │ ├── rounded_top_corners_left_background_dark.xml │ │ │ ├── swipe_to_unlock_background.xml │ │ │ ├── tab_indicator.xml │ │ │ ├── theme_selection_rounded.xml │ │ │ ├── tips_double_tap.xml │ │ │ ├── tips_double_tap_500.xml │ │ │ ├── tips_gesture.xml │ │ │ ├── tips_gesture_horizontal.xml │ │ │ ├── tips_gesture_horizontal_small.xml │ │ │ ├── tips_tap.xml │ │ │ ├── tips_tap_500.xml │ │ │ ├── tv_audio_chips.xml │ │ │ ├── tv_audio_chips_focused.xml │ │ │ ├── tv_audio_chips_normal.xml │ │ │ ├── tv_audioprogressbar.xml │ │ │ ├── tv_card_background.xml │ │ │ ├── tv_card_background_focused.xml │ │ │ ├── tv_card_background_transition.xml │ │ │ ├── tv_channel_default.png │ │ │ ├── tv_list_background_transition.xml │ │ │ ├── video_grid_card_background.xml │ │ │ ├── video_grid_card_background_dark.xml │ │ │ ├── video_grid_card_background_focused.xml │ │ │ ├── video_grid_card_background_focused_dark.xml │ │ │ ├── video_grid_card_background_selected.xml │ │ │ ├── video_grid_card_background_selected_dark.xml │ │ │ ├── video_list_background.xml │ │ │ ├── video_list_background_dark.xml │ │ │ ├── video_list_background_focused.xml │ │ │ ├── video_list_background_focused_dark.xml │ │ │ ├── video_list_background_selected.xml │ │ │ ├── video_list_background_selected_dark.xml │ │ │ ├── video_list_length_bg.xml │ │ │ ├── video_list_length_bg_opaque.xml │ │ │ ├── video_overlay_gradient.xml │ │ │ ├── video_overlay_selected.xml │ │ │ ├── white_circle.xml │ │ │ ├── widget_circle.xml │ │ │ ├── widget_pill_neutral.xml │ │ │ ├── widget_plain_background.xml │ │ │ ├── widget_preview_mini.png │ │ │ ├── widget_rectangle_background.xml │ │ │ ├── widget_round_white.xml │ │ │ ├── widget_touch_background.xml │ │ │ └── widget_touch_background_dark.xml │ │ │ ├── values-af │ │ │ └── strings.xml │ │ │ ├── values-am │ │ │ └── strings.xml │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-ast │ │ │ └── strings.xml │ │ │ ├── values-be │ │ │ └── strings.xml │ │ │ ├── values-br │ │ │ └── strings.xml │ │ │ ├── values-bs │ │ │ └── strings.xml │ │ │ ├── values-ca │ │ │ └── strings.xml │ │ │ ├── values-co │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ └── strings.xml │ │ │ ├── values-cy │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ └── strings.xml │ │ │ ├── values-en-rGB │ │ │ └── strings.xml │ │ │ ├── values-es-rMX │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-et │ │ │ └── strings.xml │ │ │ ├── values-eu │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ └── strings.xml │ │ │ ├── values-fi │ │ │ └── strings.xml │ │ │ ├── values-fo │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-ga │ │ │ └── strings.xml │ │ │ ├── values-gl │ │ │ └── strings.xml │ │ │ ├── values-h480dp │ │ │ └── dimens.xml │ │ │ ├── values-h600dp │ │ │ └── dimens.xml │ │ │ ├── values-he │ │ │ └── strings.xml │ │ │ ├── values-hi │ │ │ └── strings.xml │ │ │ ├── values-hr │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ └── strings.xml │ │ │ ├── values-id │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ └── strings.xml │ │ │ ├── values-is │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-iw │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-ka │ │ │ └── strings.xml │ │ │ ├── values-kab │ │ │ └── strings.xml │ │ │ ├── values-km │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ └── strings.xml │ │ │ ├── values-ku │ │ │ └── strings.xml │ │ │ ├── values-land │ │ │ ├── booleans.xml │ │ │ └── dimens.xml │ │ │ ├── values-ldrtl │ │ │ └── dimens.xml │ │ │ ├── values-lo │ │ │ └── strings.xml │ │ │ ├── values-lt │ │ │ └── strings.xml │ │ │ ├── values-lv │ │ │ └── strings.xml │ │ │ ├── values-ml │ │ │ └── strings.xml │ │ │ ├── values-mr │ │ │ └── strings.xml │ │ │ ├── values-ms │ │ │ └── strings.xml │ │ │ ├── values-my │ │ │ └── strings.xml │ │ │ ├── values-nb │ │ │ └── strings.xml │ │ │ ├── values-ne │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-nn │ │ │ └── strings.xml │ │ │ ├── values-pa │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-pt │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-sat │ │ │ └── strings.xml │ │ │ ├── values-sc │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ └── strings.xml │ │ │ ├── values-sq │ │ │ └── strings.xml │ │ │ ├── values-sr │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ └── strings.xml │ │ │ ├── values-sw │ │ │ └── strings.xml │ │ │ ├── values-sw360dp │ │ │ └── dimens.xml │ │ │ ├── values-sw400dp │ │ │ └── booleans.xml │ │ │ ├── values-sw480dp │ │ │ └── dimens.xml │ │ │ ├── values-sw600dp │ │ │ ├── booleans.xml │ │ │ └── dimens.xml │ │ │ ├── values-sw900dp │ │ │ └── dimens.xml │ │ │ ├── values-ta │ │ │ └── strings.xml │ │ │ ├── values-th │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ └── strings.xml │ │ │ ├── values-tt │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-uz │ │ │ └── strings.xml │ │ │ ├── values-v19 │ │ │ └── booleans.xml │ │ │ ├── values-vi │ │ │ └── strings.xml │ │ │ ├── values-w480dp │ │ │ ├── dimens.xml │ │ │ └── integers.xml │ │ │ ├── values-w600dp │ │ │ ├── dimens.xml │ │ │ └── integers.xml │ │ │ ├── values-w800dp │ │ │ ├── dimens.xml │ │ │ └── integers.xml │ │ │ ├── values-wa │ │ │ └── strings.xml │ │ │ ├── values-zgh-rMA │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ └── values │ │ │ ├── arrays.xml │ │ │ ├── attrs.xml │ │ │ ├── booleans.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ ├── integers.xml │ │ │ └── strings.xml │ ├── vlc3 │ │ └── src │ │ │ └── org │ │ │ └── videolan │ │ │ └── vlc │ │ │ └── MainVersion.kt │ └── vlc4 │ │ └── src │ │ └── org │ │ └── videolan │ │ └── vlc │ │ └── MainVersion.kt ├── television │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── videolan │ │ │ └── television │ │ │ └── ExampleInstrumentedTest.kt │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── videolan │ │ │ │ └── television │ │ │ │ ├── ui │ │ │ │ ├── AboutActivity.kt │ │ │ │ ├── CardPresenter.kt │ │ │ │ ├── ColorPickerActivity.kt │ │ │ │ ├── DetailsActivity.kt │ │ │ │ ├── DetailsDescriptionPresenter.kt │ │ │ │ ├── FileTvItemAdapter.kt │ │ │ │ ├── FocusableConstraintLayout.kt │ │ │ │ ├── FocusableRecyclerView.kt │ │ │ │ ├── FullWidthRowPresenter.kt │ │ │ │ ├── GenericCardPresenter.kt │ │ │ │ ├── MainTvActivity.kt │ │ │ │ ├── MainTvFragment.kt │ │ │ │ ├── MediaBrowserAnimatorDelegate.kt │ │ │ │ ├── MediaHeaderAdapter.kt │ │ │ │ ├── MediaImageCardPresenter.kt │ │ │ │ ├── MediaItemDetails.kt │ │ │ │ ├── MediaItemDetailsFragment.kt │ │ │ │ ├── MediaScrapingTvActivity.kt │ │ │ │ ├── MediaScrapingTvFragment.kt │ │ │ │ ├── MediaScrapingTvItemAdapter.kt │ │ │ │ ├── MediaScrapingTvshowDetailsActivity.kt │ │ │ │ ├── MediaScrapingTvshowDetailsFragment.kt │ │ │ │ ├── MediaTvItemAdapter.kt │ │ │ │ ├── MetadataCardPresenter.kt │ │ │ │ ├── NowPlayingDelegate.kt │ │ │ │ ├── OnboardingActivity.kt │ │ │ │ ├── OnboardingFragment.kt │ │ │ │ ├── PersonCardPresenter.kt │ │ │ │ ├── SearchActivity.kt │ │ │ │ ├── SearchFragment.kt │ │ │ │ ├── TvFocusableAdapter.kt │ │ │ │ ├── TvItemAdapter.kt │ │ │ │ ├── TvShowDescriptionPresenter.kt │ │ │ │ ├── TvUtil.kt │ │ │ │ ├── VideoDetailsPresenter.kt │ │ │ │ ├── audioplayer │ │ │ │ │ ├── AudioPlayerActivity.kt │ │ │ │ │ └── PlaylistAdapter.kt │ │ │ │ ├── browser │ │ │ │ │ ├── BaseBrowserTvFragment.kt │ │ │ │ │ ├── BaseTvActivity.kt │ │ │ │ │ ├── FileBrowserTvFragment.kt │ │ │ │ │ ├── GridFragment.kt │ │ │ │ │ ├── MediaBrowserTvFragment.kt │ │ │ │ │ ├── MediaScrapingBrowserTvFragment.kt │ │ │ │ │ ├── TVActivity.kt │ │ │ │ │ ├── TvAdapterUtils.kt │ │ │ │ │ ├── VerticalGridActivity.kt │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── BrowserActivityInterface.kt │ │ │ │ │ │ └── DetailsFragment.kt │ │ │ │ ├── details │ │ │ │ │ ├── MediaListActivity.kt │ │ │ │ │ └── MediaListAdapter.kt │ │ │ │ ├── dialogs │ │ │ │ │ ├── ConfirmationTvActivity.kt │ │ │ │ │ └── ConfirmationTvDialog.kt │ │ │ │ ├── preferences │ │ │ │ │ ├── BasePreferenceFragment.kt │ │ │ │ │ ├── CustomEditTextPreferenceDialogFragment.kt │ │ │ │ │ ├── PreferencesActivity.kt │ │ │ │ │ ├── PreferencesAdvanced.kt │ │ │ │ │ ├── PreferencesAudio.kt │ │ │ │ │ ├── PreferencesFragment.kt │ │ │ │ │ ├── PreferencesOptional.kt │ │ │ │ │ ├── PreferencesParentalControl.kt │ │ │ │ │ ├── PreferencesRemoteAccess.kt │ │ │ │ │ ├── PreferencesSubtitles.kt │ │ │ │ │ ├── PreferencesUi.kt │ │ │ │ │ ├── PreferencesVideo.kt │ │ │ │ │ └── TvSettings.kt │ │ │ │ └── views │ │ │ │ │ └── ColorPickerItem.kt │ │ │ │ ├── util │ │ │ │ ├── Helpers.kt │ │ │ │ └── TVSearchProvider.kt │ │ │ │ └── viewmodel │ │ │ │ ├── MainTvModel.kt │ │ │ │ ├── MediaBrowserViewModel.kt │ │ │ │ └── MediaScrapingBrowserViewModel.kt │ │ └── res │ │ │ └── layout │ │ │ ├── activity_color_picker.xml │ │ │ ├── activity_media_list_tv.xml │ │ │ ├── activity_media_list_tv_item.xml │ │ │ ├── color_picker_item.xml │ │ │ ├── media_browser_tv_item.xml │ │ │ ├── media_browser_tv_item_list.xml │ │ │ ├── movie_browser_tv_item.xml │ │ │ ├── movie_browser_tv_item_list.xml │ │ │ ├── moviepedia_tvshow_details.xml │ │ │ ├── onboarding.xml │ │ │ ├── song_browser.xml │ │ │ ├── song_header_item.xml │ │ │ ├── tv_audio_player.xml │ │ │ ├── tv_description_row.xml │ │ │ ├── tv_details.xml │ │ │ ├── tv_main.xml │ │ │ ├── tv_next.xml │ │ │ ├── tv_playlist_item.xml │ │ │ ├── tv_preferences_activity.xml │ │ │ ├── tv_search.xml │ │ │ ├── tv_vertical_grid.xml │ │ │ └── tv_video_details.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── videolan │ │ └── television │ │ └── ExampleUnitTest.kt ├── tools │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── videolan │ │ │ └── org │ │ │ └── commontools │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ ├── org │ │ │ └── videolan │ │ │ │ └── tools │ │ │ │ ├── AppUtils.kt │ │ │ │ ├── BitmapCache.kt │ │ │ │ ├── CloseableUtils.kt │ │ │ │ ├── CoroutineContextProvider.kt │ │ │ │ ├── DependencyProvider.kt │ │ │ │ ├── DrawableCache.kt │ │ │ │ ├── FileUtils.kt │ │ │ │ ├── HttpImageLoader.kt │ │ │ │ ├── IOScopedObject.kt │ │ │ │ ├── KeyHelper.kt │ │ │ │ ├── KotlinExtensions.kt │ │ │ │ ├── LocaleUtils.kt │ │ │ │ ├── Logcat.kt │ │ │ │ ├── MultiSelectHelper.kt │ │ │ │ ├── NetworkMonitor.kt │ │ │ │ ├── PathUtils.kt │ │ │ │ ├── Preferences.kt │ │ │ │ ├── Settings.kt │ │ │ │ ├── SingletonHolder.kt │ │ │ │ ├── Strings.kt │ │ │ │ ├── Workers.kt │ │ │ │ └── livedata │ │ │ │ ├── LiveDataMap.kt │ │ │ │ └── LiveDataset.kt │ │ │ └── videolan │ │ │ └── org │ │ │ └── commontools │ │ │ ├── LiveEvent.kt │ │ │ └── TvChannelUtils.kt │ │ └── test │ │ └── java │ │ └── videolan │ │ └── org │ │ └── commontools │ │ └── ExampleUnitTest.java └── vlc-android │ ├── .gitignore │ ├── AndroidManifest.xml │ ├── assets │ └── schemas │ │ └── org.videolan.vlc.database.MediaDatabase │ │ ├── 27.json │ │ ├── 28.json │ │ ├── 29.json │ │ └── 30.json │ ├── build.gradle │ ├── flavors │ └── debug │ │ └── res │ │ ├── drawable-hdpi │ │ └── banner.png │ │ ├── drawable-ldpi │ │ └── banner.png │ │ ├── drawable-mdpi │ │ └── banner.png │ │ ├── drawable-xhdpi │ │ └── banner.png │ │ ├── raw │ │ └── basic_stub.json │ │ └── xml │ │ └── shortcuts.xml │ ├── prep_media.py │ ├── project.properties │ ├── res │ ├── anim │ │ ├── anim_enter_left.xml │ │ ├── anim_enter_right.xml │ │ ├── anim_leave_left.xml │ │ ├── anim_leave_right.xml │ │ ├── no_animation.xml │ │ ├── slide_in_bottom.xml │ │ └── slide_out_bottom.xml │ ├── animator │ │ └── tv_recyclerview_item_pop.xml │ ├── color │ │ └── bottom_navigation_selector.xml │ ├── layout-land │ │ ├── audio_player.xml │ │ ├── cover_media_switcher_item.xml │ │ ├── onboarding_no_permission.xml │ │ ├── onboarding_notification_permission.xml │ │ ├── onboarding_permission.xml │ │ ├── onboarding_scanning.xml │ │ ├── onboarding_theme.xml │ │ ├── onboarding_welcome.xml │ │ └── player_overlay_tracks.xml │ ├── layout-large-land │ │ └── cover_media_switcher_item.xml │ ├── layout-v21 │ │ └── mrl_panel.xml │ ├── layout │ │ ├── ab_repeat_controls.xml │ │ ├── about.xml │ │ ├── about_authors_activity.xml │ │ ├── about_authors_item.xml │ │ ├── about_feedback_activity.xml │ │ ├── activity_beta_welcome.xml │ │ ├── activity_onboarding.xml │ │ ├── adv_option_item.xml │ │ ├── audio_album_track_item.xml │ │ ├── audio_albums_songs.xml │ │ ├── audio_browser.xml │ │ ├── audio_browser_card_item.xml │ │ ├── audio_browser_item.xml │ │ ├── audio_browser_separator.xml │ │ ├── audio_media_switcher_item.xml │ │ ├── audio_player.xml │ │ ├── audio_player_tips.xml │ │ ├── audio_playlist_tips.xml │ │ ├── audio_recyclerview.xml │ │ ├── audio_tab.xml │ │ ├── audioplayer.xml │ │ ├── audioplayercontainer.xml │ │ ├── bookmark_item.xml │ │ ├── bookmarks.xml │ │ ├── browser_item.xml │ │ ├── browser_item_separator.xml │ │ ├── browser_path_item.xml │ │ ├── button_search.xml │ │ ├── card_browser_item.xml │ │ ├── chapter_list_item.xml │ │ ├── context_item.xml │ │ ├── contextual_sheet.xml │ │ ├── cover_media_switcher_item.xml │ │ ├── custom_simple_spinner_dropdown_item.xml │ │ ├── debug_log.xml │ │ ├── debug_log_item.xml │ │ ├── dialog_about_version.xml │ │ ├── dialog_add_to_group.xml │ │ ├── dialog_all_access.xml │ │ ├── dialog_audio_controls_settings.xml │ │ ├── dialog_confirm_audio_playqueue.xml │ │ ├── dialog_confirm_delete.xml │ │ ├── dialog_display_settings.xml │ │ ├── dialog_download.xml │ │ ├── dialog_duplication_warning.xml │ │ ├── dialog_ext_device.xml │ │ ├── dialog_feature_flag_warning.xml │ │ ├── dialog_license.xml │ │ ├── dialog_norification_permission.xml │ │ ├── dialog_permissions.xml │ │ ├── dialog_playback_speed.xml │ │ ├── dialog_playlist.xml │ │ ├── dialog_rename.xml │ │ ├── dialog_renderers.xml │ │ ├── dialog_sd_write.xml │ │ ├── dialog_select_chapter.xml │ │ ├── dialog_time_picker.xml │ │ ├── dialog_update.xml │ │ ├── dialog_video_controls_settings.xml │ │ ├── dialog_video_resume.xml │ │ ├── dialog_whats_new.xml │ │ ├── dialog_widget_explanation.xml │ │ ├── dialog_widget_migration.xml │ │ ├── directory_browser.xml │ │ ├── donation_sku.xml │ │ ├── dropdown_item.xml │ │ ├── equalizer.xml │ │ ├── equalizer_bar.xml │ │ ├── fastscroller.xml │ │ ├── file_picker_activity.xml │ │ ├── header_media_list_activity.xml │ │ ├── history_item.xml │ │ ├── history_item_card.xml │ │ ├── history_list.xml │ │ ├── info_activity.xml │ │ ├── info_item.xml │ │ ├── item_renderer.xml │ │ ├── language_spinner.xml │ │ ├── library_item.xml │ │ ├── license_activity.xml │ │ ├── main.xml │ │ ├── main_browser_fragment.xml │ │ ├── ml_wizard_activity.xml │ │ ├── more_fragment.xml │ │ ├── mrl_card_item.xml │ │ ├── mrl_dummy_item.xml │ │ ├── mrl_item.xml │ │ ├── mrl_panel.xml │ │ ├── native_crash.xml │ │ ├── nav_drawer_header.xml │ │ ├── navigation_rail_fab.xml │ │ ├── network_server_dialog.xml │ │ ├── onboarding_no_permission.xml │ │ ├── onboarding_notification_permission.xml │ │ ├── onboarding_permission.xml │ │ ├── onboarding_scanning.xml │ │ ├── onboarding_theme.xml │ │ ├── onboarding_welcome.xml │ │ ├── otp_code.xml │ │ ├── otp_code_activity.xml │ │ ├── pin_code_activity.xml │ │ ├── player.xml │ │ ├── player_hud.xml │ │ ├── player_hud_right.xml │ │ ├── player_option_item.xml │ │ ├── player_options.xml │ │ ├── player_orientation.xml │ │ ├── player_overlay_brightness.xml │ │ ├── player_overlay_info.xml │ │ ├── player_overlay_seek.xml │ │ ├── player_overlay_settings.xml │ │ ├── player_overlay_track_item.xml │ │ ├── player_overlay_track_option_item.xml │ │ ├── player_overlay_tracks.xml │ │ ├── player_overlay_volume.xml │ │ ├── player_remote_control.xml │ │ ├── player_resize.xml │ │ ├── player_screenshot.xml │ │ ├── player_tips.xml │ │ ├── playlist_item.xml │ │ ├── playlists_fragment.xml │ │ ├── pref_number_picker.xml │ │ ├── preference_item.xml │ │ ├── preferences_activity.xml │ │ ├── preferences_search_activity.xml │ │ ├── recycler_section_header.xml │ │ ├── recycler_section_header_tv.xml │ │ ├── scan_progress.xml │ │ ├── search_activity.xml │ │ ├── search_item.xml │ │ ├── secondary.xml │ │ ├── simple_item.xml │ │ ├── sort_display_setting.xml │ │ ├── subtitle_download_item.xml │ │ ├── subtitle_downloader_dialog.xml │ │ ├── swipe_to_unlock.xml │ │ ├── tab_layout.xml │ │ ├── title_list_view.xml │ │ ├── toolbar.xml │ │ ├── transparent.xml │ │ ├── video_browser.xml │ │ ├── video_grid.xml │ │ ├── video_grid_card.xml │ │ ├── video_list_card.xml │ │ ├── video_popup.xml │ │ ├── video_scale_item.xml │ │ ├── video_track_item.xml │ │ ├── view_empty_loading.xml │ │ ├── view_mini_visualizer.xml │ │ ├── vlc_login_dialog.xml │ │ ├── vlc_progress_dialog.xml │ │ ├── vlc_question_dialog.xml │ │ ├── widget_content_full_player.xml │ │ ├── widget_macro.xml │ │ ├── widget_micro.xml │ │ ├── widget_mini.xml │ │ ├── widget_mini_initial.xml │ │ ├── widget_mini_player_configure.xml │ │ ├── widget_old.xml │ │ └── widget_pill.xml │ ├── menu │ │ ├── action_mode_audio_browser.xml │ │ ├── action_mode_browser_file.xml │ │ ├── action_mode_folder.xml │ │ ├── action_mode_history.xml │ │ ├── action_mode_video.xml │ │ ├── action_mode_video_group.xml │ │ ├── activity_option.xml │ │ ├── activity_prefs.xml │ │ ├── audiosub_tracks.xml │ │ ├── bookmark_options.xml │ │ ├── bottom_navigation.xml │ │ ├── directory_custom_dir.xml │ │ ├── extension_context_menu.xml │ │ ├── fragment_option_history.xml │ │ ├── fragment_option_network.xml │ │ ├── playlist_option.xml │ │ ├── sort_options.xml │ │ ├── video_group.xml │ │ └── widget_configure_option.xml │ ├── mipmap-anydpi-v26 │ │ └── ic_launcher.xml │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ ├── raw │ │ ├── authorized_keys.json │ │ ├── authors.json │ │ ├── libraries.json │ │ ├── vlc_license.txt │ │ └── vlc_locales.json │ ├── values-land │ │ └── integers.xml │ ├── values-night │ │ └── styles.xml │ ├── values-v19 │ │ └── styles.xml │ ├── values-v21 │ │ └── styles.xml │ ├── values-v23 │ │ └── styles.xml │ ├── values-v27 │ │ └── styles.xml │ ├── values-v29 │ │ └── styles.xml │ ├── values │ │ └── styles.xml │ └── xml │ │ ├── air_actions.xml │ │ ├── automotive_app_desc.xml │ │ ├── backup_rules.xml │ │ ├── preferences.xml │ │ ├── preferences_adv.xml │ │ ├── preferences_android_auto.xml │ │ ├── preferences_audio.xml │ │ ├── preferences_audio_controls.xml │ │ ├── preferences_casting.xml │ │ ├── preferences_dev.xml │ │ ├── preferences_extension_page.xml │ │ ├── preferences_optional.xml │ │ ├── preferences_parental_control.xml │ │ ├── preferences_remote_access.xml │ │ ├── preferences_subtitles.xml │ │ ├── preferences_ui.xml │ │ ├── preferences_video.xml │ │ ├── preferences_video_controls.xml │ │ ├── preferences_widgets.xml │ │ ├── previewinputservice.xml │ │ ├── provider_paths.xml │ │ ├── searchable.xml │ │ ├── shortcuts.xml │ │ ├── widget_provider_b.xml │ │ ├── widget_provider_mini.xml │ │ └── widget_provider_w.xml │ ├── src │ ├── debug │ │ └── AndroidManifest.xml │ ├── dev │ │ └── AndroidManifest.xml │ └── org │ │ └── videolan │ │ └── vlc │ │ ├── ArtworkProvider.kt │ │ ├── DebugLogService.kt │ │ ├── ExternalMonitor.kt │ │ ├── FileProvider.kt │ │ ├── IDebugLogService.aidl │ │ ├── IDebugLogServiceCallback.aidl │ │ ├── MediaBrowserCallback.kt │ │ ├── MediaBrowserInstance.kt │ │ ├── MediaParsingService.kt │ │ ├── MediaSessionCallback.kt │ │ ├── PlaybackService.kt │ │ ├── PreviewVideoInputService.kt │ │ ├── RecommendationsService.kt │ │ ├── RendererDelegate.kt │ │ ├── StartActivity.kt │ │ ├── StoragesMonitor.kt │ │ ├── TvReceiver.kt │ │ ├── car │ │ ├── CarScreens.kt │ │ └── VLCCarService.kt │ │ ├── gui │ │ ├── AboutFragment.kt │ │ ├── AudioPlayerContainerActivity.kt │ │ ├── AuthorsActivity.kt │ │ ├── BaseActivity.kt │ │ ├── BaseFragment.kt │ │ ├── BetaWelcomeActivity.kt │ │ ├── ContentActivity.kt │ │ ├── DebugLogActivity.kt │ │ ├── DialogActivity.kt │ │ ├── DiffUtilAdapter.kt │ │ ├── FeedbackActivity.kt │ │ ├── HeaderMediaListActivity.kt │ │ ├── HistoryAdapter.kt │ │ ├── HistoryFragment.kt │ │ ├── InfoActivity.kt │ │ ├── LibrariesActivity.kt │ │ ├── MainActivity.kt │ │ ├── MoreFragment.kt │ │ ├── OTPCodeActivity.kt │ │ ├── OTPCodeFragment.kt │ │ ├── PinCodeActivity.kt │ │ ├── PlaylistFragment.kt │ │ ├── SearchActivity.kt │ │ ├── SearchResultAdapter.kt │ │ ├── SecondaryActivity.kt │ │ ├── SimpleAdapter.kt │ │ ├── audio │ │ │ ├── AudioAlbumTracksAdapter.kt │ │ │ ├── AudioAlbumsSongsFragment.kt │ │ │ ├── AudioBrowserAdapter.kt │ │ │ ├── AudioBrowserFragment.kt │ │ │ ├── AudioPagerAdapter.kt │ │ │ ├── AudioPlayer.kt │ │ │ ├── AudioPlayerAnimator.kt │ │ │ ├── AudioPlaylistTipsDelegate.kt │ │ │ ├── AudioTipsDelegate.kt │ │ │ ├── BaseAudioBrowser.kt │ │ │ ├── EqualizerFragment.kt │ │ │ └── PlaylistAdapter.kt │ │ ├── browser │ │ │ ├── BaseBrowserAdapter.kt │ │ │ ├── BaseBrowserFragment.kt │ │ │ ├── BrowserContainer.kt │ │ │ ├── BrowserItemBindingContainer.kt │ │ │ ├── FileBrowserFragment.kt │ │ │ ├── FilePickerActivity.kt │ │ │ ├── FilePickerAdapter.kt │ │ │ ├── FilePickerFragment.kt │ │ │ ├── MLStorageBrowserFragment.kt │ │ │ ├── MainBrowserFragment.kt │ │ │ ├── MediaBrowserFragment.kt │ │ │ ├── NetworkBrowserFragment.kt │ │ │ ├── PathAdapter.kt │ │ │ ├── StorageBrowserAdapter.kt │ │ │ ├── StorageBrowserFragment.kt │ │ │ └── StorageFragmentDelegate.kt │ │ ├── dialogs │ │ │ ├── AboutVersionDialog.kt │ │ │ ├── AddToGroupDialog.kt │ │ │ ├── AudioControlsSettingsDialog.kt │ │ │ ├── ConfirmDeleteDialog.kt │ │ │ ├── ConfirmPreferenceChangeDialog.kt │ │ │ ├── ContextSheet.kt │ │ │ ├── DeviceDialog.kt │ │ │ ├── DisplaySettingsDialog.kt │ │ │ ├── DuplicationWarningDialog.kt │ │ │ ├── FeatureFlagWarningDialog.kt │ │ │ ├── FeatureTouchOnlyWarningDialog.kt │ │ │ ├── JumpToTimeDialog.kt │ │ │ ├── LicenseDialog.kt │ │ │ ├── NetworkServerDialog.kt │ │ │ ├── NotificationPermissionDialog.kt │ │ │ ├── PermissionListDialog.kt │ │ │ ├── PickTimeFragment.kt │ │ │ ├── PlaybackBottomSheetDialogFragment.kt │ │ │ ├── PlaybackSpeedDialog.kt │ │ │ ├── RenameDialog.kt │ │ │ ├── RenderersDialog.kt │ │ │ ├── SavePlaylistDialog.kt │ │ │ ├── SelectChapterDialog.kt │ │ │ ├── SleepTimerDialog.kt │ │ │ ├── SubtitleDownloaderDialogFragment.kt │ │ │ ├── SubtitleItem.kt │ │ │ ├── SubtitlesAdapter.kt │ │ │ ├── UpdateDialog.kt │ │ │ ├── VLCBottomSheetDialogFragment.kt │ │ │ ├── VideoControlsSettingsDialog.kt │ │ │ ├── VideoTracksDialog.kt │ │ │ ├── VlcDialog.kt │ │ │ ├── VlcLoginDialog.kt │ │ │ ├── VlcProgressDialog.kt │ │ │ ├── VlcQuestionDialog.kt │ │ │ ├── WhatsNewDialog.kt │ │ │ ├── WidgetExplanationDialog.kt │ │ │ ├── WidgetMigrationDialog.kt │ │ │ └── adapters │ │ │ │ ├── TrackAdapter.kt │ │ │ │ └── VlcTrack.kt │ │ ├── helpers │ │ │ ├── AudioUtil.kt │ │ │ ├── BitmapUtil.kt │ │ │ ├── BookmarkAdapter.kt │ │ │ ├── BookmarkListDelegate.kt │ │ │ ├── BottomNavigationBehavior.kt │ │ │ ├── DefaultPlaybackAction.kt │ │ │ ├── EventsSource.kt │ │ │ ├── ExpandStateAppBarLayoutBehavior.kt │ │ │ ├── FeedbackUtil.kt │ │ │ ├── FloatingActionButtonBehavior.kt │ │ │ ├── ImageLoader.kt │ │ │ ├── ItemOffsetDecoration.kt │ │ │ ├── MediaComparators.kt │ │ │ ├── MedialibraryUtils.kt │ │ │ ├── Navigator.kt │ │ │ ├── NotificationHelper.kt │ │ │ ├── OnRepeatListener.kt │ │ │ ├── OnRepeatListenerKey.kt │ │ │ ├── OnRepeatListenerTouch.kt │ │ │ ├── PlayerBehavior.kt │ │ │ ├── PlayerKeyListenerDelegate.kt │ │ │ ├── PlayerOptionsDelegate.kt │ │ │ ├── PreferenceUtils.kt │ │ │ ├── SelectorViewHolder.kt │ │ │ ├── SparseBooleanArrayParcelable.kt │ │ │ ├── SwipeDragItemTouchHelperCallback.kt │ │ │ ├── TalkbackUtil.kt │ │ │ ├── ThreeStatesCheckbox.kt │ │ │ ├── TipsUtils.kt │ │ │ ├── UiTools.kt │ │ │ ├── VectorDrawableUtil.kt │ │ │ └── hf │ │ │ │ ├── BaseHeadlessFragment.kt │ │ │ │ ├── NotificationDelegate.kt │ │ │ │ ├── OtgAccess.kt │ │ │ │ ├── PinCodeDelegate.kt │ │ │ │ ├── StoragePermissionsDelegate.kt │ │ │ │ └── WriteExternalDelegate.kt │ │ ├── network │ │ │ ├── MRLAdapter.kt │ │ │ ├── MRLPanelFragment.kt │ │ │ └── StreamsFragmentDelegate.kt │ │ ├── onboarding │ │ │ ├── OnboardingActivity.kt │ │ │ ├── OnboardingFragment.kt │ │ │ ├── OnboardingNoPermissionFragment.kt │ │ │ ├── OnboardingNotificationPermissionFragment.kt │ │ │ ├── OnboardingPermissionFragment.kt │ │ │ ├── OnboardingScanningFragment.kt │ │ │ ├── OnboardingThemeFragment.kt │ │ │ ├── OnboardingViewModel.kt │ │ │ └── OnboardingWelcomeFragment.kt │ │ ├── preferences │ │ │ ├── BasePreferenceFragment.kt │ │ │ ├── PreferenceVisibilityManager.kt │ │ │ ├── PreferencesActivity.kt │ │ │ ├── PreferencesAdvanced.kt │ │ │ ├── PreferencesAndroidAuto.kt │ │ │ ├── PreferencesAudio.kt │ │ │ ├── PreferencesAudioControls.kt │ │ │ ├── PreferencesCasting.kt │ │ │ ├── PreferencesFragment.kt │ │ │ ├── PreferencesOptional.kt │ │ │ ├── PreferencesParentalControl.kt │ │ │ ├── PreferencesRemoteAccess.kt │ │ │ ├── PreferencesSubtitles.kt │ │ │ ├── PreferencesUi.kt │ │ │ ├── PreferencesVideo.kt │ │ │ ├── PreferencesVideoControls.kt │ │ │ ├── hack │ │ │ │ └── MultiSelectListPreferenceDialogFragmentCompat.kt │ │ │ ├── search │ │ │ │ ├── PreferenceItemAdapter.kt │ │ │ │ ├── PreferenceParser.kt │ │ │ │ └── PreferenceSearchActivity.kt │ │ │ └── widgets │ │ │ │ └── PreferencesWidgets.kt │ │ ├── video │ │ │ ├── MediaInfoAdapter.kt │ │ │ ├── PopupManager.kt │ │ │ ├── VideoBrowserFragment.kt │ │ │ ├── VideoDelayDelegate.kt │ │ │ ├── VideoGridFragment.kt │ │ │ ├── VideoListAdapter.kt │ │ │ ├── VideoPlayerActivity.kt │ │ │ ├── VideoPlayerOrientationDelegate.kt │ │ │ ├── VideoPlayerOverlayDelegate.kt │ │ │ ├── VideoPlayerResizeDelegate.kt │ │ │ ├── VideoPlayerScreenshotDelegate.kt │ │ │ ├── VideoStatsDelegate.kt │ │ │ ├── VideoTipsDelegate.kt │ │ │ ├── VideoTouchDelegate.kt │ │ │ └── benchmark │ │ │ │ ├── BenchActivity.kt │ │ │ │ ├── ShallowVideoPlayer.kt │ │ │ │ └── StartActivityOnCrash.kt │ │ └── view │ │ │ ├── AccessibleSeekBar.kt │ │ │ ├── AudioMediaSwitcher.kt │ │ │ ├── AutoFitRecyclerView.kt │ │ │ ├── AutofitButton.kt │ │ │ ├── ClickableSwitchPreference.kt │ │ │ ├── CollapsibleLinearLayout.kt │ │ │ ├── CoverMediaSwitcher.kt │ │ │ ├── EmptyLoadingStateView.kt │ │ │ ├── EqualizerBar.kt │ │ │ ├── FadableImageView.kt │ │ │ ├── FastScroller.kt │ │ │ ├── FlingViewGroup.kt │ │ │ ├── FocusableTextView.kt │ │ │ ├── HackyDrawerLayout.kt │ │ │ ├── HalfCircleView.kt │ │ │ ├── HeaderMediaSwitcher.kt │ │ │ ├── LanguageSelector.kt │ │ │ ├── MiniVisualizer.kt │ │ │ ├── NumberPickerPreference.kt │ │ │ ├── NumberPickerPreferenceDialog.kt │ │ │ ├── PlayerProgress.kt │ │ │ ├── PopupLayout.kt │ │ │ ├── RecyclerSectionItemDecoration.kt │ │ │ ├── RecyclerSectionItemGridDecoration.kt │ │ │ ├── SwipeRefreshLayout.kt │ │ │ ├── SwipeToUnlockView.kt │ │ │ ├── TitleListView.kt │ │ │ ├── TopCropImageView.kt │ │ │ ├── VLCDividerItemDecoration.kt │ │ │ ├── VerticalSeekBar.kt │ │ │ ├── VerticalSeekBarContainer.kt │ │ │ └── WidgetHandleView.kt │ │ ├── interfaces │ │ ├── BrowserFragmentInterface.kt │ │ ├── Filterable.kt │ │ ├── IEventsHandler.kt │ │ ├── IHistory.kt │ │ ├── IListEventsHandler.kt │ │ ├── IPlaybackSettingsController.kt │ │ ├── IRefreshable.kt │ │ ├── ITVEventsHandler.kt │ │ ├── OnEqualizerBarChangeListener.kt │ │ ├── OnExpandableListener.kt │ │ ├── Sortable.kt │ │ └── SwipeDragHelperAdapter.kt │ │ ├── media │ │ ├── MediaSessionBrowser.kt │ │ ├── MediaUtils.kt │ │ ├── MediaWrapperList.kt │ │ ├── PlayerController.kt │ │ └── PlaylistManager.kt │ │ ├── providers │ │ ├── BrowserProvider.kt │ │ ├── FileBrowserProvider.kt │ │ ├── FilePickerProvider.kt │ │ ├── NetworkProvider.kt │ │ ├── StorageProvider.kt │ │ └── medialibrary │ │ │ ├── AlbumsProvider.kt │ │ │ ├── ArtistsProvider.kt │ │ │ ├── FoldersProvider.kt │ │ │ ├── GenresProvider.kt │ │ │ ├── MedialibraryProvider.kt │ │ │ ├── PlaylistsProvider.kt │ │ │ ├── TracksProvider.kt │ │ │ ├── VideoGroupsProvider.kt │ │ │ └── VideosProvider.kt │ │ ├── repository │ │ ├── BrowserFavRepository.kt │ │ ├── DirectoryRepository.kt │ │ ├── ExternalSubRepository.kt │ │ ├── SlaveRepository.kt │ │ └── WidgetRepository.kt │ │ ├── util │ │ ├── AccessControl.kt │ │ ├── AccessibilityHelper.kt │ │ ├── AutoUpdate.kt │ │ ├── BaseContextWrappingDelegate.kt │ │ ├── Browserutils.kt │ │ ├── ContextOption.kt │ │ ├── DialogDelegates.kt │ │ ├── DummyMediaWrapperProvider.kt │ │ ├── FeatureFlagManager.kt │ │ ├── FileUtils.kt │ │ ├── FilterDelegate.kt │ │ ├── FlagSet.kt │ │ ├── FrameRateManager.kt │ │ ├── Kextensions.kt │ │ ├── LifecycleAwareScheduler.kt │ │ ├── LocaleUtil.kt │ │ ├── MediaItemDiffCallback.kt │ │ ├── ModelsHelper.kt │ │ ├── NetworkConnectionManager.kt │ │ ├── Permissions.kt │ │ ├── PlaybackAction.kt │ │ ├── RemoteAccessUtils.kt │ │ ├── RendererLiveData.kt │ │ ├── TextUtils.kt │ │ ├── ThumbnailsProvider.kt │ │ ├── TvChannels.kt │ │ ├── UrlUtils.kt │ │ ├── Util.kt │ │ ├── VLCAudioFocusHelper.kt │ │ ├── VLCDownloadManager.kt │ │ ├── VersionMigration.kt │ │ ├── VoiceSearchParams.kt │ │ ├── WhatsNewManager.kt │ │ └── WidgetMigration.kt │ │ ├── viewmodels │ │ ├── BaseModel.kt │ │ ├── BookmarkModel.kt │ │ ├── CallBackDelegate.kt │ │ ├── DisplaySettingsViewModel.kt │ │ ├── HistoryModel.kt │ │ ├── MedialibraryModel.kt │ │ ├── MedialibraryViewModel.kt │ │ ├── PlaylistModel.kt │ │ ├── PreferenceSearchModel.kt │ │ ├── SortableModel.kt │ │ ├── StreamsModel.kt │ │ ├── SubtitlesModel.kt │ │ ├── browser │ │ │ ├── BrowserFavoritesModel.kt │ │ │ ├── BrowserModel.kt │ │ │ ├── NetworkModel.kt │ │ │ └── PathOperationDelegate.kt │ │ ├── mobile │ │ │ ├── AlbumSongsViewModel.kt │ │ │ ├── AudioBrowserViewModel.kt │ │ │ ├── PlaylistViewModel.kt │ │ │ ├── PlaylistsViewModel.kt │ │ │ └── VideosViewModel.kt │ │ └── tv │ │ │ └── TvBrowserModel.kt │ │ └── widget │ │ ├── MiniPlayerAppWidgetProvider.kt │ │ ├── MiniPlayerConfigureActivity.kt │ │ ├── VLCAppWidgetProvider.kt │ │ ├── VLCAppWidgetProviderBlack.kt │ │ ├── VLCAppWidgetProviderWhite.kt │ │ ├── WidgetViewModel.kt │ │ └── utils │ │ ├── WidgetCache.kt │ │ ├── WidgetSizeUtil.kt │ │ └── WidgetUtils.kt │ ├── test │ └── org │ │ └── videolan │ │ └── vlc │ │ ├── BaseTest.kt │ │ ├── VLCTestApplication.kt │ │ ├── repository │ │ ├── BrowserFavRepositoryTest.kt │ │ ├── DirectoryRepositoryTest.kt │ │ ├── ExternalSubRepositoryTest.kt │ │ └── SlaveRepositoryTest.kt │ │ ├── util │ │ ├── ModelsHelperTest.kt │ │ ├── StringsTest.kt │ │ └── UtilTests.kt │ │ └── viewmodels │ │ ├── HistoryModelTest.kt │ │ ├── StreamsModelTest.kt │ │ ├── SubtitlesModelTest.kt │ │ ├── browser │ │ ├── FileBrowserModelTest.kt │ │ ├── FilePickerModelTest.kt │ │ ├── NetworkModelTest.kt │ │ └── StorageModelTest.kt │ │ └── mobile │ │ ├── AlbumSongsViewModelTest.kt │ │ ├── AudioBrowserViewModelTest.kt │ │ ├── PlaylistViewModelTest.kt │ │ ├── PlaylistsViewModelTest.kt │ │ └── VideosViewModelTest.kt │ ├── vlc3 │ └── src │ │ └── org │ │ └── videolan │ │ └── vlc │ │ ├── VersionDependant.kt │ │ └── VlcTrackImpl.kt │ └── vlc4 │ └── src │ └── org │ └── videolan │ └── vlc │ ├── VersionDependant.kt │ └── VlcTrackImpl.kt ├── build.gradle ├── buildsystem ├── automation │ ├── Gemfile │ ├── README.md │ ├── fastlane │ │ ├── Appfile │ │ ├── Fastfile │ │ ├── Pluginfile │ │ └── Screengrabfile │ ├── framing │ │ ├── locale │ │ │ ├── ar.po │ │ │ ├── bn_BD.po │ │ │ ├── br.po │ │ │ ├── ca.po │ │ │ ├── co.po │ │ │ ├── da.po │ │ │ ├── de.po │ │ │ ├── el.po │ │ │ ├── en.po │ │ │ ├── es.po │ │ │ ├── es_MX.po │ │ │ ├── et.po │ │ │ ├── eu.po │ │ │ ├── fa.po │ │ │ ├── fi.po │ │ │ ├── fr.po │ │ │ ├── he.po │ │ │ ├── hi.po │ │ │ ├── hu.po │ │ │ ├── id.po │ │ │ ├── it.po │ │ │ ├── ja.po │ │ │ ├── ka.po │ │ │ ├── ko.po │ │ │ ├── ms.po │ │ │ ├── pl.po │ │ │ ├── pt_BR.po │ │ │ ├── pt_PT.po │ │ │ ├── ro.po │ │ │ ├── ru.po │ │ │ ├── sc.po │ │ │ ├── sk.po │ │ │ ├── sl.po │ │ │ ├── sr.po │ │ │ ├── sv.po │ │ │ ├── tr.po │ │ │ ├── uk.po │ │ │ ├── zh_CN.po │ │ │ └── zh_TW.po │ │ └── templates │ │ │ ├── PIxel 2 XL eq mask.xcf │ │ │ ├── PIxel 2 XL eq.xcf │ │ │ ├── PIxel 2 XL landscape.xcf │ │ │ ├── PIxel 2 XL portait.xcf │ │ │ ├── Pixel 2XL pip.xcf │ │ │ ├── Seven inches eq.xcf │ │ │ ├── Seven inches landscape.xcf │ │ │ ├── Seven inches pip.xcf │ │ │ ├── Seven inches portait.xcf │ │ │ ├── Ten inches eq.xcf │ │ │ ├── Ten inches pip.xcf │ │ │ ├── Ten inches portait.xcf │ │ │ ├── all_devices.png │ │ │ ├── background_pixel_2_XL_eq.png │ │ │ ├── background_pixel_2_XL_eq_mask.png │ │ │ ├── background_pixel_2_XL_landscape.png │ │ │ ├── background_pixel_2_XL_pip.png │ │ │ ├── background_pixel_2_XL_portrait.png │ │ │ ├── background_seven_inches_eq.png │ │ │ ├── background_seven_inches_eq_mask.png │ │ │ ├── background_seven_inches_landscape.png │ │ │ ├── background_seven_inches_pip.png │ │ │ ├── background_seven_inches_portrait.png │ │ │ ├── background_ten_inches.png │ │ │ ├── background_ten_inches_eq.png │ │ │ ├── background_ten_inches_eq_mask.png │ │ │ ├── background_ten_inches_landscape.png │ │ │ ├── background_ten_inches_pip.png │ │ │ ├── background_ten_inches_portrait.png │ │ │ ├── swipe.png │ │ │ ├── swipe.svg │ │ │ ├── swipe_down.png │ │ │ ├── swipe_down.svg │ │ │ ├── swipe_up.png │ │ │ ├── swipe_up.svg │ │ │ └── various.svg │ └── generate_images.sh ├── compile-medialibrary.sh ├── compile-remoteaccess.sh ├── compile.sh ├── gitlab │ └── .gitlab-ci.yml ├── gradle_version │ └── build.gradle ├── maven │ ├── README.md │ ├── deploy-to-mavencentral.sh │ └── images │ │ └── nexus.png ├── patches │ └── libvlcpp │ │ └── 0001-MediaPlayer-always-use-set_time-set_position-fast-ar.patch └── publish.gradle ├── gradle.properties ├── medialibrary ├── AndroidManifest.xml ├── COPYING.LIB ├── build.gradle ├── gradle.properties ├── jni │ ├── Android.mk │ ├── AndroidDeviceLister.cpp │ ├── AndroidDeviceLister.h │ ├── AndroidMediaLibrary.cpp │ ├── AndroidMediaLibrary.h │ ├── log.h │ ├── medialibrary.cpp │ ├── utils.cpp │ └── utils.h ├── res │ ├── values-ar │ │ └── strings.xml │ ├── values-ast │ │ └── strings.xml │ ├── values-be │ │ └── strings.xml │ ├── values-bn-rBD │ │ └── strings.xml │ ├── values-bs │ │ └── strings.xml │ ├── values-ca │ │ └── strings.xml │ ├── values-co │ │ └── strings.xml │ ├── values-cs │ │ └── strings.xml │ ├── values-cy │ │ └── strings.xml │ ├── values-da │ │ └── strings.xml │ ├── values-de │ │ └── strings.xml │ ├── values-el │ │ └── strings.xml │ ├── values-en-rGB │ │ └── strings.xml │ ├── values-es-rMX │ │ └── strings.xml │ ├── values-es │ │ └── strings.xml │ ├── values-et │ │ └── strings.xml │ ├── values-eu │ │ └── strings.xml │ ├── values-fa │ │ └── strings.xml │ ├── values-fi │ │ └── strings.xml │ ├── values-fo │ │ └── strings.xml │ ├── values-fr │ │ └── strings.xml │ ├── values-fy │ │ └── strings.xml │ ├── values-gd │ │ └── strings.xml │ ├── values-gl │ │ └── strings.xml │ ├── values-gu-rIN │ │ └── strings.xml │ ├── values-he │ │ └── strings.xml │ ├── values-hi │ │ └── strings.xml │ ├── values-hr │ │ └── strings.xml │ ├── values-hu │ │ └── strings.xml │ ├── values-id │ │ └── strings.xml │ ├── values-is │ │ └── strings.xml │ ├── values-it │ │ └── strings.xml │ ├── values-iw │ ├── values-ja │ │ └── strings.xml │ ├── values-kab │ │ └── strings.xml │ ├── values-km │ │ └── strings.xml │ ├── values-kn │ │ └── strings.xml │ ├── values-ko │ │ └── strings.xml │ ├── values-lt │ │ └── strings.xml │ ├── values-lv │ │ └── strings.xml │ ├── values-ml │ │ └── strings.xml │ ├── values-mr │ │ └── strings.xml │ ├── values-ms │ │ └── strings.xml │ ├── values-my │ │ └── strings.xml │ ├── values-nb │ │ └── strings.xml │ ├── values-ne-rNP │ │ └── strings.xml │ ├── values-nl │ │ └── strings.xml │ ├── values-or │ │ └── strings.xml │ ├── values-pa │ │ └── strings.xml │ ├── values-pl │ │ └── strings.xml │ ├── values-pt-rBR │ │ └── strings.xml │ ├── values-pt │ │ └── strings.xml │ ├── values-ro │ │ └── strings.xml │ ├── values-ru │ │ └── strings.xml │ ├── values-si │ │ └── strings.xml │ ├── values-sk │ │ └── strings.xml │ ├── values-sl │ │ └── strings.xml │ ├── values-sq │ │ └── strings.xml │ ├── values-sr │ │ └── strings.xml │ ├── values-sv │ │ └── strings.xml │ ├── values-ta │ │ └── strings.xml │ ├── values-te │ │ └── strings.xml │ ├── values-th │ │ └── strings.xml │ ├── values-tr │ │ └── strings.xml │ ├── values-tt │ │ └── strings.xml │ ├── values-ug │ │ └── strings.xml │ ├── values-uk │ │ └── strings.xml │ ├── values-ur │ │ └── strings.xml │ ├── values-uz │ │ └── strings.xml │ └── values │ │ └── strings.xml ├── src │ └── org │ │ └── videolan │ │ └── medialibrary │ │ ├── EventTools.java │ │ ├── MLContextTools.java │ │ ├── MLServiceLocator.java │ │ ├── MedialibraryImpl.java │ │ ├── SingleEvent.java │ │ ├── Tools.java │ │ ├── interfaces │ │ ├── DevicesDiscoveryCb.java │ │ ├── Medialibrary.java │ │ ├── RootsEventsCb.java │ │ └── media │ │ │ ├── Album.java │ │ │ ├── Artist.java │ │ │ ├── Bookmark.java │ │ │ ├── Folder.java │ │ │ ├── Genre.java │ │ │ ├── MediaWrapper.java │ │ │ ├── MlService.java │ │ │ ├── Playlist.java │ │ │ ├── Subscription.java │ │ │ └── VideoGroup.java │ │ ├── media │ │ ├── AlbumImpl.java │ │ ├── ArtistImpl.java │ │ ├── BookmarkImpl.java │ │ ├── DummyItem.java │ │ ├── FolderImpl.java │ │ ├── GenreImpl.java │ │ ├── HistoryItem.java │ │ ├── MediaLibraryItem.java │ │ ├── MediaWrapperImpl.java │ │ ├── MlServiceImpl.java │ │ ├── PlaylistImpl.java │ │ ├── SearchAggregate.java │ │ ├── Storage.java │ │ ├── SubscriptionImpl.java │ │ └── VideoGroupImpl.java │ │ └── stubs │ │ ├── StubAlbum.java │ │ ├── StubArtist.java │ │ ├── StubBookmark.java │ │ ├── StubDataSource.java │ │ ├── StubFolder.java │ │ ├── StubGenre.java │ │ ├── StubMediaWrapper.java │ │ ├── StubMedialibrary.java │ │ ├── StubMlService.java │ │ ├── StubPlaylist.java │ │ ├── StubSubscription.java │ │ └── StubVideoGroup.java ├── test │ └── org │ │ └── videolan │ │ └── medialibrary │ │ └── ToolsTest.java ├── vlc3 │ └── src │ │ └── org │ │ └── videolan │ │ └── vlc │ │ └── VlcMigrationHelper.java └── vlc4 │ └── src │ └── org │ └── videolan │ └── vlc │ └── VlcMigrationHelper.java └── settings.gradle /.lgtm.yml: -------------------------------------------------------------------------------- 1 | extraction: 2 | java: 3 | before_index: 4 | - export ANDROID_SDK=/opt/extra/android 5 | - export ANDROID_NDK=/opt/extra/android 6 | - export PATH=$PATH:$ANDROID_SDK/platform-tools:$ANDROID_SDK/tools 7 | - ./compile.sh --init 8 | index: 9 | build_command: 10 | - ./gradlew assembleDebug 11 | 12 | -------------------------------------------------------------------------------- /application/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /application/app/src/androidTest/java/org/videolan/vlc/MultidexTestRunner.kt: -------------------------------------------------------------------------------- 1 | package org.videolan.vlc 2 | 3 | import android.os.Bundle 4 | import androidx.multidex.MultiDex 5 | import androidx.test.runner.AndroidJUnitRunner 6 | 7 | class MultidexTestRunner: AndroidJUnitRunner() { 8 | override fun onCreate(arguments: Bundle?) { 9 | MultiDex.install(targetContext) 10 | super.onCreate(arguments) 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /application/donations/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /application/live-plot-graph/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /application/live-plot-graph/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/live-plot-graph/consumer-rules.pro -------------------------------------------------------------------------------- /application/mediadb/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /application/mediadb/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/mediadb/consumer-rules.pro -------------------------------------------------------------------------------- /application/mediadb/src/main/java/org/videolan/vlc/mediadb/models/CustomDirectory.kt: -------------------------------------------------------------------------------- 1 | package org.videolan.vlc.mediadb.models 2 | 3 | import androidx.room.Entity 4 | import androidx.room.PrimaryKey 5 | 6 | @Entity() 7 | data class CustomDirectory( 8 | @PrimaryKey 9 | val path: String 10 | ) 11 | 12 | -------------------------------------------------------------------------------- /application/moviepedia/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /application/moviepedia/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/moviepedia/consumer-rules.pro -------------------------------------------------------------------------------- /application/moviepedia/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"> 2 | <application> 3 | <activity 4 | android:name="org.videolan.moviepedia.ui.MediaScrapingActivity" 5 | android:theme="@style/Theme.VLC" /> 6 | </application> 7 | </manifest> 8 | -------------------------------------------------------------------------------- /application/remote-access-client/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /application/remote-access-client/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/remote-access-client/consumer-rules.pro -------------------------------------------------------------------------------- /application/remote-access-client/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/remote-access-client/gradle.properties -------------------------------------------------------------------------------- /application/remote-access-server/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /application/remote-access-server/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/remote-access-server/consumer-rules.pro -------------------------------------------------------------------------------- /application/resources/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /application/resources/assets/images/svg/play_console_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/assets/images/svg/play_console_icon.png -------------------------------------------------------------------------------- /application/resources/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <manifest> 3 | </manifest> -------------------------------------------------------------------------------- /application/resources/src/main/java/org/videolan/resources/interfaces/FocusListener.kt: -------------------------------------------------------------------------------- 1 | package org.videolan.resources.interfaces 2 | 3 | 4 | interface FocusListener { 5 | fun onFocusChanged(position: Int) 6 | } -------------------------------------------------------------------------------- /application/resources/src/main/java/org/videolan/resources/interfaces/IndexingListener.kt: -------------------------------------------------------------------------------- 1 | package org.videolan.resources.interfaces 2 | 3 | 4 | interface IndexingListener { 5 | fun onIndexingDone() 6 | } -------------------------------------------------------------------------------- /application/resources/src/main/res/color/donate_text_color.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:color="@color/white" android:state_selected="true"/> 4 | <item android:color="?attr/colorPrimary"/> 5 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/color/list_subtitle.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:state_enabled="false" android:color="@color/grey400" /> 4 | <item android:color="@color/grey600" /> 5 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/color/list_title_last.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:state_selected="true" android:color="@color/orange700" /> 4 | <item android:state_pressed="true" android:color="@color/orange700" /> 5 | <item android:color="@color/orange500" /> 6 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/color/navigationview_color.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:color="@color/grey900" android:state_checked="true"/> 4 | <item android:color="@color/grey600" /> 5 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/color/navigationview_color_dark.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="UTF-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:color="@color/grey50" android:state_checked="true"/> 4 | <item android:color="@color/grey400" /> 5 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/banner.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_channel_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_channel_icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_gesture_finger_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_gesture_finger_1.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_gesture_finger_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_gesture_finger_2.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_gesture_finger_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_gesture_finger_3.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_gesture_swipe_horizontally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_gesture_swipe_horizontally.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_gesture_swipe_vertically.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_gesture_swipe_vertically.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_audio.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_bookmark_add_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_bookmark_add_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_forward_10_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_forward_10_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_forward_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_forward_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_forward_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_forward_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_forward_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_next_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_next_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_next_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_next_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_previous_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_previous_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_previous_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_previous_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_remote_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_remote_access.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_rewind_10_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_rewind_10_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_rewind_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_rewind_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_rewind_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_rewind_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_rewind_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_rewind_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_scan.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_speed_0_50_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_speed_0_50_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_speed_0_80_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_speed_0_80_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_speed_1_00_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_speed_1_00_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_speed_1_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_speed_1_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_speed_1_20_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_speed_1_20_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_speed_1_50_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_speed_1_50_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_speed_2_00_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_speed_2_00_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_notif_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_notif_video.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_pause_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_pause_notif.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_play_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_play_notif.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_player_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_player_brightness.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_player_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_player_volume.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_popup_close_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_popup_close_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_popup_fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_popup_fullscreen.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_popup_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_popup_pause.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_popup_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_popup_play.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_stat_vlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_stat_vlc.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_widget_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_widget_close_normal.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_widget_close_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_widget_close_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_widget_close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_widget_close_pressed.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_widget_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_widget_icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_widget_pause_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_widget_pause_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_widget_pause_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_widget_pause_pressed.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_widget_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_widget_play.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_widget_play_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_widget_play_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/ic_widget_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/ic_widget_play_pressed.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/img_tips_audioplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/img_tips_audioplayer.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/img_tips_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/img_tips_playlist.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-hdpi/img_tips_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-hdpi/img_tips_sdcard.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-ldpi/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-ldpi/banner.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-ldpi/ic_channel_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-ldpi/ic_channel_icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-ldpi/ic_gesture_finger_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-ldpi/ic_gesture_finger_1.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-ldpi/ic_gesture_finger_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-ldpi/ic_gesture_finger_2.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-ldpi/ic_gesture_finger_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-ldpi/ic_gesture_finger_3.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-ldpi/ic_gesture_swipe_horizontally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-ldpi/ic_gesture_swipe_horizontally.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-ldpi/ic_gesture_swipe_vertically.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-ldpi/ic_gesture_swipe_vertically.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-ldpi/ic_widget_close_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-ldpi/ic_widget_close_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-ldpi/ic_widget_close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-ldpi/ic_widget_close_pressed.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-ldpi/img_tips_audioplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-ldpi/img_tips_audioplayer.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-ldpi/img_tips_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-ldpi/img_tips_playlist.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-ldpi/img_tips_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-ldpi/img_tips_sdcard.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-ldrtl/rectangle_circle_right_orange.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/orange500focus"/> 5 | <corners 6 | android:topLeftRadius="36dp" 7 | android:bottomLeftRadius="36dp"/> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/banner.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_channel_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_channel_icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_gesture_finger_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_gesture_finger_1.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_gesture_finger_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_gesture_finger_2.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_gesture_finger_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_gesture_finger_3.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_gesture_swipe_horizontally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_gesture_swipe_horizontally.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_gesture_swipe_vertically.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_gesture_swipe_vertically.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_audio.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_bookmark_add_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_bookmark_add_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_forward_10_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_forward_10_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_forward_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_forward_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_forward_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_forward_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_forward_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_next_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_next_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_next_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_next_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_previous_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_previous_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_previous_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_previous_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_remote_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_remote_access.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_rewind_10_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_rewind_10_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_rewind_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_rewind_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_rewind_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_rewind_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_rewind_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_rewind_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_scan.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_speed_0_50_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_speed_0_50_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_speed_0_80_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_speed_0_80_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_speed_1_00_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_speed_1_00_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_speed_1_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_speed_1_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_speed_1_20_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_speed_1_20_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_speed_1_50_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_speed_1_50_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_speed_2_00_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_speed_2_00_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_notif_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_notif_video.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_pause_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_pause_notif.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_play_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_play_notif.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_player_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_player_brightness.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_player_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_player_volume.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_popup_close_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_popup_close_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_popup_fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_popup_fullscreen.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_popup_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_popup_pause.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_popup_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_popup_play.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_stat_vlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_stat_vlc.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_widget_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_widget_close_normal.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_widget_close_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_widget_close_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_widget_close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_widget_close_pressed.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_widget_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_widget_icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_widget_pause_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_widget_pause_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_widget_pause_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_widget_pause_pressed.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_widget_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_widget_play.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_widget_play_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_widget_play_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/ic_widget_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/ic_widget_play_pressed.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/img_tips_audioplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/img_tips_audioplayer.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/img_tips_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/img_tips_playlist.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-mdpi/img_tips_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-mdpi/img_tips_sdcard.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-nodpi/nav_header_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-nodpi/nav_header_background.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-nodpi/qr_unsubscribe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-nodpi/qr_unsubscribe.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-nodpi/vlc_fake_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-nodpi/vlc_fake_cover.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-nodpi/vlc_widget_macro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-nodpi/vlc_widget_macro.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-nodpi/vlc_widget_micro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-nodpi/vlc_widget_micro.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-nodpi/vlc_widget_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-nodpi/vlc_widget_mini.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-nodpi/vlc_widget_pill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-nodpi/vlc_widget_pill.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-v21/background_item.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <ripple xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:color="@color/orange500"> 4 | <item android:state_selected="true" android:drawable="@color/orange400" /> 5 | <item android:state_selected="true" android:drawable="?android:windowBackground" /> 6 | </ripple> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-v21/donate_button_ripple.xml: -------------------------------------------------------------------------------- 1 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 2 | <item android:drawable="@drawable/ripple_white" /> 3 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-v21/ripple_white.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <ripple 3 | xmlns:android="http://schemas.android.com/apk/res/android" 4 | xmlns:tools="http://schemas.android.com/tools" 5 | android:color="@color/white" 6 | tools:ignore="NewApi" /> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/banner.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/drawer_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/drawer_shadow.9.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_channel_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_channel_icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_gesture_finger_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_gesture_finger_1.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_gesture_finger_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_gesture_finger_2.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_gesture_finger_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_gesture_finger_3.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_gesture_swipe_horizontally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_gesture_swipe_horizontally.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_gesture_swipe_vertically.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_gesture_swipe_vertically.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_audio.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_bookmark_add_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_bookmark_add_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_forward_10_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_forward_10_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_forward_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_forward_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_forward_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_forward_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_forward_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_next_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_next_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_next_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_next_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_previous_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_previous_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_previous_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_previous_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_remote_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_remote_access.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_rewind_10_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_rewind_10_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_rewind_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_rewind_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_rewind_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_rewind_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_rewind_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_rewind_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_scan.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_speed_0_50_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_speed_0_50_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_speed_0_80_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_speed_0_80_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_speed_1_00_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_speed_1_00_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_speed_1_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_speed_1_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_speed_1_20_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_speed_1_20_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_speed_1_50_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_speed_1_50_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_speed_2_00_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_speed_2_00_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_notif_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_notif_video.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_pause_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_pause_notif.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_play_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_play_notif.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_player_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_player_brightness.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_player_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_player_volume.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_popup_close_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_popup_close_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_popup_fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_popup_fullscreen.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_popup_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_popup_pause.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_popup_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_popup_play.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_stat_vlc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_stat_vlc.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_widget_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_widget_close_normal.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_widget_close_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_widget_close_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_widget_close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_widget_close_pressed.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_widget_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_widget_icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_widget_pause_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_widget_pause_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_widget_pause_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_widget_pause_pressed.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_widget_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_widget_play.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_widget_play_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_widget_play_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/ic_widget_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/ic_widget_play_pressed.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/img_tips_audioplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/img_tips_audioplayer.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/img_tips_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/img_tips_playlist.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xhdpi/img_tips_sdcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xhdpi/img_tips_sdcard.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_audio.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_bookmark_add_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_bookmark_add_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_forward_10_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_forward_10_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_forward_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_forward_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_forward_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_forward_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_forward_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_next_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_next_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_next_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_next_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_previous_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_previous_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_previous_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_previous_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_remote_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_remote_access.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_rewind_10_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_rewind_10_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_rewind_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_rewind_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_rewind_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_rewind_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_rewind_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_rewind_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_scan.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_speed_0_50_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_speed_0_50_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_speed_0_80_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_speed_0_80_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_speed_1_00_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_speed_1_00_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_speed_1_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_speed_1_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_speed_1_20_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_speed_1_20_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_speed_1_50_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_speed_1_50_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_speed_2_00_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_speed_2_00_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_notif_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_notif_video.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_pause_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_pause_notif.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_play_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_play_notif.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_player_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_player_brightness.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_player_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_player_volume.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_popup_close_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_popup_close_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_popup_fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_popup_fullscreen.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_popup_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_popup_pause.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_popup_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_popup_play.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_widget_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_widget_close_normal.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_widget_close_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_widget_close_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_widget_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_widget_icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_widget_pause_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_widget_pause_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_widget_pause_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_widget_pause_pressed.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_widget_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_widget_play.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_widget_play_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_widget_play_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/ic_widget_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/ic_widget_play_pressed.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_audio.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_bookmark_add_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_bookmark_add_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_forward_10_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_forward_10_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_forward_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_forward_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_forward_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_forward_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_forward_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_next_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_next_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_next_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_next_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_previous_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_previous_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_previous_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_previous_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_remote_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_remote_access.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_rewind_10_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_rewind_10_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_rewind_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_rewind_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_rewind_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_rewind_disabled.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_rewind_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_rewind_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_scan.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_speed_0_50_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_speed_0_50_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_speed_0_80_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_speed_0_80_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_speed_1_00_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_speed_1_00_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_speed_1_10_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_speed_1_10_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_speed_1_20_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_speed_1_20_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_speed_1_50_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_speed_1_50_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_speed_2_00_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_speed_2_00_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_notif_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_notif_video.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_pause_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_pause_notif.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_play_notif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_play_notif.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_player_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_player_brightness.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_player_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_player_volume.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_popup_close_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_popup_close_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_popup_fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_popup_fullscreen.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_popup_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_popup_pause.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_popup_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_popup_play.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_widget_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_widget_close_normal.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_widget_close_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_widget_close_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_widget_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_widget_icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_widget_pause_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_widget_pause_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_widget_pause_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_widget_pause_pressed.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_widget_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_widget_play.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_widget_play_normal_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_widget_play_normal_w.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/ic_widget_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/ic_widget_play_pressed.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/advanced_options_background_light.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape 3 | xmlns:android="http://schemas.android.com/apk/res/android" 4 | android:shape="rectangle"> 5 | <solid android:color="@color/white"> 6 | </solid> 7 | <corners 8 | android:topLeftRadius="4dp" 9 | android:bottomLeftRadius="4dp"> 10 | </corners> 11 | 12 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/background_simple_item.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:state_pressed="true" android:drawable="@color/orange500" /> 4 | <item android:state_focused="true" android:drawable="@color/orange500" /> 5 | <item android:drawable="@color/transparent" /> 6 | 7 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/bottom_sheet_background.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="?attr/bottom_sheet_background" /> 5 | <corners 6 | android:topLeftRadius="?attr/bottom_sheet_radius" 7 | android:topRightRadius="?attr/bottom_sheet_radius" /> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/button_oval.xml: -------------------------------------------------------------------------------- 1 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:shape="rectangle" > 3 | 4 | <solid android:color="@color/orange500" /> 5 | 6 | <padding 7 | android:bottom="6dp" 8 | android:left="16dp" 9 | android:right="16dp" 10 | android:top="6dp" /> 11 | 12 | <corners android:radius="160dp" /> 13 | 14 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/circle_white.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="oval"> 4 | <solid android:color="@color/white_more_transparent"></solid> 5 | 6 | 7 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/cursor_o.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle" > 4 | <solid android:color="?colorPrimary" /> 5 | <size android:width="1.8dp" /> 6 | </shape> 7 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/cursor_w.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle" > 4 | <solid android:color="@color/orange500" /> 5 | <size android:width="1dp" /> 6 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/divider_tv_card_content_dark.xml: -------------------------------------------------------------------------------- 1 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:shape="rectangle"> 3 | <size 4 | android:width="1px" 5 | android:height="1px" /> 6 | <solid android:color="@color/tv_card_content_darker" /> 7 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/donate_background_color.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/rectangle_orange_500" android:state_selected="true"/> 4 | <item android:drawable="@drawable/rectangle_default_grey_200"/> 5 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/donate_button_ripple.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:state_pressed="false" android:drawable="@android:color/transparent" /> 4 | <item android:drawable="@color/orange200" /> 5 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/donate_purchased_background_color.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/rectangle_primary" android:state_selected="true"/> 4 | <item android:drawable="@drawable/rectangle_default_darker_border_primary"/> 5 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/empty.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape /> 3 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/fastscroll_thumb_drawable.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item 4 | android:state_pressed="true" 5 | android:drawable="@drawable/fastscroll_thumb_pressed"/> 6 | 7 | <item 8 | android:drawable="@drawable/fastscroll_thumb" /> 9 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/fastscroll_track.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | 5 | <solid android:color="@android:color/transparent" /> 6 | 7 | <padding 8 | android:top="16dp" 9 | android:left="16dp" 10 | android:right="16dp" 11 | android:bottom="16dp"/> 12 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/fastscroll_track_drawable.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item 4 | android:state_pressed="true" 5 | android:drawable="@drawable/fastscroll_track" /> 6 | 7 | <item 8 | android:drawable="@drawable/fastscroll_track"/> 9 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/gradient_audio_player_bottom.xml: -------------------------------------------------------------------------------- 1 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:shape="rectangle"> 3 | 4 | <gradient android:angle="90" android:startColor="@color/white_transparent_80" android:endColor="@color/transparent"/> 5 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/gradient_audio_player_bottom_dark.xml: -------------------------------------------------------------------------------- 1 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:shape="rectangle"> 3 | 4 | <gradient android:angle="90" android:startColor="@color/black_transparent_80" android:endColor="@color/transparent"/> 5 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/gradient_audio_player_top.xml: -------------------------------------------------------------------------------- 1 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:shape="rectangle"> 3 | 4 | <gradient android:angle="270" android:startColor="@color/white_transparent_80" android:endColor="@color/transparent"/> 5 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/gradient_audio_player_top_dark.xml: -------------------------------------------------------------------------------- 1 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:shape="rectangle"> 3 | 4 | <gradient android:angle="270" android:startColor="@color/black_transparent_80" android:endColor="@color/transparent"/> 5 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/gradient_background_tv.xml: -------------------------------------------------------------------------------- 1 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:shape="rectangle"> 3 | <corners 4 | android:topRightRadius="100dp" 5 | android:bottomRightRadius="100dp" /> 6 | <solid android:color="@color/grey900" /> 7 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/half_circle_tv_left.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape 3 | xmlns:android="http://schemas.android.com/apk/res/android" 4 | android:shape="rectangle"> 5 | <solid android:color="@color/playerbackground"> 6 | </solid> 7 | <corners 8 | android:bottomRightRadius="75dp" 9 | android:topRightRadius="75dp"/> 10 | 11 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/half_circle_tv_right.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape 3 | xmlns:android="http://schemas.android.com/apk/res/android" 4 | android:shape="rectangle"> 5 | <solid android:color="@color/playerbackground"> 6 | </solid> 7 | <corners 8 | android:bottomLeftRadius="75dp" 9 | android:topLeftRadius="75dp"/> 10 | 11 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/header_background_content.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:state_focused="true" android:drawable="@color/tv_card_content_darker" /> 4 | <item android:state_pressed="true" android:drawable="@color/tv_card_content_darker" /> 5 | <item android:drawable="@color/tv_card_content_dark" /> 6 | </selector> 7 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/header_background_no_content.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:state_focused="true" android:drawable="@color/tv_card_content_darker" /> 4 | <item android:state_pressed="true" android:drawable="@color/tv_card_content_darker" /> 5 | <item android:drawable="@color/tv_card_content" /> 6 | </selector> 7 | 8 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_check_small.xml: -------------------------------------------------------------------------------- 1 | <vector xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:width="12dp" 3 | android:height="12dp" 4 | android:viewportWidth="24" 5 | android:viewportHeight="24"> 6 | <path 7 | android:fillColor="@color/donate_text_color" 8 | android:pathData="M9,16.17L4.83,12l-1.42,1.41L9,19 21,7l-1.41,-1.41z" /> 9 | </vector> 10 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_done.xml: -------------------------------------------------------------------------------- 1 | <vector xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:width="24dp" 3 | android:height="24dp" 4 | android:viewportWidth="24" 5 | android:viewportHeight="24"> 6 | <path 7 | android:pathData="M9,16.2L4.8,12l-1.4,1.4L9,19 21,7l-1.4,-1.4L9,16.2z" 8 | android:fillColor="@color/standard_selection_control_normal"/> 9 | </vector> 10 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_next.xml: -------------------------------------------------------------------------------- 1 | <vector xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:width="32dp" 3 | android:height="32dp" 4 | android:viewportWidth="24" 5 | android:viewportHeight="24"> 6 | <path 7 | android:fillColor="?attr/player_icon_color" 8 | android:pathData="M6,18l8.5,-6L6,6v12zM16,6v12h2V6h-2z" /> 9 | </vector> 10 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_notif_bookmark_add.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/ic_notif_bookmark_add_w"/> 4 | </selector> 5 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_notif_forward.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/ic_notif_forward_disabled" android:state_enabled="false"/> 4 | <item android:drawable="@drawable/ic_notif_forward_w"/> 5 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_notif_forward_10.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/ic_notif_forward_10_disabled" android:state_enabled="false"/> 4 | <item android:drawable="@drawable/ic_notif_forward_10_w"/> 5 | </selector> 6 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_notif_next.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/ic_notif_next_disabled" android:state_enabled="false"/> 4 | <item android:drawable="@drawable/ic_notif_next_w"/> 5 | </selector> 6 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_notif_previous.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/ic_notif_previous_disabled" android:state_enabled="false"/> 4 | <item android:drawable="@drawable/ic_notif_previous_w"/> 5 | </selector> 6 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_notif_rewind.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/ic_notif_rewind_disabled" android:state_enabled="false"/> 4 | <item android:drawable="@drawable/ic_notif_rewind_w"/> 5 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_notif_rewind_10.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/ic_notif_rewind_10_disabled" android:state_enabled="false"/> 4 | <item android:drawable="@drawable/ic_notif_rewind_10_w"/> 5 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_notif_speed_0_50.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/ic_notif_speed_0_50_w"/> 4 | </selector> 5 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_notif_speed_0_80.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/ic_notif_speed_0_80_w"/> 4 | </selector> 5 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_notif_speed_1_00.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/ic_notif_speed_1_00_w"/> 4 | </selector> 5 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_notif_speed_1_10.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/ic_notif_speed_1_10_w"/> 4 | </selector> 5 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_notif_speed_1_20.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/ic_notif_speed_1_20_w"/> 4 | </selector> 5 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_notif_speed_1_50.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/ic_notif_speed_1_50_w"/> 4 | </selector> 5 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_notif_speed_2_00.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:drawable="@drawable/ic_notif_speed_2_00_w"/> 4 | </selector> 5 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_onboarding_next.xml: -------------------------------------------------------------------------------- 1 | <vector android:height="48dp" android:tint="#FFFFFF" 2 | android:autoMirrored="true" 3 | android:viewportHeight="24" android:viewportWidth="24" 4 | android:width="48dp" xmlns:android="http://schemas.android.com/apk/res/android"> 5 | <path android:fillColor="@android:color/white" android:pathData="M10,6L8.59,7.41 13.17,12l-4.58,4.59L10,18l6,-6z"/> 6 | </vector> 7 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_onboarding_previous.xml: -------------------------------------------------------------------------------- 1 | <vector android:autoMirrored="true" android:height="48dp" 2 | android:tint="#FFFFFF" android:viewportHeight="24" 3 | android:viewportWidth="24" android:width="48dp" xmlns:android="http://schemas.android.com/apk/res/android"> 4 | <path android:fillColor="@android:color/white" android:pathData="M15.41,7.41L14,6l-6,6 6,6 1.41,-1.41L10.83,12z"/> 5 | </vector> 6 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_previous.xml: -------------------------------------------------------------------------------- 1 | <vector xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:width="32dp" 3 | android:height="32dp" 4 | android:viewportWidth="24" 5 | android:viewportHeight="24"> 6 | <path 7 | android:fillColor="?attr/player_icon_color" 8 | android:pathData="M6,6h2v12L6,18zM9.5,12l8.5,6L18,6z"/> 9 | </vector> 10 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_remote_access_onboarding_play.xml: -------------------------------------------------------------------------------- 1 | <vector xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:width="24dp" 3 | android:height="24dp" 4 | android:viewportWidth="24" 5 | android:viewportHeight="24"> 6 | <path 7 | android:fillColor="@android:color/white" 8 | android:pathData="M8,5v14l11,-7z" /> 9 | </vector> 10 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_widget_next_normal.xml: -------------------------------------------------------------------------------- 1 | <vector xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:width="48dp" 3 | android:height="48dp" 4 | android:viewportWidth="48" 5 | android:viewportHeight="48"> 6 | <path 7 | android:fillColor="#FF000000" 8 | android:pathData="M18,30 L26.5,24 18,18ZM28,18v12h2V18Z" /> 9 | </vector> 10 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/ic_widget_previous_normal.xml: -------------------------------------------------------------------------------- 1 | <vector xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:width="48dp" 3 | android:height="48dp" 4 | android:viewportWidth="48" 5 | android:viewportHeight="48"> 6 | <path 7 | android:fillColor="#FF000000" 8 | android:pathData="m18,18h2v12h-2zM21.5,24 L30,30L30,18Z" /> 9 | </vector> 10 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/permission_selection_rounded.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <stroke android:width="1dp" android:color="@color/onboarding_grey_transparent_20"/> 5 | <solid android:color="@color/onboarding_grey_transparent_75"></solid> 6 | <corners android:radius="8dp"></corners> 7 | 8 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rectangle_circle_right_orange.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/orange500focus"/> 5 | <corners 6 | android:topRightRadius="36dp" 7 | android:bottomRightRadius="36dp"/> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rectangle_circle_right_white.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/white_more_transparent" /> 5 | <corners 6 | android:topRightRadius="36dp" 7 | android:bottomRightRadius="36dp" /> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rectangle_default_darker_border_primary.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape 3 | xmlns:android="http://schemas.android.com/apk/res/android" 4 | android:shape="rectangle"> 5 | <solid android:color="?attr/donate_item_background"/> 6 | <stroke android:width="2dp" android:color="?attr/colorPrimary"/> 7 | 8 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rectangle_default_grey_200.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape 3 | xmlns:android="http://schemas.android.com/apk/res/android" 4 | android:shape="rectangle"> 5 | <solid android:color="@color/grey200"> 6 | </solid> 7 | 8 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rectangle_grey_700.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/grey700" /> 5 | 6 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rectangle_orange_300.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/orange300" /> 5 | 6 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rectangle_orange_400.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/orange400" /> 5 | 6 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rectangle_primary.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="?attr/colorPrimary" /> 5 | 6 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rectangle_transparent.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/transparent" /> 5 | 6 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rectangle_white_transparent.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/white_transparent_10" /> 5 | 6 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/round_border.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item android:state_pressed="true" android:drawable="@drawable/round_border_pressed" /> 4 | <item android:state_focused="true" android:drawable="@drawable/round_border_pressed" /> 5 | <item android:drawable="@drawable/round_border_normal" /> 6 | 7 | </selector> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rounded_corners.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape 3 | xmlns:android="http://schemas.android.com/apk/res/android" 4 | android:shape="rectangle"> 5 | <solid android:color="@color/playerbackground"> 6 | </solid> 7 | <corners android:radius="5dp"> 8 | </corners> 9 | 10 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rounded_corners_audio.xml: -------------------------------------------------------------------------------- 1 | <shape 2 | xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/black_transparent_75"> 5 | </solid> 6 | <corners android:radius="24dp"> 7 | </corners> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rounded_corners_audio_dark.xml: -------------------------------------------------------------------------------- 1 | <shape 2 | xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/white_transparent_75"> 5 | </solid> 6 | <corners android:radius="24dp"> 7 | </corners> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rounded_corners_black_more_transparent.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape 3 | xmlns:android="http://schemas.android.com/apk/res/android" 4 | android:shape="rectangle"> 5 | <solid android:color="@color/black_more_transparent"> 6 | </solid> 7 | <corners android:radius="4dp"> 8 | </corners> 9 | 10 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rounded_corners_full.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape 3 | xmlns:android="http://schemas.android.com/apk/res/android" 4 | android:shape="rectangle"> 5 | <solid android:color="@color/playerbackground"> 6 | </solid> 7 | <corners android:radius="100dp"> 8 | </corners> 9 | 10 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rounded_corners_otp_code.xml: -------------------------------------------------------------------------------- 1 | <shape 2 | xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/grey200"> 5 | </solid> 6 | <corners android:radius="8dp"> 7 | </corners> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rounded_corners_otp_code_dark.xml: -------------------------------------------------------------------------------- 1 | <shape 2 | xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/grey875"> 5 | </solid> 6 | <corners android:radius="8dp"> 7 | </corners> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rounded_corners_permissions_explanation.xml: -------------------------------------------------------------------------------- 1 | <shape 2 | xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="?attr/permission_explanation_background"> 5 | </solid> 6 | <corners android:radius="8dp"> 7 | </corners> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rounded_corners_permissions_warning.xml: -------------------------------------------------------------------------------- 1 | <shape 2 | xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/red500transparent25"> 5 | </solid> 6 | <corners android:radius="8dp"> 7 | </corners> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rounded_corners_scan_progress.xml: -------------------------------------------------------------------------------- 1 | <shape 2 | xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/grey200"> 5 | </solid> 6 | <corners android:radius="24dp"> 7 | </corners> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/rounded_corners_scan_progress_dark.xml: -------------------------------------------------------------------------------- 1 | <shape 2 | xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/grey875"> 5 | </solid> 6 | <corners android:radius="24dp"> 7 | </corners> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/theme_selection_rounded.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <stroke android:width="1dp" android:color="@color/white_transparent_50"/> 5 | <solid android:color="@color/white_transparent_15"></solid> 6 | <corners android:radius="8dp"></corners> 7 | 8 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/tips_tap.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape 3 | xmlns:android="http://schemas.android.com/apk/res/android" 4 | android:shape="oval"> 5 | 6 | <solid android:color="@color/orange_800_transparent_20"/> 7 | <stroke android:width="2dp" android:color="@color/orange800"/> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/tips_tap_500.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape 3 | xmlns:android="http://schemas.android.com/apk/res/android" 4 | android:shape="oval"> 5 | 6 | <solid android:color="@color/orange_500_transparent_20"/> 7 | <stroke android:width="2dp" android:color="@color/orange500"/> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/tv_audio_chips_focused.xml: -------------------------------------------------------------------------------- 1 | <shape 2 | xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/grey400transparent"> 5 | </solid> 6 | <corners android:radius="24dp"> 7 | </corners> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/tv_audio_chips_normal.xml: -------------------------------------------------------------------------------- 1 | <shape 2 | xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | <solid android:color="@color/black_transparent_75"> 5 | </solid> 6 | <corners android:radius="24dp"> 7 | </corners> 8 | 9 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/tv_card_background.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="rectangle"> 4 | 5 | <solid android:color="@color/tv_card_content_dark"/> 6 | <corners android:radius="3dp" /> 7 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/tv_channel_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable/tv_channel_default.png -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/video_list_length_bg.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> 3 | <solid android:color="@color/playerbackground" /> 4 | <corners android:radius="8dip" /> 5 | </shape> 6 | -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/white_circle.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <shape xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shape="oval"> 4 | <solid android:color="@color/white"></solid> 5 | 6 | </shape> -------------------------------------------------------------------------------- /application/resources/src/main/res/drawable/widget_preview_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/resources/src/main/res/drawable/widget_preview_mini.png -------------------------------------------------------------------------------- /application/resources/src/main/res/values-h600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources> 3 | <dimen name="subs_dl_dialog_height">448dp</dimen> 4 | <dimen name="audio_player_seekbar_bottom_margin">32dp</dimen> 5 | <dimen name="tab_layout_height">-2px</dimen> 6 | </resources> -------------------------------------------------------------------------------- /application/resources/src/main/res/values-iw: -------------------------------------------------------------------------------- 1 | values-he -------------------------------------------------------------------------------- /application/resources/src/main/res/values-land/booleans.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources> 3 | <bool name="list_mode">false</bool> 4 | </resources> -------------------------------------------------------------------------------- /application/resources/src/main/res/values-land/dimens.xml: -------------------------------------------------------------------------------- 1 | <resources> 2 | <!-- Default --> 3 | <dimen name="actionBarSize">48dp</dimen> 4 | 5 | <dimen name="large_margins_center">24dp</dimen> 6 | <dimen name="small_margins_sides">24dp</dimen> 7 | 8 | 9 | </resources> -------------------------------------------------------------------------------- /application/resources/src/main/res/values-sw360dp/dimens.xml: -------------------------------------------------------------------------------- 1 | <resources> 2 | <dimen name="default_margin">16dp</dimen> 3 | </resources> 4 | -------------------------------------------------------------------------------- /application/resources/src/main/res/values-sw400dp/booleans.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources> 3 | <bool name="list_mode">false</bool> 4 | </resources> -------------------------------------------------------------------------------- /application/resources/src/main/res/values-sw600dp/booleans.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources> 3 | <bool name="is_tablet">true</bool> 4 | </resources> -------------------------------------------------------------------------------- /application/resources/src/main/res/values-sw900dp/dimens.xml: -------------------------------------------------------------------------------- 1 | <resources> 2 | <dimen name="grid_card_thumb_width">300dp</dimen> 3 | <dimen name="grid_card_thumb_height">190dp</dimen> 4 | </resources> 5 | -------------------------------------------------------------------------------- /application/resources/src/main/res/values-v19/booleans.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources> 3 | <bool name="time_stretching_default">true</bool> 4 | </resources> -------------------------------------------------------------------------------- /application/resources/src/main/res/values-w480dp/dimens.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources> 3 | <dimen name="wizard_dialog_width">416dp</dimen> 4 | </resources> -------------------------------------------------------------------------------- /application/resources/src/main/res/values-w480dp/integers.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources> 3 | <integer name="tv_songs_col_count">5</integer> 4 | <integer name="tv_videos_col_count">2</integer> 5 | <integer name="mobile_card_columns">4</integer> 6 | 7 | </resources> -------------------------------------------------------------------------------- /application/resources/src/main/res/values-w600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | 3 | <resources> 4 | <!--MRLPanel--> 5 | <dimen name="mrl_panel_min_width">380dp</dimen> 6 | <dimen name="subs_dl_dialog_width">512dp</dimen> 7 | <dimen name="wizard_dialog_width">448dp</dimen> 8 | <dimen name="default_context_width">512dp</dimen> 9 | </resources> -------------------------------------------------------------------------------- /application/resources/src/main/res/values-w600dp/integers.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources> 3 | <integer name="tv_songs_col_count">6</integer> 4 | <integer name="tv_videos_col_count">3</integer> 5 | <integer name="mobile_card_columns">5</integer> 6 | </resources> -------------------------------------------------------------------------------- /application/resources/src/main/res/values-w800dp/dimens.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources> 3 | <dimen name="default_content_width">800dp</dimen> 4 | <dimen name="file_picker_width">600dp</dimen> 5 | </resources> -------------------------------------------------------------------------------- /application/resources/src/main/res/values-w800dp/integers.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources> 3 | <integer name="tv_songs_col_count">7</integer> 4 | <integer name="tv_videos_col_count">4</integer> 5 | <integer name="mobile_card_columns">7</integer> 6 | </resources> -------------------------------------------------------------------------------- /application/resources/src/main/res/values-zgh-rMA/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools" 3 | tools:ignore="MissingTranslation"> 4 | 5 | </resources> 6 | -------------------------------------------------------------------------------- /application/resources/src/main/res/values/booleans.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources> 3 | <bool name="list_mode">true</bool> 4 | <bool name="time_stretching_default">false</bool> 5 | <bool name="is_tablet">false</bool> 6 | </resources> -------------------------------------------------------------------------------- /application/resources/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources> 3 | <integer name="tv_songs_col_count">4</integer> 4 | <integer name="tv_videos_col_count">2</integer> 5 | <integer name="mobile_card_columns">2</integer> 6 | </resources> -------------------------------------------------------------------------------- /application/television/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /application/television/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/television/consumer-rules.pro -------------------------------------------------------------------------------- /application/television/src/main/java/org/videolan/television/ui/TvFocusableAdapter.kt: -------------------------------------------------------------------------------- 1 | package org.videolan.television.ui 2 | 3 | import org.videolan.resources.interfaces.FocusListener 4 | 5 | /** 6 | * Callback used when the adapter is used in a [FocusableRecyclerView] 7 | */ 8 | interface TvFocusableAdapter { 9 | fun setOnFocusChangeListener(focusListener: FocusListener?) 10 | } -------------------------------------------------------------------------------- /application/television/src/main/java/org/videolan/television/ui/TvItemAdapter.kt: -------------------------------------------------------------------------------- 1 | package org.videolan.television.ui 2 | 3 | interface TvItemAdapter : TvFocusableAdapter { 4 | fun submitList(pagedList: Any?) 5 | fun isEmpty() : Boolean 6 | var focusNext: Int 7 | fun displaySwitch(inGrid: Boolean) 8 | } 9 | -------------------------------------------------------------------------------- /application/television/src/main/res/layout/onboarding.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <androidx.fragment.app.FragmentContainerView xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:id="@+id/onborading_fragment" 4 | android:name="org.videolan.television.ui.OnboardingFragment" 5 | android:layout_width="match_parent" 6 | android:layout_height="match_parent" /> -------------------------------------------------------------------------------- /application/television/src/main/res/layout/tv_preferences_activity.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <fragment xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:id="@+id/settingsFragment" 4 | android:name="org.videolan.television.ui.preferences.TvSettings" 5 | android:layout_width="match_parent" 6 | android:layout_height="match_parent" /> 7 | -------------------------------------------------------------------------------- /application/tools/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /application/tools/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <manifest xmlns:tools="http://schemas.android.com/tools"> 3 | 4 | <uses-sdk 5 | tools:overrideLibrary="android.support.media.tv,androidx.tvprovider" /> 6 | </manifest> -------------------------------------------------------------------------------- /application/tools/src/main/java/org/videolan/tools/CoroutineContextProvider.kt: -------------------------------------------------------------------------------- 1 | package org.videolan.tools 2 | 3 | import kotlinx.coroutines.CoroutineDispatcher 4 | import kotlinx.coroutines.Dispatchers 5 | 6 | open class CoroutineContextProvider { 7 | open val Default by lazy { Dispatchers.Default } 8 | open val IO by lazy { Dispatchers.IO } 9 | open val Main: CoroutineDispatcher by lazy { Dispatchers.Main } 10 | } -------------------------------------------------------------------------------- /application/tools/src/main/java/org/videolan/tools/IOScopedObject.kt: -------------------------------------------------------------------------------- 1 | package org.videolan.tools 2 | 3 | import kotlinx.coroutines.CoroutineScope 4 | import kotlinx.coroutines.Dispatchers 5 | 6 | open class IOScopedObject : CoroutineScope { 7 | override val coroutineContext = Dispatchers.IO 8 | } -------------------------------------------------------------------------------- /application/vlc-android/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | gen/ 3 | libs/ 4 | obj/ 5 | .settings 6 | 7 | assets/lua/ 8 | assets/*.so 9 | -------------------------------------------------------------------------------- /application/vlc-android/flavors/debug/res/drawable-hdpi/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/vlc-android/flavors/debug/res/drawable-hdpi/banner.png -------------------------------------------------------------------------------- /application/vlc-android/flavors/debug/res/drawable-ldpi/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/vlc-android/flavors/debug/res/drawable-ldpi/banner.png -------------------------------------------------------------------------------- /application/vlc-android/flavors/debug/res/drawable-mdpi/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/vlc-android/flavors/debug/res/drawable-mdpi/banner.png -------------------------------------------------------------------------------- /application/vlc-android/flavors/debug/res/drawable-xhdpi/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/vlc-android/flavors/debug/res/drawable-xhdpi/banner.png -------------------------------------------------------------------------------- /application/vlc-android/res/anim/anim_enter_left.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <set xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shareInterpolator="false"> 4 | <translate 5 | android:fromXDelta="-100%" android:toXDelta="0%" 6 | android:duration="350"/> 7 | </set> 8 | -------------------------------------------------------------------------------- /application/vlc-android/res/anim/anim_enter_right.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <set xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shareInterpolator="false"> 4 | <translate 5 | android:fromXDelta="100%" android:toXDelta="0%" 6 | android:duration="350"/> 7 | </set> 8 | -------------------------------------------------------------------------------- /application/vlc-android/res/anim/anim_leave_left.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <set xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shareInterpolator="false"> 4 | <translate 5 | android:fromXDelta="0%" android:toXDelta="-100%" 6 | android:duration="350"/> 7 | </set> 8 | -------------------------------------------------------------------------------- /application/vlc-android/res/anim/anim_leave_right.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <set xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:shareInterpolator="false"> 4 | <translate 5 | android:fromXDelta="0%" android:toXDelta="100%" 6 | android:duration="350"/> 7 | </set> 8 | -------------------------------------------------------------------------------- /application/vlc-android/res/layout/adv_option_item.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <TextView xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:layout_width="wrap_content" 4 | android:layout_height="wrap_content" 5 | android:clickable="true" 6 | android:longClickable="true" 7 | android:focusable="true" 8 | android:gravity="center" /> -------------------------------------------------------------------------------- /application/vlc-android/res/layout/audioplayer.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <androidx.fragment.app.FragmentContainerView xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:id="@+id/audio_player" 4 | android:name="org.videolan.vlc.gui.audio.AudioPlayer" 5 | android:layout_width="match_parent" 6 | android:layout_height="match_parent" /> 7 | -------------------------------------------------------------------------------- /application/vlc-android/res/layout/custom_simple_spinner_dropdown_item.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <TextView xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:id="@android:id/text1" 4 | style="?android:attr/spinnerItemStyle" 5 | android:singleLine="true" 6 | android:layout_width="100dip" 7 | android:layout_height="wrap_content" 8 | android:ellipsize="end" /> 9 | -------------------------------------------------------------------------------- /application/vlc-android/res/layout/debug_log_item.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <TextView xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:layout_width="match_parent" 4 | android:layout_height="wrap_content" 5 | android:typeface="monospace" /> 6 | -------------------------------------------------------------------------------- /application/vlc-android/res/layout/dropdown_item.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <TextView xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:layout_width="wrap_content" 4 | android:layout_height="wrap_content" 5 | android:minWidth="72dp" 6 | android:minHeight="48dp" 7 | android:gravity="center" /> -------------------------------------------------------------------------------- /application/vlc-android/res/layout/otp_code_activity.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <fragment xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:id="@+id/otpFragment" 4 | android:name="org.videolan.vlc.gui.OTPCodeFragment" 5 | android:layout_width="match_parent" 6 | android:layout_height="match_parent" /> 7 | -------------------------------------------------------------------------------- /application/vlc-android/res/layout/transparent.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 | android:layout_width="match_parent" 4 | android:layout_height="match_parent" 5 | android:background="@color/transparent"></FrameLayout> -------------------------------------------------------------------------------- /application/vlc-android/res/menu/bookmark_options.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <menu xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item 4 | android:id="@+id/bookmark_rename" 5 | android:title="@string/rename" /> 6 | <item 7 | android:id="@+id/bookmark_delete" 8 | android:title="@string/delete" /> 9 | </menu> -------------------------------------------------------------------------------- /application/vlc-android/res/menu/directory_custom_dir.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <menu xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <item 4 | android:id="@+id/directory_remove_custom_path" 5 | android:title="@string/remove_custom_path" /> 6 | </menu> -------------------------------------------------------------------------------- /application/vlc-android/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <background android:drawable="@drawable/ic_launcher_background"/> 4 | <foreground android:drawable="@drawable/ic_launcher_foreground"/> 5 | <monochrome android:drawable="@drawable/ic_launcher_monochrome"/> 6 | </adaptive-icon> -------------------------------------------------------------------------------- /application/vlc-android/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/vlc-android/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /application/vlc-android/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/vlc-android/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /application/vlc-android/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/vlc-android/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /application/vlc-android/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/application/vlc-android/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /application/vlc-android/res/values-land/integers.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources> 3 | <integer name="mobile_card_columns">3</integer> 4 | </resources> -------------------------------------------------------------------------------- /application/vlc-android/res/xml/automotive_app_desc.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <automotiveApp> 3 | <uses name="media" /> 4 | <uses name="template"/> 5 | </automotiveApp> -------------------------------------------------------------------------------- /application/vlc-android/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <full-backup-content> 3 | <exclude domain="root" path="db"/> 4 | <exclude domain="root" path="app_db"/> 5 | <exclude domain="root" path="keystore"/> 6 | <exclude domain="root" path="app_keystore"/> 7 | </full-backup-content> 8 | 9 | -------------------------------------------------------------------------------- /application/vlc-android/res/xml/preferences_extension_page.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <androidx.preference.PreferenceScreen 3 | xmlns:android="http://schemas.android.com/apk/res/android" 4 | android:key="extension_category" 5 | android:title="@string/extensions_prefs_category">> 6 | 7 | </androidx.preference.PreferenceScreen> -------------------------------------------------------------------------------- /application/vlc-android/res/xml/preferences_optional.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | 3 | <androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 4 | android:key="optional_features" 5 | android:title="@string/optional_features" /> 6 | -------------------------------------------------------------------------------- /application/vlc-android/res/xml/previewinputservice.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <tv-input/> -------------------------------------------------------------------------------- /application/vlc-android/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <paths xmlns:android="http://schemas.android.com/apk/res/android"> 3 | <external-path 4 | name="external_files" 5 | path="."/> 6 | <root-path name="external_files" path="/storage/" /> 7 | <files-path 8 | name="files" 9 | path="."/> 10 | </paths> -------------------------------------------------------------------------------- /application/vlc-android/res/xml/widget_provider_b.xml: -------------------------------------------------------------------------------- 1 | <appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:minWidth="250dp" 3 | android:minHeight="40dp" 4 | android:resizeMode="horizontal|vertical" 5 | android:minResizeWidth="180dp" 6 | android:updatePeriodMillis="86400000" 7 | android:initialLayout="@layout/widget_old"> 8 | </appwidget-provider> -------------------------------------------------------------------------------- /application/vlc-android/res/xml/widget_provider_w.xml: -------------------------------------------------------------------------------- 1 | <appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android" 2 | android:minWidth="250dp" 3 | android:minHeight="40dp" 4 | android:resizeMode="horizontal|vertical" 5 | android:minResizeWidth="180dp" 6 | android:updatePeriodMillis="86400000" 7 | android:initialLayout="@layout/widget_old"> 8 | </appwidget-provider> -------------------------------------------------------------------------------- /application/vlc-android/src/org/videolan/vlc/gui/helpers/SparseBooleanArrayParcelable.kt: -------------------------------------------------------------------------------- 1 | package org.videolan.vlc.gui.helpers 2 | 3 | import android.os.Parcelable 4 | import android.util.SparseBooleanArray 5 | import kotlinx.parcelize.Parcelize 6 | 7 | @Parcelize 8 | class SparseBooleanArrayParcelable(val data: SparseBooleanArray) : Parcelable -------------------------------------------------------------------------------- /application/vlc-android/src/org/videolan/vlc/interfaces/Filterable.kt: -------------------------------------------------------------------------------- 1 | package org.videolan.vlc.interfaces 2 | 3 | 4 | interface Filterable { 5 | fun getFilterQuery(): String? 6 | fun enableSearchOption(): Boolean 7 | fun filter(query: String) 8 | fun restoreList() 9 | fun setSearchVisibility(visible: Boolean) 10 | 11 | fun allowedToExpand(): Boolean 12 | } 13 | -------------------------------------------------------------------------------- /application/vlc-android/src/org/videolan/vlc/interfaces/IHistory.kt: -------------------------------------------------------------------------------- 1 | package org.videolan.vlc.interfaces 2 | 3 | interface IHistory { 4 | fun isEmpty(): Boolean 5 | fun clearHistory() 6 | } 7 | -------------------------------------------------------------------------------- /application/vlc-android/src/org/videolan/vlc/interfaces/IListEventsHandler.kt: -------------------------------------------------------------------------------- 1 | package org.videolan.vlc.interfaces 2 | 3 | import androidx.recyclerview.widget.RecyclerView 4 | import org.videolan.medialibrary.media.MediaLibraryItem 5 | 6 | interface IListEventsHandler { 7 | fun onRemove(position: Int, item: MediaLibraryItem) 8 | fun onMove(oldPosition: Int, newPosition: Int) 9 | fun onStartDrag(viewHolder: RecyclerView.ViewHolder ) 10 | } -------------------------------------------------------------------------------- /application/vlc-android/src/org/videolan/vlc/util/RendererLiveData.kt: -------------------------------------------------------------------------------- 1 | package org.videolan.vlc.util 2 | 3 | import androidx.lifecycle.MutableLiveData 4 | import org.videolan.libvlc.RendererItem 5 | 6 | 7 | class RendererLiveData : MutableLiveData<RendererItem>() { 8 | 9 | override fun setValue(value: RendererItem?) { 10 | getValue()?.release() 11 | value?.retain() 12 | super.setValue(value) 13 | } 14 | } -------------------------------------------------------------------------------- /application/vlc-android/src/org/videolan/vlc/viewmodels/tv/TvBrowserModel.kt: -------------------------------------------------------------------------------- 1 | package org.videolan.vlc.viewmodels.tv 2 | 3 | import org.videolan.resources.util.HeaderProvider 4 | 5 | interface TvBrowserModel<T> { 6 | fun isEmpty() : Boolean 7 | var currentItem: T? 8 | var nbColumns: Int 9 | val provider: HeaderProvider 10 | } -------------------------------------------------------------------------------- /buildsystem/automation/Gemfile: -------------------------------------------------------------------------------- 1 | # Autogenerated by fastlane 2 | # 3 | # Ensure this file is checked in to source control! 4 | 5 | source "https://rubygems.org" 6 | 7 | gem 'fastlane' 8 | 9 | plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') 10 | eval_gemfile(plugins_path) if File.exist?(plugins_path) 11 | -------------------------------------------------------------------------------- /buildsystem/automation/fastlane/Appfile: -------------------------------------------------------------------------------- 1 | json_key_file("certificates/vlc.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one 2 | package_name("org.videolan.vlc") 3 | -------------------------------------------------------------------------------- /buildsystem/automation/fastlane/Pluginfile: -------------------------------------------------------------------------------- 1 | # Autogenerated by fastlane 2 | # 3 | # Ensure this file is checked in to source control! 4 | 5 | gem 'fastlane-plugin-huawei_appgallery_connect' 6 | gem 'fastlane-plugin-ftp' 7 | -------------------------------------------------------------------------------- /buildsystem/automation/framing/locale/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/locale/es.po -------------------------------------------------------------------------------- /buildsystem/automation/framing/locale/es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/locale/es_MX.po -------------------------------------------------------------------------------- /buildsystem/automation/framing/locale/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/locale/hi.po -------------------------------------------------------------------------------- /buildsystem/automation/framing/locale/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/locale/id.po -------------------------------------------------------------------------------- /buildsystem/automation/framing/locale/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/locale/pl.po -------------------------------------------------------------------------------- /buildsystem/automation/framing/locale/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/locale/ru.po -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/PIxel 2 XL eq mask.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/PIxel 2 XL eq mask.xcf -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/PIxel 2 XL eq.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/PIxel 2 XL eq.xcf -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/PIxel 2 XL landscape.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/PIxel 2 XL landscape.xcf -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/PIxel 2 XL portait.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/PIxel 2 XL portait.xcf -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/Pixel 2XL pip.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/Pixel 2XL pip.xcf -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/Seven inches eq.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/Seven inches eq.xcf -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/Seven inches landscape.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/Seven inches landscape.xcf -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/Seven inches pip.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/Seven inches pip.xcf -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/Seven inches portait.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/Seven inches portait.xcf -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/Ten inches eq.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/Ten inches eq.xcf -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/Ten inches pip.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/Ten inches pip.xcf -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/Ten inches portait.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/Ten inches portait.xcf -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/all_devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/all_devices.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_pixel_2_XL_eq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_pixel_2_XL_eq.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_pixel_2_XL_eq_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_pixel_2_XL_eq_mask.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_pixel_2_XL_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_pixel_2_XL_landscape.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_pixel_2_XL_pip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_pixel_2_XL_pip.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_pixel_2_XL_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_pixel_2_XL_portrait.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_seven_inches_eq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_seven_inches_eq.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_seven_inches_eq_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_seven_inches_eq_mask.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_seven_inches_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_seven_inches_landscape.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_seven_inches_pip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_seven_inches_pip.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_seven_inches_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_seven_inches_portrait.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_ten_inches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_ten_inches.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_ten_inches_eq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_ten_inches_eq.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_ten_inches_eq_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_ten_inches_eq_mask.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_ten_inches_landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_ten_inches_landscape.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_ten_inches_pip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_ten_inches_pip.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/background_ten_inches_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/background_ten_inches_portrait.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/swipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/swipe.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/swipe_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/swipe_down.png -------------------------------------------------------------------------------- /buildsystem/automation/framing/templates/swipe_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/automation/framing/templates/swipe_up.png -------------------------------------------------------------------------------- /buildsystem/gradle_version/build.gradle: -------------------------------------------------------------------------------- 1 | println 'gradle_version=' + gradle.getGradleVersion() 2 | -------------------------------------------------------------------------------- /buildsystem/maven/images/nexus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/buildsystem/maven/images/nexus.png -------------------------------------------------------------------------------- /medialibrary/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 | package="org.videolan.medialibrary"> 4 | 5 | <application/> 6 | 7 | </manifest> 8 | -------------------------------------------------------------------------------- /medialibrary/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/videolan/vlc-android/13567cd0ddc3ae93b853229a532694eee25a526d/medialibrary/gradle.properties -------------------------------------------------------------------------------- /medialibrary/res/values-ar/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">مؤدّ غير معروف</string> 4 | <string name="unknown_album">مجموعة غير معروفة</string> 5 | <string name="unknown_genre">أسلوب غير معروف</string> 6 | <string name="various_artists">فنانون متعددون</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-ast/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artista desconocíu</string> 4 | <string name="unknown_album">Álbum desconocíu</string> 5 | <string name="unknown_genre">Xéneru desconocíu</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-be/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Невядомы артыст</string> 4 | <string name="unknown_album">Невядомы альбом</string> 5 | <string name="unknown_genre">Невядомы жанр</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-bn-rBD/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">অজানা শিল্পী</string> 4 | <string name="unknown_album">অজানা অ্যালবাম</string> 5 | <string name="unknown_genre">অজানা ধরণ</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-bs/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Nepoznat Izvođač</string> 4 | <string name="unknown_album">Nepoznat Album</string> 5 | <string name="unknown_genre">Nepoznat Žanr</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-ca/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artista desconegut</string> 4 | <string name="unknown_album">Àlbum desconegut</string> 5 | <string name="unknown_genre">Gènere desconegut</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-co/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artista Scunnisciutu</string> 4 | <string name="unknown_album">Albumu Scunnisciutu</string> 5 | <string name="unknown_genre">Generu Scunnisciutu</string> 6 | <string name="various_artists">Artisti Diversi</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-cs/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Neznámý umělec</string> 4 | <string name="unknown_album">Neznámé album</string> 5 | <string name="unknown_genre">Neznámý žánr</string> 6 | <string name="various_artists">Různí umělci</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-cy/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artist Anhysbys</string> 4 | <string name="unknown_album">Albwm Anhysbys</string> 5 | <string name="unknown_genre">Genre Anhysbys</string> 6 | <string name="various_artists">Artistiaid Amryw</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-da/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Ukendt kunstner</string> 4 | <string name="unknown_album">Ukendt album</string> 5 | <string name="unknown_genre">Ukendt genre</string> 6 | <string name="various_artists">Diverse kunstnere</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-de/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Unbekannter Künstler</string> 4 | <string name="unknown_album">Unbekanntes Album</string> 5 | <string name="unknown_genre">Unbekanntes Genre</string> 6 | <string name="various_artists">Verschiedene Künstler</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-el/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Άγνωστος καλλιτέχνης</string> 4 | <string name="unknown_album">Άγνωστο Άλμπουμ</string> 5 | <string name="unknown_genre">Άγνωστο Γένος</string> 6 | <string name="various_artists">Διάφοροι καλλιτέχνες</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Unknown Artist</string> 4 | <string name="unknown_album">Unknown Album</string> 5 | <string name="unknown_genre">Unknown Genre</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-es-rMX/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artista desconocido</string> 4 | <string name="unknown_album">Álbum desconocido</string> 5 | <string name="unknown_genre">Género desconocido</string> 6 | <string name="various_artists">Varios artistas</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-es/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artista desconocido</string> 4 | <string name="unknown_album">Álbum desconocido</string> 5 | <string name="unknown_genre">Género desconocido</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-et/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Tundmatu esitaja</string> 4 | <string name="unknown_album">Tundmatu album</string> 5 | <string name="unknown_genre">Tundmatu stiil</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-eu/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artista ezezaguna</string> 4 | <string name="unknown_album">Album ezezaguna</string> 5 | <string name="unknown_genre">Genero ezezaguna</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-fa/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">خواننده ناشناس</string> 4 | <string name="unknown_album">آلبوم ناشناس</string> 5 | <string name="unknown_genre">ژانر ناشناس</string> 6 | <string name="various_artists">هنرمندان مختلف</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-fi/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Tuntematon esittäjä</string> 4 | <string name="unknown_album">Tuntematon albumi</string> 5 | <string name="unknown_genre">Tuntematon genre</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-fo/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Ókent listafólk</string> 4 | <string name="unknown_album">Ókend útgáva</string> 5 | <string name="unknown_genre">Ókend sjangra</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-fr/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artiste inconnu</string> 4 | <string name="unknown_album">Album inconnu</string> 5 | <string name="unknown_genre">Genre inconnu</string> 6 | <string name="various_artists">Artistes Divers</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-fy/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Unbekende artyst</string> 4 | <string name="unknown_album">Unbekend album</string> 5 | <string name="unknown_genre">Unbekend sjenre</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-gd/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Neach-ealain neo-aithnichte</string> 4 | <string name="unknown_album">Albam neo-aithnichte</string> 5 | <string name="unknown_genre">Gnè neo-aithnichte</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-gl/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artista descoñecido</string> 4 | <string name="unknown_album">Álbum descoñecido</string> 5 | <string name="unknown_genre">Xénero descoñecido</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-gu-rIN/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">અજ્ઞાત આર્ટિસ્ટ</string> 4 | <string name="unknown_album">અજ્ઞાત આલ્બમ</string> 5 | <string name="unknown_genre">અજ્ઞાત શૈલી</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-he/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">אמן בלתי ידוע</string> 4 | <string name="unknown_album">אלבום בלתי ידוע</string> 5 | <string name="unknown_genre">סגנון בלתי ידוע</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-hi/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">अज्ञात कलाकार</string> 4 | <string name="unknown_album">अज्ञात एल्बम</string> 5 | <string name="unknown_genre">अज्ञात शैली</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-hr/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Nepoznati izvođač</string> 4 | <string name="unknown_album">Nepoznati album</string> 5 | <string name="unknown_genre">Nepoznati žanr</string> 6 | <string name="various_artists">Različiti izvođači</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-hu/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Ismeretlen előadó</string> 4 | <string name="unknown_album">Ismeretlen album</string> 5 | <string name="unknown_genre">Ismeretlen műfaj</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-id/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artis Tidak Dikenal</string> 4 | <string name="unknown_album">Album Tidak Dikenal</string> 5 | <string name="unknown_genre">Jenis Musik Tidak Dikenal</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-is/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Óþekktur flytjandi</string> 4 | <string name="unknown_album">Óþekkt albúm</string> 5 | <string name="unknown_genre">Óþekkt tegund</string> 6 | <string name="various_artists">Ýmsir flytjendur</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-it/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artista sconosciuto</string> 4 | <string name="unknown_album">Album sconosciuto</string> 5 | <string name="unknown_genre">Genere sconosciuto</string> 6 | <string name="various_artists">Artisti vari</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-iw: -------------------------------------------------------------------------------- 1 | values-he -------------------------------------------------------------------------------- /medialibrary/res/values-ja/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">未知のアーティスト</string> 4 | <string name="unknown_album">未知のアルバム</string> 5 | <string name="unknown_genre">未知のジャンル</string> 6 | <string name="various_artists">複数アーティスト</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-kab/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Anaẓur ur nettwassen ara</string> 4 | <string name="unknown_album">Album ur nettwassen ara</string> 5 | <string name="unknown_genre">Tawsit ur nettwassen ara</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-km/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">មិនស្គាល់សិល្បករ</string> 4 | <string name="unknown_album">មិនស្គាល់អាល់ប៊ុម</string> 5 | <string name="unknown_genre">មិនស្គាល់ចង្វាក់</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-kn/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">ಅಪರಿಚಿತ ಕಲಾವಿದ</string> 4 | <string name="unknown_album">ಅಪರಿಚಿತ ಆಲ್ಬಮ್</string> 5 | <string name="unknown_genre">ಅಪರಿಚಿತ ಶೈಲಿ</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-ko/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">알 수 없는 아티스트</string> 4 | <string name="unknown_album">알 수 없는 앨범</string> 5 | <string name="unknown_genre">알 수 없는 장르</string> 6 | <string name="various_artists">여러 아티스트</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-lt/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Nežinomas atlikėjas</string> 4 | <string name="unknown_album">Nežinomas albumas</string> 5 | <string name="unknown_genre">Nežinomas stilius</string> 6 | <string name="various_artists">Įvairūs atlikėjai</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-lv/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Nezināms Mākslinieks</string> 4 | <string name="unknown_album">Nezināms Albūms</string> 5 | <string name="unknown_genre">Nezināms Žanrs</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-ml/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">അജ്ഞാത കലാകാരന്</string> 4 | <string name="unknown_album">അജ്ഞാത ആല്ബം</string> 5 | <string name="unknown_genre">അജ്ഞാത വിഭാഗം</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-mr/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">अनामिक कलाकार</string> 4 | <string name="unknown_album">अनामिक अल्बम</string> 5 | <string name="unknown_genre">अनामिक जॉनर</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-ms/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artis Tidak Diketahui</string> 4 | <string name="unknown_album">Album Tidak Diketahui</string> 5 | <string name="unknown_genre">Genre Tidak Diketahui</string> 6 | <string name="various_artists">Pelbagai Artis</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-my/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">အမည်မသိအနုပညာရှင်</string> 4 | <string name="unknown_album">အမည်မသိအယ်လဘမ်</string> 5 | <string name="unknown_genre">အမည်မသိအမျိုးအစား</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-nb/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Ukjent artist</string> 4 | <string name="unknown_album">Ukjent album</string> 5 | <string name="unknown_genre">Ukjent sjanger</string> 6 | <string name="various_artists">Forskjellige artister</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-ne-rNP/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">अज्ञात कलाकार</string> 4 | <string name="unknown_album">अज्ञात एलबम</string> 5 | <string name="unknown_genre">अज्ञात शैली</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-nl/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Onbekende artiest</string> 4 | <string name="unknown_album">Onbekend album</string> 5 | <string name="unknown_genre">Onbekend genre</string> 6 | <string name="various_artists">Diverse artiesten</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-or/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">ଅଜ୍ଞାତ କଳାକାର</string> 4 | <string name="unknown_album">ଅଜ୍ଞାତ ଆଲବମ୍</string> 5 | <string name="unknown_genre">ଅଜ୍ଞାତ ଧରଣ</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-pa/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">ਅਣਜਾਣ ਕਲਾਕਾਰ</string> 4 | <string name="unknown_album">ਅਣਜਾਣ ਐਲਬਮ</string> 5 | <string name="unknown_genre">ਅਣਜਾਣ ਧੁਨ</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-pl/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Nieznany wykonawca</string> 4 | <string name="unknown_album">Nieznany album</string> 5 | <string name="unknown_genre">Nieznany gatunek</string> 6 | <string name="various_artists">Różni wykonawcy</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artista Desconhecido</string> 4 | <string name="unknown_album">Álbum Desconhecido</string> 5 | <string name="unknown_genre">Gênero Desconhecido</string> 6 | <string name="various_artists">Vários Artistas</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-pt/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Intérprete desconhecido</string> 4 | <string name="unknown_album">Álbum desconhecido</string> 5 | <string name="unknown_genre">Género desconhecido</string> 6 | <string name="various_artists">Vários artistas</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-ro/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artist necunoscut</string> 4 | <string name="unknown_album">Album necunoscut</string> 5 | <string name="unknown_genre">Gen necunoscut</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-ru/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Неизвестный исполнитель</string> 4 | <string name="unknown_album">Неизвестный альбом</string> 5 | <string name="unknown_genre">Неизвестный жанр</string> 6 | <string name="various_artists">Различные исполнители</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-si/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">නොදත් කලාකරු</string> 4 | <string name="unknown_album">නොදත් ඇල්බමය</string> 5 | <string name="unknown_genre">නොදත් ප්රභේදය</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-sk/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Neznámy umelec</string> 4 | <string name="unknown_album">Neznámy album</string> 5 | <string name="unknown_genre">Neznámy žáner</string> 6 | <string name="various_artists">Rôzni umelci</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-sl/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Neznan izvajalec</string> 4 | <string name="unknown_album">Neznan album</string> 5 | <string name="unknown_genre">Neznana zvrst</string> 6 | <string name="various_artists">Različni izvajalci</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-sq/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Artiste i panjohur</string> 4 | <string name="unknown_album">Album i panjohur</string> 5 | <string name="unknown_genre">Zhanri i panjohur</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-sr/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Непознат извођач</string> 4 | <string name="unknown_album">Непознат албум</string> 5 | <string name="unknown_genre">Непознат жанр</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-sv/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Okänd artist</string> 4 | <string name="unknown_album">Okänt album</string> 5 | <string name="unknown_genre">Okänd genre</string> 6 | <string name="various_artists">Blandade artister</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-ta/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">தெரியாத கலைஞர்</string> 4 | <string name="unknown_album">தெரியாத தொகுப்பு</string> 5 | <string name="unknown_genre">தெரியாத வகை</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-te/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version='1.0' encoding='UTF-8'?> 2 | <resources> 3 | <string name="unknown_artist">తెలియని కళాకారుడు</string> 4 | <string name="unknown_album">తెలియని ఆల్బమ్</string> 5 | <string name="unknown_genre">తెలియని సాహిత్యం</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-th/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">ไม่ทราบศิลปิน</string> 4 | <string name="unknown_album">ไม่ทราบอัลบั้ม</string> 5 | <string name="unknown_genre">ไม่ทราบประเภท</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-tr/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Bilinmeyen Sanatçı</string> 4 | <string name="unknown_album">Bilinmeyen Albüm</string> 5 | <string name="unknown_genre">Bilinmeyen Tür</string> 6 | <string name="various_artists">Çeşitli Sanatçılar</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-tt/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Билгесез башкаручы</string> 4 | <string name="unknown_album">Билгесез альбом</string> 5 | <string name="unknown_genre">Билгесез жанр</string> 6 | <string name="various_artists">Төрле башкаручылар</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-ug/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">يوچۇن سەنئەتكار</string> 4 | <string name="unknown_album">يوچۇن توپلام</string> 5 | <string name="unknown_genre">يوچۇن ئېقىم</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-uk/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Невідомий виконавець</string> 4 | <string name="unknown_album">Невідомий альбом</string> 5 | <string name="unknown_genre">Невідомий жанр</string> 6 | <string name="various_artists">Різні виконавці</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /medialibrary/res/values-ur/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">نامعلوم آرٹِسٹ</string> 4 | <string name="unknown_album">نا معلوم مرقع</string> 5 | <string name="unknown_genre">نامعلوم نوع</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values-uz/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Noma’lum ijrochi</string> 4 | <string name="unknown_album">Noma’lum albom</string> 5 | <string name="unknown_genre">Noma’lum janr</string> 6 | </resources> 7 | -------------------------------------------------------------------------------- /medialibrary/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | <?xml version="1.0" encoding="utf-8"?> 2 | <resources xmlns:tools="http://schemas.android.com/tools"> 3 | <string name="unknown_artist">Unknown Artist</string> 4 | <string name="unknown_album">Unknown Album</string> 5 | <string name="unknown_genre">Unknown Genre</string> 6 | <string name="various_artists">Various Artists</string> 7 | </resources> 8 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':libvlcjni:libvlc', ':medialibrary' 2 | include ':application:tools', ':application:resources', ':application:mediadb', ':application:app', ':application:live-plot-graph', ':application:television', ':application:donations', ':application:remote-access-server' 3 | include ':application:vlc-android' 4 | include ':application:moviepedia' 5 | include ':application:remote-access-client' 6 | --------------------------------------------------------------------------------