Showing preview only (8,979K chars total). Download the full file or copy to clipboard to get everything.
Repository: MetrolistGroup/Metrolist
Branch: main
Commit: c1802c079c62
Files: 1016
Total size: 8.3 MB
Directory structure:
gitextract__a69pf7r/
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.yml
│ │ ├── config.yml
│ │ └── feature_request.yml
│ ├── actions/
│ │ └── setup-protobuf/
│ │ └── action.yml
│ ├── pull_request_template.md
│ ├── scripts/
│ │ └── parse_changelog.sh
│ └── workflows/
│ ├── build.yml
│ ├── build_pr.yml
│ ├── build_quick.yml
│ └── release.yml
├── .gitignore
├── .gitmodules
├── AGENTS.md
├── LICENSE
├── README.md
├── app/
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── generate_proto.sh
│ ├── lint.xml
│ ├── proguard-rules.pro
│ ├── schemas/
│ │ └── com.metrolist.music.db.InternalDatabase/
│ │ ├── 1.json
│ │ ├── 10.json
│ │ ├── 11.json
│ │ ├── 12.json
│ │ ├── 13.json
│ │ ├── 14.json
│ │ ├── 15.json
│ │ ├── 16.json
│ │ ├── 17.json
│ │ ├── 18.json
│ │ ├── 19.json
│ │ ├── 2.json
│ │ ├── 20.json
│ │ ├── 21.json
│ │ ├── 22.json
│ │ ├── 23.json
│ │ ├── 24.json
│ │ ├── 25.json
│ │ ├── 26.json
│ │ ├── 27.json
│ │ ├── 28.json
│ │ ├── 29.json
│ │ ├── 3.json
│ │ ├── 30.json
│ │ ├── 31.json
│ │ ├── 32.json
│ │ ├── 33.json
│ │ ├── 34.json
│ │ ├── 35.json
│ │ ├── 36.json
│ │ ├── 4.json
│ │ ├── 5.json
│ │ ├── 6.json
│ │ ├── 7.json
│ │ ├── 8.json
│ │ └── 9.json
│ └── src/
│ ├── debug/
│ │ └── res/
│ │ └── xml/
│ │ └── shortcuts.xml
│ ├── foss/
│ │ ├── AndroidManifest.xml
│ │ └── kotlin/
│ │ └── com/
│ │ └── metrolist/
│ │ └── music/
│ │ ├── cast/
│ │ │ └── CastOptionsProvider.kt
│ │ ├── playback/
│ │ │ └── CastConnectionHandler.kt
│ │ └── ui/
│ │ └── component/
│ │ └── CastButton.kt
│ ├── gms/
│ │ └── kotlin/
│ │ └── com/
│ │ └── metrolist/
│ │ └── music/
│ │ ├── cast/
│ │ │ ├── CastManager.kt
│ │ │ └── CastOptionsProvider.kt
│ │ ├── playback/
│ │ │ └── CastConnectionHandler.kt
│ │ └── ui/
│ │ └── component/
│ │ ├── CastButton.kt
│ │ └── CastPickerSheet.kt
│ ├── izzy/
│ │ ├── AndroidManifest.xml
│ │ └── kotlin/
│ │ └── com/
│ │ └── metrolist/
│ │ └── music/
│ │ ├── cast/
│ │ │ └── CastOptionsProvider.kt
│ │ ├── playback/
│ │ │ └── CastConnectionHandler.kt
│ │ └── ui/
│ │ └── component/
│ │ └── CastButton.kt
│ └── main/
│ ├── AndroidManifest.xml
│ ├── assets/
│ │ ├── po_token.html
│ │ └── solver/
│ │ ├── astring.js
│ │ ├── meriyah.js
│ │ └── yt.solver.core.js
│ ├── kotlin/
│ │ └── com/
│ │ ├── dpi/
│ │ │ ├── ActivityLifecycleManager.kt
│ │ │ ├── BaseLifecycleContentProvider.kt
│ │ │ ├── DensityConfiguration.kt
│ │ │ └── DensityScaler.kt
│ │ └── metrolist/
│ │ └── music/
│ │ ├── App.kt
│ │ ├── MainActivity.kt
│ │ ├── api/
│ │ │ ├── DeepLService.kt
│ │ │ ├── MistralService.kt
│ │ │ ├── OpenRouterService.kt
│ │ │ └── OpenRouterStreamingService.kt
│ │ ├── constants/
│ │ │ ├── Dimensions.kt
│ │ │ ├── HistorySource.kt
│ │ │ ├── LibraryFilter.kt
│ │ │ ├── MediaSessionConstants.kt
│ │ │ ├── PreferenceKeys.kt
│ │ │ └── StatPeriod.kt
│ │ ├── db/
│ │ │ ├── Converters.kt
│ │ │ ├── DatabaseDao.kt
│ │ │ ├── MusicDatabase.kt
│ │ │ ├── daos/
│ │ │ │ └── SpeedDialDao.kt
│ │ │ └── entities/
│ │ │ ├── Album.kt
│ │ │ ├── AlbumArtistMap.kt
│ │ │ ├── AlbumEntity.kt
│ │ │ ├── AlbumWithSongs.kt
│ │ │ ├── Artist.kt
│ │ │ ├── ArtistEntity.kt
│ │ │ ├── Event.kt
│ │ │ ├── EventWithSong.kt
│ │ │ ├── FormatEntity.kt
│ │ │ ├── LocalItem.kt
│ │ │ ├── LyricsEntity.kt
│ │ │ ├── PlayCountEntity.kt
│ │ │ ├── Playlist.kt
│ │ │ ├── PlaylistEntity.kt
│ │ │ ├── PlaylistSong.kt
│ │ │ ├── PlaylistSongMap.kt
│ │ │ ├── PlaylistSongMapPreview.kt
│ │ │ ├── PodcastEntity.kt
│ │ │ ├── RecognitionHistory.kt
│ │ │ ├── RelatedSongMap.kt
│ │ │ ├── SearchHistory.kt
│ │ │ ├── SetVideoIdEntity.kt
│ │ │ ├── Song.kt
│ │ │ ├── SongAlbumMap.kt
│ │ │ ├── SongArtistMap.kt
│ │ │ ├── SongEntity.kt
│ │ │ ├── SongWithStats.kt
│ │ │ ├── SortedSongAlbumMap.kt
│ │ │ ├── SortedSongArtistMap.kt
│ │ │ └── SpeedDialItem.kt
│ │ ├── di/
│ │ │ ├── AppModule.kt
│ │ │ ├── LyricsHelperEntryPoint.kt
│ │ │ ├── NetworkModule.kt
│ │ │ ├── Qualifiers.kt
│ │ │ └── WrappedModule.kt
│ │ ├── eq/
│ │ │ ├── EqualizerService.kt
│ │ │ ├── audio/
│ │ │ │ ├── BiquadFilter.kt
│ │ │ │ └── CustomEqualizerAudioProcessor.kt
│ │ │ └── data/
│ │ │ ├── EQProfileRepository.kt
│ │ │ ├── FilterType.kt
│ │ │ ├── ParametricEQ.kt
│ │ │ └── ParametricEQParser.kt
│ │ ├── extensions/
│ │ │ ├── ContextExt.kt
│ │ │ ├── CoroutineExt.kt
│ │ │ ├── FileExt.kt
│ │ │ ├── ListExt.kt
│ │ │ ├── MediaItemExt.kt
│ │ │ ├── PlayerExt.kt
│ │ │ ├── QueueExt.kt
│ │ │ ├── StringExt.kt
│ │ │ └── UtilExt.kt
│ │ ├── listentogether/
│ │ │ ├── ListenTogetherActionReceiver.kt
│ │ │ ├── ListenTogetherClient.kt
│ │ │ ├── ListenTogetherManager.kt
│ │ │ ├── ListenTogetherServers.kt
│ │ │ ├── MessageCodec.kt
│ │ │ └── Protocol.kt
│ │ ├── lyrics/
│ │ │ ├── BetterLyricsProvider.kt
│ │ │ ├── KuGouLyricsProvider.kt
│ │ │ ├── LrcLibLyricsProvider.kt
│ │ │ ├── LyricsEntry.kt
│ │ │ ├── LyricsHelper.kt
│ │ │ ├── LyricsPlusProvider.kt
│ │ │ ├── LyricsProvider.kt
│ │ │ ├── LyricsProviderRegistry.kt
│ │ │ ├── LyricsTranslationHelper.kt
│ │ │ ├── LyricsUtils.kt
│ │ │ ├── SimpMusicLyricsProvider.kt
│ │ │ ├── YouTubeLyricsProvider.kt
│ │ │ └── YouTubeSubtitleLyricsProvider.kt
│ │ ├── models/
│ │ │ ├── ItemsPage.kt
│ │ │ ├── MediaMetadata.kt
│ │ │ ├── PersistPlayerState.kt
│ │ │ ├── PersistQueue.kt
│ │ │ └── SimilarRecommendation.kt
│ │ ├── playback/
│ │ │ ├── DownloadUtil.kt
│ │ │ ├── ExoDownloadService.kt
│ │ │ ├── MediaLibrarySessionCallback.kt
│ │ │ ├── MetrolistCacheEvictor.kt
│ │ │ ├── MusicService.kt
│ │ │ ├── PlayerConnection.kt
│ │ │ ├── SleepTimer.kt
│ │ │ ├── alarm/
│ │ │ │ ├── MusicAlarmReceiver.kt
│ │ │ │ ├── MusicAlarmRescheduleReceiver.kt
│ │ │ │ ├── MusicAlarmScheduler.kt
│ │ │ │ └── MusicAlarmStore.kt
│ │ │ ├── audio/
│ │ │ │ └── SilenceDetectorAudioProcessor.kt
│ │ │ └── queues/
│ │ │ ├── EmptyQueue.kt
│ │ │ ├── ListQueue.kt
│ │ │ ├── LocalAlbumRadio.kt
│ │ │ ├── Queue.kt
│ │ │ ├── YouTubeAlbumRadio.kt
│ │ │ ├── YouTubePlaylistQueue.kt
│ │ │ └── YouTubeQueue.kt
│ │ ├── quicksettings/
│ │ │ └── MusicRecognizerTileService.kt
│ │ ├── recognition/
│ │ │ ├── AudioResampler.kt
│ │ │ ├── MusicRecognitionService.kt
│ │ │ ├── RecognitionForegroundService.kt
│ │ │ ├── RecognitionLaunchActivity.kt
│ │ │ ├── ShazamSignatureGenerator.kt
│ │ │ └── VibraSignature.kt
│ │ ├── ui/
│ │ │ ├── component/
│ │ │ │ ├── AppNavigation.kt
│ │ │ │ ├── AutoResizeText.kt
│ │ │ │ ├── BigSeekBar.kt
│ │ │ │ ├── BottomSheet.kt
│ │ │ │ ├── BottomSheetMenu.kt
│ │ │ │ ├── BottomSheetPage.kt
│ │ │ │ ├── ChipsRow.kt
│ │ │ │ ├── CreatePlaylistDialog.kt
│ │ │ │ ├── Dialog.kt
│ │ │ │ ├── DraggableLyricsProviderList.kt
│ │ │ │ ├── DraggableScrollBarOverlay.kt
│ │ │ │ ├── EmptyPlaceholder.kt
│ │ │ │ ├── EnumDialog.kt
│ │ │ │ ├── ExpandableText.kt
│ │ │ │ ├── GridMenu.kt
│ │ │ │ ├── HideOnScrollFAB.kt
│ │ │ │ ├── IconButton.kt
│ │ │ │ ├── IntegrationCard.kt
│ │ │ │ ├── Items.kt
│ │ │ │ ├── Library.kt
│ │ │ │ ├── Lyrics.kt
│ │ │ │ ├── LyricsImageCard.kt
│ │ │ │ ├── Material3SettingsGroup.kt
│ │ │ │ ├── Menu.kt
│ │ │ │ ├── NavigationTile.kt
│ │ │ │ ├── NavigationTitle.kt
│ │ │ │ ├── NewMenuComponents.kt
│ │ │ │ ├── PlayerSlider.kt
│ │ │ │ ├── PlayingIndicator.kt
│ │ │ │ ├── Preference.kt
│ │ │ │ ├── RandomizeGridItem.kt
│ │ │ │ ├── ReleaseNotesCard.kt
│ │ │ │ ├── SearchBar.kt
│ │ │ │ ├── SettingsSleepTimerDialog.kt
│ │ │ │ ├── SongDropdownSelect.kt
│ │ │ │ ├── SortHeader.kt
│ │ │ │ ├── SpeedDialGridItem.kt
│ │ │ │ ├── SquigglySlider.kt
│ │ │ │ ├── TimeTransfer.kt
│ │ │ │ ├── VolumeSlider.kt
│ │ │ │ ├── WavySlider.kt
│ │ │ │ └── shimmer/
│ │ │ │ ├── ButtonPlaceholder.kt
│ │ │ │ ├── GridItemPlaceholder.kt
│ │ │ │ ├── ListItemPlaceholder.kt
│ │ │ │ ├── ShimmerHost.kt
│ │ │ │ └── TextPlaceholder.kt
│ │ │ ├── menu/
│ │ │ │ ├── AddToPlaylistDialog.kt
│ │ │ │ ├── AddToPlaylistDialogOnline.kt
│ │ │ │ ├── AlbumMenu.kt
│ │ │ │ ├── ArtistMenu.kt
│ │ │ │ ├── CsvColumnMappingDialog.kt
│ │ │ │ ├── CustomThumbnailMenu.kt
│ │ │ │ ├── ImportPlaylistDialog.kt
│ │ │ │ ├── LoadingScreen.kt
│ │ │ │ ├── LyricsMenu.kt
│ │ │ │ ├── PlayerMenu.kt
│ │ │ │ ├── PlaylistMenu.kt
│ │ │ │ ├── PlaylistScreenMenus.kt
│ │ │ │ ├── QueueMenu.kt
│ │ │ │ ├── SelectionSongsMenu.kt
│ │ │ │ ├── SongMenu.kt
│ │ │ │ ├── YouTubeAlbumMenu.kt
│ │ │ │ ├── YouTubeArtistMenu.kt
│ │ │ │ ├── YouTubePlaylistMenu.kt
│ │ │ │ ├── YouTubeSelectionSongMenu.kt
│ │ │ │ └── YouTubeSongMenu.kt
│ │ │ ├── player/
│ │ │ │ ├── MiniPlayer.kt
│ │ │ │ ├── PlaybackError.kt
│ │ │ │ ├── Player.kt
│ │ │ │ ├── Queue.kt
│ │ │ │ ├── Thumbnail.kt
│ │ │ │ └── ThumbnailSnapUtils.kt
│ │ │ ├── screens/
│ │ │ │ ├── AccountScreen.kt
│ │ │ │ ├── AlbumScreen.kt
│ │ │ │ ├── BrowseScreen.kt
│ │ │ │ ├── ChartsScreen.kt
│ │ │ │ ├── CrashActivity.kt
│ │ │ │ ├── ExploreScreen.kt
│ │ │ │ ├── HistoryScreen.kt
│ │ │ │ ├── HomeScreen.kt
│ │ │ │ ├── ListenTogetherScreen.kt
│ │ │ │ ├── LoginScreen.kt
│ │ │ │ ├── MoodAndGenresScreen.kt
│ │ │ │ ├── NavigationBuilder.kt
│ │ │ │ ├── NewReleaseScreen.kt
│ │ │ │ ├── Screens.kt
│ │ │ │ ├── StatsScreen.kt
│ │ │ │ ├── YouTubeBrowseScreen.kt
│ │ │ │ ├── artist/
│ │ │ │ │ ├── ArtistAlbumsScreen.kt
│ │ │ │ │ ├── ArtistItemsScreen.kt
│ │ │ │ │ ├── ArtistScreen.kt
│ │ │ │ │ └── ArtistSongsScreen.kt
│ │ │ │ ├── equalizer/
│ │ │ │ │ ├── EQState.kt
│ │ │ │ │ ├── EQViewModel.kt
│ │ │ │ │ └── EqScreen.kt
│ │ │ │ ├── library/
│ │ │ │ │ ├── LibraryAlbumsScreen.kt
│ │ │ │ │ ├── LibraryArtistsScreen.kt
│ │ │ │ │ ├── LibraryMixScreen.kt
│ │ │ │ │ ├── LibraryPlaylistsScreen.kt
│ │ │ │ │ ├── LibraryPodcastsScreen.kt
│ │ │ │ │ ├── LibraryScreen.kt
│ │ │ │ │ └── LibrarySongsScreen.kt
│ │ │ │ ├── playlist/
│ │ │ │ │ ├── AutoPlaylistScreen.kt
│ │ │ │ │ ├── CachePlaylistScreen.kt
│ │ │ │ │ ├── LocalPlaylistScreen.kt
│ │ │ │ │ ├── OnlinePlaylistScreen.kt
│ │ │ │ │ └── TopPlaylistScreen.kt
│ │ │ │ ├── podcast/
│ │ │ │ │ └── OnlinePodcastScreen.kt
│ │ │ │ ├── recognition/
│ │ │ │ │ ├── RecognitionHistoryScreen.kt
│ │ │ │ │ └── RecognitionScreen.kt
│ │ │ │ ├── search/
│ │ │ │ │ ├── LocalSearchScreen.kt
│ │ │ │ │ ├── OnlineSearchResult.kt
│ │ │ │ │ ├── OnlineSearchScreen.kt
│ │ │ │ │ └── SearchScreen.kt
│ │ │ │ ├── settings/
│ │ │ │ │ ├── AboutScreen.kt
│ │ │ │ │ ├── AccountSettings.kt
│ │ │ │ │ ├── AiSettings.kt
│ │ │ │ │ ├── AlarmSettings.kt
│ │ │ │ │ ├── AndroidAutoSettings.kt
│ │ │ │ │ ├── AppearanceSettings.kt
│ │ │ │ │ ├── BackupAndRestore.kt
│ │ │ │ │ ├── ChangelogScreen.kt
│ │ │ │ │ ├── ContentSettings.kt
│ │ │ │ │ ├── DiscordLoginScreen.kt
│ │ │ │ │ ├── PlayerSettings.kt
│ │ │ │ │ ├── PrivacySettings.kt
│ │ │ │ │ ├── RomanizationSettings.kt
│ │ │ │ │ ├── SettingsScreen.kt
│ │ │ │ │ ├── StorageSettings.kt
│ │ │ │ │ ├── ThemeScreen.kt
│ │ │ │ │ ├── UpdaterSettings.kt
│ │ │ │ │ └── integrations/
│ │ │ │ │ ├── DiscordSettings.kt
│ │ │ │ │ ├── IntegrationScreen.kt
│ │ │ │ │ ├── LastFMSettings.kt
│ │ │ │ │ └── ListenTogetherSettings.kt
│ │ │ │ └── wrapped/
│ │ │ │ ├── WrappedAudioService.kt
│ │ │ │ ├── WrappedConstants.kt
│ │ │ │ ├── WrappedData.kt
│ │ │ │ ├── WrappedEntryPoint.kt
│ │ │ │ ├── WrappedManager.kt
│ │ │ │ ├── WrappedScreen.kt
│ │ │ │ ├── WrappedState.kt
│ │ │ │ ├── WrappedViewModel.kt
│ │ │ │ ├── components/
│ │ │ │ │ ├── AnimatedBackground.kt
│ │ │ │ │ ├── AnimatedDecorativeElement.kt
│ │ │ │ │ └── AutoResizingText.kt
│ │ │ │ └── pages/
│ │ │ │ ├── AlbumPages.kt
│ │ │ │ ├── ConclusionPage.kt
│ │ │ │ ├── PlaylistPage.kt
│ │ │ │ ├── WrappedIntro.kt
│ │ │ │ ├── WrappedMinutesScreen.kt
│ │ │ │ ├── WrappedMinutesTease.kt
│ │ │ │ ├── WrappedTop5ArtistsScreen.kt
│ │ │ │ ├── WrappedTop5SongsScreen.kt
│ │ │ │ ├── WrappedTopArtistScreen.kt
│ │ │ │ ├── WrappedTopSongScreen.kt
│ │ │ │ ├── WrappedTotalArtistsScreen.kt
│ │ │ │ └── WrappedTotalSongsScreen.kt
│ │ │ ├── theme/
│ │ │ │ ├── Font.kt
│ │ │ │ ├── PlayerColorExtractor.kt
│ │ │ │ ├── PlayerSliderColors.kt
│ │ │ │ ├── Theme.kt
│ │ │ │ ├── Type.kt
│ │ │ │ └── bbh_bartle.kt
│ │ │ └── utils/
│ │ │ ├── AppBar.kt
│ │ │ ├── FadingEdge.kt
│ │ │ ├── ItemWrapper.kt
│ │ │ ├── KeyUtils.kt
│ │ │ ├── LazyGridSnapLayoutInfoProvider.kt
│ │ │ ├── NavControllerUtils.kt
│ │ │ ├── ScrollUtils.kt
│ │ │ ├── ShapeUtils.kt
│ │ │ ├── ShowMediaInfo.kt
│ │ │ ├── ShowOffsetDialog.kt
│ │ │ ├── StringUtils.kt
│ │ │ └── YouTubeUtils.kt
│ │ ├── utils/
│ │ │ ├── CoilBitmapLoader.kt
│ │ │ ├── ComposeDebugUtils.kt
│ │ │ ├── ComposeToImage.kt
│ │ │ ├── CrashHandler.kt
│ │ │ ├── DataStore.kt
│ │ │ ├── DiscordRPC.kt
│ │ │ ├── IconUtils.kt
│ │ │ ├── NetworkConnectivityObserver.kt
│ │ │ ├── NetworkUtils.kt
│ │ │ ├── PlaylistExporter.kt
│ │ │ ├── PodcastRefreshTrigger.kt
│ │ │ ├── ScrobbleManager.kt
│ │ │ ├── StringUtils.kt
│ │ │ ├── SuperProperties.kt
│ │ │ ├── SyncUtils.kt
│ │ │ ├── Updater.kt
│ │ │ ├── Utils.kt
│ │ │ ├── YTPlayerUtils.kt
│ │ │ ├── cipher/
│ │ │ │ ├── CipherDeobfuscator.kt
│ │ │ │ ├── CipherWebView.kt
│ │ │ │ ├── FunctionNameExtractor.kt
│ │ │ │ └── PlayerJsFetcher.kt
│ │ │ ├── potoken/
│ │ │ │ ├── JavaScriptUtil.kt
│ │ │ │ ├── PoTokenException.kt
│ │ │ │ ├── PoTokenGenerator.kt
│ │ │ │ ├── PoTokenResult.kt
│ │ │ │ └── PoTokenWebView.kt
│ │ │ └── sabr/
│ │ │ ├── EjsNTransformSolver.kt
│ │ │ └── SabrException.kt
│ │ ├── viewmodels/
│ │ │ ├── AccountSettingsViewModel.kt
│ │ │ ├── AccountViewModel.kt
│ │ │ ├── AlbumViewModel.kt
│ │ │ ├── ArtistAlbumsViewModel.kt
│ │ │ ├── ArtistItemsViewModel.kt
│ │ │ ├── ArtistViewModel.kt
│ │ │ ├── AutoPlaylistViewModel.kt
│ │ │ ├── BackupRestoreViewModel.kt
│ │ │ ├── BrowseViewModel.kt
│ │ │ ├── CachePlaylistViewModel.kt
│ │ │ ├── ChartsViewModel.kt
│ │ │ ├── ExploreViewModel.kt
│ │ │ ├── HistoryViewModel.kt
│ │ │ ├── HomeViewModel.kt
│ │ │ ├── LibraryViewModels.kt
│ │ │ ├── ListenTogetherViewModel.kt
│ │ │ ├── LocalPlaylistViewModel.kt
│ │ │ ├── LocalSearchViewModel.kt
│ │ │ ├── LyricsMenuViewModel.kt
│ │ │ ├── MoodAndGenresViewModel.kt
│ │ │ ├── NewReleaseViewModel.kt
│ │ │ ├── OnlinePlaylistViewModel.kt
│ │ │ ├── OnlinePodcastViewModel.kt
│ │ │ ├── OnlineSearchSuggestionViewModel.kt
│ │ │ ├── OnlineSearchViewModel.kt
│ │ │ ├── PlaylistsViewModel.kt
│ │ │ ├── StatsViewModel.kt
│ │ │ ├── ThemeViewModel.kt
│ │ │ ├── TopPlaylistViewModel.kt
│ │ │ └── YouTubeBrowseViewModel.kt
│ │ └── widget/
│ │ ├── MetrolistWidgetManager.kt
│ │ ├── MusicRecognizerWidgetReceiver.kt
│ │ ├── MusicRecognizerWidgetService.kt
│ │ ├── MusicWidgetReceiver.kt
│ │ └── TurntableWidgetReceiver.kt
│ └── res/
│ ├── drawable/
│ │ ├── account.xml
│ │ ├── add.xml
│ │ ├── add_circle.xml
│ │ ├── album.xml
│ │ ├── alphabet_cyrillic.xml
│ │ ├── app_logo.xml
│ │ ├── arrow_back.xml
│ │ ├── arrow_downward.xml
│ │ ├── arrow_forward.xml
│ │ ├── arrow_top_left.xml
│ │ ├── arrow_upward.xml
│ │ ├── artist.xml
│ │ ├── backup.xml
│ │ ├── baseline_event_repeat_24.xml
│ │ ├── bedtime.xml
│ │ ├── bluetooth.xml
│ │ ├── bug_report.xml
│ │ ├── buymeacoffee.xml
│ │ ├── cached.xml
│ │ ├── cast.xml
│ │ ├── cast_connected.xml
│ │ ├── check.xml
│ │ ├── clear_all.xml
│ │ ├── close.xml
│ │ ├── cloud.xml
│ │ ├── content_copy.xml
│ │ ├── contrast.xml
│ │ ├── crop.xml
│ │ ├── crown.xml
│ │ ├── delete.xml
│ │ ├── delete_history.xml
│ │ ├── discord.xml
│ │ ├── discover_tune.xml
│ │ ├── dock_to_top.xml
│ │ ├── done.xml
│ │ ├── download.xml
│ │ ├── drag_handle.xml
│ │ ├── edit.xml
│ │ ├── equalizer.xml
│ │ ├── error.xml
│ │ ├── expand_less.xml
│ │ ├── expand_more.xml
│ │ ├── explicit.xml
│ │ ├── explore_outlined.xml
│ │ ├── fast_forward.xml
│ │ ├── favorite.xml
│ │ ├── favorite_border.xml
│ │ ├── fullscreen.xml
│ │ ├── github.xml
│ │ ├── gradient.xml
│ │ ├── graphic_eq.xml
│ │ ├── grid_view.xml
│ │ ├── group.xml
│ │ ├── group_add.xml
│ │ ├── group_filled.xml
│ │ ├── group_outlined.xml
│ │ ├── hide_image.xml
│ │ ├── history.xml
│ │ ├── home_filled.xml
│ │ ├── home_outlined.xml
│ │ ├── ic_android_auto.xml
│ │ ├── ic_dynamic_icon.xml
│ │ ├── ic_heart.xml
│ │ ├── ic_heart_outline.xml
│ │ ├── ic_launcher_background_v31.xml
│ │ ├── ic_launcher_foreground.xml
│ │ ├── ic_launcher_foreground_v31.xml
│ │ ├── ic_launcher_monochrome.xml
│ │ ├── ic_push_pin.xml
│ │ ├── ic_widget_heart_nav.xml
│ │ ├── ic_widget_heart_outline_nav.xml
│ │ ├── ic_widget_mic.xml
│ │ ├── ic_widget_pause.xml
│ │ ├── ic_widget_pause_low.xml
│ │ ├── ic_widget_pause_secondary.xml
│ │ ├── ic_widget_play.xml
│ │ ├── ic_widget_play_low.xml
│ │ ├── ic_widget_play_secondary.xml
│ │ ├── ic_widget_skip_next.xml
│ │ ├── ic_widget_skip_previous.xml
│ │ ├── info.xml
│ │ ├── insert_photo.xml
│ │ ├── instagram.xml
│ │ ├── integration.xml
│ │ ├── key.xml
│ │ ├── language.xml
│ │ ├── language_japanese_latin.xml
│ │ ├── language_korean_latin.xml
│ │ ├── library_add.xml
│ │ ├── library_add_check.xml
│ │ ├── library_music.xml
│ │ ├── library_music_filled.xml
│ │ ├── library_music_outlined.xml
│ │ ├── linear_scale.xml
│ │ ├── link.xml
│ │ ├── list.xml
│ │ ├── location_on.xml
│ │ ├── lock.xml
│ │ ├── lock_open.xml
│ │ ├── login.xml
│ │ ├── logout.xml
│ │ ├── lyrics.xml
│ │ ├── manage_search.xml
│ │ ├── mic.xml
│ │ ├── more_horiz.xml
│ │ ├── more_time.xml
│ │ ├── more_vert.xml
│ │ ├── music_note.xml
│ │ ├── nav_bar.xml
│ │ ├── navigate_next.xml
│ │ ├── newspaper.xml
│ │ ├── notification.xml
│ │ ├── offline.xml
│ │ ├── palette.xml
│ │ ├── pause.xml
│ │ ├── person.xml
│ │ ├── play.xml
│ │ ├── playlist_add.xml
│ │ ├── playlist_play.xml
│ │ ├── queue_music.xml
│ │ ├── radio.xml
│ │ ├── radio_button_checked.xml
│ │ ├── radio_button_unchecked.xml
│ │ ├── refresh.xml
│ │ ├── remove.xml
│ │ ├── repeat.xml
│ │ ├── repeat_on.xml
│ │ ├── repeat_one.xml
│ │ ├── repeat_one_on.xml
│ │ ├── replay.xml
│ │ ├── restore.xml
│ │ ├── screenshot.xml
│ │ ├── search.xml
│ │ ├── search_off.xml
│ │ ├── security.xml
│ │ ├── select_all.xml
│ │ ├── settings.xml
│ │ ├── share.xml
│ │ ├── shortcut_library.xml
│ │ ├── shortcut_search.xml
│ │ ├── shuffle.xml
│ │ ├── shuffle_on.xml
│ │ ├── similar.xml
│ │ ├── skip_next.xml
│ │ ├── skip_previous.xml
│ │ ├── sliders.xml
│ │ ├── slow_motion_video.xml
│ │ ├── small_icon.xml
│ │ ├── speed.xml
│ │ ├── star.xml
│ │ ├── stats.xml
│ │ ├── storage.xml
│ │ ├── subscribe.xml
│ │ ├── subscribed.xml
│ │ ├── swipe.xml
│ │ ├── sync.xml
│ │ ├── tab.xml
│ │ ├── telegram.xml
│ │ ├── time_auto.xml
│ │ ├── timer.xml
│ │ ├── timer_arrow_down.xml
│ │ ├── token.xml
│ │ ├── translate.xml
│ │ ├── trending_up.xml
│ │ ├── tune.xml
│ │ ├── update.xml
│ │ ├── upload.xml
│ │ ├── volume_down.xml
│ │ ├── volume_mute.xml
│ │ ├── volume_off.xml
│ │ ├── volume_off_pause.xml
│ │ ├── volume_up.xml
│ │ ├── warning.xml
│ │ ├── widget_background.xml
│ │ ├── widget_like_button_bg.xml
│ │ ├── widget_mic_button_bg.xml
│ │ ├── widget_mic_button_bg_active.xml
│ │ ├── widget_mic_pulse_1.xml
│ │ ├── widget_mic_pulse_2.xml
│ │ ├── widget_mic_pulse_3.xml
│ │ ├── widget_mic_pulse_4.xml
│ │ ├── widget_mic_pulse_idle.xml
│ │ ├── widget_play_button_circular.xml
│ │ ├── widget_play_pill_bg.xml
│ │ ├── widget_progress_clip.xml
│ │ ├── widget_progress_fill.xml
│ │ ├── widget_progress_track.xml
│ │ ├── widget_turntable_default_art.xml
│ │ ├── widget_turntable_nav_bg.xml
│ │ ├── widget_turntable_play_bg.xml
│ │ └── wifi_proxy.xml
│ ├── drawable-night/
│ │ ├── widget_background.xml
│ │ ├── widget_play_pill_bg.xml
│ │ ├── widget_progress_fill.xml
│ │ ├── widget_progress_track.xml
│ │ ├── widget_turntable_nav_bg.xml
│ │ └── widget_turntable_play_bg.xml
│ ├── drawable-night-v31/
│ │ ├── widget_background.xml
│ │ ├── widget_play_pill_bg.xml
│ │ ├── widget_progress_fill.xml
│ │ ├── widget_progress_track.xml
│ │ ├── widget_turntable_nav_bg.xml
│ │ └── widget_turntable_play_bg.xml
│ ├── drawable-v31/
│ │ ├── ic_launcher_background_v31.xml
│ │ ├── ic_widget_mic.xml
│ │ ├── widget_background.xml
│ │ ├── widget_mic_button_bg.xml
│ │ ├── widget_mic_button_bg_active.xml
│ │ ├── widget_mic_pulse_1.xml
│ │ ├── widget_mic_pulse_2.xml
│ │ ├── widget_mic_pulse_3.xml
│ │ ├── widget_mic_pulse_4.xml
│ │ ├── widget_play_pill_bg.xml
│ │ ├── widget_progress_fill.xml
│ │ ├── widget_progress_track.xml
│ │ ├── widget_turntable_nav_bg.xml
│ │ └── widget_turntable_play_bg.xml
│ ├── font/
│ │ └── bbh_bartle.xml
│ ├── layout/
│ │ ├── widget_compact_square.xml
│ │ ├── widget_compact_wide.xml
│ │ ├── widget_music_player.xml
│ │ ├── widget_recognizer_compact.xml
│ │ ├── widget_recognizer_tiny.xml
│ │ ├── widget_recognizer_wide.xml
│ │ └── widget_turntable.xml
│ ├── mipmap-anydpi/
│ │ ├── ic_launcher.xml
│ │ ├── ic_launcher_round.xml
│ │ ├── ic_launcher_static.xml
│ │ └── ic_launcher_static_round.xml
│ ├── mipmap-anydpi-v31/
│ │ ├── ic_launcher.xml
│ │ └── ic_launcher_round.xml
│ ├── resources.properties
│ ├── values/
│ │ ├── app_name.xml
│ │ ├── colors.xml
│ │ ├── ic_launcher_background.xml
│ │ ├── metrolist_strings.xml
│ │ ├── strings.xml
│ │ ├── styles.xml
│ │ ├── values.xml
│ │ └── widget_colors.xml
│ ├── values-ar/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-as/
│ │ └── metrolist_strings.xml
│ ├── values-az/
│ │ └── metrolist_strings.xml
│ ├── values-b+sr+Latn/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-be/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-bg/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-bn/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-bn-rIN/
│ │ └── strings.xml
│ ├── values-bs/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-ca/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-cs/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-de/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-el/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-en-rCA/
│ │ └── strings.xml
│ ├── values-es/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-es-rUS/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-et/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-eu/
│ │ └── metrolist_strings.xml
│ ├── values-fa/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-fi/
│ │ └── strings.xml
│ ├── values-fil/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-fr/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-hi/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-hr/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-hu/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-in/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-it/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-iw/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-ja/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-km/
│ │ └── metrolist_strings.xml
│ ├── values-ko/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-lt/
│ │ └── metrolist_strings.xml
│ ├── values-mfe/
│ │ └── metrolist_strings.xml
│ ├── values-ml/
│ │ └── strings.xml
│ ├── values-ms/
│ │ └── metrolist_strings.xml
│ ├── values-nb-rNO/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-night/
│ │ ├── colors.xml
│ │ └── widget_colors.xml
│ ├── values-night-v31/
│ │ └── widget_colors.xml
│ ├── values-nl/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-nn/
│ │ └── metrolist_strings.xml
│ ├── values-or/
│ │ └── metrolist_strings.xml
│ ├── values-pa/
│ │ └── strings.xml
│ ├── values-pl/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-pt/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-pt-rBR/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-ro/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-ru/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-sk/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-sl/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-sv/
│ │ └── metrolist_strings.xml
│ ├── values-ta/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-te/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-th/
│ │ └── metrolist_strings.xml
│ ├── values-tr/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-uk/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-v31/
│ │ ├── styles.xml
│ │ └── widget_colors.xml
│ ├── values-vi/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-wae/
│ │ └── metrolist_strings.xml
│ ├── values-zh-rCN/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-zh-rTW/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── xml/
│ │ ├── automotive_app_desc.xml
│ │ ├── backup_rules.xml
│ │ ├── data_extraction_rules.xml
│ │ ├── music_widget_info.xml
│ │ ├── network_security_config.xml
│ │ ├── provider_paths.xml
│ │ ├── recognizer_widget_info.xml
│ │ ├── shortcuts.xml
│ │ └── turntable_widget_info.xml
│ └── xml-v31/
│ ├── music_widget_info.xml
│ ├── recognizer_widget_info.xml
│ └── turntable_widget_info.xml
├── betterlyrics/
│ ├── build.gradle.kts
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── kotlin/
│ └── com/
│ └── metrolist/
│ └── music/
│ └── betterlyrics/
│ ├── BetterLyrics.kt
│ ├── TTMLParser.kt
│ └── models/
│ └── Track.kt
├── build.gradle.kts
├── changelog.md
├── crowdin.yml
├── development_guide.md
├── fastlane/
│ └── metadata/
│ └── android/
│ ├── ar/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── az-AZ/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── bg/
│ │ └── short_description.txt
│ ├── ca/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── cs-CZ/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── de-DE/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── en-US/
│ │ ├── full_description.txt
│ │ ├── short_description.txt
│ │ └── title.txt
│ ├── es/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── et/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── eu-ES/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── fil/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── fr-FR/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── id/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── it/
│ │ ├── full_description.txt
│ │ ├── short_description.txt
│ │ └── title.txt
│ ├── ko-KR/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── lt/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── mfe/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── pt/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── pt-BR/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── ro/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── ru-RU/
│ │ ├── full_description.txt
│ │ ├── short_description.txt
│ │ └── title.txt
│ ├── sk/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── sl/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── te-IN/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── tr/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ └── uk-UA/
│ ├── full_description.txt
│ └── short_description.txt
├── gradle/
│ ├── gradle-daemon-jvm.properties
│ ├── libs.versions.toml
│ └── wrapper/
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── innertube/
│ ├── .gitignore
│ ├── build.gradle.kts
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── kotlin/
│ └── com/
│ └── metrolist/
│ └── innertube/
│ ├── InnerTube.kt
│ ├── NetworkConfig.kt
│ ├── YouTube.kt
│ ├── YouTubeConstants.kt
│ ├── models/
│ │ ├── AccountInfo.kt
│ │ ├── AutomixPreviewVideoRenderer.kt
│ │ ├── Badges.kt
│ │ ├── Button.kt
│ │ ├── Context.kt
│ │ ├── Continuation.kt
│ │ ├── ContinuationItemRenderer.kt
│ │ ├── Endpoint.kt
│ │ ├── GridRenderer.kt
│ │ ├── Icon.kt
│ │ ├── MediaInfo.kt
│ │ ├── Menu.kt
│ │ ├── MusicCardShelfRenderer.kt
│ │ ├── MusicCarouselShelfRenderer.kt
│ │ ├── MusicDescriptionShelfRenderer.kt
│ │ ├── MusicEditablePlaylistDetailHeaderRenderer.kt
│ │ ├── MusicMultiRowImageItemRenderer.kt
│ │ ├── MusicMultiRowListItemRenderer.kt
│ │ ├── MusicNavigationButtonRenderer.kt
│ │ ├── MusicPlaylistShelfRenderer.kt
│ │ ├── MusicQueueRenderer.kt
│ │ ├── MusicResponsiveHeaderRenderer.kt
│ │ ├── MusicResponsiveListItemRenderer.kt
│ │ ├── MusicShelfRenderer.kt
│ │ ├── MusicTwoRowItemRenderer.kt
│ │ ├── NavigationEndpoint.kt
│ │ ├── PlaylistDeleteBody.kt
│ │ ├── PlaylistPanelRenderer.kt
│ │ ├── PlaylistPanelVideoRenderer.kt
│ │ ├── ResponseContext.kt
│ │ ├── ReturnYouTubeDislikeResponse.kt
│ │ ├── Runs.kt
│ │ ├── SearchSuggestions.kt
│ │ ├── SearchSuggestionsSectionRenderer.kt
│ │ ├── SectionListRenderer.kt
│ │ ├── SubscriptionButton.kt
│ │ ├── Tabs.kt
│ │ ├── TasteProfile.kt
│ │ ├── ThumbnailRenderer.kt
│ │ ├── Thumbnails.kt
│ │ ├── TwoColumnBrowseResultsRenderer.kt
│ │ ├── UrlEndpoint.kt
│ │ ├── YTItem.kt
│ │ ├── YouTubeClient.kt
│ │ ├── YouTubeDataPage.kt
│ │ ├── YouTubeLocale.kt
│ │ ├── body/
│ │ │ ├── AccountMenuBody.kt
│ │ │ ├── BrowseBody.kt
│ │ │ ├── CreatePlaylistBody.kt
│ │ │ ├── EditPlaylistBody.kt
│ │ │ ├── FeedbackBody.kt
│ │ │ ├── GetQueueBody.kt
│ │ │ ├── GetSearchSuggestionsBody.kt
│ │ │ ├── GetTranscriptBody.kt
│ │ │ ├── LikeBody.kt
│ │ │ ├── NextBody.kt
│ │ │ ├── PlayerBody.kt
│ │ │ ├── SearchBody.kt
│ │ │ └── SubscribeBody.kt
│ │ └── response/
│ │ ├── AccountMenuResponse.kt
│ │ ├── AddItemYouTubePlaylistResponse.kt
│ │ ├── BrowseResponse.kt
│ │ ├── ContinuationResponse.kt
│ │ ├── CreatePlaylistResponse.kt
│ │ ├── EditPlaylistResponse.kt
│ │ ├── FeedbackResponse.kt
│ │ ├── GetQueueResponse.kt
│ │ ├── GetSearchSuggestionsResponse.kt
│ │ ├── GetTranscriptResponse.kt
│ │ ├── ImageUploadResponse.kt
│ │ ├── NextResponse.kt
│ │ ├── PlayerResponse.kt
│ │ └── SearchResponse.kt
│ ├── pages/
│ │ ├── AlbumPage.kt
│ │ ├── ArtistItemsContinuationPage.kt
│ │ ├── ArtistItemsPage.kt
│ │ ├── ArtistPage.kt
│ │ ├── BrowseResult.kt
│ │ ├── ChartsPage.kt
│ │ ├── ExplorePage.kt
│ │ ├── HistoryPage.kt
│ │ ├── HomePage.kt
│ │ ├── LibraryAlbumsPage.kt
│ │ ├── LibraryContinuationPage.kt
│ │ ├── LibraryPage.kt
│ │ ├── MoodAndGenres.kt
│ │ ├── NewPipe.kt
│ │ ├── NewReleaseAlbumPage.kt
│ │ ├── NextPage.kt
│ │ ├── PageHelper.kt
│ │ ├── PlaylistContinuationPage.kt
│ │ ├── PlaylistPage.kt
│ │ ├── PodcastPage.kt
│ │ ├── RelatedPage.kt
│ │ ├── SearchPage.kt
│ │ ├── SearchSuggestionPage.kt
│ │ └── SearchSummaryPage.kt
│ └── utils/
│ └── Utils.kt
├── kizzy/
│ ├── .gitignore
│ ├── build.gradle.kts
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── kotlin/
│ └── com/
│ └── my/
│ └── kizzy/
│ ├── gateway/
│ │ ├── DiscordWebSocket.kt
│ │ └── entities/
│ │ ├── HeartBeat.kt
│ │ ├── Identify.kt
│ │ ├── Payload.kt
│ │ ├── Ready.kt
│ │ ├── Resume.kt
│ │ ├── op/
│ │ │ ├── OpCode.kt
│ │ │ └── OpCodesSerializer.kt
│ │ └── presence/
│ │ ├── Activity.kt
│ │ ├── Assets.kt
│ │ ├── Metadata.kt
│ │ ├── Presence.kt
│ │ └── Timestamps.kt
│ ├── rpc/
│ │ ├── ArtworkCache.kt
│ │ ├── ExternalAssets.kt
│ │ ├── KizzyRPC.kt
│ │ ├── RpcImage.kt
│ │ └── UserInfo.kt
│ └── utils/
│ └── Ext.kt
├── kugou/
│ ├── .gitignore
│ ├── build.gradle.kts
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── kotlin/
│ └── com/
│ └── metrolist/
│ └── kugou/
│ ├── KuGou.kt
│ └── models/
│ ├── DownloadLyricsResponse.kt
│ ├── Keyword.kt
│ ├── SearchLyricsResponse.kt
│ └── SearchSongResponse.kt
├── lastfm/
│ ├── .gitignore
│ ├── build.gradle.kts
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── kotlin/
│ └── com/
│ └── metrolist/
│ └── lastfm/
│ ├── LastFM.kt
│ └── models/
│ └── Authentication.kt
├── lint.xml
├── lrclib/
│ ├── .gitignore
│ ├── build.gradle.kts
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── kotlin/
│ └── com/
│ └── metrolist/
│ └── lrclib/
│ ├── LrcLib.kt
│ └── models/
│ └── Track.kt
├── renovate.json
├── settings.gradle.kts
├── shazamkit/
│ ├── build.gradle.kts
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── kotlin/
│ └── com/
│ └── metrolist/
│ └── shazamkit/
│ ├── Shazam.kt
│ └── models/
│ └── ShazamModels.kt
└── simpmusic/
├── build.gradle.kts
└── src/
└── main/
├── AndroidManifest.xml
└── kotlin/
└── com/
└── metrolist/
└── simpmusic/
├── SimpMusicLyrics.kt
└── models/
└── LyricsResponse.kt
================================================
FILE CONTENTS
================================================
================================================
FILE: .github/ISSUE_TEMPLATE/bug_report.yml
================================================
name: Bug report
description: Create a bug report to help us improve
labels: [bug]
body:
- type: markdown
attributes:
value: |
## IMPORTANT WARNING
**Duplicate or incomplete issues will be closed immediately without any response from developers.**
- Check existing issues before opening a new one
- All required checkboxes below must be checked
- Duplicate issues will be closed instantly with no response
- type: checkboxes
id: checklist
attributes:
label: "Checklist - Required"
description: |
**READ CAREFULLY:** You must complete these checks before submitting. Failing to do so will result in your issue being closed immediately without any response from developers.
**Duplicate issues = Instant closure with no response**
options:
- label: " I am able to reproduce the bug with the [latest debug version](https://github.com/MetrolistGroup/Metrolist/actions/workflows/build.yml?query=branch%3Amain)."
required: true
- label: " I've checked that there is NO open or closed issue about this bug. (Duplicate issues will be closed immediately without response)"
required: true
- label: " This issue contains only ONE bug. PLEASE check pinned issues before opening a new one."
required: true
- label: " The title of this issue accurately describes the bug."
required: true
- label: " The entire issue report is written/translated in English."
required: true
- type: markdown
attributes:
value: |
---
## Bug Details
- type: textarea
id: reproduce-steps
attributes:
label: Steps to reproduce the bug
description: What did you do for the bug to show up?
placeholder: |
Example:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior
placeholder: |
Example:
"This should happen..."
validations:
required: true
- type: textarea
id: actual-behavior
attributes:
label: Actual behavior
placeholder: |
Example:
"This happened instead..."
validations:
required: true
- type: textarea
id: sreen-media
attributes:
label: Screenshots/Screen recordings
description: |
A picture or video helps us understand the bug more.
You can upload them directly in the text box.
- type: markdown
attributes:
value: |
## How to create a logcat recording
### Firstly, download and install these apps
- [F0x1d/LogFox](https://github.com/F0x1d/LogFox/releases/download/v2.1.9-78/LogFox-2.1.9-release.apk)
- [thedjchi/Shizuku](https://github.com/thedjchi/Shizuku/releases/download/v13.6.0.r1318-thedjchi/shizuku-v13.6.0.r1318-thedjchi.apk)
### Then follow these instructions
1. Open **Shizuku**, and click on the "View command" button
2. Copy the command and run it on your computer (see ADB setup below if needed)
3. Once Shizuku is running, open **LogFox** and start a recording
4. Open the app and reproduce the bug you're experiencing
5. When finished, press **Export** in LogFox and attach the file to your comment
6. Stop the process by pressing **Exit** in the LogFox notification
7. Stop Shizuku (unless you're using it for other apps)
### Or the video guide
https://github.com/user-attachments/assets/30659a03-39d5-4400-b681-4238c608aebd
> [!IMPORTANT]
> **If you're reporting an immediate crash** issue, you should allow LogFox notification permissions on launch. Then open the app and look for a crash report notification from LogFox.
> [!TIP]
> If you export the recording as a zip file, upload it to https://litterbox.catbox.moe (set expiration to 3 days).
- type: textarea
id: logs
attributes:
label: Logs
description: |
Please read the instructions above on how to create a logcat recording. Logs are crucial for us to understand and fix the bug. Issues without logs might be closed immediately.
validations:
required: true
- type: input
id: app-version
attributes:
label: Metrolist version
description: |
You can find your Metrolist version in **Settings**.
placeholder: |
Example: "13.1.1"
validations:
required: true
- type: input
id: android-version
attributes:
label: Android version
description: |
You can find this in Android Settings > About Phone.
placeholder: |
Example: "Android 12"
validations:
required: true
- type: textarea
id: additional-information
attributes:
label: Additional information
placeholder: |
Additional details and attachments.
================================================
FILE: .github/ISSUE_TEMPLATE/config.yml
================================================
blank_issues_enabled: false
================================================
FILE: .github/ISSUE_TEMPLATE/feature_request.yml
================================================
name: Feature request
description: Suggest an idea for Metrolist
labels: [enhancement]
body:
- type: checkboxes
id: checklist
attributes:
label: Checklist
description: You should ensure the completion of the task before proceeding to check it off the checklist. Neglecting to do so may impede the efficiency of the issue resolution process. The developer has the right to delete the issue directly if you check the list blindly.
options:
- label: I've checked that there is no other issue about this feature request.
required: true
- label: This issue contains only one feature request.
required: true
- label: The title of this issue accurately describes the feature request.
required: true
- type: textarea
id: feature-description
attributes:
label: Feature description
description: What feature you want the app to have? Provide detailed description about what it should look like or where it should be added.
validations:
required: true
- type: textarea
id: why-is-the-feature-requested
attributes:
label: Why do you want this feature?
description: Describe the problem or limitation that motivates you to want this feature to be added.
validations:
required: true
- type: textarea
id: additional-information
attributes:
label: Additional information
description: Add any other context or screenshots about the feature request here.
placeholder: |
Additional details and attachments.
================================================
FILE: .github/actions/setup-protobuf/action.yml
================================================
name: Setup and Generate Protobuf
description: Install protoc and generate protobuf files
runs:
using: composite
steps:
- name: Install protoc
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
shell: bash
- name: Generate protobuf files
run: |
cd app
bash generate_proto.sh
shell: bash
================================================
FILE: .github/pull_request_template.md
================================================
## Problem
<!-- Describe the issue or limitation this PR addresses -->
## Cause
<!-- Explain the root cause of the problem -->
## Solution
<!-- List the changes made to fix the issue -->
-
## Testing
<!-- Describe how the changes were tested -->
## Related Issues
<!-- List any related issues or PRs -->
- Closes #
- Related to #
================================================
FILE: .github/scripts/parse_changelog.sh
================================================
#!/usr/bin/env bash
# parse_changelog.sh — Extract the changelog entry for a specific version
#
# Reads changelog.md (or a custom file) and outputs the content block
# associated with the given version, as delimited by ---vX.Y.Z separators.
#
# Usage:
# ./parse_changelog.sh <version> [changelog_file]
#
# Examples:
# ./parse_changelog.sh 13.2.1
# ./parse_changelog.sh v13.2.1 changelog.md
# ./parse_changelog.sh 13.2.1 /path/to/changelog.md
#
# Exit codes:
# 0 — Version found; content written to stdout
# 1 — Error (missing args, file not found, version not found)
set -euo pipefail
VERSION="${1:-}"
CHANGELOG_FILE="${2:-changelog.md}"
if [ -z "$VERSION" ]; then
echo "Error: version argument required" >&2
echo "Usage: $0 <version> [changelog_file]" >&2
echo "Example: $0 13.2.1" >&2
exit 1
fi
if [ ! -f "$CHANGELOG_FILE" ]; then
echo "Error: changelog file not found: '$CHANGELOG_FILE'" >&2
exit 1
fi
VERSION="${VERSION#v}"
if ! grep -q "^---v${VERSION}$" "$CHANGELOG_FILE"; then
echo "Error: version '$VERSION' not found in '$CHANGELOG_FILE'" >&2
exit 1
fi
awk -v ver="$VERSION" '
/^---v/ {
if (found) exit
if ($0 == "---v" ver) { found=1; next }
next
}
found { print }
' "$CHANGELOG_FILE"
================================================
FILE: .github/workflows/build.yml
================================================
name: Build APKs
on:
workflow_dispatch:
push:
branches: ["**"]
paths-ignore:
- "README.md"
- "fastlane/**"
- "assets/**"
- ".github/**/*.md"
- ".github/FUNDING.yml"
- ".github/ISSUE_TEMPLATE/**"
permissions:
contents: write
discussions: write
jobs:
build_release:
name: Build Release (${{ matrix.variant }})
if: github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]'
runs-on: ubuntu-latest
strategy:
matrix:
include:
- variant: foss
variantName: Foss
- variant: gms
variantName: Gms
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
java-version: "21"
distribution: "temurin"
- name: Set Up Gradle
uses: gradle/actions/setup-gradle@v5
with:
cache-encryption-key: ${{ secrets.GRADLE_CACHE_KEY }}
cache-cleanup: on-success
- name: Setup and Generate Protobuf
uses: ./.github/actions/setup-protobuf
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build Release APK and Run Lint
run: ./gradlew --console=plain assemble${{ matrix.variantName }}Release :app:lint${{ matrix.variantName }}Release --warning-mode summary
env:
METROLIST_APPLICATION_ID: com.metrolist.music
METROLIST_APP_NAME: Metrolist Nightly
PULL_REQUEST: "false"
GITHUB_EVENT_NAME: ${{ github.event_name }}
LASTFM_API_KEY: ${{ secrets.LASTFM_API_KEY }}
LASTFM_SECRET: ${{ secrets.LASTFM_SECRET }}
- name: Sign APK
uses: ilharp/sign-android-release@v2.0.0
with:
releaseDir: app/build/outputs/apk/${{ matrix.variant }}/release/
signingKey: ${{ secrets.KEYSTORE }}
keyAlias: ${{ secrets.KEY_ALIAS }}
keyStorePassword: ${{ secrets.KEYSTORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
buildToolsVersion: 35.0.0
- name: Move signed APK
run: |
OUTPUT_DIR="app/build/outputs/apk/${{ matrix.variant }}/release"
mkdir -p "$OUTPUT_DIR/out"
if [ "${{ matrix.variant }}" = "gms" ]; then
TARGET_NAME="app-universal-with-Google-Cast.apk"
else
TARGET_NAME="app-universal-release.apk"
fi
find "$OUTPUT_DIR" -name "*-signed.apk" -o -name "*-unsigned-signed.apk" | xargs -I{} mv {} "$OUTPUT_DIR/out/$TARGET_NAME"
- name: Upload Signed APK
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.variant == 'gms' && 'app-with-Google-Cast' || 'app-release' }}
path: app/build/outputs/apk/${{ matrix.variant }}/release/out/*
build_debug:
name: Build Debug (${{ matrix.variant }})
if: github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]'
runs-on: ubuntu-latest
strategy:
matrix:
include:
- variant: foss
variantName: Foss
- variant: gms
variantName: Gms
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
java-version: "21"
distribution: "temurin"
- name: Set Up Gradle
uses: gradle/actions/setup-gradle@v5
with:
cache-encryption-key: ${{ secrets.GRADLE_CACHE_KEY }}
cache-cleanup: on-success
- name: Setup and Generate Protobuf
uses: ./.github/actions/setup-protobuf
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Restore Persistent Keystore
run: |
echo "${{ secrets.DEBUG_KEYSTORE }}" | base64 -d > ./app/persistent-debug.keystore
- name: Build Debug APK and Run Lint
run: ./gradlew --console=plain assemble${{ matrix.variantName }}Debug :app:lint${{ matrix.variantName }}Debug --warning-mode summary
env:
METROLIST_APPLICATION_ID: com.metrolist.music
METROLIST_APP_NAME: Metrolist Nightly
PULL_REQUEST: "false"
GITHUB_EVENT_NAME: ${{ github.event_name }}
LASTFM_API_KEY: ${{ secrets.LASTFM_API_KEY }}
LASTFM_SECRET: ${{ secrets.LASTFM_SECRET }}
- name: Upload Debug APK
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.variant == 'gms' && 'app-debug-gms' || 'app-debug' }}
path: app/build/outputs/apk/${{ matrix.variant }}/debug/*.apk
================================================
FILE: .github/workflows/build_pr.yml
================================================
name: Build PR
on:
pull_request:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
java-version: 21
distribution: "temurin"
- name: Set Up Gradle
uses: gradle/actions/setup-gradle@v5
with:
cache-read-only: true
cache-cleanup: on-success
- name: Setup and Generate Protobuf
uses: ./.github/actions/setup-protobuf
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Restore PR debug keystore
id: pr_keystore
uses: actions/cache/restore@v4
with:
path: app/pr-debug.keystore
key: pr-debug-keystore-${{ github.event.number }}
- name: Generate PR debug keystore if not cached
if: steps.pr_keystore.outputs.cache-hit != 'true'
run: |
keytool -genkeypair -v \
-keystore app/pr-debug.keystore \
-storepass android \
-alias androiddebugkey \
-keypass android \
-keyalg RSA \
-keysize 2048 \
-validity 10000 \
-dname "CN=Metrolist PR ${{ github.event.number }},O=Metrolist,C=US"
- name: Save PR debug keystore
if: steps.pr_keystore.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: app/pr-debug.keystore
key: ${{ steps.pr_keystore.outputs.cache-primary-key }}
- name: Build and Lint FOSS Debug APK
run: ./gradlew --console=plain assembleFossDebug :app:lintFossDebug --warning-mode summary
env:
GITHUB_EVENT_NAME: ${{ github.event_name }}
METROLIST_APPLICATION_ID: com.metrolist.music.pr.p${{ github.event.number }}
METROLIST_APP_NAME: Metrolist PR ${{ github.event.number }}
METROLIST_DEBUG_KEYSTORE_PATH: pr-debug.keystore
PULL_REQUEST: "true"
LASTFM_API_KEY: ${{ secrets.LASTFM_API_KEY }}
LASTFM_SECRET: ${{ secrets.LASTFM_SECRET }}
- name: Upload APK
uses: actions/upload-artifact@v6
with:
name: app-universal-debug-pr-${{ github.event.number }}
path: app/build/outputs/apk/foss/debug/*.apk
================================================
FILE: .github/workflows/build_quick.yml
================================================
name: Quick Test Build
on:
workflow_dispatch:
push:
branches: ["**"]
paths-ignore:
- "README.md"
- "fastlane/**"
- "assets/**"
- ".github/**/*.md"
- ".github/FUNDING.yml"
- ".github/ISSUE_TEMPLATE/**"
permissions:
contents: write
jobs:
build_quick:
name: Quick Universal Release Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
java-version: "21"
distribution: "temurin"
- name: Set Up Gradle
uses: gradle/actions/setup-gradle@v5
with:
cache-encryption-key: ${{ secrets.GRADLE_CACHE_KEY }}
cache-cleanup: on-success
- name: Setup and Generate Protobuf
uses: ./.github/actions/setup-protobuf
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build Release APK (No Lint)
run: ./gradlew --console=plain assembleFossRelease --warning-mode summary -x lint -x lintFossRelease
env:
METROLIST_APPLICATION_ID: com.metrolist.music.test
METROLIST_APP_NAME: Metrolist Testing
PULL_REQUEST: "false"
GITHUB_EVENT_NAME: ${{ github.event_name }}
LASTFM_API_KEY: ${{ secrets.LASTFM_API_KEY }}
LASTFM_SECRET: ${{ secrets.LASTFM_SECRET }}
- name: Sign APK
uses: ilharp/sign-android-release@v2.0.0
with:
releaseDir: app/build/outputs/apk/foss/release/
signingKey: ${{ secrets.KEYSTORE }}
keyAlias: ${{ secrets.KEY_ALIAS }}
keyStorePassword: ${{ secrets.KEYSTORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
buildToolsVersion: 35.0.0
- name: Move signed APK
run: |
OUTPUT_DIR="app/build/outputs/apk/foss/release"
mkdir -p "$OUTPUT_DIR/out"
find "$OUTPUT_DIR" -name "*-signed.apk" -o -name "*-unsigned-signed.apk" | xargs -I{} mv {} "$OUTPUT_DIR/out/app-universal-test-release.apk"
- name: Upload Signed APK
uses: actions/upload-artifact@v6
with:
name: app-universal-test-release
path: app/build/outputs/apk/foss/release/out/*
================================================
FILE: .github/workflows/release.yml
================================================
name: Bump to new version
on:
push:
branches:
- "main"
paths:
- "app/build.gradle.kts"
workflow_dispatch:
jobs:
check-version:
if: "!contains(github.ref, 'refs/tags')"
runs-on: ubuntu-latest
outputs:
version_changed: ${{ steps.check_version.outputs.version_changed }}
new_version: ${{ steps.check_version.outputs.new_version }}
version_code: ${{ steps.check_version.outputs.version_code }}
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: recursive
- name: Check if version changed
id: check_version
run: |
if [ ! -f app/build.gradle.kts ]; then
echo "File app/build.gradle.kts does not exist"
echo "version_changed=false" >> $GITHUB_OUTPUT
exit 0
fi
NEW_VERSION=$(grep -oP 'versionName\s*=\s*"\K[^"]+' app/build.gradle.kts || echo "")
VERSION_CODE=$(grep -oP 'versionCode\s*=\s*\K\d+' app/build.gradle.kts || echo "")
if [ -z "$NEW_VERSION" ]; then
echo "Could not find versionName in app/build.gradle.kts"
echo "version_changed=false" >> $GITHUB_OUTPUT
exit 0
fi
echo "Current version: $NEW_VERSION (code: $VERSION_CODE)"
if git show HEAD^:app/build.gradle.kts > /dev/null 2>&1; then
OLD_VERSION=$(git show HEAD^:app/build.gradle.kts | grep -oP 'versionName\s*=\s*"\K[^"]+' || echo "")
echo "Previous version: $OLD_VERSION"
if [ "$OLD_VERSION" != "$NEW_VERSION" ]; then
echo "Version changed from $OLD_VERSION to $NEW_VERSION"
echo "version_changed=true" >> $GITHUB_OUTPUT
echo "new_version=$NEW_VERSION" >> $GITHUB_OUTPUT
echo "version_code=$VERSION_CODE" >> $GITHUB_OUTPUT
else
echo "Version unchanged: $NEW_VERSION"
echo "version_changed=false" >> $GITHUB_OUTPUT
fi
else
echo "First version detected: $NEW_VERSION"
echo "version_changed=true" >> $GITHUB_OUTPUT
echo "new_version=$NEW_VERSION" >> $GITHUB_OUTPUT
echo "version_code=$VERSION_CODE" >> $GITHUB_OUTPUT
fi
- name: Debug output
run: |
echo "Debug Information:"
echo " - version_changed: ${{ steps.check_version.outputs.version_changed }}"
echo " - new_version: ${{ steps.check_version.outputs.new_version }}"
echo " - version_code: ${{ steps.check_version.outputs.version_code }}"
echo " - event_name: ${{ github.event_name }}"
build:
needs: check-version
if: needs.check-version.outputs.version_changed == 'true' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
strategy:
matrix:
include:
- variant: foss
variantName: Foss
- variant: gms
variantName: Gms
- variant: izzy
variantName: Izzy
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Set up JDK 21
uses: actions/setup-java@v5
with:
java-version: "21"
distribution: "temurin"
- name: Set Up Gradle
uses: gradle/actions/setup-gradle@v5
with:
cache-disabled: true
cache-cleanup: on-success
- name: Setup and Generate Protobuf
uses: ./.github/actions/setup-protobuf
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build and Lint Release APK
run: ./gradlew --no-configuration-cache --console=plain clean assemble${{ matrix.variantName }}Release :app:lint${{ matrix.variantName }}Release --warning-mode summary
env:
METROLIST_APPLICATION_ID: com.metrolist.music
METROLIST_APP_NAME: Metrolist
PULL_REQUEST: "false"
GITHUB_EVENT_NAME: ${{ github.event_name }}
LASTFM_API_KEY: ${{ secrets.LASTFM_API_KEY }}
LASTFM_SECRET: ${{ secrets.LASTFM_SECRET }}
- name: Sign APK
uses: ilharp/sign-android-release@v2.0.0
with:
releaseDir: app/build/outputs/apk/${{ matrix.variant }}/release/
signingKey: ${{ secrets.KEYSTORE }}
keyAlias: ${{ secrets.KEY_ALIAS }}
keyStorePassword: ${{ secrets.KEYSTORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
buildToolsVersion: 35.0.0
- name: Move and rename signed APKs
run: |
OUTPUT_DIR="app/build/outputs/apk/${{ matrix.variant }}/release"
mkdir -p "$OUTPUT_DIR/out"
SIGNED_APK=$(find "$OUTPUT_DIR" -name "*-signed.apk" -o -name "*-unsigned-signed.apk" | head -1)
if [ -z "$SIGNED_APK" ]; then
echo "No signed APK found for ${{ matrix.variant }}"
ls -la "$OUTPUT_DIR"
exit 1
fi
if [ "${{ matrix.variant }}" = "gms" ]; then
TARGET_NAME="Metrolist-with-Google-Cast.apk"
elif [ "${{ matrix.variant }}" = "izzy" ]; then
TARGET_NAME="Metrolist-izzy.apk"
else
TARGET_NAME="Metrolist.apk"
fi
mv "$SIGNED_APK" "$OUTPUT_DIR/out/$TARGET_NAME"
echo "APK renamed to: $TARGET_NAME"
ls -la "$OUTPUT_DIR/out/"
- name: Upload Signed APKs
uses: actions/upload-artifact@v6
with:
name: ${{ matrix.variant == 'gms' && 'Metrolist-with-Google-Cast' || matrix.variant == 'izzy' && 'Metrolist-izzy' || 'Metrolist' }}
path: app/build/outputs/apk/${{ matrix.variant }}/release/out/*.apk
create-release:
needs: [check-version, build]
if: needs.check-version.outputs.version_changed == 'true' || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Download all APKs
uses: actions/download-artifact@v7
with:
path: downloaded_artifacts/
- name: Organize APKs for release
run: |
echo "Organizing APK files..."
mkdir -p release_files
find downloaded_artifacts -name "*.apk" -exec cp {} release_files/ \;
echo "APKs ready for release:"
ls -la release_files/
- name: Parse release notes from changelog
run: |
VERSION="${{ needs.check-version.outputs.new_version }}"
chmod +x .github/scripts/parse_changelog.sh
if bash .github/scripts/parse_changelog.sh "$VERSION" changelog.md > release_notes.md; then
echo "Release notes sourced from changelog.md for v$VERSION"
echo "--- Preview (first 20 lines) ---"
head -20 release_notes.md
else
echo "::warning::v$VERSION not found in changelog.md — falling back to git log"
{
echo "Release of version $VERSION"
echo ""
git log "$(git describe --tags --abbrev=0 2>/dev/null || echo "HEAD~10")..HEAD" \
--pretty=format:"- %s" --no-merges | head -10 || echo "- Initial release"
} > release_notes.md
echo "--- Fallback notes ---"
cat release_notes.md
fi
- name: Create Release
env:
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
run: |
echo "Creating release v${{ needs.check-version.outputs.new_version }}"
gh release create "v${{ needs.check-version.outputs.new_version }}" \
--title "${{ needs.check-version.outputs.new_version }}" \
--notes-file release_notes.md \
--latest \
release_files/*.apk
echo "Release created successfully!"
- name: Update release summary
run: |
echo "## Release Summary" >> $GITHUB_STEP_SUMMARY
echo "- **Version**: v${{ needs.check-version.outputs.new_version }}" >> $GITHUB_STEP_SUMMARY
echo "- **Version Code**: ${{ needs.check-version.outputs.version_code }}" >> $GITHUB_STEP_SUMMARY
echo "- **APKs Built**: $(ls release_files/*.apk | wc -l)" >> $GITHUB_STEP_SUMMARY
echo "- **Release URL**: https://github.com/${{ github.repository }}/releases/tag/v${{ needs.check-version.outputs.new_version }}" >> $GITHUB_STEP_SUMMARY
================================================
FILE: .gitignore
================================================
# Built application files
*.apk
*.aar
*.ap_
*.aab
# Files for the ART/Dalvik VM
*.dex
# Java class files
*.class
# Generated files
bin/
gen/
out/
# Uncomment the following line in case you need and you don't have the release build type files in your app
# release/
# Gradle files
.gradle/
build/
# Local configuration file (sdk path, etc)
local.properties
# Proguard folder generated by Eclipse
proguard/
# Log Files
*.log
# Android Studio Navigation editor temp files
.navigation/
# Android Studio captures folder
captures/
# IntelliJ
*.iml
.idea
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/assetWizardSettings.xml
.idea/dictionaries
.idea/libraries
# Android Studio 3 in .gitignore file.
.idea/caches
.idea/modules.xml
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
.idea/navEditor.xml
# Keystore files
# Uncomment the following lines if you do not want to check your keystore files in.
#*.jks
#*.keystore
app/persistent-debug.keystore
# ^^^ think twice before removing this gitignore, it became so FUCKING
# annoying to unstage this file every time i want to commit stuff
# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
.cxx/
# Freeline
freeline.py
freeline/
freeline_project_description.json
# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md
# Version control
vcs.xml
# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
# lint/reports/
.DS_Store
/app/release/output-metadata.json
.kotlin
app/release
output-metadata.json
# VS Code
.vscode/
# Binary files and core dumps
core
core.*
*.so
*.bin
.env
app/src/main/java/com/metrolist/music/listentogether/proto/*
# FFTW third-party library build artifacts
.build-fftw
app/src/main/cpp/coverart/
================================================
FILE: .gitmodules
================================================
[submodule "metroproto"]
path = metroproto
url = https://github.com/MetrolistGroup/metroproto
================================================
FILE: AGENTS.md
================================================
# Working with Metrolist as an AI agent
Metrolist is a 3rd party YouTube Music client written in Kotlin. It follows material 3 design guidelines closely.
## Rules for working on the project
1. Always create a new branch for your feature work. Follow these naming conventions:
- Bug fixes: `fix/short-description`
- New features: `feat/short-description`
- Refactoring: `ref/short-description`
- Documentation: `docs/short-description`
- Chores: `chore/short-description`
2. Branch descriptions should be concise yet descriptive enough to understand the purpose of the branch at a glance.
3. Always pull the latest changes from `main` before starting your work to minimize merge conflicts.
4. While working on your feature you should rebase your branch on top of the latest `main` at least once a day to ensure compatibility.
5. Commit names should be clear and follow the format: `type(scope): short description`. For example: `feat(ui): add dark mode support`. Including the scope is optional.
6. All string edits should be made to the `Metrolist/app/src/main/res/values/metrolist_strings.xml` file, NOT `Metrolist/app/src/main/res/values/strings.xml`. Do not touch other `strings.xml` or `metrolist_strings.xml` files in the project.
7. You are to follow best practices for Kotlin and Android development.
## AI-only guidelines
1. You are strictly prohibited from making ANY changes to the readme/markdown files, including this one. This is to ensure that the documentation remains accurate and consistent for all contributors.
2. You are NOT allowed to use the following commands:
- You are not to commit, push, or merge any changes to any branch.
- You should absolutely NOT use any commands that would modify the git history, do force pushes (except for rebases on your own branch), or delete branches without explicit instructions from a human.
3. Always follow the guidelines and instructions provided by human contributors.
4. Ensure the absolutely highest code quality in all contributions, including proper formatting, clear variable naming, and comprehensive comments where necessary.
5. Comments should be added only for complex logic or non-obvious code. Avoid redundant comments that simply restate what the code does.
6. Prioritize performance, battery efficiency, and maintainability in all code contributions. Always consider the impact of your changes on the overall user experience and app performance.
7. If you have any doubts ask a human contributor. Never make assumptions about the requirements or implementation details without clarification.
8. If you do not test your changes using the instructions in the next section, you will be faced with reprimands from human contributors and may be asked to redo your work. Always ensure that you test your changes thoroughly before asking for a final review.
9. You are absolutely **not allowed to bump the version** of the app in ANY way. Version bumps are only done by the core development team after manual review.
## Building and testing your changes
1. After making changes to the code, you should build the app to ensure that there are no compilation errors. Use the following command from the root directory of the project:
```bash
./gradlew :app:assembleFossDebug
```
2. If the build is not successful, review the error messages, fix the issues in your code, and try building again.
3. Once the build is successful, you can test your changes on an emulator or a physical device. Install the generated APK located at `app/build/outputs/apk/universalFoss/debug/app-universal-foss-debug.apk` and ask a human for help testing the specific features you worked on.
================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.
================================================
FILE: README.md
================================================
<div align="center">
<img src="https://github.com/MetrolistGroup/Metrolist/blob/main/fastlane/metadata/android/en-US/images/icon.png" width="160" height="160" style="display: block; margin: 0 auto"/>
<h1>Metrolist</h1>
<p>YouTube Music client for Android</p>
<div style="padding: 16px; margin: 16px 0; background-color: #FFFBE5; border-left: 6px solid #FFC107; border-radius: 4px;">
<h2 style="margin: 0;"><strong>⚠Warning</strong></h2>
If you're in a region where YouTube Music is not supported, you won't be able to use this app <strong>unless</strong> you have a proxy or VPN to connect to a YTM-supported region.
</div>
<h1>Screenshots</h1>
<img src="https://github.com/MetrolistGroup/Metrolist/blob/main/fastlane/metadata/android/en-US/images/screenshots/screenshot_1.png" width="30%" />
<img src="https://github.com/MetrolistGroup/Metrolist/blob/main/fastlane/metadata/android/en-US/images/screenshots/screenshot_2.png" width="30%" />
<img src="https://github.com/MetrolistGroup/Metrolist/blob/main/fastlane/metadata/android/en-US/images/screenshots/screenshot_3.png" width="30%" />
<img src="https://github.com/MetrolistGroup/Metrolist/blob/main/fastlane/metadata/android/en-US/images/screenshots/screenshot_4.png" width="30%" />
<img src="https://github.com/MetrolistGroup/Metrolist/blob/main/fastlane/metadata/android/en-US/images/screenshots/screenshot_5.png" width="30%" />
<img src="https://github.com/MetrolistGroup/Metrolist/blob/main/fastlane/metadata/android/en-US/images/screenshots/screenshot_6.png" width="30%" />
<div align="center">
<h1>Release numbers</h1>
</div>
[](https://github.com/MetrolistGroup/Metrolist/releases)
[](https://github.com/MetrolistGroup/Metrolist/blob/main/LICENSE)
[](https://github.com/MetrolistGroup/Metrolist/releases)
</div>
<div align="center">
<h1>Download Now</h1>
<table>
<tr>
<td align="center">
<a href="https://github.com/MetrolistGroup/Metrolist/releases/latest/download/Metrolist.apk"><img src="https://github.com/machiav3lli/oandbackupx/blob/034b226cea5c1b30eb4f6a6f313e4dadcbb0ece4/badge_github.png" alt="Get it on GitHub" height="82"></a><br/>
<a href="https://www.openapk.net/metrolist/com.metrolist.music/"><img src="https://www.openapk.net/images/openapk-badge.png" alt="Get it on OpenAPK" height="80"></a>
</td>
<td align="center">
<a href="https://apps.obtainium.imranr.dev/redirect?r=obtainium://add/https://github.com/MetrolistGroup/Metrolist/"><img src="https://github.com/ImranR98/Obtainium/blob/main/assets/graphics/badge_obtainium.png" alt="Get it on Obtainium" height="50"></a>
</td>
<td align="center">
<a href="https://apt.izzysoft.de/fdroid/index/apk/com.metrolist.music"><img src="https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png" alt="Get it on IzzyOnDroid" height="80"></a><br/>
<a href="https://belberi.com/metrolist/?fbclid=PAY2xjawJP5dlleHRuA2FlbQIxMAABpjSk1oBp4e8aSV4nfX2dfunQObTlMWIkN-aVA9CSq36pnmkHsvfoYTjhHg_aem_9o9OGbQuZ2PjJTArq21UDA"><img src="https://github.com/MetrolistGroup/Metrolist/blob/main/fastlane/metadata/android/en-US/images/belberi_github.png" alt="Get it on Belberi" height="82"></a>
</td>
</tr>
</table>
</div>
<div align="center">
<h1>Nightly Build</h1>
<a href="https://nightly.link/MetrolistGroup/Metrolist/workflows/build/main/app-universal-with-Google-Cast.zip">
<img src="https://github.com/machiav3lli/oandbackupx/blob/034b226cea5c1b30eb4f6a6f313e4dadcbb0ece4/badge_github.png" alt="Get it on GitHub" height="82">
</a>
</div>
<div align="center">
<h1>Table of Contents</h1>
</div>
- [Features](#features)
- [FAQ](#faq)
- [Development Setup](./development_guide.md)
- [Translations](#translations)
- [Support Me](#support-me)
- [Join our community](#join-our-community)
- [Contributors](#thanks-to-all-contributors)
<div align="center">
<h1>Features</h1>
</div>
- Play any song or video from YT Music
- Background playback
- Personalized quick picks
- Library management
- Listen together with friends
- Download and cache songs for offline playback
- Search for songs, albums, artists, videos and playlists
- Live lyrics
- YouTube Music account login support
- Syncing of songs, artists, albums and playlists, from and to your account
- Skip silence
- Import playlists
- Audio normalization
- Adjust tempo/pitch
- Local playlist management
- Reorder songs in playlist or queue
- Home screen widget with playback controls
- Light - Dark - black - Dynamic theme
- Sleep timer
- Material 3
- etc.
<div align="center">
<h1>Translations</h1>
[](https://hosted.weblate.org/engage/metrolist/)
We use Weblate to translate Metrolist. For more details or to get started, visit our [Weblate page](https://hosted.weblate.org/projects/Metrolist/).
<a href="https://hosted.weblate.org/projects/Metrolist/">
<img src="https://hosted.weblate.org/widget/Metrolist/horizontal-auto.svg" alt="Translation status" />
</a>
Thank you very much for helping to make Metrolist accessible to many people worldwide.
</div>
<div align="center">
<h1>FAQ</h1>
</div>
### Q: Why Metrolist isn't showing in Android Auto?
1. Go to Android Auto's settings and tap multiple times on the version in the bottom to enable
developer settings
2. In the three dots menu at the top-right of the screen, click "Developer settings"
3. Enable "Unknown sources"
<div align="center">
<h1>Support Me</h1>
If you'd like to support my work, send a Monero (XMR) donation to this address:
44XjSELSWcgJTZiCKzjpCQWyXhokrH9RqH3rpp35FkSKi57T25hniHWHQNhLeXyFn3DDYqufmfRB1iEtENerZpJc7xJCcqt
Or scan this QR code:
<img src="https://github.com/MetrolistGroup/Metrolist/blob/main/assets/XMR.png" alt="QR Code" width="200" height="200" />
Or other
<a href="https://www.buymeacoffee.com/mostafaalagamy">
<img src="https://github.com/MetrolistGroup/Metrolist/blob/main/assets/buymeacoffee.png?raw=true" alt="Buy Me a Coffee" width="150" height="150" />
</a>
<div align="center">
<h1>Join our community</h1>
[](https://dsc.gg/metrolist)
[](https://t.me/metrolistapp)
</div>
<div align="center">
<h1>Special thanks</h1>
**InnerTune**
[Zion Huang](https://github.com/z-huang) • [Malopieds](https://github.com/Malopieds)
**OuterTune**
[Davide Garberi](https://github.com/DD3Boh) • [Michael Zh](https://github.com/mikooomich)
Credits:
[**Kizzy**](https://github.com/dead8309/Kizzy) – for the Discord Rich Presence implementation and inspiration.
[**Better Lyrics**](https://better-lyrics.boidu.dev) – for beautiful time-synced lyrics with word-by-word highlighting, and seamless YouTube Music integration.
[**SimpMusic Lyrics**](https://github.com/maxrave-dev/SimpMusic) – for providing lyrics data through the SimpMusic Lyrics API.
[**metroserver**](https://github.com/MetrolistGroup/metroserver) – for providing us with the listen together implementation.
[**MusicRecognizer**](https://github.com/aleksey-saenko/MusicRecognizer) – for the music recognition feature implementation and Shazam API integration.
The open-source community for tools, libraries, and APIs that make this project possible.
<sub>Thank you to all the amazing developers who made this project possible!</sub>
</div>
<div align="center">
<h1>Thanks to all contributors</h1>
<a href = "https://github.com/MetrolistGroup/Metrolist/graphs/contributors">
<img src = "https://contrib.rocks/image?repo=MetrolistGroup/Metrolist" width="600"/>
</a>
</div>
<div align="center">
<h1>Disclaimer</h1>
</div>
This project and its contents are not affiliated with, funded, authorized, endorsed by, or in any way associated with YouTube, Google LLC, Metrolist Group LLC or any of its affiliates and subsidiaries.
Any trademark, service mark, trade name, or other intellectual property rights used in this project are owned by the respective owners.
**Made with ❤️ by [Mo Agamy](https://github.com/mostafaalagamy)**
**This project stands with Palestine 🇵🇸**
================================================
FILE: app/.gitignore
================================================
/build
*.keystore
src/main/cpp/vibrafp/third_party/fftw-android/
================================================
FILE: app/build.gradle.kts
================================================
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import java.util.Properties
val localProperties = Properties()
val localPropertiesFile = rootProject.file("local.properties")
if (localPropertiesFile.exists()) {
localProperties.load(localPropertiesFile.inputStream())
}
val baseApplicationId = "com.metrolist.music"
val applicationIdOverride = System.getenv("METROLIST_APPLICATION_ID")?.takeIf { it.isNotBlank() }
val appNameOverride = System.getenv("METROLIST_APP_NAME")?.takeIf { it.isNotBlank() }
val debugKeystorePathOverride = System.getenv("METROLIST_DEBUG_KEYSTORE_PATH")?.takeIf { it.isNotBlank() }
val debugKeystorePassword = System.getenv("METROLIST_DEBUG_KEYSTORE_PASSWORD")?.takeIf { it.isNotBlank() } ?: "android"
val debugKeyAlias = System.getenv("METROLIST_DEBUG_KEY_ALIAS")?.takeIf { it.isNotBlank() } ?: "androiddebugkey"
val debugKeyPassword = System.getenv("METROLIST_DEBUG_KEY_PASSWORD")?.takeIf { it.isNotBlank() } ?: "android"
val persistentDebugKeystoreFile = file("persistent-debug.keystore")
val workflowDebugKeystoreFile = debugKeystorePathOverride?.let(::file)
plugins {
id("com.android.application")
alias(libs.plugins.hilt)
alias(libs.plugins.kotlin.ksp)
alias(libs.plugins.compose.compiler)
alias(libs.plugins.kotlin.serialization)
}
android {
namespace = "com.metrolist.music"
compileSdk = 36
defaultConfig {
applicationId = applicationIdOverride ?: baseApplicationId
minSdk = 26
targetSdk = 36
versionCode = 143
versionName = "13.3.0"
resValue("string", "app_name", appNameOverride ?: "Metrolist")
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
// LastFM API keys from GitHub Secrets
val lastFmKey = localProperties.getProperty("LASTFM_API_KEY") ?: System.getenv("LASTFM_API_KEY") ?: ""
val lastFmSecret = localProperties.getProperty("LASTFM_SECRET") ?: System.getenv("LASTFM_SECRET") ?: ""
buildConfigField("String", "LASTFM_API_KEY", "\"$lastFmKey\"")
buildConfigField("String", "LASTFM_SECRET", "\"$lastFmSecret\"")
buildConfigField("String", "ARCHITECTURE", "\"universal\"")
}
flavorDimensions += listOf("variant")
productFlavors {
// FOSS variant (default) - F-Droid compatible, no Google Play Services
create("foss") {
dimension = "variant"
isDefault = true
buildConfigField("Boolean", "CAST_AVAILABLE", "false")
buildConfigField("Boolean", "UPDATER_AVAILABLE", "true")
}
// GMS variant - with Google Cast support (requires Google Play Services)
create("gms") {
dimension = "variant"
buildConfigField("Boolean", "CAST_AVAILABLE", "true")
buildConfigField("Boolean", "UPDATER_AVAILABLE", "true")
}
// IzzyOnDroid variant - no Google Cast, no built-in updater (store handles updates)
create("izzy") {
dimension = "variant"
buildConfigField("Boolean", "CAST_AVAILABLE", "false")
buildConfigField("Boolean", "UPDATER_AVAILABLE", "false")
}
}
signingConfigs {
create("persistentDebug") {
storeFile = persistentDebugKeystoreFile
storePassword = "android"
keyAlias = "androiddebugkey"
keyPassword = "android"
}
create("workflowDebug") {
storeFile = workflowDebugKeystoreFile ?: persistentDebugKeystoreFile
storePassword = debugKeystorePassword
keyAlias = debugKeyAlias
keyPassword = debugKeyPassword
}
create("release") {
storeFile = file("keystore/release.keystore")
storePassword = System.getenv("STORE_PASSWORD")
keyAlias = System.getenv("KEY_ALIAS")
keyPassword = System.getenv("KEY_PASSWORD")
}
getByName("debug") {
keyAlias = "androiddebugkey"
keyPassword = "android"
storePassword = "android"
storeFile = file("${System.getProperty("user.home")}/.android/debug.keystore")
}
}
buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
isCrunchPngs = false
isDebuggable = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro",
)
}
debug {
if (applicationIdOverride == null) {
applicationIdSuffix = ".debug"
}
isDebuggable = true
if (appNameOverride == null) {
resValue("string", "app_name", "Metrolist Debug")
}
signingConfig =
if (workflowDebugKeystoreFile != null) {
signingConfigs.getByName("workflowDebug")
} else if (persistentDebugKeystoreFile.exists()) {
signingConfigs.getByName("persistentDebug")
} else {
signingConfigs.getByName("debug")
}
}
}
compileOptions {
isCoreLibraryDesugaringEnabled = true
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
kotlin {
jvmToolchain(21)
compilerOptions {
freeCompilerArgs.add("-Xannotation-default-target=param-property")
jvmTarget.set(JvmTarget.JVM_21)
}
}
buildFeatures {
compose = true
buildConfig = true
resValues = true
}
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
lint {
lintConfig = file("lint.xml")
warningsAsErrors = false
abortOnError = false
checkDependencies = false
}
androidResources {
generateLocaleConfig = true
}
packaging {
jniLibs {
useLegacyPackaging = false
keepDebugSymbols +=
listOf(
"**/libandroidx.graphics.path.so",
"**/libdatastore_shared_counter.so",
)
}
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
excludes += "META-INF/NOTICE.md"
excludes += "META-INF/CONTRIBUTORS.md"
excludes += "META-INF/LICENSE.md"
excludes += "META-INF/INDEX.LIST"
excludes += "META-INF/io.netty.versions.properties"
}
}
}
ksp {
arg("room.schemaLocation", "$projectDir/schemas")
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
compilerOptions {
freeCompilerArgs.addAll(
"-opt-in=kotlin.RequiresOptIn",
)
suppressWarnings.set(false)
}
}
// Android provides org.json as a platform API (/apex/com.android.art/javalib/core-libart.jar).
// The standalone org.json:json artefact bundles an older Apache Harmony copy of JSONArray that
// contains an internal `myArrayList` field absent from the platform class. Without obfuscation
// R8 inlines against this internal field; at runtime the platform class is resolved instead,
// producing a NoSuchFieldError. Excluding the artefact globally ensures only the platform
// class is ever referenced.
configurations.configureEach {
exclude(group = "org.json", module = "json")
}
dependencies {
implementation(libs.guava)
implementation(libs.coroutines.guava)
implementation(libs.concurrent.futures)
implementation(libs.activity)
implementation(libs.hilt.navigation)
implementation(libs.datastore)
implementation(libs.compose.runtime)
implementation(libs.compose.foundation)
implementation(libs.compose.ui)
implementation(libs.compose.ui.util)
implementation(libs.compose.ui.tooling)
implementation(libs.compose.animation)
implementation(libs.compose.reorderable)
implementation(libs.viewmodel)
implementation(libs.viewmodel.compose)
implementation(libs.material3)
implementation(libs.palette)
implementation(libs.materialKolor)
implementation(libs.appcompat)
implementation(libs.coil)
implementation(libs.coil.network.okhttp)
implementation(libs.ucrop)
implementation(libs.shimmer)
implementation(libs.media3)
implementation(libs.media3.session)
implementation(libs.media3.okhttp)
// Google Cast - only included in GMS flavor (not available in F-Droid/FOSS builds)
"gmsImplementation"(libs.media3.cast)
"gmsImplementation"(libs.mediarouter)
"gmsImplementation"(libs.cast.framework)
implementation(libs.room.runtime)
implementation(libs.kuromoji.ipadic)
implementation(libs.tinypinyin)
ksp(libs.room.compiler)
implementation(libs.room.ktx)
implementation(libs.apache.lang3)
implementation(libs.hilt)
implementation(libs.jsoup)
ksp(libs.hilt.compiler)
implementation(project(":innertube"))
implementation(project(":kugou"))
implementation(project(":lrclib"))
implementation(project(":kizzy"))
implementation(project(":lastfm"))
implementation(project(":betterlyrics"))
implementation(project(":simpmusic"))
implementation(project(":shazamkit"))
implementation(libs.ktor.client.core)
implementation(libs.ktor.client.cio)
implementation(libs.ktor.client.content.negotiation)
implementation(libs.ktor.serialization.json)
// Protobuf for message serialization (lite version for Android)
implementation(libs.protobuf.javalite)
implementation(libs.protobuf.kotlin.lite)
coreLibraryDesugaring(libs.desugaring)
implementation(libs.timber)
}
================================================
FILE: app/generate_proto.sh
================================================
#!/bin/bash
# Generate Kotlin protobuf files for Android
set -e
PROTO_DIR="../metroproto"
OUT_DIR="src/main/java"
if [ ! -f "$PROTO_DIR/listentogether.proto" ]; then
echo "Missing proto file at $PROTO_DIR/listentogether.proto"
echo "Did you initialize submodules? Try: git submodule update --init --recursive"
exit 1
fi
# Create output directory if it doesn't exist
mkdir -p "$OUT_DIR"
# Generate Java and Kotlin code (lite version for Android)
protoc --java_out=lite:"$OUT_DIR" --kotlin_out="$OUT_DIR" \
-I="$PROTO_DIR" \
"$PROTO_DIR/listentogether.proto"
echo "Protobuf files (lite) generated successfully in $OUT_DIR"
================================================
FILE: app/lint.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<!-- Translations are crowdsourced, we can't have 100% coverage at all times -->
<issue id="MissingTranslation" severity="ignore" />
<!-- Weblate doesn't handle these yet: https://github.com/WeblateOrg/weblate/issues/7520 -->
<issue id="MissingQuantity" severity="error">
<ignore path="src/main/res/values-cs" />
<ignore path="src/main/res/values-lt" />
<ignore path="src/main/res/values-sk" />
</issue>
</lint>
================================================
FILE: app/proguard-rules.pro
================================================
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.kts.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
## Reproducible Build Support
# Disable obfuscation to ensure deterministic R8 output across different build environments.
# Without this, R8 assigns short names (e.g. `j`, `k`) to renamed classes in a non-deterministic
# order, causing byte-for-byte differences between builds. This is required for F-Droid / IzzyOnDroid
# Reproducible Build verification. Code shrinking (dead code removal) remains fully enabled.
# Since Metrolist is fully open-source, obfuscation provides no meaningful security benefit.
-dontobfuscate
# WEB_REMIX Streaming - WebView JavaScript interfaces
-keepclassmembers class com.metrolist.music.utils.sabr.EjsNTransformSolver$SolverWebView {
@android.webkit.JavascriptInterface public *;
}
-keepclassmembers class com.metrolist.music.utils.cipher.CipherWebView {
@android.webkit.JavascriptInterface public *;
}
-keepclassmembers class com.metrolist.music.utils.potoken.PoTokenWebView {
@android.webkit.JavascriptInterface public *;
}
# Keep streaming utility classes
-keep class com.metrolist.music.utils.cipher.** { *; }
-keep class com.metrolist.music.utils.sabr.** { *; }
-keep class com.metrolist.music.utils.potoken.** { *; }
# Keep coroutine continuation for WebView callbacks
-keepclassmembers class * {
void resume(...);
void resumeWithException(...);
}
## Kotlin Coroutines — Reproducible Build Rules
# Keep volatile fields in coroutine classes to prevent AtomicFieldUpdater optimisation issues
# and ensure R8 does not reorder or merge these across builds.
# Source: https://github.com/Kotlin/kotlinx.coroutines/blob/master/kotlinx-coroutines-core/jvm/resources/META-INF/proguard/coroutines.pro
-keepclassmembers class kotlinx.coroutines.** {
volatile <fields>;
}
-keepclassmembers class kotlin.coroutines.SafeContinuation {
volatile <fields>;
}
# Eliminate coroutines debug-only code paths so R8 sees a single, consistent
# control-flow graph regardless of build machine or JVM configuration.
# Source: https://github.com/Kotlin/kotlinx.coroutines/blob/master/kotlinx-coroutines-core/jvm/resources/META-INF/proguard/r8-from-1.6.0/coroutines.pro
-assumenosideeffects class kotlinx.coroutines.internal.MainDispatcherLoader {
boolean FAST_SERVICE_LOADER_ENABLED return false;
}
-assumenosideeffects class kotlinx.coroutines.internal.FastServiceLoaderKt {
boolean ANDROID_DETECTED return true;
}
-assumenosideeffects class kotlinx.coroutines.DebugKt {
boolean getASSERTIONS_ENABLED() return false;
boolean getDEBUG() return false;
boolean getRECOVER_STACK_TRACES() return false;
}
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Preserve line number information for readable crash stack traces.
-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
## Kotlin Serialization
# Keep `Companion` object fields of serializable classes.
# This avoids serializer lookup through `getDeclaredClasses` as done for named companion objects.
-if @kotlinx.serialization.Serializable class **
-keepclasseswithmembers class <1> {
static <1>$Companion Companion;
}
# Keep `serializer()` on companion objects (both default and named) of serializable classes.
-if @kotlinx.serialization.Serializable class ** {
static **$* *;
}
-keepclasseswithmembers class <2>$<3> {
kotlinx.serialization.KSerializer serializer(...);
}
# Keep `INSTANCE.serializer()` of serializable objects.
-if @kotlinx.serialization.Serializable class ** {
public static ** INSTANCE;
}
-keepclasseswithmembers class <1> {
public static <1> INSTANCE;
kotlinx.serialization.KSerializer serializer(...);
}
# @Serializable and @Polymorphic are used at runtime for polymorphic serialization.
-keepattributes RuntimeVisibleAnnotations,AnnotationDefault
-dontwarn javax.servlet.ServletContainerInitializer
-dontwarn org.bouncycastle.jsse.BCSSLParameters
-dontwarn org.bouncycastle.jsse.BCSSLSocket
-dontwarn org.bouncycastle.jsse.provider.BouncyCastleJsseProvider
-dontwarn org.conscrypt.Conscrypt$Version
-dontwarn org.conscrypt.Conscrypt
-dontwarn org.conscrypt.ConscryptHostnameVerifier
-dontwarn org.openjsse.javax.net.ssl.SSLParameters
-dontwarn org.openjsse.javax.net.ssl.SSLSocket
-dontwarn org.openjsse.net.ssl.OpenJSSE
-dontwarn org.slf4j.impl.StaticLoggerBinder
## Rules for NewPipeExtractor
-keep class org.schabi.newpipe.extractor.services.youtube.protos.** { *; }
-keep class org.schabi.newpipe.extractor.timeago.patterns.** { *; }
-keep class org.mozilla.javascript.** { *; }
-keep class org.mozilla.javascript.engine.** { *; }
-dontwarn org.mozilla.javascript.JavaToJSONConverters
-dontwarn org.mozilla.javascript.tools.**
-keep class javax.script.** { *; }
-dontwarn javax.script.**
-keep class jdk.dynalink.** { *; }
-dontwarn jdk.dynalink.**
## Logging (does not affect Timber)
-assumenosideeffects class android.util.Log {
public static boolean isLoggable(java.lang.String, int);
public static int v(...);
public static int d(...);
## Leave in release builds
#public static int i(...);
#public static int w(...);
#public static int e(...);
}
# Generated automatically by the Android Gradle plugin.
-dontwarn java.beans.BeanDescriptor
-dontwarn java.beans.BeanInfo
-dontwarn java.beans.IntrospectionException
-dontwarn java.beans.Introspector
-dontwarn java.beans.PropertyDescriptor
# Keep all classes within the kuromoji package
-keep class com.atilika.kuromoji.** { *; }
## Queue Persistence Rules
# Keep queue-related classes to prevent serialization issues in release builds
-keep class com.metrolist.music.models.PersistQueue { *; }
-keep class com.metrolist.music.models.PersistPlayerState { *; }
-keep class com.metrolist.music.models.QueueData { *; }
-keep class com.metrolist.music.models.QueueType { *; }
-keep class com.metrolist.music.playback.queues.** { *; }
# Keep serialization methods for queue persistence
-keepclassmembers class * implements java.io.Serializable {
private void writeObject(java.io.ObjectOutputStream);
private void readObject(java.io.ObjectInputStream);
}
## UCrop Rules
-dontwarn com.yalantis.ucrop**
-keep class com.yalantis.ucrop** { *; }
-keep interface com.yalantis.ucrop** { *; }
## Google Cast Rules
-keep class com.metrolist.music.cast.** { *; }
-keep class com.google.android.gms.cast.** { *; }
-keep class androidx.mediarouter.** { *; }
## JSoup re2j optional dependency
-dontwarn com.google.re2j.**
# Vibra fingerprint library
-keep class com.metrolist.music.recognition.VibraSignature { *; }
-keepclassmembers class com.metrolist.music.recognition.VibraSignature {
native <methods>;
}
## Kotlin Reflection Fix
-keep class kotlin.Metadata { *; }
-keep class kotlin.reflect.** { *; }
-dontwarn kotlin.reflect.**
## Ktor Serialization
-keep class io.ktor.** { *; }
-keepclassmembers class io.ktor.** { *; }
-dontwarn io.ktor.**
## Listen Together Protobuf
-keep class com.metrolist.music.listentogether.proto.** { *; }
-keepclassmembers class com.metrolist.music.listentogether.proto.** { *; }
## Shazam Models
-keep class com.metrolist.shazamkit.models.** { *; }
-keepclassmembers class com.metrolist.shazamkit.models.** {
*;
}
## Kotlinx Serialization
-keepattributes *Annotation*
-keepclassmembers class com.metrolist.shazamkit.models.** {
*** Companion;
}
-keepclasseswithmembers class com.metrolist.shazamkit.models.** {
kotlinx.serialization.KSerializer serializer(...);
}
================================================
FILE: app/schemas/com.metrolist.music.db.InternalDatabase/1.json
================================================
{
"formatVersion": 1,
"database": {
"version": 1,
"identityHash": "38686a738e9e794eca8e1f635cf072b0",
"entities": [
{
"tableName": "song",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `title` TEXT NOT NULL, `artistId` INTEGER NOT NULL, `duration` INTEGER NOT NULL, `liked` INTEGER NOT NULL, `artworkType` INTEGER NOT NULL, `isTrash` INTEGER NOT NULL, `download_state` INTEGER NOT NULL, `create_date` INTEGER NOT NULL, `modify_date` INTEGER NOT NULL, PRIMARY KEY(`id`), FOREIGN KEY(`artistId`) REFERENCES `artist`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "title",
"columnName": "title",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "artistId",
"columnName": "artistId",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "duration",
"columnName": "duration",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "liked",
"columnName": "liked",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "artworkType",
"columnName": "artworkType",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "isTrash",
"columnName": "isTrash",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "downloadState",
"columnName": "download_state",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "createDate",
"columnName": "create_date",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "modifyDate",
"columnName": "modify_date",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"columnNames": [
"id"
],
"autoGenerate": false
},
"indices": [
{
"name": "index_song_id",
"unique": true,
"columnNames": [
"id"
],
"orders": [],
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_song_id` ON `${TABLE_NAME}` (`id`)"
},
{
"name": "index_song_artistId",
"unique": false,
"columnNames": [
"artistId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_artistId` ON `${TABLE_NAME}` (`artistId`)"
}
],
"foreignKeys": [
{
"table": "artist",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"artistId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "artist",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `name` TEXT NOT NULL)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"columnNames": [
"id"
],
"autoGenerate": true
},
"indices": [
{
"name": "index_artist_id",
"unique": true,
"columnNames": [
"id"
],
"orders": [],
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_artist_id` ON `${TABLE_NAME}` (`id`)"
}
],
"foreignKeys": []
},
{
"tableName": "playlist",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`playlistId` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT NOT NULL)",
"fields": [
{
"fieldPath": "playlistId",
"columnName": "playlistId",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"columnNames": [
"playlistId"
],
"autoGenerate": true
},
"indices": [
{
"name": "index_playlist_playlistId",
"unique": true,
"columnNames": [
"playlistId"
],
"orders": [],
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_playlist_playlistId` ON `${TABLE_NAME}` (`playlistId`)"
}
],
"foreignKeys": []
},
{
"tableName": "playlist_song",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `playlistId` INTEGER NOT NULL, `songId` TEXT NOT NULL, `idInPlaylist` INTEGER NOT NULL, FOREIGN KEY(`playlistId`) REFERENCES `playlist`(`playlistId`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "playlistId",
"columnName": "playlistId",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "idInPlaylist",
"columnName": "idInPlaylist",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"columnNames": [
"id"
],
"autoGenerate": true
},
"indices": [
{
"name": "index_playlist_song_playlistId",
"unique": false,
"columnNames": [
"playlistId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_playlist_song_playlistId` ON `${TABLE_NAME}` (`playlistId`)"
},
{
"name": "index_playlist_song_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_playlist_song_songId` ON `${TABLE_NAME}` (`songId`)"
}
],
"foreignKeys": [
{
"table": "playlist",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"playlistId"
],
"referencedColumns": [
"playlistId"
]
},
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "download",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `songId` TEXT NOT NULL, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"columnNames": [
"id"
],
"autoGenerate": false
},
"indices": [],
"foreignKeys": []
}
],
"views": [],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '38686a738e9e794eca8e1f635cf072b0')"
]
}
}
================================================
FILE: app/schemas/com.metrolist.music.db.InternalDatabase/10.json
================================================
{
"formatVersion": 1,
"database": {
"version": 10,
"identityHash": "465b6d837bb0b1291e375df6f08219cb",
"entities": [
{
"tableName": "song",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `title` TEXT NOT NULL, `duration` INTEGER NOT NULL, `thumbnailUrl` TEXT, `albumId` TEXT, `albumName` TEXT, `liked` INTEGER NOT NULL, `totalPlayTime` INTEGER NOT NULL, `downloadState` INTEGER NOT NULL, `inLibrary` INTEGER, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "title",
"columnName": "title",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "duration",
"columnName": "duration",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "thumbnailUrl",
"columnName": "thumbnailUrl",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "albumId",
"columnName": "albumId",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "albumName",
"columnName": "albumName",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "liked",
"columnName": "liked",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "totalPlayTime",
"columnName": "totalPlayTime",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "downloadState",
"columnName": "downloadState",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "inLibrary",
"columnName": "inLibrary",
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "artist",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `name` TEXT NOT NULL, `thumbnailUrl` TEXT, `bannerUrl` TEXT, `description` TEXT, `createDate` INTEGER NOT NULL, `lastUpdateTime` INTEGER NOT NULL, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "thumbnailUrl",
"columnName": "thumbnailUrl",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "bannerUrl",
"columnName": "bannerUrl",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "description",
"columnName": "description",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "createDate",
"columnName": "createDate",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "lastUpdateTime",
"columnName": "lastUpdateTime",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "album",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `title` TEXT NOT NULL, `year` INTEGER, `thumbnailUrl` TEXT, `songCount` INTEGER NOT NULL, `duration` INTEGER NOT NULL, `createDate` INTEGER NOT NULL, `lastUpdateTime` INTEGER NOT NULL, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "title",
"columnName": "title",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "year",
"columnName": "year",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "thumbnailUrl",
"columnName": "thumbnailUrl",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "songCount",
"columnName": "songCount",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "duration",
"columnName": "duration",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "createDate",
"columnName": "createDate",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "lastUpdateTime",
"columnName": "lastUpdateTime",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "playlist",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `name` TEXT NOT NULL, `browseId` TEXT, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "browseId",
"columnName": "browseId",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "song_artist_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`songId` TEXT NOT NULL, `artistId` TEXT NOT NULL, `position` INTEGER NOT NULL, PRIMARY KEY(`songId`, `artistId`), FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`artistId`) REFERENCES `artist`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "artistId",
"columnName": "artistId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "position",
"columnName": "position",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"songId",
"artistId"
]
},
"indices": [
{
"name": "index_song_artist_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_artist_map_songId` ON `${TABLE_NAME}` (`songId`)"
},
{
"name": "index_song_artist_map_artistId",
"unique": false,
"columnNames": [
"artistId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_artist_map_artistId` ON `${TABLE_NAME}` (`artistId`)"
}
],
"foreignKeys": [
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
},
{
"table": "artist",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"artistId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "song_album_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`songId` TEXT NOT NULL, `albumId` TEXT NOT NULL, `index` INTEGER NOT NULL, PRIMARY KEY(`songId`, `albumId`), FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`albumId`) REFERENCES `album`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "albumId",
"columnName": "albumId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "index",
"columnName": "index",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"songId",
"albumId"
]
},
"indices": [
{
"name": "index_song_album_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_album_map_songId` ON `${TABLE_NAME}` (`songId`)"
},
{
"name": "index_song_album_map_albumId",
"unique": false,
"columnNames": [
"albumId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_album_map_albumId` ON `${TABLE_NAME}` (`albumId`)"
}
],
"foreignKeys": [
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
},
{
"table": "album",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"albumId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "album_artist_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`albumId` TEXT NOT NULL, `artistId` TEXT NOT NULL, `order` INTEGER NOT NULL, PRIMARY KEY(`albumId`, `artistId`), FOREIGN KEY(`albumId`) REFERENCES `album`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`artistId`) REFERENCES `artist`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "albumId",
"columnName": "albumId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "artistId",
"columnName": "artistId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "order",
"columnName": "order",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"albumId",
"artistId"
]
},
"indices": [
{
"name": "index_album_artist_map_albumId",
"unique": false,
"columnNames": [
"albumId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_album_artist_map_albumId` ON `${TABLE_NAME}` (`albumId`)"
},
{
"name": "index_album_artist_map_artistId",
"unique": false,
"columnNames": [
"artistId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_album_artist_map_artistId` ON `${TABLE_NAME}` (`artistId`)"
}
],
"foreignKeys": [
{
"table": "album",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"albumId"
],
"referencedColumns": [
"id"
]
},
{
"table": "artist",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"artistId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "playlist_song_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `playlistId` TEXT NOT NULL, `songId` TEXT NOT NULL, `position` INTEGER NOT NULL, FOREIGN KEY(`playlistId`) REFERENCES `playlist`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "playlistId",
"columnName": "playlistId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "position",
"columnName": "position",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_playlist_song_map_playlistId",
"unique": false,
"columnNames": [
"playlistId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_playlist_song_map_playlistId` ON `${TABLE_NAME}` (`playlistId`)"
},
{
"name": "index_playlist_song_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_playlist_song_map_songId` ON `${TABLE_NAME}` (`songId`)"
}
],
"foreignKeys": [
{
"table": "playlist",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"playlistId"
],
"referencedColumns": [
"id"
]
},
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "search_history",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `query` TEXT NOT NULL)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "query",
"columnName": "query",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_search_history_query",
"unique": true,
"columnNames": [
"query"
],
"orders": [],
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_search_history_query` ON `${TABLE_NAME}` (`query`)"
}
],
"foreignKeys": []
},
{
"tableName": "format",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `itag` INTEGER NOT NULL, `mimeType` TEXT NOT NULL, `codecs` TEXT NOT NULL, `bitrate` INTEGER NOT NULL, `sampleRate` INTEGER, `contentLength` INTEGER NOT NULL, `loudnessDb` REAL, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "itag",
"columnName": "itag",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "mimeType",
"columnName": "mimeType",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "codecs",
"columnName": "codecs",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "bitrate",
"columnName": "bitrate",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "sampleRate",
"columnName": "sampleRate",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "contentLength",
"columnName": "contentLength",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "loudnessDb",
"columnName": "loudnessDb",
"affinity": "REAL",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "lyrics",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `lyrics` TEXT NOT NULL, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "lyrics",
"columnName": "lyrics",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "event",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `songId` TEXT NOT NULL, `timestamp` INTEGER NOT NULL, `playTime` INTEGER NOT NULL, FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "timestamp",
"columnName": "timestamp",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "playTime",
"columnName": "playTime",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_event_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_event_songId` ON `${TABLE_NAME}` (`songId`)"
}
],
"foreignKeys": [
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "related_song_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `songId` TEXT NOT NULL, `relatedSongId` TEXT NOT NULL, FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`relatedSongId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "relatedSongId",
"columnName": "relatedSongId",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_related_song_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_related_song_map_songId` ON `${TABLE_NAME}` (`songId`)"
},
{
"name": "index_related_song_map_relatedSongId",
"unique": false,
"columnNames": [
"relatedSongId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_related_song_map_relatedSongId` ON `${TABLE_NAME}` (`relatedSongId`)"
}
],
"foreignKeys": [
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
},
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"relatedSongId"
],
"referencedColumns": [
"id"
]
}
]
}
],
"views": [
{
"viewName": "sorted_song_artist_map",
"createSql": "CREATE VIEW `${VIEW_NAME}` AS SELECT * FROM song_artist_map ORDER BY position"
},
{
"viewName": "sorted_song_album_map",
"createSql": "CREATE VIEW `${VIEW_NAME}` AS SELECT * FROM song_album_map ORDER BY `index`"
},
{
"viewName": "playlist_song_map_preview",
"createSql": "CREATE VIEW `${VIEW_NAME}` AS SELECT * FROM playlist_song_map WHERE position <= 3 ORDER BY position"
}
],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '465b6d837bb0b1291e375df6f08219cb')"
]
}
}
================================================
FILE: app/schemas/com.metrolist.music.db.InternalDatabase/11.json
================================================
{
"formatVersion": 1,
"database": {
"version": 11,
"identityHash": "de2e37d1206f721ad51de3a08f66f99c",
"entities": [
{
"tableName": "song",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `title` TEXT NOT NULL, `duration` INTEGER NOT NULL, `thumbnailUrl` TEXT, `albumId` TEXT, `albumName` TEXT, `liked` INTEGER NOT NULL, `totalPlayTime` INTEGER NOT NULL, `inLibrary` INTEGER, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "title",
"columnName": "title",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "duration",
"columnName": "duration",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "thumbnailUrl",
"columnName": "thumbnailUrl",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "albumId",
"columnName": "albumId",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "albumName",
"columnName": "albumName",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "liked",
"columnName": "liked",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "totalPlayTime",
"columnName": "totalPlayTime",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "inLibrary",
"columnName": "inLibrary",
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "artist",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `name` TEXT NOT NULL, `thumbnailUrl` TEXT, `lastUpdateTime` INTEGER NOT NULL, `bookmarkedAt` INTEGER, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "thumbnailUrl",
"columnName": "thumbnailUrl",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "lastUpdateTime",
"columnName": "lastUpdateTime",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "bookmarkedAt",
"columnName": "bookmarkedAt",
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "album",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `title` TEXT NOT NULL, `year` INTEGER, `thumbnailUrl` TEXT, `songCount` INTEGER NOT NULL, `duration` INTEGER NOT NULL, `createDate` INTEGER NOT NULL, `lastUpdateTime` INTEGER NOT NULL, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "title",
"columnName": "title",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "year",
"columnName": "year",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "thumbnailUrl",
"columnName": "thumbnailUrl",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "songCount",
"columnName": "songCount",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "duration",
"columnName": "duration",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "createDate",
"columnName": "createDate",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "lastUpdateTime",
"columnName": "lastUpdateTime",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "playlist",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `name` TEXT NOT NULL, `browseId` TEXT, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "browseId",
"columnName": "browseId",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "song_artist_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`songId` TEXT NOT NULL, `artistId` TEXT NOT NULL, `position` INTEGER NOT NULL, PRIMARY KEY(`songId`, `artistId`), FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`artistId`) REFERENCES `artist`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "artistId",
"columnName": "artistId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "position",
"columnName": "position",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"songId",
"artistId"
]
},
"indices": [
{
"name": "index_song_artist_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_artist_map_songId` ON `${TABLE_NAME}` (`songId`)"
},
{
"name": "index_song_artist_map_artistId",
"unique": false,
"columnNames": [
"artistId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_artist_map_artistId` ON `${TABLE_NAME}` (`artistId`)"
}
],
"foreignKeys": [
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
},
{
"table": "artist",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"artistId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "song_album_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`songId` TEXT NOT NULL, `albumId` TEXT NOT NULL, `index` INTEGER NOT NULL, PRIMARY KEY(`songId`, `albumId`), FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`albumId`) REFERENCES `album`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "albumId",
"columnName": "albumId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "index",
"columnName": "index",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"songId",
"albumId"
]
},
"indices": [
{
"name": "index_song_album_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_album_map_songId` ON `${TABLE_NAME}` (`songId`)"
},
{
"name": "index_song_album_map_albumId",
"unique": false,
"columnNames": [
"albumId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_album_map_albumId` ON `${TABLE_NAME}` (`albumId`)"
}
],
"foreignKeys": [
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
},
{
"table": "album",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"albumId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "album_artist_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`albumId` TEXT NOT NULL, `artistId` TEXT NOT NULL, `order` INTEGER NOT NULL, PRIMARY KEY(`albumId`, `artistId`), FOREIGN KEY(`albumId`) REFERENCES `album`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`artistId`) REFERENCES `artist`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "albumId",
"columnName": "albumId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "artistId",
"columnName": "artistId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "order",
"columnName": "order",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"albumId",
"artistId"
]
},
"indices": [
{
"name": "index_album_artist_map_albumId",
"unique": false,
"columnNames": [
"albumId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_album_artist_map_albumId` ON `${TABLE_NAME}` (`albumId`)"
},
{
"name": "index_album_artist_map_artistId",
"unique": false,
"columnNames": [
"artistId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_album_artist_map_artistId` ON `${TABLE_NAME}` (`artistId`)"
}
],
"foreignKeys": [
{
"table": "album",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"albumId"
],
"referencedColumns": [
"id"
]
},
{
"table": "artist",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"artistId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "playlist_song_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `playlistId` TEXT NOT NULL, `songId` TEXT NOT NULL, `position` INTEGER NOT NULL, FOREIGN KEY(`playlistId`) REFERENCES `playlist`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "playlistId",
"columnName": "playlistId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "position",
"columnName": "position",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_playlist_song_map_playlistId",
"unique": false,
"columnNames": [
"playlistId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_playlist_song_map_playlistId` ON `${TABLE_NAME}` (`playlistId`)"
},
{
"name": "index_playlist_song_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_playlist_song_map_songId` ON `${TABLE_NAME}` (`songId`)"
}
],
"foreignKeys": [
{
"table": "playlist",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"playlistId"
],
"referencedColumns": [
"id"
]
},
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "search_history",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `query` TEXT NOT NULL)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "query",
"columnName": "query",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_search_history_query",
"unique": true,
"columnNames": [
"query"
],
"orders": [],
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_search_history_query` ON `${TABLE_NAME}` (`query`)"
}
],
"foreignKeys": []
},
{
"tableName": "format",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `itag` INTEGER NOT NULL, `mimeType` TEXT NOT NULL, `codecs` TEXT NOT NULL, `bitrate` INTEGER NOT NULL, `sampleRate` INTEGER, `contentLength` INTEGER NOT NULL, `loudnessDb` REAL, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "itag",
"columnName": "itag",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "mimeType",
"columnName": "mimeType",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "codecs",
"columnName": "codecs",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "bitrate",
"columnName": "bitrate",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "sampleRate",
"columnName": "sampleRate",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "contentLength",
"columnName": "contentLength",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "loudnessDb",
"columnName": "loudnessDb",
"affinity": "REAL",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "lyrics",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `lyrics` TEXT NOT NULL, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "lyrics",
"columnName": "lyrics",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "event",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `songId` TEXT NOT NULL, `timestamp` INTEGER NOT NULL, `playTime` INTEGER NOT NULL, FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "timestamp",
"columnName": "timestamp",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "playTime",
"columnName": "playTime",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_event_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_event_songId` ON `${TABLE_NAME}` (`songId`)"
}
],
"foreignKeys": [
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "related_song_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `songId` TEXT NOT NULL, `relatedSongId` TEXT NOT NULL, FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`relatedSongId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "relatedSongId",
"columnName": "relatedSongId",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_related_song_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_related_song_map_songId` ON `${TABLE_NAME}` (`songId`)"
},
{
"name": "index_related_song_map_relatedSongId",
"unique": false,
"columnNames": [
"relatedSongId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_related_song_map_relatedSongId` ON `${TABLE_NAME}` (`relatedSongId`)"
}
],
"foreignKeys": [
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
},
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"relatedSongId"
],
"referencedColumns": [
"id"
]
}
]
}
],
"views": [
{
"viewName": "sorted_song_artist_map",
"createSql": "CREATE VIEW `${VIEW_NAME}` AS SELECT * FROM song_artist_map ORDER BY position"
},
{
"viewName": "sorted_song_album_map",
"createSql": "CREATE VIEW `${VIEW_NAME}` AS SELECT * FROM song_album_map ORDER BY `index`"
},
{
"viewName": "playlist_song_map_preview",
"createSql": "CREATE VIEW `${VIEW_NAME}` AS SELECT * FROM playlist_song_map WHERE position <= 3 ORDER BY position"
}
],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'de2e37d1206f721ad51de3a08f66f99c')"
]
}
}
================================================
FILE: app/schemas/com.metrolist.music.db.InternalDatabase/12.json
================================================
{
"formatVersion": 1,
"database": {
"version": 12,
"identityHash": "8db3d5731dbcc716a90427d4dde63c66",
"entities": [
{
"tableName": "song",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `title` TEXT NOT NULL, `duration` INTEGER NOT NULL, `thumbnailUrl` TEXT, `albumId` TEXT, `albumName` TEXT, `liked` INTEGER NOT NULL, `totalPlayTime` INTEGER NOT NULL, `inLibrary` INTEGER, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "title",
"columnName": "title",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "duration",
"columnName": "duration",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "thumbnailUrl",
"columnName": "thumbnailUrl",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "albumId",
"columnName": "albumId",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "albumName",
"columnName": "albumName",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "liked",
"columnName": "liked",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "totalPlayTime",
"columnName": "totalPlayTime",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "inLibrary",
"columnName": "inLibrary",
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_song_albumId",
"unique": false,
"columnNames": [
"albumId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_albumId` ON `${TABLE_NAME}` (`albumId`)"
}
],
"foreignKeys": []
},
{
"tableName": "artist",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `name` TEXT NOT NULL, `thumbnailUrl` TEXT, `lastUpdateTime` INTEGER NOT NULL, `bookmarkedAt` INTEGER, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "thumbnailUrl",
"columnName": "thumbnailUrl",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "lastUpdateTime",
"columnName": "lastUpdateTime",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "bookmarkedAt",
"columnName": "bookmarkedAt",
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "album",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `title` TEXT NOT NULL, `year` INTEGER, `thumbnailUrl` TEXT, `themeColor` INTEGER, `songCount` INTEGER NOT NULL, `duration` INTEGER NOT NULL, `lastUpdateTime` INTEGER NOT NULL, `bookmarkedAt` INTEGER, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "title",
"columnName": "title",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "year",
"columnName": "year",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "thumbnailUrl",
"columnName": "thumbnailUrl",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "themeColor",
"columnName": "themeColor",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "songCount",
"columnName": "songCount",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "duration",
"columnName": "duration",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "lastUpdateTime",
"columnName": "lastUpdateTime",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "bookmarkedAt",
"columnName": "bookmarkedAt",
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "playlist",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `name` TEXT NOT NULL, `browseId` TEXT, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "browseId",
"columnName": "browseId",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "song_artist_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`songId` TEXT NOT NULL, `artistId` TEXT NOT NULL, `position` INTEGER NOT NULL, PRIMARY KEY(`songId`, `artistId`), FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`artistId`) REFERENCES `artist`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "artistId",
"columnName": "artistId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "position",
"columnName": "position",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"songId",
"artistId"
]
},
"indices": [
{
"name": "index_song_artist_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_artist_map_songId` ON `${TABLE_NAME}` (`songId`)"
},
{
"name": "index_song_artist_map_artistId",
"unique": false,
"columnNames": [
"artistId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_artist_map_artistId` ON `${TABLE_NAME}` (`artistId`)"
}
],
"foreignKeys": [
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
},
{
"table": "artist",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"artistId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "song_album_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`songId` TEXT NOT NULL, `albumId` TEXT NOT NULL, `index` INTEGER NOT NULL, PRIMARY KEY(`songId`, `albumId`), FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`albumId`) REFERENCES `album`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "albumId",
"columnName": "albumId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "index",
"columnName": "index",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"songId",
"albumId"
]
},
"indices": [
{
"name": "index_song_album_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_album_map_songId` ON `${TABLE_NAME}` (`songId`)"
},
{
"name": "index_song_album_map_albumId",
"unique": false,
"columnNames": [
"albumId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_album_map_albumId` ON `${TABLE_NAME}` (`albumId`)"
}
],
"foreignKeys": [
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
},
{
"table": "album",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"albumId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "album_artist_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`albumId` TEXT NOT NULL, `artistId` TEXT NOT NULL, `order` INTEGER NOT NULL, PRIMARY KEY(`albumId`, `artistId`), FOREIGN KEY(`albumId`) REFERENCES `album`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`artistId`) REFERENCES `artist`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "albumId",
"columnName": "albumId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "artistId",
"columnName": "artistId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "order",
"columnName": "order",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"albumId",
"artistId"
]
},
"indices": [
{
"name": "index_album_artist_map_albumId",
"unique": false,
"columnNames": [
"albumId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_album_artist_map_albumId` ON `${TABLE_NAME}` (`albumId`)"
},
{
"name": "index_album_artist_map_artistId",
"unique": false,
"columnNames": [
"artistId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_album_artist_map_artistId` ON `${TABLE_NAME}` (`artistId`)"
}
],
"foreignKeys": [
{
"table": "album",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"albumId"
],
"referencedColumns": [
"id"
]
},
{
"table": "artist",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"artistId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "playlist_song_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `playlistId` TEXT NOT NULL, `songId` TEXT NOT NULL, `position` INTEGER NOT NULL, FOREIGN KEY(`playlistId`) REFERENCES `playlist`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "playlistId",
"columnName": "playlistId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "position",
"columnName": "position",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_playlist_song_map_playlistId",
"unique": false,
"columnNames": [
"playlistId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_playlist_song_map_playlistId` ON `${TABLE_NAME}` (`playlistId`)"
},
{
"name": "index_playlist_song_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_playlist_song_map_songId` ON `${TABLE_NAME}` (`songId`)"
}
],
"foreignKeys": [
{
"table": "playlist",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"playlistId"
],
"referencedColumns": [
"id"
]
},
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "search_history",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `query` TEXT NOT NULL)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "query",
"columnName": "query",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_search_history_query",
"unique": true,
"columnNames": [
"query"
],
"orders": [],
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_search_history_query` ON `${TABLE_NAME}` (`query`)"
}
],
"foreignKeys": []
},
{
"tableName": "format",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `itag` INTEGER NOT NULL, `mimeType` TEXT NOT NULL, `codecs` TEXT NOT NULL, `bitrate` INTEGER NOT NULL, `sampleRate` INTEGER, `contentLength` INTEGER NOT NULL, `loudnessDb` REAL, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "itag",
"columnName": "itag",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "mimeType",
"columnName": "mimeType",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "codecs",
"columnName": "codecs",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "bitrate",
"columnName": "bitrate",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "sampleRate",
"columnName": "sampleRate",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "contentLength",
"columnName": "contentLength",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "loudnessDb",
"columnName": "loudnessDb",
"affinity": "REAL",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "lyrics",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `lyrics` TEXT NOT NULL, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "lyrics",
"columnName": "lyrics",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "event",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `songId` TEXT NOT NULL, `timestamp` INTEGER NOT NULL, `playTime` INTEGER NOT NULL, FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "timestamp",
"columnName": "timestamp",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "playTime",
"columnName": "playTime",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_event_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_event_songId` ON `${TABLE_NAME}` (`songId`)"
}
],
"foreignKeys": [
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "related_song_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `songId` TEXT NOT NULL, `relatedSongId` TEXT NOT NULL, FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`relatedSongId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "relatedSongId",
"columnName": "relatedSongId",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_related_song_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_related_song_map_songId` ON `${TABLE_NAME}` (`songId`)"
},
{
"name": "index_related_song_map_relatedSongId",
"unique": false,
"columnNames": [
"relatedSongId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_related_song_map_relatedSongId` ON `${TABLE_NAME}` (`relatedSongId`)"
}
],
"foreignKeys": [
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
},
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"relatedSongId"
],
"referencedColumns": [
"id"
]
}
]
}
],
"views": [
{
"viewName": "sorted_song_artist_map",
"createSql": "CREATE VIEW `${VIEW_NAME}` AS SELECT * FROM song_artist_map ORDER BY position"
},
{
"viewName": "sorted_song_album_map",
"createSql": "CREATE VIEW `${VIEW_NAME}` AS SELECT * FROM song_album_map ORDER BY `index`"
},
{
"viewName": "playlist_song_map_preview",
"createSql": "CREATE VIEW `${VIEW_NAME}` AS SELECT * FROM playlist_song_map WHERE position <= 3 ORDER BY position"
}
],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '8db3d5731dbcc716a90427d4dde63c66')"
]
}
}
================================================
FILE: app/schemas/com.metrolist.music.db.InternalDatabase/13.json
================================================
{
"formatVersion": 1,
"database": {
"version": 13,
"identityHash": "8db3d5731dbcc716a90427d4dde63c66",
"entities": [
{
"tableName": "song",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `title` TEXT NOT NULL, `duration` INTEGER NOT NULL, `thumbnailUrl` TEXT, `albumId` TEXT, `albumName` TEXT, `liked` INTEGER NOT NULL, `totalPlayTime` INTEGER NOT NULL, `inLibrary` INTEGER, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "title",
"columnName": "title",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "duration",
"columnName": "duration",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "thumbnailUrl",
"columnName": "thumbnailUrl",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "albumId",
"columnName": "albumId",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "albumName",
"columnName": "albumName",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "liked",
"columnName": "liked",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "totalPlayTime",
"columnName": "totalPlayTime",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "inLibrary",
"columnName": "inLibrary",
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_song_albumId",
"unique": false,
"columnNames": [
"albumId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_albumId` ON `${TABLE_NAME}` (`albumId`)"
}
],
"foreignKeys": []
},
{
"tableName": "artist",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `name` TEXT NOT NULL, `thumbnailUrl` TEXT, `lastUpdateTime` INTEGER NOT NULL, `bookmarkedAt` INTEGER, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "thumbnailUrl",
"columnName": "thumbnailUrl",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "lastUpdateTime",
"columnName": "lastUpdateTime",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "bookmarkedAt",
"columnName": "bookmarkedAt",
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "album",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `title` TEXT NOT NULL, `year` INTEGER, `thumbnailUrl` TEXT, `themeColor` INTEGER, `songCount` INTEGER NOT NULL, `duration` INTEGER NOT NULL, `lastUpdateTime` INTEGER NOT NULL, `bookmarkedAt` INTEGER, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "title",
"columnName": "title",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "year",
"columnName": "year",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "thumbnailUrl",
"columnName": "thumbnailUrl",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "themeColor",
"columnName": "themeColor",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "songCount",
"columnName": "songCount",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "duration",
"columnName": "duration",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "lastUpdateTime",
"columnName": "lastUpdateTime",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "bookmarkedAt",
"columnName": "bookmarkedAt",
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "playlist",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `name` TEXT NOT NULL, `browseId` TEXT, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "name",
"columnName": "name",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "browseId",
"columnName": "browseId",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "song_artist_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`songId` TEXT NOT NULL, `artistId` TEXT NOT NULL, `position` INTEGER NOT NULL, PRIMARY KEY(`songId`, `artistId`), FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`artistId`) REFERENCES `artist`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "artistId",
"columnName": "artistId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "position",
"columnName": "position",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"songId",
"artistId"
]
},
"indices": [
{
"name": "index_song_artist_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_artist_map_songId` ON `${TABLE_NAME}` (`songId`)"
},
{
"name": "index_song_artist_map_artistId",
"unique": false,
"columnNames": [
"artistId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_artist_map_artistId` ON `${TABLE_NAME}` (`artistId`)"
}
],
"foreignKeys": [
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
},
{
"table": "artist",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"artistId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "song_album_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`songId` TEXT NOT NULL, `albumId` TEXT NOT NULL, `index` INTEGER NOT NULL, PRIMARY KEY(`songId`, `albumId`), FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`albumId`) REFERENCES `album`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "albumId",
"columnName": "albumId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "index",
"columnName": "index",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"songId",
"albumId"
]
},
"indices": [
{
"name": "index_song_album_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_album_map_songId` ON `${TABLE_NAME}` (`songId`)"
},
{
"name": "index_song_album_map_albumId",
"unique": false,
"columnNames": [
"albumId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_song_album_map_albumId` ON `${TABLE_NAME}` (`albumId`)"
}
],
"foreignKeys": [
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
},
{
"table": "album",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"albumId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "album_artist_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`albumId` TEXT NOT NULL, `artistId` TEXT NOT NULL, `order` INTEGER NOT NULL, PRIMARY KEY(`albumId`, `artistId`), FOREIGN KEY(`albumId`) REFERENCES `album`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`artistId`) REFERENCES `artist`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "albumId",
"columnName": "albumId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "artistId",
"columnName": "artistId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "order",
"columnName": "order",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"albumId",
"artistId"
]
},
"indices": [
{
"name": "index_album_artist_map_albumId",
"unique": false,
"columnNames": [
"albumId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_album_artist_map_albumId` ON `${TABLE_NAME}` (`albumId`)"
},
{
"name": "index_album_artist_map_artistId",
"unique": false,
"columnNames": [
"artistId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_album_artist_map_artistId` ON `${TABLE_NAME}` (`artistId`)"
}
],
"foreignKeys": [
{
"table": "album",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"albumId"
],
"referencedColumns": [
"id"
]
},
{
"table": "artist",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"artistId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "playlist_song_map",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `playlistId` TEXT NOT NULL, `songId` TEXT NOT NULL, `position` INTEGER NOT NULL, FOREIGN KEY(`playlistId`) REFERENCES `playlist`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE , FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "playlistId",
"columnName": "playlistId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "position",
"columnName": "position",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_playlist_song_map_playlistId",
"unique": false,
"columnNames": [
"playlistId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_playlist_song_map_playlistId` ON `${TABLE_NAME}` (`playlistId`)"
},
{
"name": "index_playlist_song_map_songId",
"unique": false,
"columnNames": [
"songId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_playlist_song_map_songId` ON `${TABLE_NAME}` (`songId`)"
}
],
"foreignKeys": [
{
"table": "playlist",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"playlistId"
],
"referencedColumns": [
"id"
]
},
{
"table": "song",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"songId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "search_history",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `query` TEXT NOT NULL)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "query",
"columnName": "query",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_search_history_query",
"unique": true,
"columnNames": [
"query"
],
"orders": [],
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_search_history_query` ON `${TABLE_NAME}` (`query`)"
}
],
"foreignKeys": []
},
{
"tableName": "format",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `itag` INTEGER NOT NULL, `mimeType` TEXT NOT NULL, `codecs` TEXT NOT NULL, `bitrate` INTEGER NOT NULL, `sampleRate` INTEGER, `contentLength` INTEGER NOT NULL, `loudnessDb` REAL, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "itag",
"columnName": "itag",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "mimeType",
"columnName": "mimeType",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "codecs",
"columnName": "codecs",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "bitrate",
"columnName": "bitrate",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "sampleRate",
"columnName": "sampleRate",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "contentLength",
"columnName": "contentLength",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "loudnessDb",
"columnName": "loudnessDb",
"affinity": "REAL",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "lyrics",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` TEXT NOT NULL, `lyrics` TEXT NOT NULL, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "lyrics",
"columnName": "lyrics",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "event",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `songId` TEXT NOT NULL, `timestamp` INTEGER NOT NULL, `playTime` INTEGER NOT NULL, FOREIGN KEY(`songId`) REFERENCES `song`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "songId",
"columnName": "songId",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "timestamp",
"columnName": "timestamp",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "playTime",
"columnName": "playTime",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_event_songId",
"unique": false,
"columnNames": [
"songI
gitextract__a69pf7r/
├── .github/
│ ├── ISSUE_TEMPLATE/
│ │ ├── bug_report.yml
│ │ ├── config.yml
│ │ └── feature_request.yml
│ ├── actions/
│ │ └── setup-protobuf/
│ │ └── action.yml
│ ├── pull_request_template.md
│ ├── scripts/
│ │ └── parse_changelog.sh
│ └── workflows/
│ ├── build.yml
│ ├── build_pr.yml
│ ├── build_quick.yml
│ └── release.yml
├── .gitignore
├── .gitmodules
├── AGENTS.md
├── LICENSE
├── README.md
├── app/
│ ├── .gitignore
│ ├── build.gradle.kts
│ ├── generate_proto.sh
│ ├── lint.xml
│ ├── proguard-rules.pro
│ ├── schemas/
│ │ └── com.metrolist.music.db.InternalDatabase/
│ │ ├── 1.json
│ │ ├── 10.json
│ │ ├── 11.json
│ │ ├── 12.json
│ │ ├── 13.json
│ │ ├── 14.json
│ │ ├── 15.json
│ │ ├── 16.json
│ │ ├── 17.json
│ │ ├── 18.json
│ │ ├── 19.json
│ │ ├── 2.json
│ │ ├── 20.json
│ │ ├── 21.json
│ │ ├── 22.json
│ │ ├── 23.json
│ │ ├── 24.json
│ │ ├── 25.json
│ │ ├── 26.json
│ │ ├── 27.json
│ │ ├── 28.json
│ │ ├── 29.json
│ │ ├── 3.json
│ │ ├── 30.json
│ │ ├── 31.json
│ │ ├── 32.json
│ │ ├── 33.json
│ │ ├── 34.json
│ │ ├── 35.json
│ │ ├── 36.json
│ │ ├── 4.json
│ │ ├── 5.json
│ │ ├── 6.json
│ │ ├── 7.json
│ │ ├── 8.json
│ │ └── 9.json
│ └── src/
│ ├── debug/
│ │ └── res/
│ │ └── xml/
│ │ └── shortcuts.xml
│ ├── foss/
│ │ ├── AndroidManifest.xml
│ │ └── kotlin/
│ │ └── com/
│ │ └── metrolist/
│ │ └── music/
│ │ ├── cast/
│ │ │ └── CastOptionsProvider.kt
│ │ ├── playback/
│ │ │ └── CastConnectionHandler.kt
│ │ └── ui/
│ │ └── component/
│ │ └── CastButton.kt
│ ├── gms/
│ │ └── kotlin/
│ │ └── com/
│ │ └── metrolist/
│ │ └── music/
│ │ ├── cast/
│ │ │ ├── CastManager.kt
│ │ │ └── CastOptionsProvider.kt
│ │ ├── playback/
│ │ │ └── CastConnectionHandler.kt
│ │ └── ui/
│ │ └── component/
│ │ ├── CastButton.kt
│ │ └── CastPickerSheet.kt
│ ├── izzy/
│ │ ├── AndroidManifest.xml
│ │ └── kotlin/
│ │ └── com/
│ │ └── metrolist/
│ │ └── music/
│ │ ├── cast/
│ │ │ └── CastOptionsProvider.kt
│ │ ├── playback/
│ │ │ └── CastConnectionHandler.kt
│ │ └── ui/
│ │ └── component/
│ │ └── CastButton.kt
│ └── main/
│ ├── AndroidManifest.xml
│ ├── assets/
│ │ ├── po_token.html
│ │ └── solver/
│ │ ├── astring.js
│ │ ├── meriyah.js
│ │ └── yt.solver.core.js
│ ├── kotlin/
│ │ └── com/
│ │ ├── dpi/
│ │ │ ├── ActivityLifecycleManager.kt
│ │ │ ├── BaseLifecycleContentProvider.kt
│ │ │ ├── DensityConfiguration.kt
│ │ │ └── DensityScaler.kt
│ │ └── metrolist/
│ │ └── music/
│ │ ├── App.kt
│ │ ├── MainActivity.kt
│ │ ├── api/
│ │ │ ├── DeepLService.kt
│ │ │ ├── MistralService.kt
│ │ │ ├── OpenRouterService.kt
│ │ │ └── OpenRouterStreamingService.kt
│ │ ├── constants/
│ │ │ ├── Dimensions.kt
│ │ │ ├── HistorySource.kt
│ │ │ ├── LibraryFilter.kt
│ │ │ ├── MediaSessionConstants.kt
│ │ │ ├── PreferenceKeys.kt
│ │ │ └── StatPeriod.kt
│ │ ├── db/
│ │ │ ├── Converters.kt
│ │ │ ├── DatabaseDao.kt
│ │ │ ├── MusicDatabase.kt
│ │ │ ├── daos/
│ │ │ │ └── SpeedDialDao.kt
│ │ │ └── entities/
│ │ │ ├── Album.kt
│ │ │ ├── AlbumArtistMap.kt
│ │ │ ├── AlbumEntity.kt
│ │ │ ├── AlbumWithSongs.kt
│ │ │ ├── Artist.kt
│ │ │ ├── ArtistEntity.kt
│ │ │ ├── Event.kt
│ │ │ ├── EventWithSong.kt
│ │ │ ├── FormatEntity.kt
│ │ │ ├── LocalItem.kt
│ │ │ ├── LyricsEntity.kt
│ │ │ ├── PlayCountEntity.kt
│ │ │ ├── Playlist.kt
│ │ │ ├── PlaylistEntity.kt
│ │ │ ├── PlaylistSong.kt
│ │ │ ├── PlaylistSongMap.kt
│ │ │ ├── PlaylistSongMapPreview.kt
│ │ │ ├── PodcastEntity.kt
│ │ │ ├── RecognitionHistory.kt
│ │ │ ├── RelatedSongMap.kt
│ │ │ ├── SearchHistory.kt
│ │ │ ├── SetVideoIdEntity.kt
│ │ │ ├── Song.kt
│ │ │ ├── SongAlbumMap.kt
│ │ │ ├── SongArtistMap.kt
│ │ │ ├── SongEntity.kt
│ │ │ ├── SongWithStats.kt
│ │ │ ├── SortedSongAlbumMap.kt
│ │ │ ├── SortedSongArtistMap.kt
│ │ │ └── SpeedDialItem.kt
│ │ ├── di/
│ │ │ ├── AppModule.kt
│ │ │ ├── LyricsHelperEntryPoint.kt
│ │ │ ├── NetworkModule.kt
│ │ │ ├── Qualifiers.kt
│ │ │ └── WrappedModule.kt
│ │ ├── eq/
│ │ │ ├── EqualizerService.kt
│ │ │ ├── audio/
│ │ │ │ ├── BiquadFilter.kt
│ │ │ │ └── CustomEqualizerAudioProcessor.kt
│ │ │ └── data/
│ │ │ ├── EQProfileRepository.kt
│ │ │ ├── FilterType.kt
│ │ │ ├── ParametricEQ.kt
│ │ │ └── ParametricEQParser.kt
│ │ ├── extensions/
│ │ │ ├── ContextExt.kt
│ │ │ ├── CoroutineExt.kt
│ │ │ ├── FileExt.kt
│ │ │ ├── ListExt.kt
│ │ │ ├── MediaItemExt.kt
│ │ │ ├── PlayerExt.kt
│ │ │ ├── QueueExt.kt
│ │ │ ├── StringExt.kt
│ │ │ └── UtilExt.kt
│ │ ├── listentogether/
│ │ │ ├── ListenTogetherActionReceiver.kt
│ │ │ ├── ListenTogetherClient.kt
│ │ │ ├── ListenTogetherManager.kt
│ │ │ ├── ListenTogetherServers.kt
│ │ │ ├── MessageCodec.kt
│ │ │ └── Protocol.kt
│ │ ├── lyrics/
│ │ │ ├── BetterLyricsProvider.kt
│ │ │ ├── KuGouLyricsProvider.kt
│ │ │ ├── LrcLibLyricsProvider.kt
│ │ │ ├── LyricsEntry.kt
│ │ │ ├── LyricsHelper.kt
│ │ │ ├── LyricsPlusProvider.kt
│ │ │ ├── LyricsProvider.kt
│ │ │ ├── LyricsProviderRegistry.kt
│ │ │ ├── LyricsTranslationHelper.kt
│ │ │ ├── LyricsUtils.kt
│ │ │ ├── SimpMusicLyricsProvider.kt
│ │ │ ├── YouTubeLyricsProvider.kt
│ │ │ └── YouTubeSubtitleLyricsProvider.kt
│ │ ├── models/
│ │ │ ├── ItemsPage.kt
│ │ │ ├── MediaMetadata.kt
│ │ │ ├── PersistPlayerState.kt
│ │ │ ├── PersistQueue.kt
│ │ │ └── SimilarRecommendation.kt
│ │ ├── playback/
│ │ │ ├── DownloadUtil.kt
│ │ │ ├── ExoDownloadService.kt
│ │ │ ├── MediaLibrarySessionCallback.kt
│ │ │ ├── MetrolistCacheEvictor.kt
│ │ │ ├── MusicService.kt
│ │ │ ├── PlayerConnection.kt
│ │ │ ├── SleepTimer.kt
│ │ │ ├── alarm/
│ │ │ │ ├── MusicAlarmReceiver.kt
│ │ │ │ ├── MusicAlarmRescheduleReceiver.kt
│ │ │ │ ├── MusicAlarmScheduler.kt
│ │ │ │ └── MusicAlarmStore.kt
│ │ │ ├── audio/
│ │ │ │ └── SilenceDetectorAudioProcessor.kt
│ │ │ └── queues/
│ │ │ ├── EmptyQueue.kt
│ │ │ ├── ListQueue.kt
│ │ │ ├── LocalAlbumRadio.kt
│ │ │ ├── Queue.kt
│ │ │ ├── YouTubeAlbumRadio.kt
│ │ │ ├── YouTubePlaylistQueue.kt
│ │ │ └── YouTubeQueue.kt
│ │ ├── quicksettings/
│ │ │ └── MusicRecognizerTileService.kt
│ │ ├── recognition/
│ │ │ ├── AudioResampler.kt
│ │ │ ├── MusicRecognitionService.kt
│ │ │ ├── RecognitionForegroundService.kt
│ │ │ ├── RecognitionLaunchActivity.kt
│ │ │ ├── ShazamSignatureGenerator.kt
│ │ │ └── VibraSignature.kt
│ │ ├── ui/
│ │ │ ├── component/
│ │ │ │ ├── AppNavigation.kt
│ │ │ │ ├── AutoResizeText.kt
│ │ │ │ ├── BigSeekBar.kt
│ │ │ │ ├── BottomSheet.kt
│ │ │ │ ├── BottomSheetMenu.kt
│ │ │ │ ├── BottomSheetPage.kt
│ │ │ │ ├── ChipsRow.kt
│ │ │ │ ├── CreatePlaylistDialog.kt
│ │ │ │ ├── Dialog.kt
│ │ │ │ ├── DraggableLyricsProviderList.kt
│ │ │ │ ├── DraggableScrollBarOverlay.kt
│ │ │ │ ├── EmptyPlaceholder.kt
│ │ │ │ ├── EnumDialog.kt
│ │ │ │ ├── ExpandableText.kt
│ │ │ │ ├── GridMenu.kt
│ │ │ │ ├── HideOnScrollFAB.kt
│ │ │ │ ├── IconButton.kt
│ │ │ │ ├── IntegrationCard.kt
│ │ │ │ ├── Items.kt
│ │ │ │ ├── Library.kt
│ │ │ │ ├── Lyrics.kt
│ │ │ │ ├── LyricsImageCard.kt
│ │ │ │ ├── Material3SettingsGroup.kt
│ │ │ │ ├── Menu.kt
│ │ │ │ ├── NavigationTile.kt
│ │ │ │ ├── NavigationTitle.kt
│ │ │ │ ├── NewMenuComponents.kt
│ │ │ │ ├── PlayerSlider.kt
│ │ │ │ ├── PlayingIndicator.kt
│ │ │ │ ├── Preference.kt
│ │ │ │ ├── RandomizeGridItem.kt
│ │ │ │ ├── ReleaseNotesCard.kt
│ │ │ │ ├── SearchBar.kt
│ │ │ │ ├── SettingsSleepTimerDialog.kt
│ │ │ │ ├── SongDropdownSelect.kt
│ │ │ │ ├── SortHeader.kt
│ │ │ │ ├── SpeedDialGridItem.kt
│ │ │ │ ├── SquigglySlider.kt
│ │ │ │ ├── TimeTransfer.kt
│ │ │ │ ├── VolumeSlider.kt
│ │ │ │ ├── WavySlider.kt
│ │ │ │ └── shimmer/
│ │ │ │ ├── ButtonPlaceholder.kt
│ │ │ │ ├── GridItemPlaceholder.kt
│ │ │ │ ├── ListItemPlaceholder.kt
│ │ │ │ ├── ShimmerHost.kt
│ │ │ │ └── TextPlaceholder.kt
│ │ │ ├── menu/
│ │ │ │ ├── AddToPlaylistDialog.kt
│ │ │ │ ├── AddToPlaylistDialogOnline.kt
│ │ │ │ ├── AlbumMenu.kt
│ │ │ │ ├── ArtistMenu.kt
│ │ │ │ ├── CsvColumnMappingDialog.kt
│ │ │ │ ├── CustomThumbnailMenu.kt
│ │ │ │ ├── ImportPlaylistDialog.kt
│ │ │ │ ├── LoadingScreen.kt
│ │ │ │ ├── LyricsMenu.kt
│ │ │ │ ├── PlayerMenu.kt
│ │ │ │ ├── PlaylistMenu.kt
│ │ │ │ ├── PlaylistScreenMenus.kt
│ │ │ │ ├── QueueMenu.kt
│ │ │ │ ├── SelectionSongsMenu.kt
│ │ │ │ ├── SongMenu.kt
│ │ │ │ ├── YouTubeAlbumMenu.kt
│ │ │ │ ├── YouTubeArtistMenu.kt
│ │ │ │ ├── YouTubePlaylistMenu.kt
│ │ │ │ ├── YouTubeSelectionSongMenu.kt
│ │ │ │ └── YouTubeSongMenu.kt
│ │ │ ├── player/
│ │ │ │ ├── MiniPlayer.kt
│ │ │ │ ├── PlaybackError.kt
│ │ │ │ ├── Player.kt
│ │ │ │ ├── Queue.kt
│ │ │ │ ├── Thumbnail.kt
│ │ │ │ └── ThumbnailSnapUtils.kt
│ │ │ ├── screens/
│ │ │ │ ├── AccountScreen.kt
│ │ │ │ ├── AlbumScreen.kt
│ │ │ │ ├── BrowseScreen.kt
│ │ │ │ ├── ChartsScreen.kt
│ │ │ │ ├── CrashActivity.kt
│ │ │ │ ├── ExploreScreen.kt
│ │ │ │ ├── HistoryScreen.kt
│ │ │ │ ├── HomeScreen.kt
│ │ │ │ ├── ListenTogetherScreen.kt
│ │ │ │ ├── LoginScreen.kt
│ │ │ │ ├── MoodAndGenresScreen.kt
│ │ │ │ ├── NavigationBuilder.kt
│ │ │ │ ├── NewReleaseScreen.kt
│ │ │ │ ├── Screens.kt
│ │ │ │ ├── StatsScreen.kt
│ │ │ │ ├── YouTubeBrowseScreen.kt
│ │ │ │ ├── artist/
│ │ │ │ │ ├── ArtistAlbumsScreen.kt
│ │ │ │ │ ├── ArtistItemsScreen.kt
│ │ │ │ │ ├── ArtistScreen.kt
│ │ │ │ │ └── ArtistSongsScreen.kt
│ │ │ │ ├── equalizer/
│ │ │ │ │ ├── EQState.kt
│ │ │ │ │ ├── EQViewModel.kt
│ │ │ │ │ └── EqScreen.kt
│ │ │ │ ├── library/
│ │ │ │ │ ├── LibraryAlbumsScreen.kt
│ │ │ │ │ ├── LibraryArtistsScreen.kt
│ │ │ │ │ ├── LibraryMixScreen.kt
│ │ │ │ │ ├── LibraryPlaylistsScreen.kt
│ │ │ │ │ ├── LibraryPodcastsScreen.kt
│ │ │ │ │ ├── LibraryScreen.kt
│ │ │ │ │ └── LibrarySongsScreen.kt
│ │ │ │ ├── playlist/
│ │ │ │ │ ├── AutoPlaylistScreen.kt
│ │ │ │ │ ├── CachePlaylistScreen.kt
│ │ │ │ │ ├── LocalPlaylistScreen.kt
│ │ │ │ │ ├── OnlinePlaylistScreen.kt
│ │ │ │ │ └── TopPlaylistScreen.kt
│ │ │ │ ├── podcast/
│ │ │ │ │ └── OnlinePodcastScreen.kt
│ │ │ │ ├── recognition/
│ │ │ │ │ ├── RecognitionHistoryScreen.kt
│ │ │ │ │ └── RecognitionScreen.kt
│ │ │ │ ├── search/
│ │ │ │ │ ├── LocalSearchScreen.kt
│ │ │ │ │ ├── OnlineSearchResult.kt
│ │ │ │ │ ├── OnlineSearchScreen.kt
│ │ │ │ │ └── SearchScreen.kt
│ │ │ │ ├── settings/
│ │ │ │ │ ├── AboutScreen.kt
│ │ │ │ │ ├── AccountSettings.kt
│ │ │ │ │ ├── AiSettings.kt
│ │ │ │ │ ├── AlarmSettings.kt
│ │ │ │ │ ├── AndroidAutoSettings.kt
│ │ │ │ │ ├── AppearanceSettings.kt
│ │ │ │ │ ├── BackupAndRestore.kt
│ │ │ │ │ ├── ChangelogScreen.kt
│ │ │ │ │ ├── ContentSettings.kt
│ │ │ │ │ ├── DiscordLoginScreen.kt
│ │ │ │ │ ├── PlayerSettings.kt
│ │ │ │ │ ├── PrivacySettings.kt
│ │ │ │ │ ├── RomanizationSettings.kt
│ │ │ │ │ ├── SettingsScreen.kt
│ │ │ │ │ ├── StorageSettings.kt
│ │ │ │ │ ├── ThemeScreen.kt
│ │ │ │ │ ├── UpdaterSettings.kt
│ │ │ │ │ └── integrations/
│ │ │ │ │ ├── DiscordSettings.kt
│ │ │ │ │ ├── IntegrationScreen.kt
│ │ │ │ │ ├── LastFMSettings.kt
│ │ │ │ │ └── ListenTogetherSettings.kt
│ │ │ │ └── wrapped/
│ │ │ │ ├── WrappedAudioService.kt
│ │ │ │ ├── WrappedConstants.kt
│ │ │ │ ├── WrappedData.kt
│ │ │ │ ├── WrappedEntryPoint.kt
│ │ │ │ ├── WrappedManager.kt
│ │ │ │ ├── WrappedScreen.kt
│ │ │ │ ├── WrappedState.kt
│ │ │ │ ├── WrappedViewModel.kt
│ │ │ │ ├── components/
│ │ │ │ │ ├── AnimatedBackground.kt
│ │ │ │ │ ├── AnimatedDecorativeElement.kt
│ │ │ │ │ └── AutoResizingText.kt
│ │ │ │ └── pages/
│ │ │ │ ├── AlbumPages.kt
│ │ │ │ ├── ConclusionPage.kt
│ │ │ │ ├── PlaylistPage.kt
│ │ │ │ ├── WrappedIntro.kt
│ │ │ │ ├── WrappedMinutesScreen.kt
│ │ │ │ ├── WrappedMinutesTease.kt
│ │ │ │ ├── WrappedTop5ArtistsScreen.kt
│ │ │ │ ├── WrappedTop5SongsScreen.kt
│ │ │ │ ├── WrappedTopArtistScreen.kt
│ │ │ │ ├── WrappedTopSongScreen.kt
│ │ │ │ ├── WrappedTotalArtistsScreen.kt
│ │ │ │ └── WrappedTotalSongsScreen.kt
│ │ │ ├── theme/
│ │ │ │ ├── Font.kt
│ │ │ │ ├── PlayerColorExtractor.kt
│ │ │ │ ├── PlayerSliderColors.kt
│ │ │ │ ├── Theme.kt
│ │ │ │ ├── Type.kt
│ │ │ │ └── bbh_bartle.kt
│ │ │ └── utils/
│ │ │ ├── AppBar.kt
│ │ │ ├── FadingEdge.kt
│ │ │ ├── ItemWrapper.kt
│ │ │ ├── KeyUtils.kt
│ │ │ ├── LazyGridSnapLayoutInfoProvider.kt
│ │ │ ├── NavControllerUtils.kt
│ │ │ ├── ScrollUtils.kt
│ │ │ ├── ShapeUtils.kt
│ │ │ ├── ShowMediaInfo.kt
│ │ │ ├── ShowOffsetDialog.kt
│ │ │ ├── StringUtils.kt
│ │ │ └── YouTubeUtils.kt
│ │ ├── utils/
│ │ │ ├── CoilBitmapLoader.kt
│ │ │ ├── ComposeDebugUtils.kt
│ │ │ ├── ComposeToImage.kt
│ │ │ ├── CrashHandler.kt
│ │ │ ├── DataStore.kt
│ │ │ ├── DiscordRPC.kt
│ │ │ ├── IconUtils.kt
│ │ │ ├── NetworkConnectivityObserver.kt
│ │ │ ├── NetworkUtils.kt
│ │ │ ├── PlaylistExporter.kt
│ │ │ ├── PodcastRefreshTrigger.kt
│ │ │ ├── ScrobbleManager.kt
│ │ │ ├── StringUtils.kt
│ │ │ ├── SuperProperties.kt
│ │ │ ├── SyncUtils.kt
│ │ │ ├── Updater.kt
│ │ │ ├── Utils.kt
│ │ │ ├── YTPlayerUtils.kt
│ │ │ ├── cipher/
│ │ │ │ ├── CipherDeobfuscator.kt
│ │ │ │ ├── CipherWebView.kt
│ │ │ │ ├── FunctionNameExtractor.kt
│ │ │ │ └── PlayerJsFetcher.kt
│ │ │ ├── potoken/
│ │ │ │ ├── JavaScriptUtil.kt
│ │ │ │ ├── PoTokenException.kt
│ │ │ │ ├── PoTokenGenerator.kt
│ │ │ │ ├── PoTokenResult.kt
│ │ │ │ └── PoTokenWebView.kt
│ │ │ └── sabr/
│ │ │ ├── EjsNTransformSolver.kt
│ │ │ └── SabrException.kt
│ │ ├── viewmodels/
│ │ │ ├── AccountSettingsViewModel.kt
│ │ │ ├── AccountViewModel.kt
│ │ │ ├── AlbumViewModel.kt
│ │ │ ├── ArtistAlbumsViewModel.kt
│ │ │ ├── ArtistItemsViewModel.kt
│ │ │ ├── ArtistViewModel.kt
│ │ │ ├── AutoPlaylistViewModel.kt
│ │ │ ├── BackupRestoreViewModel.kt
│ │ │ ├── BrowseViewModel.kt
│ │ │ ├── CachePlaylistViewModel.kt
│ │ │ ├── ChartsViewModel.kt
│ │ │ ├── ExploreViewModel.kt
│ │ │ ├── HistoryViewModel.kt
│ │ │ ├── HomeViewModel.kt
│ │ │ ├── LibraryViewModels.kt
│ │ │ ├── ListenTogetherViewModel.kt
│ │ │ ├── LocalPlaylistViewModel.kt
│ │ │ ├── LocalSearchViewModel.kt
│ │ │ ├── LyricsMenuViewModel.kt
│ │ │ ├── MoodAndGenresViewModel.kt
│ │ │ ├── NewReleaseViewModel.kt
│ │ │ ├── OnlinePlaylistViewModel.kt
│ │ │ ├── OnlinePodcastViewModel.kt
│ │ │ ├── OnlineSearchSuggestionViewModel.kt
│ │ │ ├── OnlineSearchViewModel.kt
│ │ │ ├── PlaylistsViewModel.kt
│ │ │ ├── StatsViewModel.kt
│ │ │ ├── ThemeViewModel.kt
│ │ │ ├── TopPlaylistViewModel.kt
│ │ │ └── YouTubeBrowseViewModel.kt
│ │ └── widget/
│ │ ├── MetrolistWidgetManager.kt
│ │ ├── MusicRecognizerWidgetReceiver.kt
│ │ ├── MusicRecognizerWidgetService.kt
│ │ ├── MusicWidgetReceiver.kt
│ │ └── TurntableWidgetReceiver.kt
│ └── res/
│ ├── drawable/
│ │ ├── account.xml
│ │ ├── add.xml
│ │ ├── add_circle.xml
│ │ ├── album.xml
│ │ ├── alphabet_cyrillic.xml
│ │ ├── app_logo.xml
│ │ ├── arrow_back.xml
│ │ ├── arrow_downward.xml
│ │ ├── arrow_forward.xml
│ │ ├── arrow_top_left.xml
│ │ ├── arrow_upward.xml
│ │ ├── artist.xml
│ │ ├── backup.xml
│ │ ├── baseline_event_repeat_24.xml
│ │ ├── bedtime.xml
│ │ ├── bluetooth.xml
│ │ ├── bug_report.xml
│ │ ├── buymeacoffee.xml
│ │ ├── cached.xml
│ │ ├── cast.xml
│ │ ├── cast_connected.xml
│ │ ├── check.xml
│ │ ├── clear_all.xml
│ │ ├── close.xml
│ │ ├── cloud.xml
│ │ ├── content_copy.xml
│ │ ├── contrast.xml
│ │ ├── crop.xml
│ │ ├── crown.xml
│ │ ├── delete.xml
│ │ ├── delete_history.xml
│ │ ├── discord.xml
│ │ ├── discover_tune.xml
│ │ ├── dock_to_top.xml
│ │ ├── done.xml
│ │ ├── download.xml
│ │ ├── drag_handle.xml
│ │ ├── edit.xml
│ │ ├── equalizer.xml
│ │ ├── error.xml
│ │ ├── expand_less.xml
│ │ ├── expand_more.xml
│ │ ├── explicit.xml
│ │ ├── explore_outlined.xml
│ │ ├── fast_forward.xml
│ │ ├── favorite.xml
│ │ ├── favorite_border.xml
│ │ ├── fullscreen.xml
│ │ ├── github.xml
│ │ ├── gradient.xml
│ │ ├── graphic_eq.xml
│ │ ├── grid_view.xml
│ │ ├── group.xml
│ │ ├── group_add.xml
│ │ ├── group_filled.xml
│ │ ├── group_outlined.xml
│ │ ├── hide_image.xml
│ │ ├── history.xml
│ │ ├── home_filled.xml
│ │ ├── home_outlined.xml
│ │ ├── ic_android_auto.xml
│ │ ├── ic_dynamic_icon.xml
│ │ ├── ic_heart.xml
│ │ ├── ic_heart_outline.xml
│ │ ├── ic_launcher_background_v31.xml
│ │ ├── ic_launcher_foreground.xml
│ │ ├── ic_launcher_foreground_v31.xml
│ │ ├── ic_launcher_monochrome.xml
│ │ ├── ic_push_pin.xml
│ │ ├── ic_widget_heart_nav.xml
│ │ ├── ic_widget_heart_outline_nav.xml
│ │ ├── ic_widget_mic.xml
│ │ ├── ic_widget_pause.xml
│ │ ├── ic_widget_pause_low.xml
│ │ ├── ic_widget_pause_secondary.xml
│ │ ├── ic_widget_play.xml
│ │ ├── ic_widget_play_low.xml
│ │ ├── ic_widget_play_secondary.xml
│ │ ├── ic_widget_skip_next.xml
│ │ ├── ic_widget_skip_previous.xml
│ │ ├── info.xml
│ │ ├── insert_photo.xml
│ │ ├── instagram.xml
│ │ ├── integration.xml
│ │ ├── key.xml
│ │ ├── language.xml
│ │ ├── language_japanese_latin.xml
│ │ ├── language_korean_latin.xml
│ │ ├── library_add.xml
│ │ ├── library_add_check.xml
│ │ ├── library_music.xml
│ │ ├── library_music_filled.xml
│ │ ├── library_music_outlined.xml
│ │ ├── linear_scale.xml
│ │ ├── link.xml
│ │ ├── list.xml
│ │ ├── location_on.xml
│ │ ├── lock.xml
│ │ ├── lock_open.xml
│ │ ├── login.xml
│ │ ├── logout.xml
│ │ ├── lyrics.xml
│ │ ├── manage_search.xml
│ │ ├── mic.xml
│ │ ├── more_horiz.xml
│ │ ├── more_time.xml
│ │ ├── more_vert.xml
│ │ ├── music_note.xml
│ │ ├── nav_bar.xml
│ │ ├── navigate_next.xml
│ │ ├── newspaper.xml
│ │ ├── notification.xml
│ │ ├── offline.xml
│ │ ├── palette.xml
│ │ ├── pause.xml
│ │ ├── person.xml
│ │ ├── play.xml
│ │ ├── playlist_add.xml
│ │ ├── playlist_play.xml
│ │ ├── queue_music.xml
│ │ ├── radio.xml
│ │ ├── radio_button_checked.xml
│ │ ├── radio_button_unchecked.xml
│ │ ├── refresh.xml
│ │ ├── remove.xml
│ │ ├── repeat.xml
│ │ ├── repeat_on.xml
│ │ ├── repeat_one.xml
│ │ ├── repeat_one_on.xml
│ │ ├── replay.xml
│ │ ├── restore.xml
│ │ ├── screenshot.xml
│ │ ├── search.xml
│ │ ├── search_off.xml
│ │ ├── security.xml
│ │ ├── select_all.xml
│ │ ├── settings.xml
│ │ ├── share.xml
│ │ ├── shortcut_library.xml
│ │ ├── shortcut_search.xml
│ │ ├── shuffle.xml
│ │ ├── shuffle_on.xml
│ │ ├── similar.xml
│ │ ├── skip_next.xml
│ │ ├── skip_previous.xml
│ │ ├── sliders.xml
│ │ ├── slow_motion_video.xml
│ │ ├── small_icon.xml
│ │ ├── speed.xml
│ │ ├── star.xml
│ │ ├── stats.xml
│ │ ├── storage.xml
│ │ ├── subscribe.xml
│ │ ├── subscribed.xml
│ │ ├── swipe.xml
│ │ ├── sync.xml
│ │ ├── tab.xml
│ │ ├── telegram.xml
│ │ ├── time_auto.xml
│ │ ├── timer.xml
│ │ ├── timer_arrow_down.xml
│ │ ├── token.xml
│ │ ├── translate.xml
│ │ ├── trending_up.xml
│ │ ├── tune.xml
│ │ ├── update.xml
│ │ ├── upload.xml
│ │ ├── volume_down.xml
│ │ ├── volume_mute.xml
│ │ ├── volume_off.xml
│ │ ├── volume_off_pause.xml
│ │ ├── volume_up.xml
│ │ ├── warning.xml
│ │ ├── widget_background.xml
│ │ ├── widget_like_button_bg.xml
│ │ ├── widget_mic_button_bg.xml
│ │ ├── widget_mic_button_bg_active.xml
│ │ ├── widget_mic_pulse_1.xml
│ │ ├── widget_mic_pulse_2.xml
│ │ ├── widget_mic_pulse_3.xml
│ │ ├── widget_mic_pulse_4.xml
│ │ ├── widget_mic_pulse_idle.xml
│ │ ├── widget_play_button_circular.xml
│ │ ├── widget_play_pill_bg.xml
│ │ ├── widget_progress_clip.xml
│ │ ├── widget_progress_fill.xml
│ │ ├── widget_progress_track.xml
│ │ ├── widget_turntable_default_art.xml
│ │ ├── widget_turntable_nav_bg.xml
│ │ ├── widget_turntable_play_bg.xml
│ │ └── wifi_proxy.xml
│ ├── drawable-night/
│ │ ├── widget_background.xml
│ │ ├── widget_play_pill_bg.xml
│ │ ├── widget_progress_fill.xml
│ │ ├── widget_progress_track.xml
│ │ ├── widget_turntable_nav_bg.xml
│ │ └── widget_turntable_play_bg.xml
│ ├── drawable-night-v31/
│ │ ├── widget_background.xml
│ │ ├── widget_play_pill_bg.xml
│ │ ├── widget_progress_fill.xml
│ │ ├── widget_progress_track.xml
│ │ ├── widget_turntable_nav_bg.xml
│ │ └── widget_turntable_play_bg.xml
│ ├── drawable-v31/
│ │ ├── ic_launcher_background_v31.xml
│ │ ├── ic_widget_mic.xml
│ │ ├── widget_background.xml
│ │ ├── widget_mic_button_bg.xml
│ │ ├── widget_mic_button_bg_active.xml
│ │ ├── widget_mic_pulse_1.xml
│ │ ├── widget_mic_pulse_2.xml
│ │ ├── widget_mic_pulse_3.xml
│ │ ├── widget_mic_pulse_4.xml
│ │ ├── widget_play_pill_bg.xml
│ │ ├── widget_progress_fill.xml
│ │ ├── widget_progress_track.xml
│ │ ├── widget_turntable_nav_bg.xml
│ │ └── widget_turntable_play_bg.xml
│ ├── font/
│ │ └── bbh_bartle.xml
│ ├── layout/
│ │ ├── widget_compact_square.xml
│ │ ├── widget_compact_wide.xml
│ │ ├── widget_music_player.xml
│ │ ├── widget_recognizer_compact.xml
│ │ ├── widget_recognizer_tiny.xml
│ │ ├── widget_recognizer_wide.xml
│ │ └── widget_turntable.xml
│ ├── mipmap-anydpi/
│ │ ├── ic_launcher.xml
│ │ ├── ic_launcher_round.xml
│ │ ├── ic_launcher_static.xml
│ │ └── ic_launcher_static_round.xml
│ ├── mipmap-anydpi-v31/
│ │ ├── ic_launcher.xml
│ │ └── ic_launcher_round.xml
│ ├── resources.properties
│ ├── values/
│ │ ├── app_name.xml
│ │ ├── colors.xml
│ │ ├── ic_launcher_background.xml
│ │ ├── metrolist_strings.xml
│ │ ├── strings.xml
│ │ ├── styles.xml
│ │ ├── values.xml
│ │ └── widget_colors.xml
│ ├── values-ar/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-as/
│ │ └── metrolist_strings.xml
│ ├── values-az/
│ │ └── metrolist_strings.xml
│ ├── values-b+sr+Latn/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-be/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-bg/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-bn/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-bn-rIN/
│ │ └── strings.xml
│ ├── values-bs/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-ca/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-cs/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-de/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-el/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-en-rCA/
│ │ └── strings.xml
│ ├── values-es/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-es-rUS/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-et/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-eu/
│ │ └── metrolist_strings.xml
│ ├── values-fa/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-fi/
│ │ └── strings.xml
│ ├── values-fil/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-fr/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-hi/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-hr/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-hu/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-in/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-it/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-iw/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-ja/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-km/
│ │ └── metrolist_strings.xml
│ ├── values-ko/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-lt/
│ │ └── metrolist_strings.xml
│ ├── values-mfe/
│ │ └── metrolist_strings.xml
│ ├── values-ml/
│ │ └── strings.xml
│ ├── values-ms/
│ │ └── metrolist_strings.xml
│ ├── values-nb-rNO/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-night/
│ │ ├── colors.xml
│ │ └── widget_colors.xml
│ ├── values-night-v31/
│ │ └── widget_colors.xml
│ ├── values-nl/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-nn/
│ │ └── metrolist_strings.xml
│ ├── values-or/
│ │ └── metrolist_strings.xml
│ ├── values-pa/
│ │ └── strings.xml
│ ├── values-pl/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-pt/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-pt-rBR/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-ro/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-ru/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-sk/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-sl/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-sv/
│ │ └── metrolist_strings.xml
│ ├── values-ta/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-te/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-th/
│ │ └── metrolist_strings.xml
│ ├── values-tr/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-uk/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-v31/
│ │ ├── styles.xml
│ │ └── widget_colors.xml
│ ├── values-vi/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-wae/
│ │ └── metrolist_strings.xml
│ ├── values-zh-rCN/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── values-zh-rTW/
│ │ ├── metrolist_strings.xml
│ │ └── strings.xml
│ ├── xml/
│ │ ├── automotive_app_desc.xml
│ │ ├── backup_rules.xml
│ │ ├── data_extraction_rules.xml
│ │ ├── music_widget_info.xml
│ │ ├── network_security_config.xml
│ │ ├── provider_paths.xml
│ │ ├── recognizer_widget_info.xml
│ │ ├── shortcuts.xml
│ │ └── turntable_widget_info.xml
│ └── xml-v31/
│ ├── music_widget_info.xml
│ ├── recognizer_widget_info.xml
│ └── turntable_widget_info.xml
├── betterlyrics/
│ ├── build.gradle.kts
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── kotlin/
│ └── com/
│ └── metrolist/
│ └── music/
│ └── betterlyrics/
│ ├── BetterLyrics.kt
│ ├── TTMLParser.kt
│ └── models/
│ └── Track.kt
├── build.gradle.kts
├── changelog.md
├── crowdin.yml
├── development_guide.md
├── fastlane/
│ └── metadata/
│ └── android/
│ ├── ar/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── az-AZ/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── bg/
│ │ └── short_description.txt
│ ├── ca/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── cs-CZ/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── de-DE/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── en-US/
│ │ ├── full_description.txt
│ │ ├── short_description.txt
│ │ └── title.txt
│ ├── es/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── et/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── eu-ES/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── fil/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── fr-FR/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── id/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── it/
│ │ ├── full_description.txt
│ │ ├── short_description.txt
│ │ └── title.txt
│ ├── ko-KR/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── lt/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── mfe/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── pt/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── pt-BR/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── ro/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── ru-RU/
│ │ ├── full_description.txt
│ │ ├── short_description.txt
│ │ └── title.txt
│ ├── sk/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── sl/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── te-IN/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ ├── tr/
│ │ ├── full_description.txt
│ │ └── short_description.txt
│ └── uk-UA/
│ ├── full_description.txt
│ └── short_description.txt
├── gradle/
│ ├── gradle-daemon-jvm.properties
│ ├── libs.versions.toml
│ └── wrapper/
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── innertube/
│ ├── .gitignore
│ ├── build.gradle.kts
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── kotlin/
│ └── com/
│ └── metrolist/
│ └── innertube/
│ ├── InnerTube.kt
│ ├── NetworkConfig.kt
│ ├── YouTube.kt
│ ├── YouTubeConstants.kt
│ ├── models/
│ │ ├── AccountInfo.kt
│ │ ├── AutomixPreviewVideoRenderer.kt
│ │ ├── Badges.kt
│ │ ├── Button.kt
│ │ ├── Context.kt
│ │ ├── Continuation.kt
│ │ ├── ContinuationItemRenderer.kt
│ │ ├── Endpoint.kt
│ │ ├── GridRenderer.kt
│ │ ├── Icon.kt
│ │ ├── MediaInfo.kt
│ │ ├── Menu.kt
│ │ ├── MusicCardShelfRenderer.kt
│ │ ├── MusicCarouselShelfRenderer.kt
│ │ ├── MusicDescriptionShelfRenderer.kt
│ │ ├── MusicEditablePlaylistDetailHeaderRenderer.kt
│ │ ├── MusicMultiRowImageItemRenderer.kt
│ │ ├── MusicMultiRowListItemRenderer.kt
│ │ ├── MusicNavigationButtonRenderer.kt
│ │ ├── MusicPlaylistShelfRenderer.kt
│ │ ├── MusicQueueRenderer.kt
│ │ ├── MusicResponsiveHeaderRenderer.kt
│ │ ├── MusicResponsiveListItemRenderer.kt
│ │ ├── MusicShelfRenderer.kt
│ │ ├── MusicTwoRowItemRenderer.kt
│ │ ├── NavigationEndpoint.kt
│ │ ├── PlaylistDeleteBody.kt
│ │ ├── PlaylistPanelRenderer.kt
│ │ ├── PlaylistPanelVideoRenderer.kt
│ │ ├── ResponseContext.kt
│ │ ├── ReturnYouTubeDislikeResponse.kt
│ │ ├── Runs.kt
│ │ ├── SearchSuggestions.kt
│ │ ├── SearchSuggestionsSectionRenderer.kt
│ │ ├── SectionListRenderer.kt
│ │ ├── SubscriptionButton.kt
│ │ ├── Tabs.kt
│ │ ├── TasteProfile.kt
│ │ ├── ThumbnailRenderer.kt
│ │ ├── Thumbnails.kt
│ │ ├── TwoColumnBrowseResultsRenderer.kt
│ │ ├── UrlEndpoint.kt
│ │ ├── YTItem.kt
│ │ ├── YouTubeClient.kt
│ │ ├── YouTubeDataPage.kt
│ │ ├── YouTubeLocale.kt
│ │ ├── body/
│ │ │ ├── AccountMenuBody.kt
│ │ │ ├── BrowseBody.kt
│ │ │ ├── CreatePlaylistBody.kt
│ │ │ ├── EditPlaylistBody.kt
│ │ │ ├── FeedbackBody.kt
│ │ │ ├── GetQueueBody.kt
│ │ │ ├── GetSearchSuggestionsBody.kt
│ │ │ ├── GetTranscriptBody.kt
│ │ │ ├── LikeBody.kt
│ │ │ ├── NextBody.kt
│ │ │ ├── PlayerBody.kt
│ │ │ ├── SearchBody.kt
│ │ │ └── SubscribeBody.kt
│ │ └── response/
│ │ ├── AccountMenuResponse.kt
│ │ ├── AddItemYouTubePlaylistResponse.kt
│ │ ├── BrowseResponse.kt
│ │ ├── ContinuationResponse.kt
│ │ ├── CreatePlaylistResponse.kt
│ │ ├── EditPlaylistResponse.kt
│ │ ├── FeedbackResponse.kt
│ │ ├── GetQueueResponse.kt
│ │ ├── GetSearchSuggestionsResponse.kt
│ │ ├── GetTranscriptResponse.kt
│ │ ├── ImageUploadResponse.kt
│ │ ├── NextResponse.kt
│ │ ├── PlayerResponse.kt
│ │ └── SearchResponse.kt
│ ├── pages/
│ │ ├── AlbumPage.kt
│ │ ├── ArtistItemsContinuationPage.kt
│ │ ├── ArtistItemsPage.kt
│ │ ├── ArtistPage.kt
│ │ ├── BrowseResult.kt
│ │ ├── ChartsPage.kt
│ │ ├── ExplorePage.kt
│ │ ├── HistoryPage.kt
│ │ ├── HomePage.kt
│ │ ├── LibraryAlbumsPage.kt
│ │ ├── LibraryContinuationPage.kt
│ │ ├── LibraryPage.kt
│ │ ├── MoodAndGenres.kt
│ │ ├── NewPipe.kt
│ │ ├── NewReleaseAlbumPage.kt
│ │ ├── NextPage.kt
│ │ ├── PageHelper.kt
│ │ ├── PlaylistContinuationPage.kt
│ │ ├── PlaylistPage.kt
│ │ ├── PodcastPage.kt
│ │ ├── RelatedPage.kt
│ │ ├── SearchPage.kt
│ │ ├── SearchSuggestionPage.kt
│ │ └── SearchSummaryPage.kt
│ └── utils/
│ └── Utils.kt
├── kizzy/
│ ├── .gitignore
│ ├── build.gradle.kts
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── kotlin/
│ └── com/
│ └── my/
│ └── kizzy/
│ ├── gateway/
│ │ ├── DiscordWebSocket.kt
│ │ └── entities/
│ │ ├── HeartBeat.kt
│ │ ├── Identify.kt
│ │ ├── Payload.kt
│ │ ├── Ready.kt
│ │ ├── Resume.kt
│ │ ├── op/
│ │ │ ├── OpCode.kt
│ │ │ └── OpCodesSerializer.kt
│ │ └── presence/
│ │ ├── Activity.kt
│ │ ├── Assets.kt
│ │ ├── Metadata.kt
│ │ ├── Presence.kt
│ │ └── Timestamps.kt
│ ├── rpc/
│ │ ├── ArtworkCache.kt
│ │ ├── ExternalAssets.kt
│ │ ├── KizzyRPC.kt
│ │ ├── RpcImage.kt
│ │ └── UserInfo.kt
│ └── utils/
│ └── Ext.kt
├── kugou/
│ ├── .gitignore
│ ├── build.gradle.kts
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── kotlin/
│ └── com/
│ └── metrolist/
│ └── kugou/
│ ├── KuGou.kt
│ └── models/
│ ├── DownloadLyricsResponse.kt
│ ├── Keyword.kt
│ ├── SearchLyricsResponse.kt
│ └── SearchSongResponse.kt
├── lastfm/
│ ├── .gitignore
│ ├── build.gradle.kts
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── kotlin/
│ └── com/
│ └── metrolist/
│ └── lastfm/
│ ├── LastFM.kt
│ └── models/
│ └── Authentication.kt
├── lint.xml
├── lrclib/
│ ├── .gitignore
│ ├── build.gradle.kts
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── kotlin/
│ └── com/
│ └── metrolist/
│ └── lrclib/
│ ├── LrcLib.kt
│ └── models/
│ └── Track.kt
├── renovate.json
├── settings.gradle.kts
├── shazamkit/
│ ├── build.gradle.kts
│ └── src/
│ └── main/
│ ├── AndroidManifest.xml
│ └── kotlin/
│ └── com/
│ └── metrolist/
│ └── shazamkit/
│ ├── Shazam.kt
│ └── models/
│ └── ShazamModels.kt
└── simpmusic/
├── build.gradle.kts
└── src/
└── main/
├── AndroidManifest.xml
└── kotlin/
└── com/
└── metrolist/
└── simpmusic/
├── SimpMusicLyrics.kt
└── models/
└── LyricsResponse.kt
SYMBOL INDEX (246 symbols across 3 files)
FILE: app/src/main/assets/solver/astring.js
function c (line 1) | function c(a,b){if(!(a instanceof b))throw new TypeError("Cannot call a ...
function d (line 1) | function d(a,b){for(var c,d=0;d<b.length;d++)c=b[d],c.enumerable=c.enume...
function e (line 1) | function e(a,b,c){return b&&d(a.prototype,b),c&&d(a,c),a}
function f (line 1) | function f(a,b){var c=a.generator;if(a.write("("),null!=b&&0<b.length){c...
function g (line 1) | function g(a,b,c,d){var e=a.expressionsPrecedence[b.type];if(e===17)retu...
function h (line 1) | function h(a,b,c,d){var e=a.generator;g(a,b,c,d)?(a.write("("),e[b.type]...
function j (line 1) | function j(a,b,c,d){var e=b.split("\n"),f=e.length-1;if(a.write(e[0].tri...
function k (line 1) | function k(a,b,c,d){for(var e,f=b.length,g=0;g<f;g++)e=b[g],a.write(c),"...
function l (line 1) | function l(a){for(var d=a;null!=d;){var b=d,c=b.type;if("C"===c[0]&&"a"=...
function m (line 1) | function m(a,b){var c=a.generator,d=b.declarations;a.write(b.kind+" ");v...
function a (line 1) | function a(b){c(this,a);var d=null==b?y:b;this.output="",null==d.output?...
FILE: app/src/main/assets/solver/meriyah.js
function advanceChar (line 33) | function advanceChar(parser) {
function consumePossibleSurrogatePair (line 37) | function consumePossibleSurrogatePair(parser) {
function consumeLineFeed (line 46) | function consumeLineFeed(parser, state) {
function scanNewLine (line 54) | function scanNewLine(parser) {
function isExoticECMAScriptWhitespace (line 60) | function isExoticECMAScriptWhitespace(ch) {
function toHex (line 72) | function toHex(code) {
function convertTokenType (line 75) | function convertTokenType(t) {
function isIdentifierStart (line 491) | function isIdentifierStart(code) {
function isIdentifierPart (line 496) | function isIdentifierPart(code) {
function skipHashBang (line 503) | function skipHashBang(parser) {
function skipSingleHTMLComment (line 511) | function skipSingleHTMLComment(parser, source, state, context, type, sta...
function skipSingleLineComment (line 516) | function skipSingleLineComment(parser, source, state, type, start) {
function skipMultiLineComment (line 553) | function skipMultiLineComment(parser, source, state) {
function scanRegularExpression (line 631) | function scanRegularExpression(parser) {
function validate (line 731) | function validate(parser, pattern, flags) {
function scanString (line 746) | function scanString(parser, context, quote) {
function parseEscape (line 785) | function parseEscape(parser, context, first, isTemplate = 0) {
function handleStringError (line 927) | function handleStringError(parser, code, isTemplate) {
function scanTemplate (line 942) | function scanTemplate(parser, context) {
function scanBadTemplate (line 999) | function scanBadTemplate(parser, ch) {
function scanTemplateTail (line 1023) | function scanTemplateTail(parser, context) {
class ParseError (line 1210) | class ParseError extends SyntaxError {
method constructor (line 1216) | constructor(start, end, type, ...params) {
function scanNumber (line 1231) | function scanNumber(parser, context, kind) {
function scanDecimalDigitsOrSeparator (line 1406) | function scanDecimalDigitsOrSeparator(parser, char) {
function matchOrInsertSemicolon (line 1513) | function matchOrInsertSemicolon(parser, context) {
function isValidStrictMode (line 1521) | function isValidStrictMode(parser, index, tokenIndex, tokenValue) {
function optionalBit (line 1529) | function optionalBit(parser, context, t) {
function consumeOpt (line 1535) | function consumeOpt(parser, context, t) {
function consume (line 1541) | function consume(parser, context, t) {
function reinterpretToPattern (line 1546) | function reinterpretToPattern(parser, node) {
function validateBindingIdentifier (line 1581) | function validateBindingIdentifier(parser, context, kind, t, skipEvalArg...
function validateFunctionName (line 1603) | function validateFunctionName(parser, context, t) {
function isStrictReservedWord (line 1628) | function isStrictReservedWord(parser, context, t) {
function isPropertyWithPrivateFieldKey (line 1640) | function isPropertyWithPrivateFieldKey(expr) {
function isValidLabel (line 1643) | function isValidLabel(parser, labels, name, isIterationStatement) {
function validateAndDeclareLabel (line 1656) | function validateAndDeclareLabel(parser, labels, name) {
function isEqualTagName (line 1665) | function isEqualTagName(elementName) {
function isValidIdentifier (line 1675) | function isValidIdentifier(context, t) {
function classifyIdentifier (line 1685) | function classifyIdentifier(parser, context, t) {
function getOwnProperty (line 1694) | function getOwnProperty(object, key) {
function scanIdentifier (line 1698) | function scanIdentifier(parser, context, isValidAsKeyword) {
function scanUnicodeIdentifier (line 1706) | function scanUnicodeIdentifier(parser, context) {
function scanIdentifierSlowCase (line 1713) | function scanIdentifierSlowCase(parser, context, hasEscape, isValidAsKey...
function scanPrivateIdentifier (line 1797) | function scanPrivateIdentifier(parser) {
function scanIdentifierUnicodeEscape (line 1808) | function scanIdentifierUnicodeEscape(parser) {
function scanUnicodeEscape (line 1816) | function scanUnicodeEscape(parser) {
function nextToken (line 1979) | function nextToken(parser, context) {
function scanSingleToken (line 1986) | function scanSingleToken(parser, context, state) {
function decodeHTMLStrict (line 4456) | function decodeHTMLStrict(text) {
function decodeCodePoint (line 4466) | function decodeCodePoint(codePoint) {
function scanJSXAttributeValue (line 4473) | function scanJSXAttributeValue(parser, context) {
function scanJSXString (line 4482) | function scanJSXString(parser) {
function nextJSXToken (line 4499) | function nextJSXToken(parser) {
function rescanJSXIdentifier (line 4542) | function rescanJSXIdentifier(parser) {
class Scope (line 4555) | class Scope {
method constructor (line 4561) | constructor(parser, type = 2, parent) {
method createChildScope (line 4566) | createChildScope(type) {
method addVarOrBlock (line 4569) | addVarOrBlock(context, name, kind, origin) {
method addVarName (line 4580) | addVarName(context, name, kind) {
method hasVariable (line 4608) | hasVariable(name) {
method addBlockName (line 4611) | addBlockName(context, name, kind, origin) {
method recordScopeError (line 4643) | recordScopeError(type, ...params) {
method reportScopeError (line 4651) | reportScopeError() {
function createArrowHeadParsingScope (line 4659) | function createArrowHeadParsingScope(parser, context, value) {
class PrivateScope (line 4665) | class PrivateScope {
method constructor (line 4670) | constructor(parser, parent) {
method addPrivateIdentifier (line 4674) | addPrivateIdentifier(name, kind) {
method addPrivateIdentifierRef (line 4686) | addPrivateIdentifierRef(name) {
method isPrivateIdentifierDefined (line 4690) | isPrivateIdentifierDefined(name) {
method validatePrivateIdentifierRefs (line 4693) | validatePrivateIdentifierRefs() {
method hasPrivateIdentifier (line 4701) | hasPrivateIdentifier(name) {
class Parser (line 4706) | class Parser {
method constructor (line 4731) | constructor(source, options = {}) {
method getToken (line 4737) | getToken() {
method setToken (line 4740) | setToken(value, replaceLast = false) {
method tokenStart (line 4769) | get tokenStart() {
method currentLocation (line 4776) | get currentLocation() {
method finishNode (line 4779) | finishNode(node, start, end) {
method addBindingToExports (line 4800) | addBindingToExports(name) {
method declareUnboundVariable (line 4803) | declareUnboundVariable(name) {
method report (line 4810) | report(type, ...params) {
method createScopeIfLexical (line 4813) | createScopeIfLexical(type, parent) {
method createScope (line 4819) | createScope(type, parent) {
method createPrivateScopeIfLexical (line 4822) | createPrivateScopeIfLexical(parent) {
function pushComment (line 4829) | function pushComment(comments, options) {
function pushToken (line 4846) | function pushToken(tokens, options) {
function normalizeOptions (line 4863) | function normalizeOptions(rawOptions) {
function parseSource (line 4874) | function parseSource(source, rawOptions = {}, context = 0) {
function parseStatementList (line 4906) | function parseStatementList(parser, context, scope) {
function parseModuleItemList (line 4929) | function parseModuleItemList(parser, context, scope) {
function parseModuleItem (line 4942) | function parseModuleItem(parser, context, scope) {
function parseStatementListItem (line 4965) | function parseStatementListItem(parser, context, scope, privateScope, or...
function parseStatement (line 4995) | function parseStatement(parser, context, scope, privateScope, origin, la...
function parseExpressionOrLabelledStatement (line 5045) | function parseExpressionOrLabelledStatement(parser, context, scope, priv...
function parseBlock (line 5070) | function parseBlock(parser, context, scope, privateScope, labels, start ...
function parseReturnStatement (line 5082) | function parseReturnStatement(parser, context, privateScope) {
function parseExpressionStatement (line 5096) | function parseExpressionStatement(parser, context, expression, start) {
function parseLabelledStatement (line 5103) | function parseLabelledStatement(parser, context, scope, privateScope, or...
function parseAsyncArrowOrAsyncFunctionDeclaration (line 5119) | function parseAsyncArrowOrAsyncFunctionDeclaration(parser, context, scop...
function parseDirective (line 5161) | function parseDirective(parser, context, expression, token, start) {
function parseEmptyStatement (line 5183) | function parseEmptyStatement(parser, context) {
function parseThrowStatement (line 5190) | function parseThrowStatement(parser, context, privateScope) {
function parseIfStatement (line 5202) | function parseIfStatement(parser, context, scope, privateScope, labels) {
function parseConsequentOrAlternative (line 5222) | function parseConsequentOrAlternative(parser, context, scope, privateSco...
function parseSwitchStatement (line 5230) | function parseSwitchStatement(parser, context, scope, privateScope, labe...
function parseWhileStatement (line 5274) | function parseWhileStatement(parser, context, scope, privateScope, label...
function parseIterationStatementBody (line 5287) | function parseIterationStatementBody(parser, context, scope, privateScop...
function parseContinueStatement (line 5290) | function parseContinueStatement(parser, context, labels) {
function parseBreakStatement (line 5308) | function parseBreakStatement(parser, context, labels) {
function parseWithStatement (line 5327) | function parseWithStatement(parser, context, scope, privateScope, labels) {
function parseDebuggerStatement (line 5342) | function parseDebuggerStatement(parser, context) {
function parseTryStatement (line 5350) | function parseTryStatement(parser, context, scope, privateScope, labels) {
function parseCatchBlock (line 5376) | function parseCatchBlock(parser, context, scope, privateScope, labels, s...
function parseStaticBlock (line 5400) | function parseStaticBlock(parser, context, scope, privateScope, start) {
function parseDoWhileStatement (line 5411) | function parseDoWhileStatement(parser, context, scope, privateScope, lab...
function parseLetIdentOrVarDeclarationStatement (line 5426) | function parseLetIdentOrVarDeclarationStatement(parser, context, scope, ...
function parseLexicalDeclaration (line 5461) | function parseLexicalDeclaration(parser, context, scope, privateScope, k...
function parseVariableStatement (line 5472) | function parseVariableStatement(parser, context, scope, privateScope, or...
function parseVariableDeclarationList (line 5483) | function parseVariableDeclarationList(parser, context, scope, privateSco...
function parseVariableDeclaration (line 5497) | function parseVariableDeclaration(parser, context, scope, privateScope, ...
function parseForStatement (line 5523) | function parseForStatement(parser, context, scope, privateScope, labels) {
function parseRestrictedIdentifier (line 5664) | function parseRestrictedIdentifier(parser, context, scope) {
function parseImportDeclaration (line 5672) | function parseImportDeclaration(parser, context, scope) {
function parseImportNamespaceSpecifier (line 5731) | function parseImportNamespaceSpecifier(parser, context, scope) {
function parseModuleSpecifier (line 5743) | function parseModuleSpecifier(parser, context) {
function parseImportSpecifierOrNamedImports (line 5749) | function parseImportSpecifierOrNamedImports(parser, context, scope, spec...
function parseImportMetaDeclaration (line 5786) | function parseImportMetaDeclaration(parser, context, start) {
function parseImportCallDeclaration (line 5798) | function parseImportCallDeclaration(parser, context, privateScope, start) {
function parseExportDeclaration (line 5806) | function parseExportDeclaration(parser, context, scope) {
function parseExpression (line 5978) | function parseExpression(parser, context, privateScope, canAssign, inGro...
function parseSequenceExpression (line 5983) | function parseSequenceExpression(parser, context, privateScope, inGroup,...
function parseExpressions (line 5993) | function parseExpressions(parser, context, privateScope, inGroup, canAss...
function parseAssignmentExpression (line 5999) | function parseAssignmentExpression(parser, context, privateScope, inGrou...
function parseAssignmentExpressionOrPattern (line 6032) | function parseAssignmentExpressionOrPattern(parser, context, privateScop...
function parseConditionalExpression (line 6051) | function parseConditionalExpression(parser, context, privateScope, test,...
function parseBinaryExpression (line 6064) | function parseBinaryExpression(parser, context, privateScope, inGroup, s...
function parseUnaryExpression (line 6089) | function parseUnaryExpression(parser, context, privateScope, isLHS, inGr...
function parseAsyncExpression (line 6114) | function parseAsyncExpression(parser, context, privateScope, inGroup, is...
function parseYieldExpressionOrIdentifier (line 6146) | function parseYieldExpressionOrIdentifier(parser, context, privateScope,...
function parseAwaitExpressionOrIdentifier (line 6179) | function parseAwaitExpressionOrIdentifier(parser, context, privateScope,...
function parseFunctionBody (line 6215) | function parseFunctionBody(parser, context, scope, privateScope, origin,...
function parseSuperExpression (line 6270) | function parseSuperExpression(parser, context) {
function parseLeftHandSideExpression (line 6294) | function parseLeftHandSideExpression(parser, context, privateScope, canA...
function parseUpdateExpression (line 6299) | function parseUpdateExpression(parser, context, expr, start) {
function parseMemberOrUpdateExpression (line 6312) | function parseMemberOrUpdateExpression(parser, context, privateScope, ex...
function parseOptionalChain (line 6412) | function parseOptionalChain(parser, context, privateScope, expr, start) {
function parsePropertyOrPrivatePropertyName (line 6461) | function parsePropertyOrPrivatePropertyName(parser, context, privateScop...
function parseUpdateExpressionPrefixed (line 6472) | function parseUpdateExpressionPrefixed(parser, context, privateScope, in...
function parsePrimaryExpression (line 6491) | function parsePrimaryExpression(parser, context, privateScope, kind, inN...
function parseImportCallOrMetaExpression (line 6587) | function parseImportCallOrMetaExpression(parser, context, privateScope, ...
function parseImportMetaExpression (line 6598) | function parseImportMetaExpression(parser, context, meta, start) {
function parseImportExpression (line 6616) | function parseImportExpression(parser, context, privateScope, inGroup, s...
function parseImportAttributes (line 6638) | function parseImportAttributes(parser, context) {
function parseStringLiteral (line 6666) | function parseStringLiteral(parser, context) {
function parseIdentifierOrStringLiteral (line 6674) | function parseIdentifierOrStringLiteral(parser, context) {
function validateStringWellFormed (line 6685) | function validateStringWellFormed(parser, str) {
function parseModuleExportName (line 6696) | function parseModuleExportName(parser, context) {
function parseBigIntLiteral (line 6708) | function parseBigIntLiteral(parser, context) {
function parseTemplateLiteral (line 6722) | function parseTemplateLiteral(parser, context) {
function parseTemplate (line 6733) | function parseTemplate(parser, context, privateScope) {
function parseTemplateElement (line 6762) | function parseTemplateElement(parser, cooked, raw, start, tail) {
function parseSpreadElement (line 6784) | function parseSpreadElement(parser, context, privateScope) {
function parseArguments (line 6795) | function parseArguments(parser, context, privateScope, inGroup) {
function parseIdentifier (line 6818) | function parseIdentifier(parser, context) {
function parseLiteral (line 6827) | function parseLiteral(parser, context) {
function parseNullOrTrueOrFalseLiteral (line 6845) | function parseNullOrTrueOrFalseLiteral(parser, context) {
function parseThisExpression (line 6862) | function parseThisExpression(parser, context) {
function parseFunctionDeclaration (line 6870) | function parseFunctionDeclaration(parser, context, scope, privateScope, ...
function parseFunctionExpression (line 6934) | function parseFunctionExpression(parser, context, privateScope, isAsync,...
function parseArrayLiteral (line 6974) | function parseArrayLiteral(parser, context, privateScope, skipInitialize...
function parseArrayExpressionOrPattern (line 6984) | function parseArrayExpressionOrPattern(parser, context, scope, privateSc...
function parseArrayOrObjectAssignmentPattern (line 7135) | function parseArrayOrObjectAssignmentPattern(parser, context, privateSco...
function parseSpreadOrRestElement (line 7163) | function parseSpreadOrRestElement(parser, context, scope, privateScope, ...
function parseMethodDefinition (line 7292) | function parseMethodDefinition(parser, context, privateScope, kind, inGr...
function parseObjectLiteral (line 7320) | function parseObjectLiteral(parser, context, privateScope, skipInitializ...
function parseObjectLiteralOrPattern (line 7330) | function parseObjectLiteralOrPattern(parser, context, scope, privateScop...
function parseMethodFormals (line 7858) | function parseMethodFormals(parser, context, scope, privateScope, kind, ...
function parseComputedPropertyName (line 7933) | function parseComputedPropertyName(parser, context, privateScope, inGrou...
function parseParenthesizedExpression (line 7939) | function parseParenthesizedExpression(parser, context, privateScope, can...
function parseIdentifierOrArrow (line 8106) | function parseIdentifierOrArrow(parser, context, privateScope) {
function parseArrowFromIdentifier (line 8129) | function parseArrowFromIdentifier(parser, context, privateScope, value, ...
function parseParenthesizedArrow (line 8138) | function parseParenthesizedArrow(parser, context, scope, privateScope, p...
function parseArrowFunctionExpression (line 8145) | function parseArrowFunctionExpression(parser, context, scope, privateSco...
function parseFormalParametersOrFormalList (line 8196) | function parseFormalParametersOrFormalList(parser, context, scope, priva...
function parseMemberExpressionNoCall (line 8262) | function parseMemberExpressionNoCall(parser, context, privateScope, expr...
function parseNewExpression (line 8304) | function parseNewExpression(parser, context, privateScope, inGroup) {
function parseMetaProperty (line 8331) | function parseMetaProperty(parser, context, meta, start) {
function parseAsyncArrowAfterIdent (line 8339) | function parseAsyncArrowAfterIdent(parser, context, privateScope, canAss...
function parseAsyncArrowOrCallExpression (line 8351) | function parseAsyncArrowOrCallExpression(parser, context, privateScope, ...
function parseRegExpLiteral (line 8488) | function parseRegExpLiteral(parser, context) {
function parseClassDeclaration (line 8502) | function parseClassDeclaration(parser, context, scope, privateScope, fla...
function parseClassExpression (line 8560) | function parseClassExpression(parser, context, privateScope, inGroup, st...
function parseDecorators (line 8592) | function parseDecorators(parser, context, privateScope) {
function parseDecoratorList (line 8601) | function parseDecoratorList(parser, context, privateScope) {
function parseClassBody (line 8611) | function parseClassBody(parser, context, inheritedContext, scope, parent...
function parseClassElementList (line 8643) | function parseClassElementList(parser, context, scope, privateScope, inh...
function parsePrivateIdentifier (line 8786) | function parsePrivateIdentifier(parser, context, privateScope, kind) {
function parsePropertyDefinition (line 8808) | function parsePropertyDefinition(parser, context, privateScope, key, sta...
function parseBindingPattern (line 8845) | function parseBindingPattern(parser, context, scope, privateScope, type,...
function parseAndClassifyIdentifier (line 8860) | function parseAndClassifyIdentifier(parser, context, scope, kind, origin) {
function parseJSXRootElementOrFragment (line 8897) | function parseJSXRootElementOrFragment(parser, context, privateScope, in...
function parseJSXOpeningFragment (line 8928) | function parseJSXOpeningFragment(parser, start) {
function parseJSXClosingElement (line 8934) | function parseJSXClosingElement(parser, context, inJSXChild, start) {
function parseJSXClosingFragment (line 8951) | function parseJSXClosingFragment(parser, context, inJSXChild, start) {
function parseJSXChildrenAndClosingElement (line 8966) | function parseJSXChildrenAndClosingElement(parser, context, privateScope...
function parseJSXChildrenAndClosingFragment (line 8976) | function parseJSXChildrenAndClosingFragment(parser, context, privateScop...
function parseJSXChildOrClosingElement (line 8986) | function parseJSXChildOrClosingElement(parser, context, privateScope, in...
function parseJSXChildOrClosingFragment (line 9000) | function parseJSXChildOrClosingFragment(parser, context, privateScope, i...
function parseJSXText (line 9014) | function parseJSXText(parser, context) {
function parseJSXOpeningElementOrSelfCloseElement (line 9026) | function parseJSXOpeningElementOrSelfCloseElement(parser, context, priva...
function parseJSXElementName (line 9051) | function parseJSXElementName(parser, context) {
function parseJSXMemberExpression (line 9063) | function parseJSXMemberExpression(parser, context, object, start) {
function parseJSXAttributes (line 9071) | function parseJSXAttributes(parser, context, privateScope) {
function parseJSXSpreadAttribute (line 9080) | function parseJSXSpreadAttribute(parser, context, privateScope) {
function parseJsxAttribute (line 9091) | function parseJsxAttribute(parser, context, privateScope) {
function parseJSXNamespacedName (line 9123) | function parseJSXNamespacedName(parser, context, namespace, start) {
function parseJSXExpressionContainer (line 9132) | function parseJSXExpressionContainer(parser, context, privateScope, inJS...
function parseJSXSpreadChild (line 9165) | function parseJSXSpreadChild(parser, context, privateScope, start) {
function parseJSXEmptyExpression (line 9174) | function parseJSXEmptyExpression(parser, start) {
function parseJSXIdentifier (line 9179) | function parseJSXIdentifier(parser, context) {
function parseScript (line 9195) | function parseScript(source, options) {
function parseModule (line 9198) | function parseModule(source, options) {
function parse (line 9201) | function parse(source, options) {
FILE: app/src/main/assets/solver/yt.solver.core.js
function matchesStructure (line 7) | function matchesStructure(obj, structure) {
function isOneOf (line 39) | function isOneOf(value, ...of) {
function _optionalChain$2 (line 42) | function _optionalChain$2(ops) {
function extract$1 (line 159) | function extract$1(node) {
function _optionalChain$1 (line 279) | function _optionalChain$1(ops) {
function extract (line 349) | function extract(node) {
function makeSolverFuncFromName (line 435) | function makeSolverFuncFromName(name) {
function _optionalChain (line 453) | function _optionalChain(ops) {
function preprocessPlayer (line 474) | function preprocessPlayer(data) {
function getFromPrepared (line 557) | function getFromPrepared(code) {
function main (line 562) | function main(input) {
Condensed preview — 1016 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (9,203K chars).
[
{
"path": ".github/ISSUE_TEMPLATE/bug_report.yml",
"chars": 5057,
"preview": "name: Bug report\ndescription: Create a bug report to help us improve\nlabels: [bug]\nbody:\n - type: markdown\n attribut"
},
{
"path": ".github/ISSUE_TEMPLATE/config.yml",
"chars": 28,
"preview": "blank_issues_enabled: false\n"
},
{
"path": ".github/ISSUE_TEMPLATE/feature_request.yml",
"chars": 1573,
"preview": "name: Feature request\ndescription: Suggest an idea for Metrolist\nlabels: [enhancement]\nbody:\n - type: checkboxes\n id"
},
{
"path": ".github/actions/setup-protobuf/action.yml",
"chars": 375,
"preview": "name: Setup and Generate Protobuf\ndescription: Install protoc and generate protobuf files\n\nruns:\n using: composite\n st"
},
{
"path": ".github/pull_request_template.md",
"chars": 334,
"preview": "## Problem\n<!-- Describe the issue or limitation this PR addresses -->\n\n## Cause\n<!-- Explain the root cause of the prob"
},
{
"path": ".github/scripts/parse_changelog.sh",
"chars": 1282,
"preview": "#!/usr/bin/env bash\n# parse_changelog.sh — Extract the changelog entry for a specific version\n#\n# Reads changelog.md (or"
},
{
"path": ".github/workflows/build.yml",
"chars": 4672,
"preview": "name: Build APKs\n\non:\n workflow_dispatch:\n push:\n branches: [\"**\"]\n paths-ignore:\n - \"README.md\"\n - \"f"
},
{
"path": ".github/workflows/build_pr.yml",
"chars": 2378,
"preview": "name: Build PR\n\non:\n pull_request:\n branches:\n - \"**\"\n\njobs:\n build:\n runs-on: ubuntu-latest\n\n steps:\n "
},
{
"path": ".github/workflows/build_quick.yml",
"chars": 2299,
"preview": "name: Quick Test Build\n\non:\n workflow_dispatch:\n push:\n branches: [\"**\"]\n paths-ignore:\n - \"README.md\"\n "
},
{
"path": ".github/workflows/release.yml",
"chars": 8433,
"preview": "name: Bump to new version\non:\n push:\n branches:\n - \"main\"\n paths:\n - \"app/build.gradle.kts\"\n workflow_"
},
{
"path": ".gitignore",
"chars": 1853,
"preview": "# Built application files\n*.apk\n*.aar\n*.ap_\n*.aab\n\n# Files for the ART/Dalvik VM\n*.dex\n\n# Java class files\n*.class\n\n# Ge"
},
{
"path": ".gitmodules",
"chars": 96,
"preview": "[submodule \"metroproto\"]\n\tpath = metroproto\n\turl = https://github.com/MetrolistGroup/metroproto\n"
},
{
"path": "AGENTS.md",
"chars": 3665,
"preview": "# Working with Metrolist as an AI agent\n\nMetrolist is a 3rd party YouTube Music client written in Kotlin. It follows mat"
},
{
"path": "LICENSE",
"chars": 35150,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free"
},
{
"path": "README.md",
"chars": 8485,
"preview": "<div align=\"center\">\n<img src=\"https://github.com/MetrolistGroup/Metrolist/blob/main/fastlane/metadata/android/en-US/ima"
},
{
"path": "app/.gitignore",
"chars": 66,
"preview": "/build\r\n*.keystore\nsrc/main/cpp/vibrafp/third_party/fftw-android/\n"
},
{
"path": "app/build.gradle.kts",
"chars": 9805,
"preview": "import org.jetbrains.kotlin.gradle.dsl.JvmTarget\nimport java.util.Properties\n\nval localProperties = Properties()\nval loc"
},
{
"path": "app/generate_proto.sh",
"chars": 646,
"preview": "#!/bin/bash\n# Generate Kotlin protobuf files for Android\n\nset -e\n\nPROTO_DIR=\"../metroproto\"\nOUT_DIR=\"src/main/java\"\n\nif "
},
{
"path": "app/lint.xml",
"chars": 503,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<lint>\n <!-- Translations are crowdsourced, we can't have 100% coverage at all"
},
{
"path": "app/proguard-rules.pro",
"chars": 7937,
"preview": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguar"
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/1.json",
"chars": 8802,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 1,\n \"identityHash\": \"38686a738e9e794eca8e1f635cf072b0\",\n \"e"
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/10.json",
"chars": 24353,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 10,\n \"identityHash\": \"465b6d837bb0b1291e375df6f08219cb\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/11.json",
"chars": 23776,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 11,\n \"identityHash\": \"de2e37d1206f721ad51de3a08f66f99c\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/12.json",
"chars": 24268,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 12,\n \"identityHash\": \"8db3d5731dbcc716a90427d4dde63c66\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/13.json",
"chars": 24268,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 13,\n \"identityHash\": \"8db3d5731dbcc716a90427d4dde63c66\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/14.json",
"chars": 24657,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 14,\n \"identityHash\": \"8d828b8d2d5ddc5730c653d29c853ff0\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/15.json",
"chars": 25594,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 15,\n \"identityHash\": \"b2aefbaf97375d551a710d2cbc5e3393\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/16.json",
"chars": 27807,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 16,\n \"identityHash\": \"b78ea238955043c3308d49775d7267a8\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/17.json",
"chars": 28695,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 17,\n \"identityHash\": \"59f80ce4b59b0c31db6e5895871ae26d\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/18.json",
"chars": 29818,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 18,\n \"identityHash\": \"a92d7d81fc8b49d3b1e9f92f6a1c4b7e\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/19.json",
"chars": 30180,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 19,\n \"identityHash\": \"c8f37a94d4c749f6a6c07a53f7b2e1fc\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/2.json",
"chars": 19693,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 2,\n \"identityHash\": \"3a7db15c3d60f94f6a7acc75fad88d79\",\n \"e"
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/20.json",
"chars": 30472,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 20,\n \"identityHash\": \"d9f47b95e5d749f7b7c08a64f8c3f2fd\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/21.json",
"chars": 31216,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 21,\n \"identityHash\": \"e0f58c96f6e849f8c8d09b75f9d4f3fe\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/22.json",
"chars": 31406,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 22,\n \"identityHash\": \"e0f58c96f6e849f8c8d09b75f9d4f3fe\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/23.json",
"chars": 30897,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 23,\n \"identityHash\": \"163997ad95cd0d0fe167198a705f7012\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/24.json",
"chars": 31350,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 24,\n \"identityHash\": \"163997ad95cd0d0fe167198a705f7012\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/25.json",
"chars": 31534,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 25,\n \"identityHash\": \"163997ad95cd0d0fe167198a705f7012\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/26.json",
"chars": 31377,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 26,\n \"identityHash\": \"77118ea292614a4db192780d42629896\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/27.json",
"chars": 31864,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 27,\n \"identityHash\": \"1d93d14854c13d1e6158b68dcc956fd3\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/28.json",
"chars": 32066,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 28,\n \"identityHash\": \"331218677f74a364b5cad847a411999c\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/29.json",
"chars": 32315,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 29,\n \"identityHash\": \"715638298a0d1c2fa6063b1ebbccb1be\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/3.json",
"chars": 21515,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 3,\n \"identityHash\": \"b0a90e3281fad7803ea9fadbc6aac04f\",\n \"e"
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/30.json",
"chars": 32560,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 30,\n \"identityHash\": \"8f2089a8689ee426c5e3a5ea6c935041\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/31.json",
"chars": 35989,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 31,\n \"identityHash\": \"e05443bce6fbfd39a4be703c2d6467da\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/32.json",
"chars": 36760,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 32,\n \"identityHash\": \"6c3169c6fab939b089c79314ac12d9b9\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/33.json",
"chars": 38431,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 33,\n \"identityHash\": \"bd72668b1e47bd29fc4195bfc7b85064\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/34.json",
"chars": 40487,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 34,\n \"identityHash\": \"8e486373672922fea7afc4aa634c077b\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/35.json",
"chars": 41197,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 35,\n \"identityHash\": \"73924a5ef1b9fb713b5e197988a0c633\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/36.json",
"chars": 41431,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 36,\n \"identityHash\": \"afcd734f45bc50034a6692f5255e7b92\",\n \""
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/4.json",
"chars": 22201,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 4,\n \"identityHash\": \"fe70b678dc51b8cad5fd1cb4eadbb95d\",\n \"e"
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/5.json",
"chars": 22370,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 5,\n \"identityHash\": \"2ab124580a16b74c86883a1a06edae27\",\n \"e"
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/6.json",
"chars": 21233,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 6,\n \"identityHash\": \"e099eec2e21e2def3fd2dc8b29798a02\",\n \"e"
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/7.json",
"chars": 21420,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 7,\n \"identityHash\": \"8badff35bb8509366509650a5b15634a\",\n \"e"
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/8.json",
"chars": 22761,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 8,\n \"identityHash\": \"8de04c586d6be08319c8fab4240706ff\",\n \"e"
},
{
"path": "app/schemas/com.metrolist.music.db.InternalDatabase/9.json",
"chars": 25046,
"preview": "{\n \"formatVersion\": 1,\n \"database\": {\n \"version\": 9,\n \"identityHash\": \"ccad10efd9b5c5ee1dc9b42c6e3715fd\",\n \"e"
},
{
"path": "app/src/debug/res/xml/shortcuts.xml",
"chars": 992,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!--suppress AndroidDomInspection -->\n<shortcuts xmlns:android=\"http://schemas.an"
},
{
"path": "app/src/foss/AndroidManifest.xml",
"chars": 440,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n xmlns:to"
},
{
"path": "app/src/foss/kotlin/com/metrolist/music/cast/CastOptionsProvider.kt",
"chars": 181,
"preview": "package com.metrolist.music.cast\n\n/**\n * Stub CastOptionsProvider for F-Droid builds.\n * The AndroidManifest reference i"
},
{
"path": "app/src/foss/kotlin/com/metrolist/music/playback/CastConnectionHandler.kt",
"chars": 1862,
"preview": "package com.metrolist.music.playback\n\nimport android.content.Context\nimport kotlinx.coroutines.CoroutineScope\nimport kot"
},
{
"path": "app/src/foss/kotlin/com/metrolist/music/ui/component/CastButton.kt",
"chars": 497,
"preview": "package com.metrolist.music.ui.component\n\nimport androidx.compose.material3.MaterialTheme\nimport androidx.compose.runtim"
},
{
"path": "app/src/gms/kotlin/com/metrolist/music/cast/CastManager.kt",
"chars": 5160,
"preview": "package com.metrolist.music.cast\n\nimport android.content.Context\nimport androidx.media3.cast.CastPlayer\nimport androidx."
},
{
"path": "app/src/gms/kotlin/com/metrolist/music/cast/CastOptionsProvider.kt",
"chars": 1745,
"preview": "package com.metrolist.music.cast\n\nimport android.content.Context\nimport com.google.android.gms.cast.CastMediaControlInte"
},
{
"path": "app/src/gms/kotlin/com/metrolist/music/playback/CastConnectionHandler.kt",
"chars": 32367,
"preview": "package com.metrolist.music.playback\n\nimport android.content.Context\nimport android.net.Uri\nimport androidx.media3.commo"
},
{
"path": "app/src/gms/kotlin/com/metrolist/music/ui/component/CastButton.kt",
"chars": 8735,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/gms/kotlin/com/metrolist/music/ui/component/CastPickerSheet.kt",
"chars": 6605,
"preview": "package com.metrolist.music.ui.component\n\nimport androidx.compose.foundation.clickable\nimport androidx.compose.foundatio"
},
{
"path": "app/src/izzy/AndroidManifest.xml",
"chars": 436,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n xmlns:to"
},
{
"path": "app/src/izzy/kotlin/com/metrolist/music/cast/CastOptionsProvider.kt",
"chars": 178,
"preview": "package com.metrolist.music.cast\n\n/**\n * Stub CastOptionsProvider for Izzy builds.\n * The AndroidManifest reference is r"
},
{
"path": "app/src/izzy/kotlin/com/metrolist/music/playback/CastConnectionHandler.kt",
"chars": 1823,
"preview": "package com.metrolist.music.playback\n\nimport android.content.Context\nimport kotlinx.coroutines.CoroutineScope\nimport kot"
},
{
"path": "app/src/izzy/kotlin/com/metrolist/music/ui/component/CastButton.kt",
"chars": 494,
"preview": "package com.metrolist.music.ui.component\n\nimport androidx.compose.material3.MaterialTheme\nimport androidx.compose.runtim"
},
{
"path": "app/src/main/AndroidManifest.xml",
"chars": 15558,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n xmlns:to"
},
{
"path": "app/src/main/assets/po_token.html",
"chars": 8610,
"preview": "<!DOCTYPE html>\n<html lang=\"en\"><head><title></title><script>\n /**\n * BotGuard client for generating poTokens.\n "
},
{
"path": "app/src/main/assets/solver/astring.js",
"chars": 18221,
"preview": "(function(a,b){if(\"function\"==typeof define&&define.amd)define([\"exports\"],b);else if(\"undefined\"!=typeof exports)b(expo"
},
{
"path": "app/src/main/assets/solver/meriyah.js",
"chars": 361544,
"preview": "(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :\n "
},
{
"path": "app/src/main/assets/solver/yt.solver.core.js",
"chars": 18395,
"preview": "/*!\n * SPDX-License-Identifier: Unlicense\n * This file was automatically generated by https://github.com/yt-dlp/ejs\n */\n"
},
{
"path": "app/src/main/kotlin/com/dpi/ActivityLifecycleManager.kt",
"chars": 4236,
"preview": "package com.dpi\n\nimport android.annotation.SuppressLint\nimport android.app.Activity\nimport android.app.Application\nimpor"
},
{
"path": "app/src/main/kotlin/com/dpi/BaseLifecycleContentProvider.kt",
"chars": 1015,
"preview": "package com.dpi\n\nimport android.content.ContentProvider\nimport android.content.ContentValues\nimport android.database.Cur"
},
{
"path": "app/src/main/kotlin/com/dpi/DensityConfiguration.kt",
"chars": 2718,
"preview": "package com.dpi\n\nimport android.annotation.SuppressLint\nimport android.app.Activity\nimport android.content.Context\nimpor"
},
{
"path": "app/src/main/kotlin/com/dpi/DensityScaler.kt",
"chars": 1582,
"preview": "package com.dpi\n\nimport android.content.Context\nimport timber.log.Timber\n\n/**\n * DensityScaler - Main entry point for sc"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/App.kt",
"chars": 12142,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/MainActivity.kt",
"chars": 70871,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/api/DeepLService.kt",
"chars": 5167,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/api/MistralService.kt",
"chars": 12410,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/api/OpenRouterService.kt",
"chars": 12316,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/api/OpenRouterStreamingService.kt",
"chars": 12956,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/constants/Dimensions.kt",
"chars": 1458,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/constants/HistorySource.kt",
"chars": 186,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/constants/LibraryFilter.kt",
"chars": 246,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/constants/MediaSessionConstants.kt",
"chars": 1166,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/constants/PreferenceKeys.kt",
"chars": 24856,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/constants/StatPeriod.kt",
"chars": 2490,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/Converters.kt",
"chars": 641,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/DatabaseDao.kt",
"chars": 69465,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/MusicDatabase.kt",
"chars": 32098,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/daos/SpeedDialDao.kt",
"chars": 701,
"preview": "package com.metrolist.music.db.daos\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.room.OnConflic"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/Album.kt",
"chars": 959,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/AlbumArtistMap.kt",
"chars": 886,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/AlbumEntity.kt",
"chars": 1756,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/AlbumWithSongs.kt",
"chars": 996,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/Artist.kt",
"chars": 552,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/ArtistEntity.kt",
"chars": 1841,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/Event.kt",
"chars": 785,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/EventWithSong.kt",
"chars": 458,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/FormatEntity.kt",
"chars": 628,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/LocalItem.kt",
"chars": 266,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/LyricsEntity.kt",
"chars": 724,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/PlayCountEntity.kt",
"chars": 439,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/Playlist.kt",
"chars": 1160,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/PlaylistEntity.kt",
"chars": 2258,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/PlaylistSong.kt",
"chars": 408,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/PlaylistSongMap.kt",
"chars": 978,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/PlaylistSongMapPreview.kt",
"chars": 526,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/PodcastEntity.kt",
"chars": 1374,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/RecognitionHistory.kt",
"chars": 1056,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/RelatedSongMap.kt",
"chars": 916,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/SearchHistory.kt",
"chars": 487,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/SetVideoIdEntity.kt",
"chars": 373,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/Song.kt",
"chars": 1955,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/SongAlbumMap.kt",
"chars": 875,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/SongArtistMap.kt",
"chars": 884,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/SongEntity.kt",
"chars": 3382,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/SongWithStats.kt",
"chars": 1059,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/SortedSongAlbumMap.kt",
"chars": 480,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/SortedSongArtistMap.kt",
"chars": 488,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/db/entities/SpeedDialItem.kt",
"chars": 4278,
"preview": "package com.metrolist.music.db.entities\n\nimport androidx.room.Entity\nimport androidx.room.PrimaryKey\nimport com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/di/AppModule.kt",
"chars": 3537,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/di/LyricsHelperEntryPoint.kt",
"chars": 412,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/di/NetworkModule.kt",
"chars": 705,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/di/Qualifiers.kt",
"chars": 409,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/di/WrappedModule.kt",
"chars": 869,
"preview": "package com.metrolist.music.di\n\nimport android.content.Context\nimport com.metrolist.music.db.DatabaseDao\nimport com.metr"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/eq/EqualizerService.kt",
"chars": 5062,
"preview": "package com.metrolist.music.eq\n\n\nimport android.annotation.SuppressLint\nimport androidx.annotation.OptIn\nimport androidx"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/eq/audio/BiquadFilter.kt",
"chars": 5894,
"preview": "package com.metrolist.music.eq.audio\n\nimport com.metrolist.music.eq.data.FilterType\nimport kotlin.math.PI\nimport kotlin."
},
{
"path": "app/src/main/kotlin/com/metrolist/music/eq/audio/CustomEqualizerAudioProcessor.kt",
"chars": 10245,
"preview": "package com.metrolist.music.eq.audio\n\nimport androidx.media3.common.C\nimport androidx.media3.common.audio.AudioProcessor"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/eq/data/EQProfileRepository.kt",
"chars": 6358,
"preview": "package com.metrolist.music.eq.data\n\nimport android.content.Context\nimport android.content.SharedPreferences\nimport andr"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/eq/data/FilterType.kt",
"chars": 505,
"preview": "package com.metrolist.music.eq.data\n\nimport kotlinx.serialization.Serializable\n\n@Serializable\nenum class FilterType {\n "
},
{
"path": "app/src/main/kotlin/com/metrolist/music/eq/data/ParametricEQ.kt",
"chars": 1126,
"preview": "package com.metrolist.music.eq.data\n\nimport kotlinx.serialization.Serializable\n\n/**\n * Represents a single parametric EQ"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/eq/data/ParametricEQParser.kt",
"chars": 7388,
"preview": "package com.metrolist.music.eq.data\n\nimport java.io.File\n\n/**\n * Parser for AutoEq ParametricEQ.txt files.\n * These file"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/extensions/ContextExt.kt",
"chars": 1218,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/extensions/CoroutineExt.kt",
"chars": 714,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/extensions/FileExt.kt",
"chars": 502,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/extensions/ListExt.kt",
"chars": 2001,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/extensions/MediaItemExt.kt",
"chars": 3146,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/extensions/PlayerExt.kt",
"chars": 4210,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/extensions/QueueExt.kt",
"chars": 4056,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/extensions/StringExt.kt",
"chars": 743,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/extensions/UtilExt.kt",
"chars": 254,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/listentogether/ListenTogetherActionReceiver.kt",
"chars": 1976,
"preview": "package com.metrolist.music.listentogether\n\nimport android.content.BroadcastReceiver\nimport android.content.Context\nimpo"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/listentogether/ListenTogetherClient.kt",
"chars": 73435,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/listentogether/ListenTogetherManager.kt",
"chars": 74457,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/listentogether/ListenTogetherServers.kt",
"chars": 976,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/listentogether/MessageCodec.kt",
"chars": 13996,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/listentogether/Protocol.kt",
"chars": 8366,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/lyrics/BetterLyricsProvider.kt",
"chars": 1064,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/lyrics/KuGouLyricsProvider.kt",
"chars": 1038,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/lyrics/LrcLibLyricsProvider.kt",
"chars": 1016,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/lyrics/LyricsEntry.kt",
"chars": 821,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/lyrics/LyricsHelper.kt",
"chars": 9392,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/lyrics/LyricsPlusProvider.kt",
"chars": 4919,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/lyrics/LyricsProvider.kt",
"chars": 711,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/lyrics/LyricsProviderRegistry.kt",
"chars": 1605,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/lyrics/LyricsTranslationHelper.kt",
"chars": 24904,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/lyrics/LyricsUtils.kt",
"chars": 53693,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/lyrics/SimpMusicLyricsProvider.kt",
"chars": 1022,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/lyrics/YouTubeLyricsProvider.kt",
"chars": 964,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/lyrics/YouTubeSubtitleLyricsProvider.kt",
"chars": 559,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/models/ItemsPage.kt",
"chars": 266,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/models/MediaMetadata.kt",
"chars": 4558,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/models/PersistPlayerState.kt",
"chars": 478,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/models/PersistQueue.kt",
"chars": 1230,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/models/SimilarRecommendation.kt",
"chars": 322,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/DownloadUtil.kt",
"chars": 8420,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/ExoDownloadService.kt",
"chars": 3879,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/MediaLibrarySessionCallback.kt",
"chars": 38237,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/MetrolistCacheEvictor.kt",
"chars": 3123,
"preview": "package com.metrolist.music.playback\n\nimport androidx.media3.datasource.cache.Cache\nimport androidx.media3.datasource.ca"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/MusicService.kt",
"chars": 145670,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\n@file:Suppress(\"DEPR"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/PlayerConnection.kt",
"chars": 24282,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/SleepTimer.kt",
"chars": 5969,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/alarm/MusicAlarmReceiver.kt",
"chars": 1577,
"preview": "package com.metrolist.music.playback.alarm\n\nimport android.content.BroadcastReceiver\nimport android.content.Context\nimpo"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/alarm/MusicAlarmRescheduleReceiver.kt",
"chars": 996,
"preview": "package com.metrolist.music.playback.alarm\n\nimport android.content.BroadcastReceiver\nimport android.content.Context\nimpo"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/alarm/MusicAlarmScheduler.kt",
"chars": 4287,
"preview": "package com.metrolist.music.playback.alarm\n\nimport android.app.AlarmManager\nimport android.app.PendingIntent\nimport andr"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/alarm/MusicAlarmStore.kt",
"chars": 6236,
"preview": "package com.metrolist.music.playback.alarm\n\nimport android.content.Context\nimport android.os.Build\nimport androidx.datas"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/audio/SilenceDetectorAudioProcessor.kt",
"chars": 4908,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/queues/EmptyQueue.kt",
"chars": 501,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/queues/ListQueue.kt",
"chars": 660,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/queues/LocalAlbumRadio.kt",
"chars": 2025,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/queues/Queue.kt",
"chars": 1476,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/queues/YouTubeAlbumRadio.kt",
"chars": 1741,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/queues/YouTubePlaylistQueue.kt",
"chars": 2672,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/playback/queues/YouTubeQueue.kt",
"chars": 3292,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/quicksettings/MusicRecognizerTileService.kt",
"chars": 1447,
"preview": "package com.metrolist.music.quicksettings\n\nimport android.app.PendingIntent\nimport android.content.Intent\nimport android"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/recognition/AudioResampler.kt",
"chars": 3760,
"preview": "package com.metrolist.music.recognition\n\nimport androidx.annotation.OptIn\nimport androidx.media3.common.util.UnstableApi"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/recognition/MusicRecognitionService.kt",
"chars": 7103,
"preview": "/**\n * Music Recognition Feature\n * \n * This feature is based on the original MusicRecognizer project by Aleksey Saenko."
},
{
"path": "app/src/main/kotlin/com/metrolist/music/recognition/RecognitionForegroundService.kt",
"chars": 12827,
"preview": "package com.metrolist.music.recognition\n\nimport android.app.NotificationChannel\nimport android.app.NotificationManager\ni"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/recognition/RecognitionLaunchActivity.kt",
"chars": 1776,
"preview": "package com.metrolist.music.recognition\n\nimport android.Manifest\nimport android.app.Activity\nimport android.content.Inte"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/recognition/ShazamSignatureGenerator.kt",
"chars": 15757,
"preview": "package com.metrolist.music.recognition\n\nimport android.util.Base64\nimport java.io.ByteArrayOutputStream\nimport java.nio"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/recognition/VibraSignature.kt",
"chars": 765,
"preview": "package com.metrolist.music.recognition\n\n/**\n * Audio fingerprint generator for Shazam-compatible signatures.\n *\n * Pure"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/ui/component/AppNavigation.kt",
"chars": 8351,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/ui/component/AutoResizeText.kt",
"chars": 3559,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/ui/component/BigSeekBar.kt",
"chars": 2037,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
},
{
"path": "app/src/main/kotlin/com/metrolist/music/ui/component/BottomSheet.kt",
"chars": 12002,
"preview": "/**\n * Metrolist Project (C) 2026\n * Licensed under GPL-3.0 | See git history for contributors\n */\n\npackage com.metrolis"
}
]
// ... and 816 more files (download for full content)
About this extraction
This page contains the full source code of the MetrolistGroup/Metrolist GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 1016 files (8.3 MB), approximately 2.2M tokens, and a symbol index with 246 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.