├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── encodings.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── libs │ ├── README.md │ ├── extension-av1-release.aar │ └── extension-ffmpeg-release.aar ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── brouken │ │ └── player │ │ ├── BrightnessControl.java │ │ ├── CustomDefaultTimeBar.java │ │ ├── CustomDefaultTrackNameProvider.java │ │ ├── CustomStyledPlayerView.java │ │ ├── PlayerActivity.java │ │ ├── Prefs.java │ │ ├── SubtitleUtils.java │ │ ├── Utils.java │ │ └── dtpv │ │ ├── DoubleTapPlayerView.java │ │ ├── PlayerDoubleTapListener.java │ │ ├── SeekListener.java │ │ └── youtube │ │ ├── YouTubeOverlay.java │ │ └── views │ │ ├── CircleClipTapView.java │ │ └── SecondsView.java │ └── res │ ├── drawable │ ├── controls_gradient.xml │ ├── exo_styled_controls_delete.xml │ ├── exo_styled_controls_next.xml │ ├── exo_styled_controls_pause.xml │ ├── exo_styled_controls_play.xml │ ├── ic_aspect_ratio_24dp.xml │ ├── ic_auto_rotate_24dp.xml │ ├── ic_brightness_auto_24dp.xml │ ├── ic_brightness_medium_24.xml │ ├── ic_delete_24dp_.xml │ ├── ic_folder_open_24dp.xml │ ├── ic_launcher_background.xml │ ├── ic_pause_24dp.xml │ ├── ic_picture_in_picture_alt_24dp.xml │ ├── ic_play_arrow_24dp.xml │ ├── ic_play_arrow_48dp.xml │ ├── ic_volume_off_24dp.xml │ ├── ic_volume_up_24dp.xml │ └── rounded_controls_background.xml │ ├── layout │ ├── activity_player.xml │ ├── activity_player_textureview.xml │ ├── controls.xml │ ├── exo_styled_player_control_view.xml │ ├── exo_styled_player_view.xml │ ├── exo_styled_settings_list.xml │ ├── yt_overlay.xml │ └── yt_seconds_view.xml │ ├── mipmap-anydpi-v26 │ └── ic_launcher.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ ├── banner.png │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-cs │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-hr │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-nb-rNO │ └── strings.xml │ ├── values-notouch │ ├── bools.xml │ └── themes.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-television │ ├── bools.xml │ └── themes.xml │ ├── values-th │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values │ ├── bools.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── themes.xml │ └── xml │ └── network_security_config.xml ├── com.brouken.player.yml ├── doubletapplayerview ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── res │ ├── drawable │ └── ic_play_triangle.xml │ ├── values-af │ └── plurals.xml │ ├── values-am │ └── plurals.xml │ ├── values-ar │ └── plurals.xml │ ├── values-az │ └── plurals.xml │ ├── values-b+sr+Latn │ └── plurals.xml │ ├── values-be │ └── plurals.xml │ ├── values-bg │ └── plurals.xml │ ├── values-bn │ └── plurals.xml │ ├── values-bs │ └── plurals.xml │ ├── values-ca │ └── plurals.xml │ ├── values-cs │ └── plurals.xml │ ├── values-da │ └── plurals.xml │ ├── values-de │ └── plurals.xml │ ├── values-el │ └── plurals.xml │ ├── values-en-rGB │ └── plurals.xml │ ├── values-en-rIN │ └── plurals.xml │ ├── values-es-rUS │ └── plurals.xml │ ├── values-es │ └── plurals.xml │ ├── values-et │ └── plurals.xml │ ├── values-eu │ └── plurals.xml │ ├── values-fa │ └── plurals.xml │ ├── values-fi │ └── plurals.xml │ ├── values-fr-rCA │ └── plurals.xml │ ├── values-fr │ └── plurals.xml │ ├── values-gl │ └── plurals.xml │ ├── values-gu │ └── plurals.xml │ ├── values-hi │ └── plurals.xml │ ├── values-hr │ └── plurals.xml │ ├── values-hu │ └── plurals.xml │ ├── values-hy │ └── plurals.xml │ ├── values-in │ └── plurals.xml │ ├── values-is │ └── plurals.xml │ ├── values-it │ └── plurals.xml │ ├── values-iw │ └── plurals.xml │ ├── values-ja │ └── plurals.xml │ ├── values-ka │ └── plurals.xml │ ├── values-kk │ └── plurals.xml │ ├── values-km │ └── plurals.xml │ ├── values-kn │ └── plurals.xml │ ├── values-ko │ └── plurals.xml │ ├── values-ky │ └── plurals.xml │ ├── values-lo │ └── plurals.xml │ ├── values-lt │ └── plurals.xml │ ├── values-lv │ └── plurals.xml │ ├── values-mk │ └── plurals.xml │ ├── values-ml │ └── plurals.xml │ ├── values-mn │ └── plurals.xml │ ├── values-mr │ └── plurals.xml │ ├── values-ms │ └── plurals.xml │ ├── values-my │ └── plurals.xml │ ├── values-nb │ └── plurals.xml │ ├── values-ne │ └── plurals.xml │ ├── values-nl │ └── plurals.xml │ ├── values-pa │ └── plurals.xml │ ├── values-pl │ └── plurals.xml │ ├── values-pt-rBR │ └── plurals.xml │ ├── values-pt-rPT │ └── plurals.xml │ ├── values-ro │ └── plurals.xml │ ├── values-ru │ └── plurals.xml │ ├── values-si │ └── plurals.xml │ ├── values-sk │ └── plurals.xml │ ├── values-sl │ └── plurals.xml │ ├── values-sq │ └── plurals.xml │ ├── values-sr │ └── plurals.xml │ ├── values-sv │ └── plurals.xml │ ├── values-sw │ └── plurals.xml │ ├── values-ta │ └── plurals.xml │ ├── values-te │ └── plurals.xml │ ├── values-th │ └── plurals.xml │ ├── values-tl │ └── plurals.xml │ ├── values-tr │ └── plurals.xml │ ├── values-uk │ └── plurals.xml │ ├── values-ur │ └── plurals.xml │ ├── values-uz │ └── plurals.xml │ ├── values-vi │ └── plurals.xml │ ├── values-zh-rCN │ └── plurals.xml │ ├── values-zh-rHK │ └── plurals.xml │ ├── values-zh-rTW │ └── plurals.xml │ ├── values-zu │ └── plurals.xml │ └── values │ ├── dtpv.xml │ ├── plurals.xml │ ├── public.xml │ └── yt_overlay.xml ├── fastlane └── metadata │ └── android │ ├── cs │ ├── full_description.txt │ ├── full_description_google_extra.txt │ ├── short_description.txt │ ├── short_description_google.txt │ └── title.txt │ ├── de-DE │ ├── changelogs │ │ └── 32.txt │ ├── full_description.txt │ ├── full_description_google_extra.txt │ ├── short_description.txt │ ├── short_description_google.txt │ └── title.txt │ ├── en-US │ ├── changelogs │ │ └── 32.txt │ ├── full_description.txt │ ├── full_description_google_extra.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ ├── short_description.txt │ ├── short_description_google.txt │ └── title.txt │ ├── fr │ ├── changelogs │ │ └── 32.txt │ ├── full_description.txt │ ├── full_description_google_extra.txt │ ├── short_description.txt │ ├── short_description_google.txt │ └── title.txt │ ├── hr │ ├── changelogs │ │ └── 32.txt │ ├── full_description.txt │ ├── full_description_google_extra.txt │ ├── short_description.txt │ ├── short_description_google.txt │ └── title.txt │ ├── it │ ├── changelogs │ │ └── 32.txt │ ├── full_description.txt │ ├── full_description_google_extra.txt │ ├── short_description.txt │ ├── short_description_google.txt │ └── title.txt │ ├── nb-NO │ ├── full_description.txt │ ├── full_description_google_extra.txt │ ├── short_description.txt │ ├── short_description_google.txt │ └── title.txt │ ├── ru │ ├── changelogs │ │ └── 32.txt │ ├── full_description.txt │ ├── full_description_google_extra.txt │ ├── short_description.txt │ ├── short_description_google.txt │ └── title.txt │ ├── th │ ├── changelogs │ │ └── 28.txt │ ├── full_description.txt │ ├── full_description_google_extra.txt │ ├── short_description.txt │ ├── short_description_google.txt │ └── title.txt │ └── zh-CN │ ├── full_description.txt │ ├── full_description_google_extra.txt │ ├── images │ └── phoneScreenshots │ │ ├── 2.png │ │ └── 3.png │ ├── short_description.txt │ ├── short_description_google.txt │ └── title.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── web_hi_res_512.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Player -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/libs/README.md -------------------------------------------------------------------------------- /app/libs/extension-av1-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/libs/extension-av1-release.aar -------------------------------------------------------------------------------- /app/libs/extension-ffmpeg-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/libs/extension-ffmpeg-release.aar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/brouken/player/BrightnessControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/java/com/brouken/player/BrightnessControl.java -------------------------------------------------------------------------------- /app/src/main/java/com/brouken/player/CustomDefaultTimeBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/java/com/brouken/player/CustomDefaultTimeBar.java -------------------------------------------------------------------------------- /app/src/main/java/com/brouken/player/CustomDefaultTrackNameProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/java/com/brouken/player/CustomDefaultTrackNameProvider.java -------------------------------------------------------------------------------- /app/src/main/java/com/brouken/player/CustomStyledPlayerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/java/com/brouken/player/CustomStyledPlayerView.java -------------------------------------------------------------------------------- /app/src/main/java/com/brouken/player/PlayerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/java/com/brouken/player/PlayerActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/brouken/player/Prefs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/java/com/brouken/player/Prefs.java -------------------------------------------------------------------------------- /app/src/main/java/com/brouken/player/SubtitleUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/java/com/brouken/player/SubtitleUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/brouken/player/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/java/com/brouken/player/Utils.java -------------------------------------------------------------------------------- /app/src/main/java/com/brouken/player/dtpv/DoubleTapPlayerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/java/com/brouken/player/dtpv/DoubleTapPlayerView.java -------------------------------------------------------------------------------- /app/src/main/java/com/brouken/player/dtpv/PlayerDoubleTapListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/java/com/brouken/player/dtpv/PlayerDoubleTapListener.java -------------------------------------------------------------------------------- /app/src/main/java/com/brouken/player/dtpv/SeekListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/java/com/brouken/player/dtpv/SeekListener.java -------------------------------------------------------------------------------- /app/src/main/java/com/brouken/player/dtpv/youtube/YouTubeOverlay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/java/com/brouken/player/dtpv/youtube/YouTubeOverlay.java -------------------------------------------------------------------------------- /app/src/main/java/com/brouken/player/dtpv/youtube/views/CircleClipTapView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/java/com/brouken/player/dtpv/youtube/views/CircleClipTapView.java -------------------------------------------------------------------------------- /app/src/main/java/com/brouken/player/dtpv/youtube/views/SecondsView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/java/com/brouken/player/dtpv/youtube/views/SecondsView.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/controls_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/controls_gradient.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/exo_styled_controls_delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/exo_styled_controls_delete.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/exo_styled_controls_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/exo_styled_controls_next.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/exo_styled_controls_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/exo_styled_controls_pause.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/exo_styled_controls_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/exo_styled_controls_play.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_aspect_ratio_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/ic_aspect_ratio_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_auto_rotate_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/ic_auto_rotate_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_brightness_auto_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/ic_brightness_auto_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_brightness_medium_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/ic_brightness_medium_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_delete_24dp_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/ic_delete_24dp_.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_folder_open_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/ic_folder_open_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pause_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/ic_pause_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_picture_in_picture_alt_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/ic_picture_in_picture_alt_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_play_arrow_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/ic_play_arrow_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_play_arrow_48dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/ic_play_arrow_48dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_off_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/ic_volume_off_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_up_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/ic_volume_up_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_controls_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/drawable/rounded_controls_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/layout/activity_player.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_player_textureview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/layout/activity_player_textureview.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/controls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/layout/controls.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/exo_styled_player_control_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/layout/exo_styled_player_control_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/exo_styled_player_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/layout/exo_styled_player_view.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/exo_styled_settings_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/layout/exo_styled_settings_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/yt_overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/layout/yt_overlay.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/yt_seconds_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/layout/yt_seconds_view.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/mipmap-xhdpi/banner.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nb-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-nb-rNO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-notouch/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-notouch/bools.xml -------------------------------------------------------------------------------- /app/src/main/res/values-notouch/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-notouch/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-television/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-television/bools.xml -------------------------------------------------------------------------------- /app/src/main/res/values-television/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-television/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values/bools.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /com.brouken.player.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/com.brouken.player.yml -------------------------------------------------------------------------------- /doubletapplayerview/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /doubletapplayerview/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/build.gradle -------------------------------------------------------------------------------- /doubletapplayerview/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doubletapplayerview/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/proguard-rules.pro -------------------------------------------------------------------------------- /doubletapplayerview/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/drawable/ic_play_triangle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/drawable/ic_play_triangle.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-af/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-af/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-am/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-am/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-ar/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-ar/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-az/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-az/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-b+sr+Latn/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-b+sr+Latn/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-be/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-be/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-bg/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-bg/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-bn/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-bn/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-bs/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-bs/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-ca/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-ca/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-cs/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-cs/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-da/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-da/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-de/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-de/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-el/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-el/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-en-rGB/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-en-rGB/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-en-rIN/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-en-rIN/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-es-rUS/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-es-rUS/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-es/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-es/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-et/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-et/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-eu/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-eu/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-fa/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-fa/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-fi/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-fi/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-fr-rCA/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-fr-rCA/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-fr/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-fr/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-gl/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-gl/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-gu/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-gu/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-hi/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-hi/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-hr/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-hr/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-hu/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-hu/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-hy/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-hy/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-in/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-in/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-is/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-is/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-it/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-it/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-iw/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-iw/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-ja/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-ja/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-ka/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-ka/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-kk/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-kk/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-km/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-km/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-kn/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-kn/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-ko/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-ko/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-ky/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-ky/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-lo/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-lo/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-lt/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-lt/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-lv/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-lv/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-mk/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-mk/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-ml/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-ml/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-mn/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-mn/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-mr/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-mr/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-ms/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-ms/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-my/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-my/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-nb/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-nb/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-ne/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-ne/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-nl/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-nl/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-pa/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-pa/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-pl/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-pl/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-pt-rBR/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-pt-rBR/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-pt-rPT/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-pt-rPT/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-ro/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-ro/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-ru/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-ru/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-si/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-si/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-sk/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-sk/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-sl/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-sl/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-sq/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-sq/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-sr/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-sr/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-sv/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-sv/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-sw/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-sw/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-ta/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-ta/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-te/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-te/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-th/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-th/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-tl/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-tl/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-tr/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-tr/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-uk/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-uk/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-ur/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-ur/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-uz/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-uz/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-vi/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-vi/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-zh-rCN/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-zh-rCN/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-zh-rHK/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-zh-rHK/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-zh-rTW/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-zh-rTW/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values-zu/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values-zu/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values/dtpv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values/dtpv.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values/plurals.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values/public.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values/public.xml -------------------------------------------------------------------------------- /doubletapplayerview/src/main/res/values/yt_overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/doubletapplayerview/src/main/res/values/yt_overlay.xml -------------------------------------------------------------------------------- /fastlane/metadata/android/cs/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/cs/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/cs/full_description_google_extra.txt: -------------------------------------------------------------------------------- 1 | Open source / zdrojový kód dostupný: https://github.com/moneytoo/Player -------------------------------------------------------------------------------- /fastlane/metadata/android/cs/short_description.txt: -------------------------------------------------------------------------------- 1 | Jednoduchý video přehrávač založený na knihovně ExoPlayer -------------------------------------------------------------------------------- /fastlane/metadata/android/cs/short_description_google.txt: -------------------------------------------------------------------------------- 1 | Open source přehrávač videa, bez zpoždění Bluetooth a podpory různých kodeků -------------------------------------------------------------------------------- /fastlane/metadata/android/cs/title.txt: -------------------------------------------------------------------------------- 1 | Prostě (video) přehrávač -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/changelogs/32.txt: -------------------------------------------------------------------------------- 1 | • ExoPlayer auf 2.14.0 aktualisieren 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/de-DE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/full_description_google_extra.txt: -------------------------------------------------------------------------------- 1 | Quelloffen / Quellcode verfügbar: https://github.com/moneytoo/Player 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/de-DE/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description_google.txt: -------------------------------------------------------------------------------- 1 | Quelloffener Videoplayer ohne Bluetooth-Verzögerung (mit verschiedene Codecs) 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Just (Video) Player 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/32.txt: -------------------------------------------------------------------------------- 1 | • Update ExoPlayer to 2.14.0 -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description_google_extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/en-US/full_description_google_extra.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/en-US/short_description_google.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Just (Video) Player -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/changelogs/32.txt: -------------------------------------------------------------------------------- 1 | • Mise à jour d'ExoPlayer vers 2.14.0 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/fr/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/full_description_google_extra.txt: -------------------------------------------------------------------------------- 1 | Code source ouvert et disponible : https://github.com/moneytoo/Player 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/short_description.txt: -------------------------------------------------------------------------------- 1 | Lecteur vidéo simple basé sur la bibliothèque ExoPlayer 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/short_description_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/fr/short_description_google.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/title.txt: -------------------------------------------------------------------------------- 1 | Juste Lecteur (vidéo) 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/changelogs/32.txt: -------------------------------------------------------------------------------- 1 | • ExoPlayer aktualiziran na 2.14.0 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/hr/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/full_description_google_extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/hr/full_description_google_extra.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/hr/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/short_description_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/hr/short_description_google.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/title.txt: -------------------------------------------------------------------------------- 1 | Samo (video) Player 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it/changelogs/32.txt: -------------------------------------------------------------------------------- 1 | • Aggiornamento di ExoPlayer verso 2.14.0 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/it/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it/full_description_google_extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/it/full_description_google_extra.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it/short_description.txt: -------------------------------------------------------------------------------- 1 | Semplice lettore video basato sulla libreria ExoPlayer 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it/short_description_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/it/short_description_google.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it/title.txt: -------------------------------------------------------------------------------- 1 | Solo Lettore (video) 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/nb-NO/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/nb-NO/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nb-NO/full_description_google_extra.txt: -------------------------------------------------------------------------------- 1 | Fri programvare: https://github.com/moneytoo/Player -------------------------------------------------------------------------------- /fastlane/metadata/android/nb-NO/short_description.txt: -------------------------------------------------------------------------------- 1 | Enkel videospiller basert på ExoPlayer-biblioteket -------------------------------------------------------------------------------- /fastlane/metadata/android/nb-NO/short_description_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/nb-NO/short_description_google.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nb-NO/title.txt: -------------------------------------------------------------------------------- 1 | Kun (video)-spiller -------------------------------------------------------------------------------- /fastlane/metadata/android/ru/changelogs/32.txt: -------------------------------------------------------------------------------- 1 | • Обновление ExoPlayer до 2.14.0 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/ru/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru/full_description_google_extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/ru/full_description_google_extra.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/ru/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru/short_description_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/ru/short_description_google.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru/title.txt: -------------------------------------------------------------------------------- 1 | Just (Video) Player 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/th/changelogs/28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/th/changelogs/28.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/th/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/th/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/th/full_description_google_extra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/th/full_description_google_extra.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/th/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/th/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/th/short_description_google.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/th/short_description_google.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/th/title.txt: -------------------------------------------------------------------------------- 1 | Just (Video) Player 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/zh-CN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/full_description_google_extra.txt: -------------------------------------------------------------------------------- 1 | 开源/源代码位于:https://github.com/moneytoo/Player 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/zh-CN/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/fastlane/metadata/android/zh-CN/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 基于 ExoPlayer 库的简单视频播放器 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description_google.txt: -------------------------------------------------------------------------------- 1 | 开源视频播放器,无蓝牙延迟,并支持各种编解码器 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | Just (Video) Player 2 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/settings.gradle -------------------------------------------------------------------------------- /web_hi_res_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whistlingwoods/JustPlayer/HEAD/web_hi_res_512.png --------------------------------------------------------------------------------