├── .ci └── lint.sh ├── .codespellrc ├── .editorconfig ├── .github └── workflows │ ├── build.yml │ └── checks.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── schemas │ └── io.github.teccheck.fastlyrics.api.storage.LyricsDatabase │ │ ├── 1.json │ │ ├── 2.json │ │ ├── 3.json │ │ ├── 4.json │ │ └── 5.json └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── github │ │ └── teccheck │ │ └── fastlyrics │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── teccheck │ │ │ └── fastlyrics │ │ │ ├── BaseActivity.kt │ │ │ ├── FastLyricsApp.kt │ │ │ ├── MainActivity.kt │ │ │ ├── Settings.kt │ │ │ ├── Tokens.kt │ │ │ ├── api │ │ │ ├── LyricStorage.kt │ │ │ ├── LyricsApi.kt │ │ │ ├── MediaSession.kt │ │ │ ├── provider │ │ │ │ ├── Deezer.kt │ │ │ │ ├── Genius.kt │ │ │ │ ├── LrcLib.kt │ │ │ │ ├── LyricsProvider.kt │ │ │ │ ├── Netease.kt │ │ │ │ └── PetitLyrics.kt │ │ │ └── storage │ │ │ │ ├── LyricsDatabase.kt │ │ │ │ └── SongsDao.kt │ │ │ ├── exceptions │ │ │ ├── GenericException.kt │ │ │ ├── LyricsApiException.kt │ │ │ ├── LyricsNotFoundException.kt │ │ │ ├── NetworkException.kt │ │ │ ├── NoMusicPlayingException.kt │ │ │ ├── NoNotifPermsException.kt │ │ │ └── ParseException.kt │ │ │ ├── model │ │ │ ├── LyricsType.kt │ │ │ ├── SearchResult.kt │ │ │ ├── SongMeta.kt │ │ │ ├── SongWithLyrics.kt │ │ │ └── SyncedLyrics.kt │ │ │ ├── service │ │ │ └── DummyNotificationListenerService.kt │ │ │ ├── ui │ │ │ ├── about │ │ │ │ ├── AboutActivity.kt │ │ │ │ └── RecyclerAdapter.kt │ │ │ ├── fastlyrics │ │ │ │ ├── FastLyricsFragment.kt │ │ │ │ ├── FastLyricsViewModel.kt │ │ │ │ └── States.kt │ │ │ ├── permission │ │ │ │ └── PermissionActivity.kt │ │ │ ├── saved │ │ │ │ ├── DetailsLookup.kt │ │ │ │ ├── RecyclerAdapter.kt │ │ │ │ ├── SavedActivity.kt │ │ │ │ └── SavedViewModel.kt │ │ │ ├── search │ │ │ │ ├── DetailsLookup.kt │ │ │ │ ├── RecyclerAdapter.kt │ │ │ │ ├── SearchFragment.kt │ │ │ │ ├── SearchTimer.kt │ │ │ │ ├── SearchViewModel.kt │ │ │ │ └── SelectionPredicate.kt │ │ │ ├── settings │ │ │ │ ├── ProviderRecyclerAdapter.kt │ │ │ │ ├── ProviderSettingsFragment.kt │ │ │ │ ├── SettingsActivity.kt │ │ │ │ └── SettingsFragment.kt │ │ │ └── viewlyrics │ │ │ │ ├── ViewLyricsActivity.kt │ │ │ │ └── ViewLyricsViewModel.kt │ │ │ └── utils │ │ │ ├── DebouncedMutableLiveData.kt │ │ │ ├── PlaceholderDrawable.kt │ │ │ ├── ProviderOrder.kt │ │ │ └── Utils.kt │ └── res │ │ ├── drawable │ │ ├── baseline_arrow_forward_24.xml │ │ ├── baseline_check_circle_24.xml │ │ ├── baseline_close_24.xml │ │ ├── baseline_code_24.xml │ │ ├── baseline_drag_handle_24.xml │ │ ├── baseline_error_outline_24.xml │ │ ├── baseline_open_in_new_24.xml │ │ ├── deezer.xml │ │ ├── fastlyrics.xml │ │ ├── genius.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_launcher_monochrome.xml │ │ ├── lrclib.xml │ │ ├── netease.xml │ │ ├── outline_cloud_download_24.xml │ │ ├── outline_delete_24.xml │ │ ├── outline_info_24.xml │ │ ├── outline_music_off_24.xml │ │ ├── outline_notifications_24.xml │ │ ├── outline_queue_music_24.xml │ │ ├── outline_search_24.xml │ │ ├── outline_settings_24.xml │ │ ├── petitlyrics.xml │ │ └── round_music_note_24.xml │ │ ├── layout │ │ ├── activity_about.xml │ │ ├── activity_main.xml │ │ ├── activity_permission.xml │ │ ├── activity_saved.xml │ │ ├── activity_settings.xml │ │ ├── activity_view_lyrics.xml │ │ ├── app_bar_main.xml │ │ ├── fragment_fast_lyrics.xml │ │ ├── fragment_provider_settings.xml │ │ ├── fragment_search.xml │ │ ├── layout_error.xml │ │ ├── layout_header.xml │ │ ├── layout_lyrics.xml │ │ ├── layout_toolbar.xml │ │ ├── list_item_provider.xml │ │ ├── list_item_provider_setting.xml │ │ ├── list_item_song.xml │ │ ├── nav_header_main.xml │ │ └── preference_widget_switch_m3.xml │ │ ├── menu │ │ ├── activity_main_drawer.xml │ │ ├── fragment_saved_contextual_appbar_menu.xml │ │ └── menu_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── navigation │ │ └── mobile_navigation.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-night │ │ ├── colors.xml │ │ ├── styles.xml │ │ └── themes.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ │ └── xml │ │ ├── locales_config.xml │ │ └── root_preferences.xml │ └── test │ └── java │ └── io │ └── github │ └── teccheck │ └── fastlyrics │ └── ExampleUnitTest.kt ├── assets └── screenshots.svg ├── fastlane ├── metadata │ └── android │ │ ├── de-DE │ │ ├── changelogs │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ ├── 5.txt │ │ │ └── 6.txt │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── en-US │ │ ├── changelogs │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ ├── 5.txt │ │ │ └── 6.txt │ │ ├── full_description.txt │ │ ├── images │ │ │ ├── featureGraphic.png │ │ │ ├── icon.png │ │ │ └── phoneScreenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ ├── short_description.txt │ │ └── title.txt │ │ ├── it │ │ ├── changelogs │ │ │ ├── 1.txt │ │ │ └── 2.txt │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt │ │ └── pl │ │ ├── changelogs │ │ ├── 1.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ └── 4.txt │ │ ├── full_description.txt │ │ ├── short_description.txt │ │ └── title.txt └── svg │ ├── AppIcon.svg │ └── Banner.svg ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.ci/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/.ci/lint.sh -------------------------------------------------------------------------------- /.codespellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/.codespellrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/.github/workflows/checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/schemas/io.github.teccheck.fastlyrics.api.storage.LyricsDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/schemas/io.github.teccheck.fastlyrics.api.storage.LyricsDatabase/1.json -------------------------------------------------------------------------------- /app/schemas/io.github.teccheck.fastlyrics.api.storage.LyricsDatabase/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/schemas/io.github.teccheck.fastlyrics.api.storage.LyricsDatabase/2.json -------------------------------------------------------------------------------- /app/schemas/io.github.teccheck.fastlyrics.api.storage.LyricsDatabase/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/schemas/io.github.teccheck.fastlyrics.api.storage.LyricsDatabase/3.json -------------------------------------------------------------------------------- /app/schemas/io.github.teccheck.fastlyrics.api.storage.LyricsDatabase/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/schemas/io.github.teccheck.fastlyrics.api.storage.LyricsDatabase/4.json -------------------------------------------------------------------------------- /app/schemas/io.github.teccheck.fastlyrics.api.storage.LyricsDatabase/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/schemas/io.github.teccheck.fastlyrics.api.storage.LyricsDatabase/5.json -------------------------------------------------------------------------------- /app/src/androidTest/java/io/github/teccheck/fastlyrics/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/androidTest/java/io/github/teccheck/fastlyrics/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/BaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/BaseActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/FastLyricsApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/FastLyricsApp.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/Settings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/Settings.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/Tokens.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/Tokens.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/api/LyricStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/api/LyricStorage.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/api/LyricsApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/api/LyricsApi.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/api/MediaSession.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/api/MediaSession.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/api/provider/Deezer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/api/provider/Deezer.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/api/provider/Genius.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/api/provider/Genius.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/api/provider/LrcLib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/api/provider/LrcLib.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/api/provider/LyricsProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/api/provider/LyricsProvider.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/api/provider/Netease.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/api/provider/Netease.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/api/provider/PetitLyrics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/api/provider/PetitLyrics.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/api/storage/LyricsDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/api/storage/LyricsDatabase.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/api/storage/SongsDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/api/storage/SongsDao.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/exceptions/GenericException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/exceptions/GenericException.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/exceptions/LyricsApiException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/exceptions/LyricsApiException.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/exceptions/LyricsNotFoundException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/exceptions/LyricsNotFoundException.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/exceptions/NetworkException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/exceptions/NetworkException.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/exceptions/NoMusicPlayingException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/exceptions/NoMusicPlayingException.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/exceptions/NoNotifPermsException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/exceptions/NoNotifPermsException.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/exceptions/ParseException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/exceptions/ParseException.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/model/LyricsType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/model/LyricsType.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/model/SearchResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/model/SearchResult.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/model/SongMeta.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/model/SongMeta.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/model/SongWithLyrics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/model/SongWithLyrics.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/model/SyncedLyrics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/model/SyncedLyrics.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/service/DummyNotificationListenerService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/service/DummyNotificationListenerService.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/about/AboutActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/about/AboutActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/about/RecyclerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/about/RecyclerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/fastlyrics/FastLyricsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/fastlyrics/FastLyricsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/fastlyrics/FastLyricsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/fastlyrics/FastLyricsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/fastlyrics/States.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/fastlyrics/States.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/permission/PermissionActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/permission/PermissionActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/saved/DetailsLookup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/saved/DetailsLookup.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/saved/RecyclerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/saved/RecyclerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/saved/SavedActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/saved/SavedActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/saved/SavedViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/saved/SavedViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/search/DetailsLookup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/search/DetailsLookup.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/search/RecyclerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/search/RecyclerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/search/SearchFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/search/SearchFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/search/SearchTimer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/search/SearchTimer.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/search/SearchViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/search/SearchViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/search/SelectionPredicate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/search/SelectionPredicate.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/settings/ProviderRecyclerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/settings/ProviderRecyclerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/settings/ProviderSettingsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/settings/ProviderSettingsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/settings/SettingsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/settings/SettingsActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/settings/SettingsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/settings/SettingsFragment.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/viewlyrics/ViewLyricsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/viewlyrics/ViewLyricsActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/ui/viewlyrics/ViewLyricsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/ui/viewlyrics/ViewLyricsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/utils/DebouncedMutableLiveData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/utils/DebouncedMutableLiveData.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/utils/PlaceholderDrawable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/utils/PlaceholderDrawable.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/utils/ProviderOrder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/utils/ProviderOrder.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/teccheck/fastlyrics/utils/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/java/io/github/teccheck/fastlyrics/utils/Utils.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_arrow_forward_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/baseline_arrow_forward_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_check_circle_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/baseline_check_circle_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_close_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/baseline_close_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_code_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/baseline_code_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_drag_handle_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/baseline_drag_handle_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_error_outline_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/baseline_error_outline_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_open_in_new_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/baseline_open_in_new_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/deezer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/deezer.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/fastlyrics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/fastlyrics.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/genius.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/genius.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/lrclib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/lrclib.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/netease.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/netease.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_cloud_download_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/outline_cloud_download_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_delete_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/outline_delete_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_info_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/outline_info_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_music_off_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/outline_music_off_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_notifications_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/outline_notifications_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_queue_music_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/outline_queue_music_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_search_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/outline_search_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/outline_settings_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/outline_settings_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/petitlyrics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/petitlyrics.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/round_music_note_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/drawable/round_music_note_24.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/activity_about.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_permission.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/activity_permission.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_saved.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/activity_saved.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_view_lyrics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/activity_view_lyrics.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/app_bar_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/app_bar_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_fast_lyrics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/fragment_fast_lyrics.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_provider_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/fragment_provider_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/fragment_search.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/layout_error.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/layout_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_lyrics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/layout_lyrics.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/layout_toolbar.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item_provider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/list_item_provider.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item_provider_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/list_item_provider_setting.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item_song.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/list_item_song.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/nav_header_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/nav_header_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/preference_widget_switch_m3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/layout/preference_widget_switch_m3.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/activity_main_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/menu/activity_main_drawer.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/fragment_saved_contextual_appbar_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/menu/fragment_saved_contextual_appbar_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/navigation/mobile_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/navigation/mobile_navigation.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/locales_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/xml/locales_config.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/root_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/main/res/xml/root_preferences.xml -------------------------------------------------------------------------------- /app/src/test/java/io/github/teccheck/fastlyrics/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/app/src/test/java/io/github/teccheck/fastlyrics/ExampleUnitTest.kt -------------------------------------------------------------------------------- /assets/screenshots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/assets/screenshots.svg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | Grundlegende Funktionalität 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | Automatische Aktualiserung des Songtextes 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/de-DE/changelogs/3.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/de-DE/changelogs/4.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/de-DE/changelogs/5.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/changelogs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/de-DE/changelogs/6.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/de-DE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/de-DE/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | FastLyrics 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | Added basic functionality 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | Added automatic refresh 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/changelogs/3.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/changelogs/4.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/changelogs/5.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/changelogs/6.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/7.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | FastLyrics 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | Aggiunte funzioni base 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it/changelogs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/it/changelogs/2.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/it/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/it/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it/title.txt: -------------------------------------------------------------------------------- 1 | FastLyrics 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | Dodano podstawowe funkcje 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/changelogs/2.txt: -------------------------------------------------------------------------------- 1 | Dodano automatyczne odświeżanie 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/pl/changelogs/3.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/changelogs/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/pl/changelogs/4.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/pl/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/metadata/android/pl/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/title.txt: -------------------------------------------------------------------------------- 1 | FastLyrics 2 | -------------------------------------------------------------------------------- /fastlane/svg/AppIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/svg/AppIcon.svg -------------------------------------------------------------------------------- /fastlane/svg/Banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/fastlane/svg/Banner.svg -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teccheck/FastLyrics/HEAD/settings.gradle --------------------------------------------------------------------------------