├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro ├── schemas │ └── com.simplemobiletools.musicplayer.databases.SongsDatabase │ │ └── 13.json └── src │ ├── debug │ └── res │ │ └── values │ │ └── strings.xml │ ├── fdroid │ └── res │ │ └── values │ │ └── bools.xml │ ├── main │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── com │ │ │ └── simplemobiletools │ │ │ └── musicplayer │ │ │ ├── App.kt │ │ │ ├── activities │ │ │ ├── AlbumsActivity.kt │ │ │ ├── EqualizerActivity.kt │ │ │ ├── ExcludedFoldersActivity.kt │ │ │ ├── MainActivity.kt │ │ │ ├── QueueActivity.kt │ │ │ ├── SettingsActivity.kt │ │ │ ├── SimpleActivity.kt │ │ │ ├── SimpleControllerActivity.kt │ │ │ ├── SimpleMusicActivity.kt │ │ │ ├── SplashActivity.kt │ │ │ ├── TrackActivity.kt │ │ │ ├── TracksActivity.kt │ │ │ └── WidgetConfigureActivity.kt │ │ │ ├── adapters │ │ │ ├── AlbumsAdapter.kt │ │ │ ├── AlbumsTracksAdapter.kt │ │ │ ├── ArtistsAdapter.kt │ │ │ ├── BaseMusicAdapter.kt │ │ │ ├── ExcludedFoldersAdapter.kt │ │ │ ├── FoldersAdapter.kt │ │ │ ├── GenresAdapter.kt │ │ │ ├── PlaylistsAdapter.kt │ │ │ ├── QueueAdapter.kt │ │ │ ├── TracksAdapter.kt │ │ │ ├── TracksHeaderAdapter.kt │ │ │ └── ViewPagerAdapter.kt │ │ │ ├── databases │ │ │ └── SongsDatabase.kt │ │ │ ├── dialogs │ │ │ ├── ChangeSortingDialog.kt │ │ │ ├── EditDialog.kt │ │ │ ├── ExportPlaylistDialog.kt │ │ │ ├── ManageVisibleTabsDialog.kt │ │ │ ├── NewPlaylistDialog.kt │ │ │ ├── RemovePlaylistDialog.kt │ │ │ ├── SelectPlaylistDialog.kt │ │ │ └── SleepTimerCustomDialog.kt │ │ │ ├── extensions │ │ │ ├── Activity.kt │ │ │ ├── Context.kt │ │ │ ├── Future.kt │ │ │ ├── Looper.kt │ │ │ ├── LottieAnimationView.kt │ │ │ ├── MediaController.kt │ │ │ ├── MediaItem.kt │ │ │ ├── MutableList.kt │ │ │ ├── Player.kt │ │ │ ├── RecyclerView.kt │ │ │ ├── Resources.kt │ │ │ └── View.kt │ │ │ ├── fragments │ │ │ ├── AlbumsFragment.kt │ │ │ ├── ArtistsFragment.kt │ │ │ ├── FoldersFragment.kt │ │ │ ├── GenresFragment.kt │ │ │ ├── MyViewPagerFragment.kt │ │ │ ├── PlaybackSpeedFragment.kt │ │ │ ├── PlaylistsFragment.kt │ │ │ └── TracksFragment.kt │ │ │ ├── helpers │ │ │ ├── AudioHelper.kt │ │ │ ├── Config.kt │ │ │ ├── Constants.kt │ │ │ ├── M3uExporter.kt │ │ │ ├── M3uImporter.kt │ │ │ ├── MyWidgetProvider.kt │ │ │ ├── NotificationHelper.kt │ │ │ ├── PlaybackSetting.kt │ │ │ ├── RoomHelper.kt │ │ │ ├── SimpleMediaController.kt │ │ │ ├── SimpleMediaScanner.kt │ │ │ └── TagHelper.kt │ │ │ ├── inlines │ │ │ └── Int.kt │ │ │ ├── interfaces │ │ │ ├── AlbumsDao.kt │ │ │ ├── ArtistsDao.kt │ │ │ ├── GenresDao.kt │ │ │ ├── PlaybackSpeedListener.kt │ │ │ ├── PlaylistsDao.kt │ │ │ ├── QueueItemsDao.kt │ │ │ └── SongsDao.kt │ │ │ ├── models │ │ │ ├── Album.kt │ │ │ ├── AlbumHeader.kt │ │ │ ├── AlbumSection.kt │ │ │ ├── Artist.kt │ │ │ ├── Events.kt │ │ │ ├── Folder.kt │ │ │ ├── Genre.kt │ │ │ ├── ListItem.kt │ │ │ ├── Playlist.kt │ │ │ ├── QueueItem.kt │ │ │ └── Track.kt │ │ │ ├── objects │ │ │ └── MyExecutor.kt │ │ │ ├── playback │ │ │ ├── CustomCommands.kt │ │ │ ├── MediaSessionCallback.kt │ │ │ ├── PlaybackService.kt │ │ │ ├── SimpleEqualizer.kt │ │ │ ├── SleepTimer.kt │ │ │ ├── library │ │ │ │ └── MediaItemProvider.kt │ │ │ └── player │ │ │ │ ├── AudioOnlyRenderersFactory.kt │ │ │ │ ├── Player.kt │ │ │ │ ├── PlayerListener.kt │ │ │ │ └── SimpleMusicPlayer.kt │ │ │ └── views │ │ │ ├── CurrentTrackBar.kt │ │ │ └── MarqueeTextView.kt │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_headset.png │ │ ├── ic_headset_padded.png │ │ └── ic_headset_small.png │ │ ├── drawable-mdpi │ │ └── ic_headset.png │ │ ├── drawable-nodpi │ │ └── img_widget_preview.png │ │ ├── drawable-xhdpi │ │ ├── ic_headset.png │ │ ├── ic_headset_padded.png │ │ └── ic_headset_small.png │ │ ├── drawable-xxhdpi │ │ ├── ic_headset.png │ │ ├── ic_headset_padded.png │ │ └── ic_headset_small.png │ │ ├── drawable-xxxhdpi │ │ ├── ic_headset.png │ │ ├── ic_headset_padded.png │ │ └── ic_headset_small.png │ │ ├── drawable │ │ ├── ic_album_vector.xml │ │ ├── ic_equalizer_vector.xml │ │ ├── ic_folders_vector.xml │ │ ├── ic_genre_vector.xml │ │ ├── ic_launcher_monochrome.xml │ │ ├── ic_music_note_vector.xml │ │ ├── ic_play_one_song_vector.xml │ │ ├── ic_playback_speed_slow_vector.xml │ │ ├── ic_playback_speed_vector.xml │ │ ├── ic_playlist_vector.xml │ │ ├── ic_repeat_one_song_vector.xml │ │ ├── ic_repeat_playlist_vector.xml │ │ └── ic_shuffle_vector.xml │ │ ├── layout-land │ │ └── item_playlist.xml │ │ ├── layout │ │ ├── activity_albums.xml │ │ ├── activity_equalizer.xml │ │ ├── activity_excluded_folders.xml │ │ ├── activity_main.xml │ │ ├── activity_queue.xml │ │ ├── activity_settings.xml │ │ ├── activity_track.xml │ │ ├── activity_tracks.xml │ │ ├── dialog_change_sorting.xml │ │ ├── dialog_custom_sleep_timer_picker.xml │ │ ├── dialog_export_playlist.xml │ │ ├── dialog_manage_visible_tabs.xml │ │ ├── dialog_new_playlist.xml │ │ ├── dialog_remove_playlist.xml │ │ ├── dialog_rename_song.xml │ │ ├── dialog_select_playlist.xml │ │ ├── equalizer_band.xml │ │ ├── fragment_albums.xml │ │ ├── fragment_artists.xml │ │ ├── fragment_folders.xml │ │ ├── fragment_genres.xml │ │ ├── fragment_playback_speed.xml │ │ ├── fragment_playlists.xml │ │ ├── fragment_tracks.xml │ │ ├── item_album.xml │ │ ├── item_album_header.xml │ │ ├── item_artist.xml │ │ ├── item_excluded_folder.xml │ │ ├── item_folder.xml │ │ ├── item_genre.xml │ │ ├── item_playlist.xml │ │ ├── item_section.xml │ │ ├── item_select_playlist.xml │ │ ├── item_track.xml │ │ ├── item_track_queue.xml │ │ ├── item_transparent.xml │ │ ├── small_radio_button.xml │ │ ├── small_widget.xml │ │ ├── view_current_track_bar.xml │ │ ├── widget.xml │ │ ├── widget_config.xml │ │ └── widget_controls.xml │ │ ├── menu │ │ ├── cab_albums.xml │ │ ├── cab_albums_tracks.xml │ │ ├── cab_artists.xml │ │ ├── cab_folders.xml │ │ ├── cab_genres.xml │ │ ├── cab_playlists.xml │ │ ├── cab_queue.xml │ │ ├── cab_tracks.xml │ │ ├── cab_tracks_header.xml │ │ ├── menu_main.xml │ │ ├── menu_playlist.xml │ │ └── menu_queue.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ ├── ic_launcher_amber.xml │ │ ├── ic_launcher_blue.xml │ │ ├── ic_launcher_blue_grey.xml │ │ ├── ic_launcher_brown.xml │ │ ├── ic_launcher_cyan.xml │ │ ├── ic_launcher_deep_orange.xml │ │ ├── ic_launcher_deep_purple.xml │ │ ├── ic_launcher_green.xml │ │ ├── ic_launcher_grey_black.xml │ │ ├── ic_launcher_indigo.xml │ │ ├── ic_launcher_light_blue.xml │ │ ├── ic_launcher_light_green.xml │ │ ├── ic_launcher_lime.xml │ │ ├── ic_launcher_pink.xml │ │ ├── ic_launcher_purple.xml │ │ ├── ic_launcher_red.xml │ │ ├── ic_launcher_teal.xml │ │ └── ic_launcher_yellow.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_amber.png │ │ ├── ic_launcher_blue.png │ │ ├── ic_launcher_blue_grey.png │ │ ├── ic_launcher_brown.png │ │ ├── ic_launcher_cyan.png │ │ ├── ic_launcher_deep_orange.png │ │ ├── ic_launcher_deep_purple.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_green.png │ │ ├── ic_launcher_grey_black.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_light_blue.png │ │ ├── ic_launcher_light_green.png │ │ ├── ic_launcher_lime.png │ │ ├── ic_launcher_pink.png │ │ ├── ic_launcher_purple.png │ │ ├── ic_launcher_red.png │ │ ├── ic_launcher_teal.png │ │ └── ic_launcher_yellow.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_amber.png │ │ ├── ic_launcher_blue.png │ │ ├── ic_launcher_blue_grey.png │ │ ├── ic_launcher_brown.png │ │ ├── ic_launcher_cyan.png │ │ ├── ic_launcher_deep_orange.png │ │ ├── ic_launcher_deep_purple.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_green.png │ │ ├── ic_launcher_grey_black.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_light_blue.png │ │ ├── ic_launcher_light_green.png │ │ ├── ic_launcher_lime.png │ │ ├── ic_launcher_pink.png │ │ ├── ic_launcher_purple.png │ │ ├── ic_launcher_red.png │ │ ├── ic_launcher_teal.png │ │ └── ic_launcher_yellow.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_amber.png │ │ ├── ic_launcher_blue.png │ │ ├── ic_launcher_blue_grey.png │ │ ├── ic_launcher_brown.png │ │ ├── ic_launcher_cyan.png │ │ ├── ic_launcher_deep_orange.png │ │ ├── ic_launcher_deep_purple.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_green.png │ │ ├── ic_launcher_grey_black.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_light_blue.png │ │ ├── ic_launcher_light_green.png │ │ ├── ic_launcher_lime.png │ │ ├── ic_launcher_pink.png │ │ ├── ic_launcher_purple.png │ │ ├── ic_launcher_red.png │ │ ├── ic_launcher_teal.png │ │ └── ic_launcher_yellow.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_amber.png │ │ ├── ic_launcher_blue.png │ │ ├── ic_launcher_blue_grey.png │ │ ├── ic_launcher_brown.png │ │ ├── ic_launcher_cyan.png │ │ ├── ic_launcher_deep_orange.png │ │ ├── ic_launcher_deep_purple.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_green.png │ │ ├── ic_launcher_grey_black.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_light_blue.png │ │ ├── ic_launcher_light_green.png │ │ ├── ic_launcher_lime.png │ │ ├── ic_launcher_pink.png │ │ ├── ic_launcher_purple.png │ │ ├── ic_launcher_red.png │ │ ├── ic_launcher_teal.png │ │ └── ic_launcher_yellow.png │ │ ├── raw │ │ └── playpause.json │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-az │ │ └── strings.xml │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-da │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-eo │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-et │ │ └── strings.xml │ │ ├── values-eu │ │ └── strings.xml │ │ ├── values-fa │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-gl │ │ └── strings.xml │ │ ├── values-hr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-is │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-iw │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-ko-rKR │ │ └── strings.xml │ │ ├── values-land │ │ └── dimens.xml │ │ ├── values-lt │ │ └── strings.xml │ │ ├── values-ml │ │ └── strings.xml │ │ ├── values-ms │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-nn │ │ └── strings.xml │ │ ├── values-pa-rPK │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-sl │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-th │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── donottranslate.xml │ │ ├── drawables.xml │ │ ├── integers.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ ├── automotive_app_desc.xml │ │ ├── provider_paths.xml │ │ ├── searchable.xml │ │ └── widget_info.xml │ └── prepaid │ └── res │ └── values │ └── bools.xml ├── build.gradle.kts ├── fastlane ├── Appfile ├── Fastfile └── metadata │ └── android │ ├── ar │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_ar.jpeg │ │ │ ├── 2_ar.jpeg │ │ │ ├── 3_ar.jpeg │ │ │ └── 4_ar.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_ar.jpeg │ │ │ └── 2_ar.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_ar.jpeg │ │ │ └── 2_ar.jpeg │ ├── short_description.txt │ └── title.txt │ ├── az-AZ │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── bg │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ca │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── cs-CZ │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── de-DE │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_de-DE.jpeg │ │ │ ├── 2_de-DE.jpeg │ │ │ ├── 3_de-DE.jpeg │ │ │ └── 4_de-DE.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_de-DE.jpeg │ │ │ └── 2_de-DE.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_de-DE.jpeg │ │ │ └── 2_de-DE.jpeg │ ├── short_description.txt │ └── title.txt │ ├── el-GR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── en-GB │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.jpeg │ │ ├── icon.png │ │ ├── phoneScreenshots │ │ │ ├── 1_en-GB.jpeg │ │ │ ├── 2_en-GB.jpeg │ │ │ ├── 3_en-GB.jpeg │ │ │ └── 4_en-GB.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_en-GB.jpeg │ │ │ └── 2_en-GB.jpeg │ │ ├── tenInchScreenshots │ │ │ ├── 1_en-GB.jpeg │ │ │ └── 2_en-GB.jpeg │ │ └── tvBanner.png │ ├── short_description.txt │ └── title.txt │ ├── en-IN │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── en-US │ ├── changelogs │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 106.txt │ │ ├── 107.txt │ │ ├── 108.txt │ │ ├── 109.txt │ │ ├── 110.txt │ │ ├── 111.txt │ │ ├── 112.txt │ │ ├── 113.txt │ │ ├── 114.txt │ │ ├── 116.txt │ │ ├── 117.txt │ │ ├── 118.txt │ │ └── 119.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.jpeg │ │ ├── icon.png │ │ ├── phoneScreenshots │ │ │ ├── 1_en-US.jpeg │ │ │ ├── 2_en-US.jpeg │ │ │ ├── 3_en-US.jpeg │ │ │ └── 4_en-US.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_en-US.jpeg │ │ │ └── 2_en-US.jpeg │ │ ├── tenInchScreenshots │ │ │ ├── 1_en-US.jpeg │ │ │ └── 2_en-US.jpeg │ │ └── tvBanner.png │ ├── short_description.txt │ └── title.txt │ ├── es-419 │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_es-419.jpeg │ │ │ ├── 2_es-419.jpeg │ │ │ ├── 3_es-419.jpeg │ │ │ └── 4_es-419.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_es-419.jpeg │ │ │ └── 2_es-419.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_es-419.jpeg │ │ │ └── 2_es-419.jpeg │ ├── short_description.txt │ └── title.txt │ ├── es-ES │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_es-ES.jpeg │ │ │ ├── 2_es-ES.jpeg │ │ │ ├── 3_es-ES.jpeg │ │ │ └── 4_es-ES.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_es-ES.jpeg │ │ │ └── 2_es-ES.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_es-ES.jpeg │ │ │ └── 2_es-ES.jpeg │ ├── short_description.txt │ └── title.txt │ ├── es-US │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_es-US.jpeg │ │ │ ├── 2_es-US.jpeg │ │ │ ├── 3_es-US.jpeg │ │ │ └── 4_es-US.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_es-US.jpeg │ │ │ └── 2_es-US.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_es-US.jpeg │ │ │ └── 2_es-US.jpeg │ ├── short_description.txt │ └── title.txt │ ├── et │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── eu-ES │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── fi-FI │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── fr-FR │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_fr-FR.jpeg │ │ │ ├── 2_fr-FR.jpeg │ │ │ ├── 3_fr-FR.jpeg │ │ │ └── 4_fr-FR.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_fr-FR.jpeg │ │ │ └── 2_fr-FR.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_fr-FR.jpeg │ │ │ └── 2_fr-FR.jpeg │ ├── short_description.txt │ └── title.txt │ ├── gl-ES │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── hi-IN │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_hi-IN.jpeg │ │ │ ├── 2_hi-IN.jpeg │ │ │ ├── 3_hi-IN.jpeg │ │ │ └── 4_hi-IN.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_hi-IN.jpeg │ │ │ └── 2_hi-IN.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_hi-IN.jpeg │ │ │ └── 2_hi-IN.jpeg │ ├── short_description.txt │ └── title.txt │ ├── hr │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── hu-HU │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── id │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_id.jpeg │ │ │ ├── 2_id.jpeg │ │ │ ├── 3_id.jpeg │ │ │ └── 4_id.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_id.jpeg │ │ │ └── 2_id.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_id.jpeg │ │ │ └── 2_id.jpeg │ ├── short_description.txt │ └── title.txt │ ├── it-IT │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_it-IT.jpeg │ │ │ ├── 2_it-IT.jpeg │ │ │ ├── 3_it-IT.jpeg │ │ │ └── 4_it-IT.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_it-IT.jpeg │ │ │ └── 2_it-IT.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_it-IT.jpeg │ │ │ └── 2_it-IT.jpeg │ ├── short_description.txt │ └── title.txt │ ├── iw-IL │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ja-JP │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_ja-JP.jpeg │ │ │ ├── 2_ja-JP.jpeg │ │ │ ├── 3_ja-JP.jpeg │ │ │ └── 4_ja-JP.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_ja-JP.jpeg │ │ │ └── 2_ja-JP.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_ja-JP.jpeg │ │ │ └── 2_ja-JP.jpeg │ ├── short_description.txt │ └── title.txt │ ├── ko-KR │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_ko-KR.jpeg │ │ │ ├── 2_ko-KR.jpeg │ │ │ ├── 3_ko-KR.jpeg │ │ │ └── 4_ko-KR.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_ko-KR.jpeg │ │ │ └── 2_ko-KR.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_ko-KR.jpeg │ │ │ └── 2_ko-KR.jpeg │ ├── short_description.txt │ └── title.txt │ ├── lt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── nl-NL │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── no-NO │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── pa │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── pl-PL │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_pl-PL.jpeg │ │ │ ├── 2_pl-PL.jpeg │ │ │ ├── 3_pl-PL.jpeg │ │ │ └── 4_pl-PL.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_pl-PL.jpeg │ │ │ └── 2_pl-PL.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_pl-PL.jpeg │ │ │ └── 2_pl-PL.jpeg │ ├── short_description.txt │ └── title.txt │ ├── pt-BR │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_pt-BR.jpeg │ │ │ ├── 2_pt-BR.jpeg │ │ │ ├── 3_pt-BR.jpeg │ │ │ └── 4_pt-BR.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_pt-BR.jpeg │ │ │ └── 2_pt-BR.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_pt-BR.jpeg │ │ │ └── 2_pt-BR.jpeg │ ├── short_description.txt │ └── title.txt │ ├── pt-PT │ ├── full_description.txt │ ├── images │ │ ├── icon.png │ │ ├── phoneScreenshots │ │ │ ├── 1_pt-PT.jpeg │ │ │ ├── 2_pt-PT.jpeg │ │ │ ├── 3_pt-PT.jpeg │ │ │ └── 4_pt-PT.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_pt-PT.jpeg │ │ │ └── 2_pt-PT.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_pt-PT.jpeg │ │ │ └── 2_pt-PT.jpeg │ ├── short_description.txt │ └── title.txt │ ├── ro │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ru-RU │ ├── full_description.txt │ ├── images │ │ ├── icon.jpeg │ │ ├── phoneScreenshots │ │ │ ├── 1_ru-RU.jpeg │ │ │ ├── 2_ru-RU.jpeg │ │ │ ├── 3_ru-RU.jpeg │ │ │ └── 4_ru-RU.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_ru-RU.jpeg │ │ │ └── 2_ru-RU.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_ru-RU.jpeg │ │ │ └── 2_ru-RU.jpeg │ ├── short_description.txt │ └── title.txt │ ├── sk │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── sl │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── sr │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── sv-SE │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── tr-TR │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1_tr-TR.jpeg │ │ │ ├── 2_tr-TR.jpeg │ │ │ ├── 3_tr-TR.jpeg │ │ │ └── 4_tr-TR.jpeg │ │ ├── sevenInchScreenshots │ │ │ ├── 1_tr-TR.jpeg │ │ │ └── 2_tr-TR.jpeg │ │ └── tenInchScreenshots │ │ │ ├── 1_tr-TR.jpeg │ │ │ └── 2_tr-TR.jpeg │ ├── short_description.txt │ └── title.txt │ ├── uk │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── zh-CN │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ └── zh-TW │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── graphics ├── app_icon.png ├── featureGraphic.jpg ├── featureGraphic.xcf ├── icon.png ├── icon_orange.png ├── icon_purple.png ├── promo_graphic.png ├── square.png ├── square.xcf └── tv_banner.png ├── keystore.properties_sample └── settings.gradle.kts /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig 2 | # http://EditorConfig.org 3 | 4 | # top-most EditorConfig file 5 | root = true 6 | 7 | # LF end-of-line, insert an empty new line and UTF-8 8 | [*] 9 | end_of_line = lf 10 | insert_final_newline = true 11 | charset = utf-8 12 | indent_style = space 13 | indent_size = 4 14 | continuation_indent_size = 4 15 | max_line_length = 160 16 | 17 | [*.xml] 18 | continuation_indent_size = 4 19 | 20 | [*.kt] 21 | ij_kotlin_name_count_to_use_star_import = 5 22 | ij_kotlin_name_count_to_use_star_import_for_members = 5 23 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [tibbi] 2 | patreon: tiborkaputa 3 | custom: ["https://www.paypal.me/simplemobiletools"] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | *.aab 3 | .gradle 4 | /local.properties 5 | /.idea/ 6 | .DS_Store 7 | /build 8 | /captures 9 | keystore.jks 10 | keystore.properties 11 | fastlane/fastlane.json 12 | Gemfile 13 | Gemfile.lock 14 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ### Reporting 2 | Before you report something, read the reporting rules [here](https://github.com/SimpleMobileTools/General-Discussion#how-do-i-suggest-an-improvement-ask-a-question-or-report-an-issue) please. 3 | 4 | ### Contributing as a developer 5 | Some instructions about code style and everything that has to be done to increase the chance of your code getting accepted can be found at the [General Discussion](https://github.com/SimpleMobileTools/General-Discussion#contribution-rules-for-developers) section. 6 | 7 | ### Contributing as a non developer 8 | In case you just want to for example improve a translation, you can find the way of doing it [here](https://github.com/SimpleMobileTools/General-Discussion#how-can-i-suggest-an-edit-to-a-file). 9 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Custom serializable 2 | -keepclassmembers class * implements java.io.Serializable { 3 | static final long serialVersionUID; 4 | java.lang.Object writeReplace(); 5 | java.lang.Object readResolve(); 6 | private static final java.io.ObjectStreamField[] serialPersistentFields; 7 | private ; 8 | public ; 9 | } 10 | 11 | # Gson uses generic type information stored in a class file when working with 12 | # fields. Proguard removes such information by default, keep it. 13 | -keepattributes Signature 14 | # This is also needed for R8 in compat mode since multiple optimizations will 15 | # remove the generic signature such as class merging and argument removal. 16 | -keep class com.google.gson.reflect.TypeToken { *; } 17 | -keep class * extends com.google.gson.reflect.TypeToken 18 | 19 | # EventBus 20 | -keepattributes *Annotation* 21 | -keepclassmembers class ** { 22 | @org.greenrobot.eventbus.Subscribe ; 23 | } 24 | -keep enum org.greenrobot.eventbus.ThreadMode { *; } 25 | -------------------------------------------------------------------------------- /app/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Music Player_debug 4 | -------------------------------------------------------------------------------- /app/src/fdroid/res/values/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | true 5 | true 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/App.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer 2 | 3 | import android.app.Application 4 | import androidx.lifecycle.DefaultLifecycleObserver 5 | import androidx.lifecycle.LifecycleOwner 6 | import androidx.lifecycle.ProcessLifecycleOwner 7 | import com.simplemobiletools.commons.extensions.checkUseEnglish 8 | import com.simplemobiletools.musicplayer.helpers.SimpleMediaController 9 | 10 | class App : Application() { 11 | override fun onCreate() { 12 | super.onCreate() 13 | checkUseEnglish() 14 | initController() 15 | } 16 | 17 | private fun initController() { 18 | SimpleMediaController.getInstance(applicationContext).createControllerAsync() 19 | ProcessLifecycleOwner.get().lifecycle.addObserver( 20 | object : DefaultLifecycleObserver { 21 | override fun onStop(owner: LifecycleOwner) { 22 | SimpleMediaController.destroyInstance() 23 | } 24 | } 25 | ) 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/activities/SimpleActivity.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.activities 2 | 3 | import com.simplemobiletools.commons.activities.BaseSimpleActivity 4 | import com.simplemobiletools.musicplayer.R 5 | 6 | open class SimpleActivity : BaseSimpleActivity() { 7 | override fun getAppIconIDs() = arrayListOf( 8 | R.mipmap.ic_launcher_red, 9 | R.mipmap.ic_launcher_pink, 10 | R.mipmap.ic_launcher_purple, 11 | R.mipmap.ic_launcher_deep_purple, 12 | R.mipmap.ic_launcher_indigo, 13 | R.mipmap.ic_launcher_blue, 14 | R.mipmap.ic_launcher_light_blue, 15 | R.mipmap.ic_launcher_cyan, 16 | R.mipmap.ic_launcher_teal, 17 | R.mipmap.ic_launcher_green, 18 | R.mipmap.ic_launcher_light_green, 19 | R.mipmap.ic_launcher_lime, 20 | R.mipmap.ic_launcher_yellow, 21 | R.mipmap.ic_launcher_amber, 22 | R.mipmap.ic_launcher, 23 | R.mipmap.ic_launcher_deep_orange, 24 | R.mipmap.ic_launcher_brown, 25 | R.mipmap.ic_launcher_blue_grey, 26 | R.mipmap.ic_launcher_grey_black 27 | ) 28 | 29 | override fun getAppLauncherName() = getString(R.string.app_launcher_name) 30 | } 31 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/activities/SplashActivity.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.activities 2 | 3 | import android.content.Intent 4 | import com.simplemobiletools.commons.activities.BaseSplashActivity 5 | 6 | class SplashActivity : BaseSplashActivity() { 7 | override fun initActivity() { 8 | startActivity(Intent(this, MainActivity::class.java)) 9 | finish() 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/dialogs/RemovePlaylistDialog.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.dialogs 2 | 3 | import android.app.Activity 4 | import com.simplemobiletools.commons.extensions.getAlertDialogBuilder 5 | import com.simplemobiletools.commons.extensions.setupDialogStuff 6 | import com.simplemobiletools.commons.extensions.viewBinding 7 | import com.simplemobiletools.musicplayer.R 8 | import com.simplemobiletools.musicplayer.databinding.DialogRemovePlaylistBinding 9 | import com.simplemobiletools.musicplayer.models.Playlist 10 | 11 | class RemovePlaylistDialog(val activity: Activity, val playlist: Playlist? = null, val callback: (deleteFiles: Boolean) -> Unit) { 12 | private val binding by activity.viewBinding(DialogRemovePlaylistBinding::inflate) 13 | 14 | init { 15 | binding.removePlaylistDescription.text = getDescriptionText() 16 | activity.getAlertDialogBuilder() 17 | .setPositiveButton(com.simplemobiletools.commons.R.string.ok) { _, _ -> callback(binding.removePlaylistCheckbox.isChecked) } 18 | .setNegativeButton(com.simplemobiletools.commons.R.string.cancel, null) 19 | .apply { 20 | activity.setupDialogStuff(binding.root, this, R.string.remove_playlist) 21 | } 22 | } 23 | 24 | private fun getDescriptionText(): String { 25 | return if (playlist == null) { 26 | activity.getString(R.string.remove_playlist_description) 27 | } else 28 | String.format(activity.resources.getString(R.string.remove_playlist_description_placeholder), playlist.title) 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/dialogs/SleepTimerCustomDialog.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.dialogs 2 | 3 | import android.app.Activity 4 | import androidx.appcompat.app.AlertDialog 5 | import com.simplemobiletools.commons.extensions.* 6 | import com.simplemobiletools.musicplayer.R 7 | import com.simplemobiletools.musicplayer.databinding.DialogCustomSleepTimerPickerBinding 8 | 9 | class SleepTimerCustomDialog(val activity: Activity, val callback: (seconds: Int) -> Unit) { 10 | private var dialog: AlertDialog? = null 11 | private val binding by activity.viewBinding(DialogCustomSleepTimerPickerBinding::inflate) 12 | 13 | init { 14 | binding.minutesHint.hint = activity.getString(com.simplemobiletools.commons.R.string.minutes_raw).replaceFirstChar { it.uppercaseChar() } 15 | activity.getAlertDialogBuilder() 16 | .setPositiveButton(com.simplemobiletools.commons.R.string.ok) { _, _ -> dialogConfirmed() } 17 | .setNegativeButton(com.simplemobiletools.commons.R.string.cancel, null) 18 | .apply { 19 | activity.setupDialogStuff(binding.root, this, com.simplemobiletools.commons.R.string.sleep_timer) { alertDialog -> 20 | dialog = alertDialog 21 | alertDialog.showKeyboard(binding.minutes) 22 | } 23 | } 24 | } 25 | 26 | private fun dialogConfirmed() { 27 | val value = binding.minutes.value 28 | val minutes = Integer.valueOf(value.ifEmpty { "0" }) 29 | callback(minutes * 60) 30 | activity.hideKeyboard() 31 | dialog?.dismiss() 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/extensions/Future.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.extensions 2 | 3 | import com.google.common.util.concurrent.ListenableFuture 4 | import java.util.concurrent.CancellationException 5 | import java.util.concurrent.ExecutionException 6 | import java.util.concurrent.TimeUnit 7 | import java.util.concurrent.TimeoutException 8 | 9 | fun ListenableFuture.getOrNull(timeout: Long = 15000L, unit: TimeUnit = TimeUnit.MILLISECONDS) = try { 10 | get(timeout, unit) as T 11 | } catch (e: CancellationException) { 12 | null 13 | } catch (e: ExecutionException) { 14 | null 15 | } catch (e: TimeoutException) { 16 | null 17 | } 18 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/extensions/Looper.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.extensions 2 | 3 | import android.os.Handler 4 | import android.os.Looper 5 | 6 | fun Looper.post(callback: () -> Unit) = Handler(this).post(callback) 7 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/extensions/LottieAnimationView.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.extensions 2 | 3 | import android.graphics.PorterDuff 4 | import android.graphics.PorterDuffColorFilter 5 | import com.airbnb.lottie.LottieAnimationView 6 | import com.airbnb.lottie.LottieProperty 7 | import com.airbnb.lottie.model.KeyPath 8 | 9 | fun LottieAnimationView.updatePlayPauseIcon(isPlaying: Boolean, color: Int) { 10 | val wasNull = tag == null 11 | if (tag != isPlaying) { 12 | speed = if (isPlaying) 2.5f else -2.5f 13 | 14 | if (wasNull) { 15 | progress = if (isPlaying) 1f else 0f 16 | } else { 17 | playAnimation() 18 | } 19 | 20 | tag = isPlaying 21 | } 22 | 23 | addValueCallback( 24 | KeyPath("**"), 25 | LottieProperty.COLOR_FILTER 26 | ) { PorterDuffColorFilter(color, PorterDuff.Mode.SRC_IN) } 27 | } 28 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/extensions/MediaController.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.extensions 2 | 3 | import android.os.Bundle 4 | import androidx.media3.session.MediaController 5 | import com.simplemobiletools.musicplayer.playback.CustomCommands 6 | 7 | fun MediaController.sendCommand(command: CustomCommands, extras: Bundle = Bundle.EMPTY) = sendCustomCommand(command.sessionCommand, extras) 8 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/extensions/MutableList.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.extensions 2 | 3 | fun MutableList.sortSafely(comparator: Comparator) { 4 | try { 5 | sortWith(comparator) 6 | } catch (ignored: Exception) { 7 | } 8 | } 9 | 10 | fun MutableList.swap(index1: Int, index2: Int) { 11 | this[index1] = this[index2].also { 12 | this[index2] = this[index1] 13 | } 14 | } 15 | 16 | fun MutableList.move(currentIndex: Int, newIndex: Int) { 17 | val itemToMove = removeAt(currentIndex) 18 | if (currentIndex > newIndex) { 19 | add(newIndex, itemToMove) 20 | } else { 21 | add(newIndex - 1, itemToMove) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/extensions/RecyclerView.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.extensions 2 | 3 | import androidx.recyclerview.widget.LinearLayoutManager 4 | import androidx.recyclerview.widget.RecyclerView 5 | 6 | fun RecyclerView.lazySmoothScroll(scrollToPosition: Int) { 7 | val layoutManager = layoutManager 8 | if (layoutManager is LinearLayoutManager) { 9 | if (scrollToPosition in layoutManager.findFirstCompletelyVisibleItemPosition()..layoutManager.findLastCompletelyVisibleItemPosition()) { 10 | return 11 | } 12 | } 13 | 14 | if (scrollToPosition > 100) { 15 | post { 16 | scrollToPosition(scrollToPosition - 25) 17 | smoothScrollToPosition(scrollToPosition) 18 | } 19 | } else { 20 | smoothScrollToPosition(scrollToPosition) 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/extensions/Resources.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.extensions 2 | 3 | import android.content.res.Resources 4 | import android.graphics.Bitmap 5 | import android.graphics.drawable.BitmapDrawable 6 | import android.graphics.drawable.Drawable 7 | import com.simplemobiletools.commons.extensions.applyColorFilter 8 | import com.simplemobiletools.musicplayer.R 9 | 10 | fun Resources.getSmallPlaceholder(color: Int): Drawable { 11 | val placeholder = getDrawable(R.drawable.ic_headset_padded) 12 | val resized = resizeDrawable(placeholder, getDimension(R.dimen.song_image_size).toInt()) 13 | resized.applyColorFilter(color) 14 | return resized 15 | } 16 | 17 | fun Resources.getBiggerPlaceholder(color: Int): Drawable { 18 | val placeholder = getDrawable(R.drawable.ic_headset) 19 | val resized = resizeDrawable(placeholder, getDimension(R.dimen.artist_image_size).toInt()) 20 | resized.applyColorFilter(color) 21 | return resized 22 | } 23 | 24 | fun Resources.resizeDrawable(drawable: Drawable, size: Int): Drawable { 25 | val bitmap = (drawable as BitmapDrawable).bitmap 26 | val bitmapResized = Bitmap.createScaledBitmap(bitmap, size, size, false) 27 | return BitmapDrawable(this, bitmapResized) 28 | } 29 | 30 | private var coverArtHeight: Int = 0 31 | fun Resources.getCoverArtHeight(): Int { 32 | return if (coverArtHeight == 0) { 33 | getDimension(R.dimen.top_art_height).toInt() 34 | } else { 35 | coverArtHeight 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/extensions/View.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.extensions 2 | 3 | import android.view.View 4 | import androidx.viewbinding.ViewBinding 5 | 6 | inline fun View.viewBinding(crossinline bind: (View) -> T) = 7 | lazy(LazyThreadSafetyMode.NONE) { 8 | bind(this) 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/fragments/MyViewPagerFragment.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.fragments 2 | 3 | import android.content.Context 4 | import android.util.AttributeSet 5 | import android.widget.RelativeLayout 6 | import com.simplemobiletools.commons.activities.BaseSimpleActivity 7 | import com.simplemobiletools.musicplayer.activities.SimpleActivity 8 | import com.simplemobiletools.musicplayer.activities.SimpleControllerActivity 9 | import com.simplemobiletools.musicplayer.models.Track 10 | 11 | abstract class MyViewPagerFragment(context: Context, attributeSet: AttributeSet) : RelativeLayout(context, attributeSet) { 12 | abstract fun setupFragment(activity: BaseSimpleActivity) 13 | 14 | abstract fun finishActMode() 15 | 16 | abstract fun onSearchQueryChanged(text: String) 17 | 18 | abstract fun onSearchClosed() 19 | 20 | abstract fun onSortOpen(activity: SimpleActivity) 21 | 22 | abstract fun setupColors(textColor: Int, adjustedPrimaryColor: Int) 23 | 24 | fun prepareAndPlay(tracks: List, startIndex: Int = 0, startPositionMs: Long = 0, startActivity: Boolean = true) { 25 | (context as SimpleControllerActivity).prepareAndPlay(tracks, startIndex, startPositionMs, startActivity) 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/helpers/PlaybackSetting.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.helpers 2 | 3 | import androidx.annotation.DrawableRes 4 | import androidx.annotation.StringRes 5 | import com.simplemobiletools.musicplayer.R 6 | 7 | enum class PlaybackSetting( 8 | @DrawableRes val iconRes: Int, 9 | @StringRes val descriptionStringRes: Int 10 | ) { 11 | REPEAT_OFF( 12 | iconRes = R.drawable.ic_repeat_playlist_vector, 13 | descriptionStringRes = R.string.repeat_off 14 | ), 15 | REPEAT_PLAYLIST( 16 | iconRes = R.drawable.ic_repeat_playlist_vector, 17 | descriptionStringRes = R.string.repeat_playlist 18 | ), 19 | REPEAT_TRACK( 20 | iconRes = R.drawable.ic_repeat_one_song_vector, 21 | descriptionStringRes = R.string.repeat_song 22 | ), 23 | STOP_AFTER_CURRENT_TRACK( 24 | iconRes = R.drawable.ic_play_one_song_vector, 25 | descriptionStringRes = R.string.stop_playback_after_current_song 26 | ); 27 | 28 | val contentDescriptionStringRes: Int 29 | @StringRes get() = nextPlaybackOption.descriptionStringRes 30 | 31 | val nextPlaybackOption: PlaybackSetting 32 | get() = when (this) { 33 | REPEAT_OFF -> REPEAT_PLAYLIST 34 | REPEAT_PLAYLIST -> REPEAT_TRACK 35 | REPEAT_TRACK -> STOP_AFTER_CURRENT_TRACK 36 | STOP_AFTER_CURRENT_TRACK -> REPEAT_OFF 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/inlines/Int.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.inlines 2 | 3 | inline fun Collection.indexOfFirstOrNull(predicate: (T) -> Boolean): Int? { 4 | for ((index, item) in this.withIndex()) { 5 | if (predicate(item)) 6 | return index 7 | } 8 | return null 9 | } 10 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/interfaces/AlbumsDao.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.interfaces 2 | 3 | import androidx.room.* 4 | import com.simplemobiletools.musicplayer.models.Album 5 | 6 | @Dao 7 | interface AlbumsDao { 8 | @Insert(onConflict = OnConflictStrategy.REPLACE) 9 | fun insert(album: Album): Long 10 | 11 | @Insert(onConflict = OnConflictStrategy.REPLACE) 12 | fun insertAll(albums: List) 13 | 14 | @Query("SELECT * FROM albums") 15 | fun getAll(): List 16 | 17 | @Query("SELECT * FROM albums WHERE id = :id") 18 | fun getAlbumWithId(id: Long): Album? 19 | 20 | @Query("SELECT * FROM albums WHERE artist_id = :artistId") 21 | fun getArtistAlbums(artistId: Long): List 22 | 23 | @Query("DELETE FROM albums WHERE id = :id") 24 | fun deleteAlbum(id: Long) 25 | } 26 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/interfaces/ArtistsDao.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.interfaces 2 | 3 | import androidx.room.* 4 | import com.simplemobiletools.musicplayer.models.Artist 5 | 6 | @Dao 7 | interface ArtistsDao { 8 | @Insert(onConflict = OnConflictStrategy.REPLACE) 9 | fun insert(artist: Artist): Long 10 | 11 | @Insert(onConflict = OnConflictStrategy.REPLACE) 12 | fun insertAll(artists: List) 13 | 14 | @Query("SELECT * FROM artists") 15 | fun getAll(): List 16 | 17 | @Query("DELETE FROM artists WHERE id = :id") 18 | fun deleteArtist(id: Long) 19 | } 20 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/interfaces/GenresDao.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.interfaces 2 | 3 | import androidx.room.* 4 | import com.simplemobiletools.musicplayer.models.Genre 5 | 6 | @Dao 7 | interface GenresDao { 8 | @Insert(onConflict = OnConflictStrategy.REPLACE) 9 | fun insert(genre: Genre): Long 10 | 11 | @Query("SELECT * FROM genres") 12 | fun getAll(): List 13 | 14 | @Query("DELETE FROM genres WHERE id = :id") 15 | fun deleteGenre(id: Long) 16 | } 17 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/interfaces/PlaybackSpeedListener.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.interfaces 2 | 3 | interface PlaybackSpeedListener { 4 | fun updatePlaybackSpeed(speed: Float) 5 | } 6 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/interfaces/PlaylistsDao.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.interfaces 2 | 3 | import androidx.room.* 4 | import com.simplemobiletools.musicplayer.models.Playlist 5 | 6 | @Dao 7 | interface PlaylistsDao { 8 | @Insert(onConflict = OnConflictStrategy.REPLACE) 9 | fun insert(playlist: Playlist): Long 10 | 11 | @Delete 12 | fun deletePlaylists(playlists: List) 13 | 14 | @Query("SELECT * FROM playlists") 15 | fun getAll(): List 16 | 17 | @Query("SELECT * FROM playlists WHERE title = :title COLLATE NOCASE") 18 | fun getPlaylistWithTitle(title: String): Playlist? 19 | 20 | @Query("SELECT * FROM playlists WHERE id = :id") 21 | fun getPlaylistWithId(id: Int): Playlist? 22 | 23 | @Update 24 | fun update(playlist: Playlist) 25 | } 26 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/interfaces/QueueItemsDao.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.interfaces 2 | 3 | import androidx.room.Dao 4 | import androidx.room.Insert 5 | import androidx.room.OnConflictStrategy 6 | import androidx.room.Query 7 | import com.simplemobiletools.musicplayer.models.QueueItem 8 | 9 | @Dao 10 | interface QueueItemsDao { 11 | @Insert(onConflict = OnConflictStrategy.REPLACE) 12 | fun insertAll(queueItems: List) 13 | 14 | @Query("SELECT * FROM queue_items ORDER BY track_order") 15 | fun getAll(): List 16 | 17 | @Query("UPDATE queue_items SET is_current = 0") 18 | fun resetCurrent() 19 | 20 | @Query("SELECT * FROM queue_items WHERE is_current = 1") 21 | fun getCurrent(): QueueItem? 22 | 23 | @Query("UPDATE queue_items SET is_current = 1 WHERE track_id = :trackId") 24 | fun saveCurrentTrack(trackId: Long) 25 | 26 | @Query("UPDATE queue_items SET is_current = 1, last_position = :lastPosition WHERE track_id = :trackId") 27 | fun saveCurrentTrackProgress(trackId: Long, lastPosition: Int) 28 | 29 | @Query("UPDATE queue_items SET track_order = :order WHERE track_id = :trackId") 30 | fun setOrder(trackId: Long, order: Int) 31 | 32 | @Query("DELETE FROM queue_items WHERE track_id = :trackId") 33 | fun removeQueueItem(trackId: Long) 34 | 35 | @Query("DELETE FROM queue_items") 36 | fun deleteAllItems() 37 | } 38 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/models/AlbumHeader.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.models 2 | 3 | data class AlbumHeader(val id: Long, val title: String, val coverArt: Any, val year: Int, val trackCnt: Int, val duration: Int, val artist: String) : ListItem() 4 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/models/AlbumSection.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.models 2 | 3 | data class AlbumSection(val title: String) : ListItem() 4 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/models/Events.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.models 2 | 3 | class Events { 4 | class SleepTimerChanged(val seconds: Int) 5 | class PlaylistsUpdated 6 | class RefreshFragments 7 | class RefreshTracks 8 | } 9 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/models/Folder.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.models 2 | 3 | import com.simplemobiletools.commons.helpers.AlphanumericComparator 4 | import com.simplemobiletools.commons.helpers.SORT_DESCENDING 5 | import com.simplemobiletools.musicplayer.extensions.sortSafely 6 | import com.simplemobiletools.musicplayer.helpers.PLAYER_SORT_BY_TITLE 7 | 8 | data class Folder(val title: String, val trackCount: Int, val path: String) { 9 | companion object { 10 | fun getComparator(sorting: Int) = Comparator { first, second -> 11 | var result = when { 12 | sorting and PLAYER_SORT_BY_TITLE != 0 -> AlphanumericComparator().compare(first.title.lowercase(), second.title.lowercase()) 13 | else -> first.trackCount.compareTo(second.trackCount) 14 | } 15 | 16 | if (sorting and SORT_DESCENDING != 0) { 17 | result *= -1 18 | } 19 | 20 | return@Comparator result 21 | } 22 | } 23 | 24 | fun getBubbleText(sorting: Int) = when { 25 | sorting and PLAYER_SORT_BY_TITLE != 0 -> title 26 | else -> trackCount.toString() 27 | } 28 | } 29 | 30 | fun ArrayList.sortSafely(sorting: Int) = sortSafely(Folder.getComparator(sorting)) 31 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/models/Genre.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.models 2 | 3 | import androidx.room.ColumnInfo 4 | import androidx.room.Entity 5 | import androidx.room.Index 6 | import androidx.room.PrimaryKey 7 | import com.simplemobiletools.commons.helpers.AlphanumericComparator 8 | import com.simplemobiletools.commons.helpers.SORT_DESCENDING 9 | import com.simplemobiletools.musicplayer.extensions.sortSafely 10 | import com.simplemobiletools.musicplayer.helpers.PLAYER_SORT_BY_TITLE 11 | 12 | @Entity("genres", indices = [(Index(value = ["id"], unique = true))]) 13 | data class Genre( 14 | @PrimaryKey(autoGenerate = true) var id: Long, 15 | @ColumnInfo(name = "title") val title: String, 16 | @ColumnInfo(name = "track_cnt") var trackCnt: Int, 17 | @ColumnInfo(name = "album_art") var albumArt: String 18 | ) { 19 | companion object { 20 | fun getComparator(sorting: Int) = Comparator { first, second -> 21 | var result = when { 22 | sorting and PLAYER_SORT_BY_TITLE != 0 -> AlphanumericComparator().compare(first.title.lowercase(), second.title.lowercase()) 23 | else -> first.trackCnt.compareTo(second.trackCnt) 24 | } 25 | 26 | if (sorting and SORT_DESCENDING != 0) { 27 | result *= -1 28 | } 29 | 30 | return@Comparator result 31 | } 32 | } 33 | 34 | fun getBubbleText(sorting: Int) = when { 35 | sorting and PLAYER_SORT_BY_TITLE != 0 -> title 36 | else -> trackCnt.toString() 37 | } 38 | } 39 | 40 | fun ArrayList.sortSafely(sorting: Int) = sortSafely(Genre.getComparator(sorting)) 41 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/models/ListItem.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.models 2 | 3 | open class ListItem 4 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/models/Playlist.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.models 2 | 3 | import androidx.room.* 4 | import com.simplemobiletools.commons.helpers.AlphanumericComparator 5 | import com.simplemobiletools.commons.helpers.SORT_DESCENDING 6 | import com.simplemobiletools.musicplayer.extensions.sortSafely 7 | import com.simplemobiletools.musicplayer.helpers.PLAYER_SORT_BY_TITLE 8 | 9 | @Entity(tableName = "playlists", indices = [(Index(value = ["id"], unique = true))]) 10 | data class Playlist( 11 | @PrimaryKey(autoGenerate = true) var id: Int, 12 | @ColumnInfo(name = "title") var title: String, 13 | 14 | @Ignore var trackCount: Int = 0 15 | ) { 16 | constructor() : this(0, "", 0) 17 | 18 | companion object { 19 | fun getComparator(sorting: Int) = Comparator { first, second -> 20 | var result = when { 21 | sorting and PLAYER_SORT_BY_TITLE != 0 -> AlphanumericComparator().compare(first.title.lowercase(), second.title.lowercase()) 22 | else -> first.trackCount.compareTo(second.trackCount) 23 | } 24 | 25 | if (sorting and SORT_DESCENDING != 0) { 26 | result *= -1 27 | } 28 | 29 | return@Comparator result 30 | } 31 | } 32 | 33 | fun getBubbleText(sorting: Int) = when { 34 | sorting and PLAYER_SORT_BY_TITLE != 0 -> title 35 | else -> trackCount.toString() 36 | } 37 | } 38 | 39 | fun ArrayList.sortSafely(sorting: Int) = sortSafely(Playlist.getComparator(sorting)) 40 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/models/QueueItem.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.models 2 | 3 | import androidx.room.ColumnInfo 4 | import androidx.room.Entity 5 | 6 | @Entity(tableName = "queue_items", primaryKeys = ["track_id"]) 7 | data class QueueItem( 8 | @ColumnInfo(name = "track_id") var trackId: Long, 9 | @ColumnInfo(name = "track_order") var trackOrder: Int, 10 | @ColumnInfo(name = "is_current") var isCurrent: Boolean, 11 | @ColumnInfo(name = "last_position") var lastPosition: Int 12 | ) { 13 | companion object { 14 | fun from(id: Long, position: Int = 0): QueueItem { 15 | return QueueItem(id, 0, true, position) 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/objects/MyExecutor.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.objects 2 | 3 | import java.util.concurrent.Executors 4 | 5 | object MyExecutor { 6 | val myExecutor = Executors.newSingleThreadExecutor() 7 | } 8 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/playback/CustomCommands.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.playback 2 | 3 | import android.content.Context 4 | import android.os.Bundle 5 | import androidx.media3.session.CommandButton 6 | import androidx.media3.session.SessionCommand 7 | import com.simplemobiletools.musicplayer.helpers.PATH 8 | 9 | /** 10 | * Enum class representing custom commands that are used within the app and by media controller clients (e.g. system media controls). 11 | */ 12 | enum class CustomCommands(val customAction: String) { 13 | CLOSE_PLAYER(customAction = PATH + "CLOSE_PLAYER"), 14 | RELOAD_CONTENT(customAction = PATH + "RELOAD_CONTENT"), 15 | TOGGLE_SLEEP_TIMER(customAction = PATH + "TOGGLE_SLEEP_TIMER"), 16 | TOGGLE_SKIP_SILENCE(customAction = PATH + "TOGGLE_SKIP_SILENCE"), 17 | SET_NEXT_ITEM(customAction = PATH + "SET_NEXT_ITEM"), 18 | SET_SHUFFLE_ORDER(customAction = PATH + "SET_SHUFFLE_ORDER"); 19 | 20 | val sessionCommand = SessionCommand(customAction, Bundle.EMPTY) 21 | 22 | companion object { 23 | fun fromSessionCommand(sessionCommand: SessionCommand): CustomCommands? { 24 | return values().find { it.customAction == sessionCommand.customAction } 25 | } 26 | } 27 | } 28 | 29 | internal val customCommands = CustomCommands.values().map { it.sessionCommand } 30 | 31 | internal fun Context.getCustomLayout(): List { 32 | return listOf( 33 | CommandButton.Builder() 34 | .setDisplayName(getString(com.simplemobiletools.commons.R.string.close)) 35 | .setSessionCommand(CustomCommands.CLOSE_PLAYER.sessionCommand) 36 | .setIconResId(com.simplemobiletools.commons.R.drawable.ic_cross_vector) 37 | .build() 38 | ) 39 | } 40 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/playback/SleepTimer.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.playback 2 | 3 | import android.os.CountDownTimer 4 | import com.simplemobiletools.musicplayer.extensions.config 5 | import com.simplemobiletools.musicplayer.models.Events 6 | import org.greenrobot.eventbus.EventBus 7 | 8 | private var isActive = false 9 | private var sleepTimer: CountDownTimer? = null 10 | 11 | internal fun PlaybackService.toggleSleepTimer() { 12 | if (isActive) { 13 | stopSleepTimer() 14 | } else { 15 | startSleepTimer() 16 | } 17 | } 18 | 19 | internal fun PlaybackService.startSleepTimer() { 20 | val millisInFuture = config.sleepInTS - System.currentTimeMillis() + 1000L 21 | sleepTimer?.cancel() 22 | sleepTimer = object : CountDownTimer(millisInFuture, 1000) { 23 | override fun onTick(millisUntilFinished: Long) { 24 | val seconds = (millisUntilFinished / 1000).toInt() 25 | EventBus.getDefault().post(Events.SleepTimerChanged(seconds)) 26 | } 27 | 28 | override fun onFinish() { 29 | config.sleepInTS = 0 30 | EventBus.getDefault().post(Events.SleepTimerChanged(0)) 31 | stopSleepTimer() 32 | stopService() 33 | } 34 | } 35 | 36 | sleepTimer?.start() 37 | isActive = true 38 | } 39 | 40 | internal fun PlaybackService.stopSleepTimer() { 41 | sleepTimer?.cancel() 42 | sleepTimer = null 43 | isActive = false 44 | config.sleepInTS = 0 45 | } 46 | -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/musicplayer/views/MarqueeTextView.kt: -------------------------------------------------------------------------------- 1 | package com.simplemobiletools.musicplayer.views 2 | 3 | import android.content.Context 4 | import android.graphics.Rect 5 | import android.text.TextUtils 6 | import android.util.AttributeSet 7 | import android.view.View 8 | import androidx.appcompat.widget.AppCompatTextView 9 | 10 | class MarqueeTextView(context: Context?, attrs: AttributeSet?, defStyleAttr: Int) : AppCompatTextView(context!!, attrs, defStyleAttr), 11 | View.OnLayoutChangeListener { 12 | 13 | constructor(context: Context?) : this(context, null) 14 | 15 | constructor(context: Context?, attrs: AttributeSet?) : this(context, attrs, 0) 16 | 17 | init { 18 | setSingleLine() 19 | ellipsize = TextUtils.TruncateAt.MARQUEE 20 | marqueeRepeatLimit = -1 21 | isSelected = true 22 | addOnLayoutChangeListener(this) 23 | } 24 | 25 | override fun isFocused() = true 26 | 27 | override fun onWindowFocusChanged(hasWindowFocus: Boolean) { 28 | if (hasWindowFocus) super.onWindowFocusChanged(hasWindowFocus) 29 | } 30 | 31 | override fun onFocusChanged(focused: Boolean, direction: Int, previouslyFocusedRect: Rect?) { 32 | if (focused) super.onFocusChanged(focused, direction, previouslyFocusedRect) 33 | } 34 | 35 | override fun onLayoutChange(v: View?, left: Int, top: Int, right: Int, bottom: Int, oldLeft: Int, oldTop: Int, oldRight: Int, oldBottom: Int) { 36 | val layoutParams = layoutParams 37 | layoutParams.height = bottom - top 38 | layoutParams.width = right - left 39 | removeOnLayoutChangeListener(this) 40 | setLayoutParams(layoutParams) 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/drawable-hdpi/ic_headset.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_headset_padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/drawable-hdpi/ic_headset_padded.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_headset_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/drawable-hdpi/ic_headset_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/drawable-mdpi/ic_headset.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/img_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/drawable-nodpi/img_widget_preview.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/drawable-xhdpi/ic_headset.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_headset_padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/drawable-xhdpi/ic_headset_padded.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_headset_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/drawable-xhdpi/ic_headset_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/drawable-xxhdpi/ic_headset.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_headset_padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/drawable-xxhdpi/ic_headset_padded.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_headset_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/drawable-xxhdpi/ic_headset_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/drawable-xxxhdpi/ic_headset.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_headset_padded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/drawable-xxxhdpi/ic_headset_padded.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_headset_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/drawable-xxxhdpi/ic_headset_small.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_album_vector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_equalizer_vector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_folders_vector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_genre_vector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_music_note_vector.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_play_one_song_vector.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_playback_speed_slow_vector.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_playback_speed_vector.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_playlist_vector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_repeat_one_song_vector.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_repeat_playlist_vector.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_shuffle_vector.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/layout-land/item_playlist.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | 26 | 27 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_custom_sleep_timer_picker.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 16 | 17 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_new_playlist.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 16 | 17 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_remove_playlist.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 21 | 22 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /app/src/main/res/layout/equalizer_band.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 17 | 18 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_albums.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 21 | 22 | 26 | 27 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_artists.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 21 | 22 | 26 | 27 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_genres.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 21 | 22 | 26 | 27 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_tracks.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 21 | 22 | 26 | 27 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/src/main/res/layout/item_excluded_folder.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 18 | 19 | 29 | 30 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/src/main/res/layout/item_section.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/layout/item_select_playlist.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /app/src/main/res/layout/item_transparent.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/layout/small_radio_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/layout/small_widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 17 | 18 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /app/src/main/res/layout/widget_controls.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 18 | 19 | 28 | 29 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /app/src/main/res/menu/cab_albums.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 11 | 16 | 21 | 26 | 32 | 33 | -------------------------------------------------------------------------------- /app/src/main/res/menu/cab_artists.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 12 | 17 | 22 | 27 | 33 | 34 | -------------------------------------------------------------------------------- /app/src/main/res/menu/cab_folders.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 12 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/menu/cab_genres.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 11 | 16 | 21 | 26 | 32 | 33 | -------------------------------------------------------------------------------- /app/src/main/res/menu/cab_playlists.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 12 | 18 | 24 | 25 | -------------------------------------------------------------------------------- /app/src/main/res/menu/cab_queue.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 12 | 18 | 23 | 29 | 34 | 35 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_playlist.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 12 | 17 | 22 | 27 | 32 | 33 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_queue.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 12 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_amber.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue_grey.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_brown.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_cyan.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_orange.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_purple.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_grey_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_indigo.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_lime.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_pink.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_teal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_yellow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_amber.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_blue_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_blue_grey.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_brown.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_cyan.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_deep_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_deep_orange.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_deep_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_deep_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_grey_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_grey_black.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_indigo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_light_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_light_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_light_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_lime.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_pink.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_red.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_teal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-hdpi/ic_launcher_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_amber.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_blue_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_blue_grey.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_brown.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_cyan.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_deep_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_deep_orange.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_deep_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_deep_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_grey_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_grey_black.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_indigo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_light_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_light_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_light_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_lime.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_pink.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_red.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_teal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xhdpi/ic_launcher_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_amber.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_blue_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_blue_grey.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_brown.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_cyan.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_orange.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_grey_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_grey_black.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_indigo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_light_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_light_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_light_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_lime.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_pink.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_red.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_teal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_amber.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue_grey.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_brown.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_cyan.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_orange.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_grey_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_grey_black.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_indigo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_lime.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_pink.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_red.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_teal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/values-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 200dp 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 60dp 3 | 400dp 4 | 40dp 5 | 80dp 6 | 160dp 7 | 50dp 8 | 300dp 9 | 36dp 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/values/donottranslate.xml: -------------------------------------------------------------------------------- 1 | 2 | com.simplemobiletools.musicplayer 3 | 4 | 5 | Allow customizing the bottom navigation bar color 6 | 7 | Allow skipping backward/forward by pressing the current/max song progress\n 8 | Allow replacing song title with filename, if title is not available 9 | 10 | Added playlists and the ability to include files/folders 11 | Allow picking colors by hex codes 12 | 13 | Added more color customization options\n 14 | Your settings have been cleared, please reset them 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | @drawable/ic_play_vector 5 | @drawable/ic_pause_vector 6 | @drawable/ic_next_vector 7 | @drawable/ic_previous_vector 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- 1 | 2 | 2048 3 | 1 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/res/xml/automotive_app_desc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/xml/searchable.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/xml/widget_info.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | -------------------------------------------------------------------------------- /app/src/prepaid/res/values/bools.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | true 5 | true 6 | true 7 | 8 | -------------------------------------------------------------------------------- /build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | alias(libs.plugins.android).apply(false) 3 | alias(libs.plugins.kotlinAndroid).apply(false) 4 | alias(libs.plugins.ksp).apply(false) 5 | } 6 | 7 | tasks.register("clean") { 8 | delete { 9 | rootProject.buildDir 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- 1 | json_key_file("fastlane/fastlane.json") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one 2 | package_name("com.simplemobiletools.musicplayer") # e.g. com.krausefx.app 3 | -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- 1 | # This file contains the fastlane.tools configuration 2 | # You can find the documentation at https://docs.fastlane.tools 3 | # 4 | # For a list of all available actions, check out 5 | # 6 | # https://docs.fastlane.tools/actions 7 | # 8 | # For a list of all available plugins, check out 9 | # 10 | # https://docs.fastlane.tools/plugins/available-plugins 11 | # 12 | 13 | # Uncomment the line if you want fastlane to automatically update itself 14 | # update_fastlane 15 | 16 | default_platform(:android) 17 | 18 | platform :android do 19 | desc "Runs all the tests" 20 | lane :test do 21 | gradle(task: "test") 22 | end 23 | 24 | desc "Submit a new Beta Build to Crashlytics Beta" 25 | lane :beta do 26 | gradle(task: "clean assembleRelease") 27 | crashlytics 28 | 29 | # sh "your_script.sh" 30 | # You can also use other beta testing services here 31 | end 32 | 33 | desc "Deploy a new version to the Google Play" 34 | lane :deploy do 35 | gradle(task: "clean assembleRelease") 36 | upload_to_play_store 37 | end 38 | end 39 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/images/phoneScreenshots/1_ar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ar/images/phoneScreenshots/1_ar.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/images/phoneScreenshots/2_ar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ar/images/phoneScreenshots/2_ar.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/images/phoneScreenshots/3_ar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ar/images/phoneScreenshots/3_ar.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/images/phoneScreenshots/4_ar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ar/images/phoneScreenshots/4_ar.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/images/sevenInchScreenshots/1_ar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ar/images/sevenInchScreenshots/1_ar.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/images/sevenInchScreenshots/2_ar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ar/images/sevenInchScreenshots/2_ar.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/images/tenInchScreenshots/1_ar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ar/images/tenInchScreenshots/1_ar.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/images/tenInchScreenshots/2_ar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ar/images/tenInchScreenshots/2_ar.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/short_description.txt: -------------------------------------------------------------------------------- 1 | مشغل موسيقى نظيف مع عنصر واجهة مستخدم قابل للتخصيص ومؤقت للنوم وموفر للبطارية 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/title.txt: -------------------------------------------------------------------------------- 1 | مشغل موسيقى بسيط 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/az-AZ/full_description.txt: -------------------------------------------------------------------------------- 1 | Status çubuğundan, əsas ekran widgetindən yaxud da qulaqcığınızın düymələrindən asanlıqla idarə edilə bilən sadə bir musiqi çalar. Mahnıları Başlıq yaxud da İfaçı olaraq qruplaşdıra, hətta Qarışdırıcını dəyişdirə bilərsiniz. İfaçı və ya albomla filtr hələki dəstəklənmir, səbrli qalın! 2 | 3 | Widgeti ehtiva edir hansı ki, siz oradan yazı rəngini, həmçinin, alfanı və arxa plan rəngini dəyişdirə bilərsiniz. 4 | 5 | Lazımsız reklam və ya icazə mövcud deyil. Tamamilə açıqlisanslıdır, rəng dəyişmə parametrləri var. 6 | 7 | Check out the full suite of Simple Tools here: 8 | https://www.simplemobiletools.com 9 | 10 | Facebook: 11 | https://www.facebook.com/simplemobiletools 12 | 13 | Reddit: 14 | https://www.reddit.com/r/SimpleMobileTools 15 | 16 | Telegram: 17 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/az-AZ/short_description.txt: -------------------------------------------------------------------------------- 1 | Təmiz musiqi pleyeri a sərin bir widget, şık interfeys, reklam yoxdur -------------------------------------------------------------------------------- /fastlane/metadata/android/az-AZ/title.txt: -------------------------------------------------------------------------------- 1 | Sadə Musiqi Çalar -------------------------------------------------------------------------------- /fastlane/metadata/android/bg/short_description.txt: -------------------------------------------------------------------------------- 1 | Изчистен музикален плейър с адаптивен уиджет, таймер за сън, пестене на батерия 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/bg/title.txt: -------------------------------------------------------------------------------- 1 | Обикновен Музикален Плейър 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ca/short_description.txt: -------------------------------------------------------------------------------- 1 | Reproductor de música amb un giny personalitzable, temporitzador de son 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ca/title.txt: -------------------------------------------------------------------------------- 1 | Simple Music Player 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/full_description.txt: -------------------------------------------------------------------------------- 1 | Hudební přehrávač jednoduše ovladatelný ze stavové lišty, widgetu na ploše, nebo tlačítky na sluchátkách. Poskytuje různé možnosti řazení skladeb a různé ekvalizéry. 2 | 3 | Obsahuje přizpůsobitelný widget, kterému můžete upravit barvu textu a také průhlednost a barvu pozadí. 4 | 5 | Neobsahuje žádné reklamy ani nepotřebná oprávnění. Má otevřený zdrojový kód a možnost změny barev. 6 | 7 | Check out the full suite of Simple Tools here: 8 | https://www.simplemobiletools.com 9 | 10 | Facebook: 11 | https://www.facebook.com/simplemobiletools 12 | 13 | Reddit: 14 | https://www.reddit.com/r/SimpleMobileTools 15 | 16 | Telegram: 17 | https://t.me/SimpleMobileTools 18 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/short_description.txt: -------------------------------------------------------------------------------- 1 | Lehký hudební přehrávač pěkný widget se stylovým rozhraním, žádné reklamy 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/title.txt: -------------------------------------------------------------------------------- 1 | Jednoduchý hudební přehrávač 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/1_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/de-DE/images/phoneScreenshots/1_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/2_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/de-DE/images/phoneScreenshots/2_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/3_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/de-DE/images/phoneScreenshots/3_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/4_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/de-DE/images/phoneScreenshots/4_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/sevenInchScreenshots/1_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/1_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/sevenInchScreenshots/2_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/de-DE/images/sevenInchScreenshots/2_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/tenInchScreenshots/1_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/de-DE/images/tenInchScreenshots/1_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/tenInchScreenshots/2_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/de-DE/images/tenInchScreenshots/2_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- 1 | Übersichtlicher Musikplayer mit anpassbarem Widget, Sleeptimer, Batteriesparer 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Schlichter Musikplayer 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/short_description.txt: -------------------------------------------------------------------------------- 1 | Ένας καθαρός player με προσαρμόσιμο widget, όμορφη σχεδίαση & χωρίς διαφημίσεις -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/title.txt: -------------------------------------------------------------------------------- 1 | Απλός Music Player -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/featureGraphic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-GB/images/featureGraphic.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-GB/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/phoneScreenshots/1_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-GB/images/phoneScreenshots/1_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/phoneScreenshots/2_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-GB/images/phoneScreenshots/2_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/phoneScreenshots/3_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-GB/images/phoneScreenshots/3_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/phoneScreenshots/4_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-GB/images/phoneScreenshots/4_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/sevenInchScreenshots/1_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-GB/images/sevenInchScreenshots/1_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/sevenInchScreenshots/2_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-GB/images/sevenInchScreenshots/2_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/tenInchScreenshots/1_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-GB/images/tenInchScreenshots/1_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/tenInchScreenshots/2_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-GB/images/tenInchScreenshots/2_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/tvBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-GB/images/tvBanner.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/short_description.txt: -------------------------------------------------------------------------------- 1 | Clean music player with a customizable widget, sleep timer, battery saver -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/title.txt: -------------------------------------------------------------------------------- 1 | Simple Music Player -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/short_description.txt: -------------------------------------------------------------------------------- 1 | Clean music player with a customizable widget, stylish interface -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/title.txt: -------------------------------------------------------------------------------- 1 | Simple Music Player -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/104.txt: -------------------------------------------------------------------------------- 1 | * Adding a Get Simple Phone button into the About section 2 | * Added some translation and UX improvements 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/105.txt: -------------------------------------------------------------------------------- 1 | * Allow excluding unwanted folders 2 | * Allow reordering playlist tracks 3 | * Allow setting playlist and folder specific sorting 4 | * Allow deleting files themselves from the queue view 5 | * Added Search at the queue list 6 | * Added other stability, translation and UX improvements 7 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/106.txt: -------------------------------------------------------------------------------- 1 | * Added some notification reliability related improvements 2 | * Allow stopping the music and dismissing the notification with pressing X 3 | * Use Material You theme by default on Android 12+ 4 | * Increased minimal required Android OS version to 6 5 | * Added some UI, translation and stability improvements 6 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/107.txt: -------------------------------------------------------------------------------- 1 | * Added a crashfix 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/108.txt: -------------------------------------------------------------------------------- 1 | * Added the new search bar at the top menu 2 | * Added some stability, translation and UI improvements 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/109.txt: -------------------------------------------------------------------------------- 1 | * Fixed a search menu glitch on some devices 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/110.txt: -------------------------------------------------------------------------------- 1 | * Added some stability, translation and UI improvements 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/111.txt: -------------------------------------------------------------------------------- 1 | * Added gapless playback 2 | * Added some stability, translation and UI improvements 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/112.txt: -------------------------------------------------------------------------------- 1 | * Added some stability, translation and UI improvements 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/113.txt: -------------------------------------------------------------------------------- 1 | * Allow queueing tracks as the next queue item 2 | * Improved file fetching and performance 3 | * Allow triggering folder rescanning 4 | * Added sorting by Date Added 5 | * Added some stability, translation and UI improvements 6 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/114.txt: -------------------------------------------------------------------------------- 1 | * Allow queueing tracks as the next queue item 2 | * Improved file fetching and performance 3 | * Allow triggering folder rescanning 4 | * Added sorting by Date Added 5 | * Added some stability, translation and UI improvements 6 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/116.txt: -------------------------------------------------------------------------------- 1 | * Fully rewrote playback handling under the hood 2 | * Added Genres tab 3 | * Allow sharing songs 4 | * Added Android Auto support 5 | * Added some stability, translation and UI improvements 6 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/117.txt: -------------------------------------------------------------------------------- 1 | * Fully rewrote playback handling under the hood 2 | * Added Genres tab 3 | * Allow sharing songs 4 | * Added some stability, translation and UI improvements 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/118.txt: -------------------------------------------------------------------------------- 1 | * Fully rewrote playback handling under the hood 2 | * Added Genres tab 3 | * Allow sharing songs 4 | * Added some stability, translation and UI improvements 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/119.txt: -------------------------------------------------------------------------------- 1 | * Fully rewrote playback handling under the hood 2 | * Added Genres tab 3 | * Allow sharing songs 4 | * Added some stability, translation and UI improvements 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-US/images/featureGraphic.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/sevenInchScreenshots/1_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-US/images/sevenInchScreenshots/1_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/sevenInchScreenshots/2_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-US/images/sevenInchScreenshots/2_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/1_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-US/images/tenInchScreenshots/1_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tenInchScreenshots/2_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-US/images/tenInchScreenshots/2_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tvBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/en-US/images/tvBanner.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Clean music player with a customizable widget, sleep timer, battery saver -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Simple Music Player -------------------------------------------------------------------------------- /fastlane/metadata/android/es-419/images/phoneScreenshots/1_es-419.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-419/images/phoneScreenshots/1_es-419.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-419/images/phoneScreenshots/2_es-419.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-419/images/phoneScreenshots/2_es-419.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-419/images/phoneScreenshots/3_es-419.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-419/images/phoneScreenshots/3_es-419.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-419/images/phoneScreenshots/4_es-419.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-419/images/phoneScreenshots/4_es-419.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-419/images/sevenInchScreenshots/1_es-419.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-419/images/sevenInchScreenshots/1_es-419.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-419/images/sevenInchScreenshots/2_es-419.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-419/images/sevenInchScreenshots/2_es-419.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-419/images/tenInchScreenshots/1_es-419.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-419/images/tenInchScreenshots/1_es-419.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-419/images/tenInchScreenshots/2_es-419.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-419/images/tenInchScreenshots/2_es-419.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-419/short_description.txt: -------------------------------------------------------------------------------- 1 | Rproductorde musica gratis con ecualizador de sonido play y my music elegante -------------------------------------------------------------------------------- /fastlane/metadata/android/es-419/title.txt: -------------------------------------------------------------------------------- 1 | Reproductor Música Simple -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/phoneScreenshots/1_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-ES/images/phoneScreenshots/1_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/phoneScreenshots/2_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-ES/images/phoneScreenshots/2_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/phoneScreenshots/3_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-ES/images/phoneScreenshots/3_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/phoneScreenshots/4_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-ES/images/phoneScreenshots/4_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/sevenInchScreenshots/1_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/1_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/sevenInchScreenshots/2_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-ES/images/sevenInchScreenshots/2_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/tenInchScreenshots/1_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-ES/images/tenInchScreenshots/1_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/tenInchScreenshots/2_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-ES/images/tenInchScreenshots/2_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | Rproductorde musica gratis con ecualizador de sonido play y my music elegante 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/title.txt: -------------------------------------------------------------------------------- 1 | Reproductor de Música Simple 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/phoneScreenshots/1_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-US/images/phoneScreenshots/1_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/phoneScreenshots/2_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-US/images/phoneScreenshots/2_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/phoneScreenshots/3_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-US/images/phoneScreenshots/3_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/phoneScreenshots/4_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-US/images/phoneScreenshots/4_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/sevenInchScreenshots/1_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-US/images/sevenInchScreenshots/1_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/sevenInchScreenshots/2_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-US/images/sevenInchScreenshots/2_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/tenInchScreenshots/1_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-US/images/tenInchScreenshots/1_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/tenInchScreenshots/2_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/es-US/images/tenInchScreenshots/2_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Escucha tu música sin anuncios Disfruta el tiempo con tus canciones favoritas -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/title.txt: -------------------------------------------------------------------------------- 1 | Reproductor Música Simple -------------------------------------------------------------------------------- /fastlane/metadata/android/et/short_description.txt: -------------------------------------------------------------------------------- 1 | Puhas muusikamängija koos kohandatava vidina, unetaimeri, akusäästjaga 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/et/title.txt: -------------------------------------------------------------------------------- 1 | Lihtne muusikamängija 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/eu-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | Musika erreproduzitzailea widget atseginarekin, iragarkirik gabe 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/eu-ES/title.txt: -------------------------------------------------------------------------------- 1 | Erreproduzitzaile erraza 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/short_description.txt: -------------------------------------------------------------------------------- 1 | Siisti musiikkisoitin, jossa on esiasetettu vekotin, uniajastin, akun säästäjä 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/title.txt: -------------------------------------------------------------------------------- 1 | Yksinkertainen musiikkisoitin 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/phoneScreenshots/1_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/fr-FR/images/phoneScreenshots/1_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/phoneScreenshots/2_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/fr-FR/images/phoneScreenshots/2_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/phoneScreenshots/3_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/fr-FR/images/phoneScreenshots/3_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/phoneScreenshots/4_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/fr-FR/images/phoneScreenshots/4_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/1_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/1_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/2_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/fr-FR/images/sevenInchScreenshots/2_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/tenInchScreenshots/1_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/1_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/tenInchScreenshots/2_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/fr-FR/images/tenInchScreenshots/2_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- 1 | Lecteur de musique pour vos chansons préférées avec listes de lecture 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Lecteur de musique simple 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/gl-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | Reprodutor de música lixeiro bonito widget, interface elegante, sen anuncios 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/gl-ES/title.txt: -------------------------------------------------------------------------------- 1 | Reprodutor de Música Sinxelo 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/images/phoneScreenshots/1_hi-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/hi-IN/images/phoneScreenshots/1_hi-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/images/phoneScreenshots/2_hi-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/hi-IN/images/phoneScreenshots/2_hi-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/images/phoneScreenshots/3_hi-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/hi-IN/images/phoneScreenshots/3_hi-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/images/phoneScreenshots/4_hi-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/hi-IN/images/phoneScreenshots/4_hi-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/1_hi-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/1_hi-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/2_hi-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/hi-IN/images/sevenInchScreenshots/2_hi-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/images/tenInchScreenshots/1_hi-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/hi-IN/images/tenInchScreenshots/1_hi-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/images/tenInchScreenshots/2_hi-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/hi-IN/images/tenInchScreenshots/2_hi-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/short_description.txt: -------------------------------------------------------------------------------- 1 | एक अनुकूलन विजेट, स्टाइलिश इंटरफ़ेस, कोई विज्ञापन नहीं के साथ स्वच्छ संगीत खिलाड -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/title.txt: -------------------------------------------------------------------------------- 1 | सिम्पल म्यूजिक प्लेयर -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/short_description.txt: -------------------------------------------------------------------------------- 1 | Jednostavan svirač glazbe s podesivim widgetom, modernim sučeljem, bez oglasa 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/title.txt: -------------------------------------------------------------------------------- 1 | Jednostavni player glazbe 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/short_description.txt: -------------------------------------------------------------------------------- 1 | Zenelejátszó testreszabható widgettel, alvásidőzítővel, akkumulátorkímélővel 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/title.txt: -------------------------------------------------------------------------------- 1 | Egyszerű zenelejátszó 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/1_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/id/images/phoneScreenshots/1_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/2_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/id/images/phoneScreenshots/2_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/3_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/id/images/phoneScreenshots/3_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/4_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/id/images/phoneScreenshots/4_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/sevenInchScreenshots/1_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/id/images/sevenInchScreenshots/1_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/sevenInchScreenshots/2_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/id/images/sevenInchScreenshots/2_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/tenInchScreenshots/1_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/id/images/tenInchScreenshots/1_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/tenInchScreenshots/2_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/id/images/tenInchScreenshots/2_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/short_description.txt: -------------------------------------------------------------------------------- 1 | Bersihkan pemutar musik dengan widget dapat disesuaikan, antarmuka penuh gaya 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/title.txt: -------------------------------------------------------------------------------- 1 | Pemutar Musik Simpel 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/phoneScreenshots/1_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/it-IT/images/phoneScreenshots/1_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/phoneScreenshots/2_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/it-IT/images/phoneScreenshots/2_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/phoneScreenshots/3_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/it-IT/images/phoneScreenshots/3_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/phoneScreenshots/4_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/it-IT/images/phoneScreenshots/4_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/sevenInchScreenshots/1_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/1_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/sevenInchScreenshots/2_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/it-IT/images/sevenInchScreenshots/2_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/tenInchScreenshots/1_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/it-IT/images/tenInchScreenshots/1_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/tenInchScreenshots/2_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/it-IT/images/tenInchScreenshots/2_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/short_description.txt: -------------------------------------------------------------------------------- 1 | Elegante lettore musicale con widget, timer per il sonno, risparmio batteria -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/title.txt: -------------------------------------------------------------------------------- 1 | Lettore Musicale Semplice -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/full_description.txt: -------------------------------------------------------------------------------- 1 | נגן מוזיקה פשוט הניתן לשליטה בקלות משורת המצב, ווידג\'ט מסך הבית או באמצעות לחצני חומרה באוזניות שלך. הוא מספק את כל הפונקציות הצפויות כמו מיון בדרכים שונות כמו גם שינוי האקולייזר. האזן ל-MP3 האהוב עליך, לשירים אחרים או לפודקאסטים עם נגן המוזיקה החינמי והיפה הזה. הוא מציע תוספות בלעדיות כמו חיפוש והצגת תמונות אלבום, טיימר שינה והגדרות רבות אחרות. 2 | 3 | נגן מוזיקה אלגנטי זה מאפשר לך ליצור ולנהל רשימות השמעה שימושיות כרצונך. רשימות השמעה נתמכות באופן מלא. אתה יכול להוסיף קבצים בודדים או תיקיות שלמות. אם לא תאהב קובץ, אתה יכול פשוט להסיר אותו מרשימת השמעה, או למחוק את הקובץ בפועל לגמרי. 4 | 5 | מגיע עם טיימר שינה שימושי כך שתוכל לעכב באופן אמין את זמן כיבוי האפליקציה. תומך גם בערבוב וגם בחזרה על שיר מסוים, כמו גם דילוג והעברה מהירה. זמין בשפות שונות ומציע מספר אקולייזרים שונים. בדוק בקלות מאפיינים של קובץ כמו גודל, משך, שינוי אחרון וכו\'. שנה קובץ EXIF נתוני כמו שם השיר והאמן. שתף במהירות קבצים עם חבריך ברשתות חברתיות, במיילים או בכל מקום שתרצה. 6 | 7 | נגן מוזיקה מסוגנן זה מכיל ווידג\'ט עם צבע טקסט הניתן להתאמה אישית, אלפא וצבע הרקע לגישה קלה ושליטה. 8 | 9 | הוא מטפל כראוי בכוונות של צד שלישי גם להפעלת קובצי שמע בודדים כך שהוא יכול לעזור גם בהגדרת רינגטונים. 10 | 11 | זה מגיע עם עיצוב חומר וערכת נושא כהה כברירת מחדל, מספק חווית משתמש נהדרת לשימוש קל. 12 | 13 | היעדר גישה לאינטרנט נותן לך יותר פרטיות, אבטחה ויציבות מאשר אפליקציות אחרות. אינו מכיל פרסומות או הרשאות מיותרות. זה קוד פתוח לחלוטין ומספק צבעים הניתנים להתאמה אישית. 14 | 15 | בדוק את החבילה המלאה של כלים פשוטים כאן: 16 | https://www.simplemobiletools.com 17 | 18 | פייסבוק: 19 | https://www.facebook.com/simplemobiletools 20 | 21 | Reddit : 22 | https://www.reddit.com/r/SimpleMobileTools 23 | 24 | Telegram: 25 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/short_description.txt: -------------------------------------------------------------------------------- 1 | נגן מוזיקה נקי עם ווידג\'ט הניתן להתאמה אישית, ממשק מסוגנן וללא פרסומות. -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/title.txt: -------------------------------------------------------------------------------- 1 | נגן מוזיקה פשוט -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/phoneScreenshots/1_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ja-JP/images/phoneScreenshots/1_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/phoneScreenshots/2_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ja-JP/images/phoneScreenshots/2_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/phoneScreenshots/3_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ja-JP/images/phoneScreenshots/3_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/phoneScreenshots/4_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ja-JP/images/phoneScreenshots/4_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/sevenInchScreenshots/1_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ja-JP/images/sevenInchScreenshots/1_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/sevenInchScreenshots/2_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ja-JP/images/sevenInchScreenshots/2_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/tenInchScreenshots/1_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ja-JP/images/tenInchScreenshots/1_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/tenInchScreenshots/2_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ja-JP/images/tenInchScreenshots/2_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/short_description.txt: -------------------------------------------------------------------------------- 1 | カスタマイズ可能なウィジェット、スタイリッシュなインターフェース、広告なしのクリーンな音楽プレーヤー 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/title.txt: -------------------------------------------------------------------------------- 1 | シンプルミュージックプレーヤー 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/phoneScreenshots/1_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ko-KR/images/phoneScreenshots/1_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/phoneScreenshots/2_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ko-KR/images/phoneScreenshots/2_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/phoneScreenshots/3_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ko-KR/images/phoneScreenshots/3_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/phoneScreenshots/4_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ko-KR/images/phoneScreenshots/4_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/sevenInchScreenshots/1_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ko-KR/images/sevenInchScreenshots/1_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/sevenInchScreenshots/2_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ko-KR/images/sevenInchScreenshots/2_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/tenInchScreenshots/1_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ko-KR/images/tenInchScreenshots/1_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/images/tenInchScreenshots/2_ko-KR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ko-KR/images/tenInchScreenshots/2_ko-KR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/short_description.txt: -------------------------------------------------------------------------------- 1 | 기능이 포함되어 있습니다. 당신이 가장 선호하는 음악을 언제 어디서든 광고 없이 실행해보세요 -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/title.txt: -------------------------------------------------------------------------------- 1 | 간단한 음악 플레이어 -------------------------------------------------------------------------------- /fastlane/metadata/android/lt/short_description.txt: -------------------------------------------------------------------------------- 1 | Lengvos muzikos grotuvas, gražus valdiklis su stilinga sąsaja, be skelbimų -------------------------------------------------------------------------------- /fastlane/metadata/android/lt/title.txt: -------------------------------------------------------------------------------- 1 | Paprastas muzikos grotuvas -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/short_description.txt: -------------------------------------------------------------------------------- 1 | Een eenvoudige muziekspeler met aan te passen widget, zonder advertenties. -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/title.txt: -------------------------------------------------------------------------------- 1 | Eenvoudige Muziekspeler -------------------------------------------------------------------------------- /fastlane/metadata/android/no-NO/short_description.txt: -------------------------------------------------------------------------------- 1 | En ren musikkspiller med tilpassbart miniprogram, stilig grensesnitt. -------------------------------------------------------------------------------- /fastlane/metadata/android/no-NO/title.txt: -------------------------------------------------------------------------------- 1 | Enkel musikkspiller -------------------------------------------------------------------------------- /fastlane/metadata/android/pa/short_description.txt: -------------------------------------------------------------------------------- 1 | ਅਨੁਕੂਲਿਤ ਵਿਜੇਟ, ਸਲੀਪ ਟਾਈਮਰ, ਬੈਟਰੀ ਸੇਵਰ ਨਾਲ ਸਾਫ਼-ਸੁਥਰਾ ਸੰਗੀਤ ਪਲੇਅਰ 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pa/title.txt: -------------------------------------------------------------------------------- 1 | ਸਿੰਪਲ ਸੰਗੀਤ ਪਲੇਅਰ 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/phoneScreenshots/1_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pl-PL/images/phoneScreenshots/1_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/phoneScreenshots/2_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pl-PL/images/phoneScreenshots/2_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/phoneScreenshots/3_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pl-PL/images/phoneScreenshots/3_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/phoneScreenshots/4_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pl-PL/images/phoneScreenshots/4_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/1_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/1_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/2_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pl-PL/images/sevenInchScreenshots/2_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/tenInchScreenshots/1_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/1_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/tenInchScreenshots/2_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pl-PL/images/tenInchScreenshots/2_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/short_description.txt: -------------------------------------------------------------------------------- 1 | Odtwarzacz muzyki z widżetem, wyłącznikiem czasowym i oszczędzaniem baterii 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/title.txt: -------------------------------------------------------------------------------- 1 | Prosty odtwarzacz muzyki 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/1_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-BR/images/phoneScreenshots/1_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/2_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-BR/images/phoneScreenshots/2_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/3_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-BR/images/phoneScreenshots/3_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/4_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-BR/images/phoneScreenshots/4_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/1_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/1_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/2_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-BR/images/sevenInchScreenshots/2_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/tenInchScreenshots/1_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/1_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/tenInchScreenshots/2_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-BR/images/tenInchScreenshots/2_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- 1 | Reprodutor de música e equalizador de som que suporta arquivos mp3 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/title.txt: -------------------------------------------------------------------------------- 1 | Player Música Simples 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-PT/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/phoneScreenshots/1_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-PT/images/phoneScreenshots/1_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/phoneScreenshots/2_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-PT/images/phoneScreenshots/2_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/phoneScreenshots/3_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-PT/images/phoneScreenshots/3_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/phoneScreenshots/4_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-PT/images/phoneScreenshots/4_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/1_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/1_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/2_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-PT/images/sevenInchScreenshots/2_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/tenInchScreenshots/1_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/1_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/tenInchScreenshots/2_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/pt-PT/images/tenInchScreenshots/2_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/short_description.txt: -------------------------------------------------------------------------------- 1 | Reprodutor de música e equalizador de som que suporta arquivos mp3. -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/title.txt: -------------------------------------------------------------------------------- 1 | Player Música Simples -------------------------------------------------------------------------------- /fastlane/metadata/android/ro/short_description.txt: -------------------------------------------------------------------------------- 1 | Un player muzical simplu, cu un widget personalizabil şi o interfață elegantă 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ro/title.txt: -------------------------------------------------------------------------------- 1 | Player muzical simplu 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ru-RU/images/icon.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/phoneScreenshots/1_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ru-RU/images/phoneScreenshots/1_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/phoneScreenshots/2_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ru-RU/images/phoneScreenshots/2_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/phoneScreenshots/3_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ru-RU/images/phoneScreenshots/3_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/phoneScreenshots/4_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ru-RU/images/phoneScreenshots/4_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/1_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/1_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/2_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ru-RU/images/sevenInchScreenshots/2_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/tenInchScreenshots/1_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/1_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/tenInchScreenshots/2_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/ru-RU/images/tenInchScreenshots/2_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/short_description.txt: -------------------------------------------------------------------------------- 1 | Плеер для музыки без рекламы с эквалайзером и стильным интерфейсом 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/title.txt: -------------------------------------------------------------------------------- 1 | Простой музыкальный плеер 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/short_description.txt: -------------------------------------------------------------------------------- 1 | Ľahký hudobný prehrávač pekný widget so štýlovým rozhraním, bez reklám -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/title.txt: -------------------------------------------------------------------------------- 1 | Jednoduchý hudobný prehrávač -------------------------------------------------------------------------------- /fastlane/metadata/android/sl/short_description.txt: -------------------------------------------------------------------------------- 1 | Čisti predvajalnik glasbe s pripomočkom, časovnikom in varčevalnikom baterije 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sl/title.txt: -------------------------------------------------------------------------------- 1 | Enostavni predvajalnik glasbe 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sr/short_description.txt: -------------------------------------------------------------------------------- 1 | Очистите музички плејер са виџетом, тајмером, уштедом батерије 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sr/title.txt: -------------------------------------------------------------------------------- 1 | Једноставан музички плејер 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/short_description.txt: -------------------------------------------------------------------------------- 1 | Lätt musikspelare trevlig widget med snyggt gränssnitt, inga annonser 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/title.txt: -------------------------------------------------------------------------------- 1 | Simple Music Player 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/phoneScreenshots/1_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/tr-TR/images/phoneScreenshots/1_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/phoneScreenshots/2_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/tr-TR/images/phoneScreenshots/2_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/phoneScreenshots/3_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/tr-TR/images/phoneScreenshots/3_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/phoneScreenshots/4_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/tr-TR/images/phoneScreenshots/4_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/1_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/1_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/2_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/tr-TR/images/sevenInchScreenshots/2_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/tenInchScreenshots/1_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/1_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/tenInchScreenshots/2_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/fastlane/metadata/android/tr-TR/images/tenInchScreenshots/2_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/short_description.txt: -------------------------------------------------------------------------------- 1 | Temiz müzik çaları özelleştirilebilir bir widget, şık arayüz, reklamsız 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/title.txt: -------------------------------------------------------------------------------- 1 | Basit Müzik Çalar 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/short_description.txt: -------------------------------------------------------------------------------- 1 | Легкий музичний плеєр гарний віджет зі стильним інтерфейсом, без реклами 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/title.txt: -------------------------------------------------------------------------------- 1 | Простий музичний програвач 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/full_description.txt: -------------------------------------------------------------------------------- 1 | 🎧 无广告地聆听你的音乐 🎧 2 | 3 | 我们很清楚你的时间有多重要。这就是我们不在应用中植入广告的原因。广告很烦人,人们讨厌广告。 4 | 5 | 本应用专注于一件事,让你无干扰地享受你的音乐。使用我们的应用,当你在家里放松、工作,或可能当你开车在你的车。 6 | 7 | 它最好的部分是免费安装。 8 | 9 | 你可以把你的音乐带到任何地方:走在街上,在山上徒步旅行,甚至到月球上。这个MP3播放器是离线的,这意味着你不需要互联网来使用它。 10 | 11 | 此外,Simple Music Player还有一个独特的省电功能。由于我们的新技术,您再也不用担心电池在白天耗尽。这款智能音乐播放器可以轻松播放你的音乐。 12 | 13 | 👉你还等什么,下载它,无广告享受你的音乐? 14 | 15 | 通过耳机上的状态栏、小部件或硬件按钮控制音乐。从来没有这么容易过。 16 | 17 | 此外,您还可以定制小部件。更改文本和背景颜色以方便访问和控制。 18 | 19 | 用这款免费的好看的音乐播放器听您最喜欢的mp3,其他音频歌曲,或播客。自定义界面颜色体现你的风格。 20 | 21 | 你可以通过睡眠计时器功能来编程你想要入睡的乐曲/音乐。也许是爵士乐,chill,禅宗,甚至自然声音,从你的音乐中选择最适合你的。享受你的美梦吧! 22 | 23 | 用我们的均衡器提高音质水平。这个音频播放器让您有机会根据您听的音乐类型改变音乐效果(经典、流行、摇滚、舞蹈、电子舞曲、拉丁、平面等)。甚至根据你的扬声器(耳机、立体声、环绕和许多)。现在,你将感受到耳朵里声音的力量。 24 | 25 | 你有机会在应用内制作你的音乐列表。如你所愿地创建和管理你的播放列表。你可以添加你的手机和SD卡中的音乐。此外,您可以轻松添加文件夹。 26 | 27 | 这个播放器支持随机播放,重复特定的歌曲,跳过,和转发。像专业DJ一样混音。 28 | 29 | 你不喜欢这首歌的标签吗? 想怎么编辑就怎么编辑,修改歌曲的名字、艺术家、团体,等等。 30 | 31 | 功能 32 | ⭐️ 界面美观大方 33 | ⭐️ 定制颜色 34 | ⭐️ 节约电量 35 | ⭐️ 睡眠定时器 36 | ⭐️ 强大的均衡器,有少数预设 37 | ⭐️ 播放小部件 38 | ⭐️ 播放列表管理 39 | ⭐️ 多语言 40 | ⭐️ 文件属性管理 41 | ⭐️ 歌曲标签管理 42 | ⭐️ 隐私 43 | ⭐️ 分享音乐 44 | 45 | 👉 我们非常重视用户的隐私。我们不与他人分享任何信息。 46 | 47 | 🎧 无广告地享受音乐 🎧 48 | 49 | 它自带Materials设计,默认为深色主题,使用方便,用户体验极佳。与其他同类应用相比,没有互联网访问权给你更多的隐私、安全和稳定。 50 | 51 | 查看全套 Simple Tools: 52 | https://www.simplemobiletools.com 53 | 54 | Facebook: 55 | https://www.facebook.com/simplemobiletools 56 | 57 | Reddit: 58 | https://www.reddit.com/r/SimpleMobileTools 59 | 60 | Telegram: 61 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 一款清爽的音乐播放器,包含可自定义的小工具、睡眠定时器和节电程序 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | 简单音乐播放器 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/full_description.txt: -------------------------------------------------------------------------------- 1 | 一個能夠從狀態欄、主畫面小工具或耳機上實體鍵輕易控制的音樂播放器。它提供所有預期中的功能,包括各種排序曲目的方式及更改等化器。你可以使用該免費且炫酷的歌曲播放器聆聽您喜愛的 MP3、其他歌曲或 Podcasts。 2 | 3 | 它包含獨家的額外功能,比如搜尋及顯示專輯封面、睡眠定時器及許多其他的設定。這款優雅的音樂播放器允許您根據喜好創建及管理播放列表。 4 | 5 | 完整支持播放列表。您可以加入單獨的檔案,或整個資料及。如果您不喜歡一個檔案,你可以從播放列表中移除該檔案,或者一併刪除檔案本身。 6 | 7 | 內建便攜式睡眠定時器,您可以放心地依靠它延遲應用程式的關閉時間。 8 | 9 | 支持隨機和重複播放特定的歌曲,也可以跳過及快轉歌曲。 10 | 11 | 內建多種語言的支持及多種更化器。 12 | 13 | 非常容易地檢查檔案屬性,比如大小、時長和最後修改時間等。 14 | 15 | 可以修改檔案的 EXIF 資料,比如歌曲標題及演唱者。 16 | 17 | 快速地在社群媒體、郵件,或任何地方與朋友分享檔案。 18 | 19 | 這程式包含一個能夠自訂文字顏色、透明度和背景顏色的小工具,以方便訪問及控制。 20 | 21 | 它可以正確地處理來自第三方播放單獨音樂檔案意圖 (Intent),從而可以幫助設定鈴聲。 22 | 23 | 它遵循質感設計且默認深色模式,提供極佳的使用體驗。不訪問網際網路給予您更好的隱私、安全性及穩定性。 24 | 25 | 不包含廣告及非必要的權限,而且完全開放原始碼,並提供自訂顏色。 26 | 27 | 這程式只是一系列眾多應用程式的其中一項,你可以在這發現更多: 28 | https://www.simplemobiletools.com 29 | 30 | Facebook: 31 | https://www.facebook.com/simplemobiletools 32 | 33 | Reddit: 34 | https://www.reddit.com/r/SimpleMobileTools 35 | 36 | Telegram: 37 | https://t.me/SimpleMobileTools -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/short_description.txt: -------------------------------------------------------------------------------- 1 | 一個乾淨的音樂播放器,還有可自訂的小工具,並且無任何廣告。 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/title.txt: -------------------------------------------------------------------------------- 1 | 簡易音樂播放器 - 一個酷炫的歌曲播放器 -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | android.enableJetifier=true 2 | android.useAndroidX=true 3 | org.gradle.jvmargs=-Xmx8192m 4 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Aug 31 16:28:32 IST 2023 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /graphics/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/graphics/app_icon.png -------------------------------------------------------------------------------- /graphics/featureGraphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/graphics/featureGraphic.jpg -------------------------------------------------------------------------------- /graphics/featureGraphic.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/graphics/featureGraphic.xcf -------------------------------------------------------------------------------- /graphics/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/graphics/icon.png -------------------------------------------------------------------------------- /graphics/icon_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/graphics/icon_orange.png -------------------------------------------------------------------------------- /graphics/icon_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/graphics/icon_purple.png -------------------------------------------------------------------------------- /graphics/promo_graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/graphics/promo_graphic.png -------------------------------------------------------------------------------- /graphics/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/graphics/square.png -------------------------------------------------------------------------------- /graphics/square.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/graphics/square.xcf -------------------------------------------------------------------------------- /graphics/tv_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleMobileTools/Simple-Music-Player/498086a02df9809bcef94264e460f3cbdf68918f/graphics/tv_banner.png -------------------------------------------------------------------------------- /keystore.properties_sample: -------------------------------------------------------------------------------- 1 | storePassword=123456 2 | keyPassword=abcdef 3 | keyAlias=myAlias 4 | storeFile=../keystore.jks 5 | -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | google() 5 | mavenCentral() 6 | } 7 | } 8 | dependencyResolutionManagement { 9 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 | repositories { 11 | google() 12 | mavenCentral() 13 | maven { setUrl("https://jitpack.io") } 14 | } 15 | } 16 | include(":app") 17 | --------------------------------------------------------------------------------