├── .aiexclude ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── feature_request.yaml ├── dependabot.yml ├── get_developers.py └── workflows │ ├── build-all-flavors-weekly.yml │ ├── build-nightly.yaml │ ├── chores.yaml │ ├── close-issues-on-release.yaml │ ├── close-stale-tickets.yaml │ └── comment-on-label.yaml ├── .gitignore ├── .gitmodules ├── .kotlin └── metadata │ └── kotlinTransformedMetadataLibraries │ └── org.jetbrains.kotlin-kotlin-stdlib-2.0.20-commonMain-WPEnbA.klib ├── .noai ├── LICENSE ├── README.md ├── assets ├── design │ ├── app_banner.png │ ├── ic_launcher_background.svg │ ├── ic_launcher_background_round.svg │ ├── ic_launcher_foreground.svg │ └── ic_launcher_monochrome.svg └── get-it-on │ ├── Accrescent.png │ ├── AndroidFreeware.png │ ├── F-Droid.png │ ├── GitHub.png │ ├── IzzyOnDroid.png │ ├── Obtainium.png │ └── OpenAPK.png ├── composeApp ├── .gitignore ├── build.gradle.kts ├── debug-proguard-rules.pro ├── proguard-rules.pro ├── schemas │ ├── database.MusicDatabase │ │ └── 23.json │ ├── database.MusicDatabaseConstructor │ │ └── 23.json │ └── it.fast4x.rimusic.DatabaseInitializer │ │ ├── 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 │ │ ├── 3.json │ │ ├── 4.json │ │ ├── 5.json │ │ ├── 6.json │ │ ├── 7.json │ │ ├── 8.json │ │ └── 9.json └── src │ ├── androidDebug │ └── res │ │ ├── raw │ │ └── release_notes.txt │ │ └── xml-v25 │ │ └── shortcuts.xml │ ├── androidFdroid │ └── kotlin │ │ ├── app │ │ └── kreate │ │ │ └── android │ │ │ └── themed │ │ │ └── common │ │ │ └── screens │ │ │ └── settings │ │ │ └── general │ │ │ └── UpdateSection.kt │ │ └── me │ │ └── knighthat │ │ └── updater │ │ └── UpdateHandler.kt │ ├── androidGithub │ ├── kotlin │ │ ├── app │ │ │ └── kreate │ │ │ │ └── android │ │ │ │ └── themed │ │ │ │ └── common │ │ │ │ └── screens │ │ │ │ └── settings │ │ │ │ └── general │ │ │ │ └── UpdateSection.kt │ │ └── me │ │ │ └── knighthat │ │ │ └── updater │ │ │ ├── DownloadAndInstallDialog.kt │ │ │ ├── GithubRelease.kt │ │ │ ├── NewUpdatePrompt.kt │ │ │ ├── UpdateHandler.kt │ │ │ └── Updater.kt │ └── res │ │ └── xml │ │ └── provider_paths.xml │ ├── androidIzzy │ └── kotlin │ │ ├── app │ │ └── kreate │ │ │ └── android │ │ │ └── themed │ │ │ └── common │ │ │ └── screens │ │ │ └── settings │ │ │ └── general │ │ │ └── UpdateSection.kt │ │ └── me │ │ └── knighthat │ │ └── updater │ │ └── UpdateHandler.kt │ ├── androidMain │ ├── AndroidManifest.xml │ ├── kotlin │ │ ├── app │ │ │ └── kreate │ │ │ │ └── android │ │ │ │ ├── CopyCrashlogActivity.kt │ │ │ │ ├── Preferences.kt │ │ │ │ ├── coil3 │ │ │ │ ├── ImageFactory.kt │ │ │ │ └── Transformations.kt │ │ │ │ ├── constant │ │ │ │ └── Speed.kt │ │ │ │ ├── di │ │ │ │ ├── CacheModule.kt │ │ │ │ ├── DownloadModule.kt │ │ │ │ ├── PlayerModule.kt │ │ │ │ └── PreferenceModule.kt │ │ │ │ ├── drawable │ │ │ │ └── AppIcon.kt │ │ │ │ ├── enums │ │ │ │ └── PlatformIndicatorType.kt │ │ │ │ ├── exception │ │ │ │ └── InvalidHeaderException.kt │ │ │ │ ├── network │ │ │ │ └── innertube │ │ │ │ │ └── Store.kt │ │ │ │ ├── screens │ │ │ │ └── player │ │ │ │ │ └── background │ │ │ │ │ └── BlurredCover.kt │ │ │ │ ├── service │ │ │ │ ├── Discord.kt │ │ │ │ ├── DownloadHelper.kt │ │ │ │ ├── NetworkService.kt │ │ │ │ ├── innertube │ │ │ │ │ └── InnertubeProvider.kt │ │ │ │ ├── newpipe │ │ │ │ │ └── NewPipeDownloader.kt │ │ │ │ ├── player │ │ │ │ │ ├── CustomExoPlayer.kt │ │ │ │ │ ├── ExoPlayerListener.kt │ │ │ │ │ ├── PlaybackController.kt │ │ │ │ │ └── VolumeObserver.kt │ │ │ │ └── updater │ │ │ │ │ └── UpdatePlugins.kt │ │ │ │ ├── themed │ │ │ │ ├── common │ │ │ │ │ ├── ChangeAlbumThumbnail.kt │ │ │ │ │ ├── ChangeSongThumbnail.kt │ │ │ │ │ ├── ChangeThumbnail.kt │ │ │ │ │ ├── component │ │ │ │ │ │ ├── AbstractMediaDownloadDialog.kt │ │ │ │ │ │ ├── AbstractSearch.kt │ │ │ │ │ │ ├── ColorPickerDialog.kt │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ ├── CrashReportDialog.kt │ │ │ │ │ │ │ └── Dialog.kt │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ ├── RestartPlayerService.kt │ │ │ │ │ │ │ ├── SettingComponents.kt │ │ │ │ │ │ │ ├── SettingEntry.kt │ │ │ │ │ │ │ ├── SettingEntrySearch.kt │ │ │ │ │ │ │ ├── SettingHeader.kt │ │ │ │ │ │ │ ├── SettingInputDialog.kt │ │ │ │ │ │ │ ├── SettingSectionSpacer.kt │ │ │ │ │ │ │ ├── StorageSizeInputDialog.kt │ │ │ │ │ │ │ └── data │ │ │ │ │ │ │ │ ├── CacheUsageIndicator.kt │ │ │ │ │ │ │ │ ├── ExoCacheIndicator.kt │ │ │ │ │ │ │ │ └── ImageCacheIndicator.kt │ │ │ │ │ │ └── tab │ │ │ │ │ │ │ ├── DeleteAllDownloadedDialog.kt │ │ │ │ │ │ │ └── DownloadAllDialog.kt │ │ │ │ │ └── screens │ │ │ │ │ │ ├── album │ │ │ │ │ │ └── YouTubeAlbum.kt │ │ │ │ │ │ ├── artist │ │ │ │ │ │ └── YouTubeArtist.kt │ │ │ │ │ │ ├── details │ │ │ │ │ │ ├── DetailsScreen.kt │ │ │ │ │ │ └── SongDetailsViewModel.kt │ │ │ │ │ │ └── settings │ │ │ │ │ │ ├── About.kt │ │ │ │ │ │ ├── AccountSettings.kt │ │ │ │ │ │ ├── AppearanceSettings.kt │ │ │ │ │ │ ├── DataSettings.kt │ │ │ │ │ │ ├── GeneralSettings.kt │ │ │ │ │ │ ├── NetworkSettings.kt │ │ │ │ │ │ ├── OtherSettings.kt │ │ │ │ │ │ ├── QuickPicksSettings.kt │ │ │ │ │ │ ├── UiSettings.kt │ │ │ │ │ │ ├── about │ │ │ │ │ │ ├── Dependency.kt │ │ │ │ │ │ └── Licenses.kt │ │ │ │ │ │ ├── general │ │ │ │ │ │ └── PlayerSettings.kt │ │ │ │ │ │ ├── other │ │ │ │ │ │ └── Debug.kt │ │ │ │ │ │ ├── player │ │ │ │ │ │ ├── PlayerActionBar.kt │ │ │ │ │ │ └── PlayerAppearance.kt │ │ │ │ │ │ └── ui │ │ │ │ │ │ ├── SwipeActonSettings.kt │ │ │ │ │ │ └── ThemeSettings.kt │ │ │ │ ├── rimusic │ │ │ │ │ ├── component │ │ │ │ │ │ ├── ItemSelector.kt │ │ │ │ │ │ ├── MultiplatformItem.kt │ │ │ │ │ │ ├── Search.kt │ │ │ │ │ │ ├── Visual.kt │ │ │ │ │ │ ├── album │ │ │ │ │ │ │ ├── AlbumItem.kt │ │ │ │ │ │ │ └── Bookmark.kt │ │ │ │ │ │ ├── artist │ │ │ │ │ │ │ └── ArtistItem.kt │ │ │ │ │ │ ├── playlist │ │ │ │ │ │ │ ├── PlaylistItem.kt │ │ │ │ │ │ │ ├── PlaylistSongsSort.kt │ │ │ │ │ │ │ └── PositionLock.kt │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ └── RiMusicAnimatedHeader.kt │ │ │ │ │ │ ├── song │ │ │ │ │ │ │ ├── PeriodSelector.kt │ │ │ │ │ │ │ └── SongItem.kt │ │ │ │ │ │ └── tab │ │ │ │ │ │ │ ├── ItemSize.kt │ │ │ │ │ │ │ └── Sort.kt │ │ │ │ │ └── screen │ │ │ │ │ │ ├── artist │ │ │ │ │ │ └── ArtistAlbums.kt │ │ │ │ │ │ ├── home │ │ │ │ │ │ ├── HomeSongs.kt │ │ │ │ │ │ ├── HomeSongsScreen.kt │ │ │ │ │ │ └── onDevice │ │ │ │ │ │ │ └── OnDeviceSongs.kt │ │ │ │ │ │ ├── player │ │ │ │ │ │ ├── ActionBar.kt │ │ │ │ │ │ └── timeline │ │ │ │ │ │ │ └── DurationIndicator.kt │ │ │ │ │ │ └── playlist │ │ │ │ │ │ └── YouTubePlaylist.kt │ │ │ │ └── vimusic │ │ │ │ │ └── component │ │ │ │ │ └── settings │ │ │ │ │ └── ViMusicAnimatedHeader.kt │ │ │ │ ├── utils │ │ │ │ ├── BitmapUtils.kt │ │ │ │ ├── CharUtils.kt │ │ │ │ ├── ConnectivityUtils.kt │ │ │ │ ├── CrashHandler.kt │ │ │ │ ├── DiscordLogger.kt │ │ │ │ ├── ItemUtils.kt │ │ │ │ ├── ModifierUtils.kt │ │ │ │ ├── PageUtils.kt │ │ │ │ ├── UriUtils.kt │ │ │ │ ├── innertube │ │ │ │ │ ├── InnertubeUtils.kt │ │ │ │ │ ├── LocalizationUtils.kt │ │ │ │ │ └── ModelUtils.kt │ │ │ │ └── logging │ │ │ │ │ └── RollingFileLoggingTree.kt │ │ │ │ └── widget │ │ │ │ ├── Widget.kt │ │ │ │ └── WidgetReceiver.kt │ │ ├── it │ │ │ └── fast4x │ │ │ │ ├── compose │ │ │ │ ├── persist │ │ │ │ │ ├── Persist.kt │ │ │ │ │ ├── PersistMap.kt │ │ │ │ │ ├── PersistMapCleanup.kt │ │ │ │ │ ├── PersistMapOwner.kt │ │ │ │ │ └── Utils.kt │ │ │ │ └── reordering │ │ │ │ │ ├── AnimatablesPool.kt │ │ │ │ │ ├── DraggedItem.kt │ │ │ │ │ ├── Reorder.kt │ │ │ │ │ └── ReorderingState.kt │ │ │ │ └── rimusic │ │ │ │ ├── Database.kt │ │ │ │ ├── GlobalVars.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MainApplication.kt │ │ │ │ ├── enums │ │ │ │ ├── AlbumSortBy.kt │ │ │ │ ├── AlbumSwipeAction.kt │ │ │ │ ├── AlbumsType.kt │ │ │ │ ├── AnimatedGradient.kt │ │ │ │ ├── ArtistSortBy.kt │ │ │ │ ├── ArtistsType.kt │ │ │ │ ├── AudioQualityFormat.kt │ │ │ │ ├── BackgroundProgress.kt │ │ │ │ ├── BuiltInPlaylist.kt │ │ │ │ ├── ButtonState.kt │ │ │ │ ├── CacheType.kt │ │ │ │ ├── CarousalSize.kt │ │ │ │ ├── CheckUpdateState.kt │ │ │ │ ├── ClickLyricsText.kt │ │ │ │ ├── CoilDiskCacheSize.kt │ │ │ │ ├── ColorPaletteMode.kt │ │ │ │ ├── ColorPaletteName.kt │ │ │ │ ├── DeviceLists.kt │ │ │ │ ├── DownloadedStateMedia.kt │ │ │ │ ├── DragAnchors.kt │ │ │ │ ├── Drawable.kt │ │ │ │ ├── Durations.kt │ │ │ │ ├── ExoPlayerCacheLocation.kt │ │ │ │ ├── ExoPlayerDiskCacheMaxSize.kt │ │ │ │ ├── ExoPlayerDiskDownloadCacheMaxSize.kt │ │ │ │ ├── ExoPlayerMinTimeForEvent.kt │ │ │ │ ├── FilterBy.kt │ │ │ │ ├── FontType.kt │ │ │ │ ├── HistoryType.kt │ │ │ │ ├── HomeItemSize.kt │ │ │ │ ├── HomeScreenTabs.kt │ │ │ │ ├── IconsLikeType.kt │ │ │ │ ├── LandscapeLayout.kt │ │ │ │ ├── LibraryItemSize.kt │ │ │ │ ├── LogType.kt │ │ │ │ ├── LyricsAlignment.kt │ │ │ │ ├── LyricsBackground.kt │ │ │ │ ├── LyricsColor.kt │ │ │ │ ├── LyricsFontSize.kt │ │ │ │ ├── LyricsHighlight.kt │ │ │ │ ├── LyricsOutline.kt │ │ │ │ ├── MaxSongs.kt │ │ │ │ ├── MaxStatisticsItems.kt │ │ │ │ ├── MenuStyle.kt │ │ │ │ ├── MiniPlayerType.kt │ │ │ │ ├── MoodType.kt │ │ │ │ ├── MusicAnimationType.kt │ │ │ │ ├── NavRoutes.kt │ │ │ │ ├── NavigationBarPosition.kt │ │ │ │ ├── NavigationBarType.kt │ │ │ │ ├── NotificationButtons.kt │ │ │ │ ├── NotificationType.kt │ │ │ │ ├── OnDeviceFolderSortBy.kt │ │ │ │ ├── OnDeviceSongSortBy.kt │ │ │ │ ├── PauseBetweenSongs.kt │ │ │ │ ├── PipModule.kt │ │ │ │ ├── PlayEventsType.kt │ │ │ │ ├── PlayerBackgroundColors.kt │ │ │ │ ├── PlayerControlsType.kt │ │ │ │ ├── PlayerInfoType.kt │ │ │ │ ├── PlayerPlayButtonType.kt │ │ │ │ ├── PlayerPosition.kt │ │ │ │ ├── PlayerThumbnailSize.kt │ │ │ │ ├── PlayerTimelineSize.kt │ │ │ │ ├── PlayerTimelineType.kt │ │ │ │ ├── PlayerType.kt │ │ │ │ ├── PlaylistSongSortBy.kt │ │ │ │ ├── PlaylistSongsTypeFilter.kt │ │ │ │ ├── PlaylistSortBy.kt │ │ │ │ ├── PlaylistSwipeAction.kt │ │ │ │ ├── PlaylistsType.kt │ │ │ │ ├── PopupType.kt │ │ │ │ ├── PresetReverb.kt │ │ │ │ ├── QueueLoopType.kt │ │ │ │ ├── QueueSelection.kt │ │ │ │ ├── QueueSwipeAction.kt │ │ │ │ ├── QueueType.kt │ │ │ │ ├── RecommendationsNumber.kt │ │ │ │ ├── Romanization.kt │ │ │ │ ├── SearchType.kt │ │ │ │ ├── SongSortBy.kt │ │ │ │ ├── SongsNumber.kt │ │ │ │ ├── SortOrder.kt │ │ │ │ ├── Statistics.kt │ │ │ │ ├── SwipeAnimations.kt │ │ │ │ ├── ThumbnailCoverType.kt │ │ │ │ ├── ThumbnailRoundness.kt │ │ │ │ ├── ThumbnailType.kt │ │ │ │ ├── TopPlaylistItems.kt │ │ │ │ ├── TransitionEffect.kt │ │ │ │ ├── UiType.kt │ │ │ │ ├── ValidationType.kt │ │ │ │ ├── WallpaperType.kt │ │ │ │ └── playerVisualizerType.kt │ │ │ │ ├── extensions │ │ │ │ ├── connectivity │ │ │ │ │ ├── AndroidConnectivityObserver.kt │ │ │ │ │ ├── AndroidConnectivityObserverLegacy.kt │ │ │ │ │ └── ConnectivityObserver.kt │ │ │ │ ├── discord │ │ │ │ │ └── Discord.kt │ │ │ │ ├── games │ │ │ │ │ ├── pacman │ │ │ │ │ │ ├── GameViewModel.kt │ │ │ │ │ │ ├── Pacman.kt │ │ │ │ │ │ ├── models │ │ │ │ │ │ │ ├── DialogState.kt │ │ │ │ │ │ │ ├── EnemyMovementModel.kt │ │ │ │ │ │ │ ├── GameStatsModel.kt │ │ │ │ │ │ │ └── PacFood.kt │ │ │ │ │ │ ├── ui │ │ │ │ │ │ │ ├── GameComposables.kt │ │ │ │ │ │ │ └── theme │ │ │ │ │ │ │ │ ├── Color.kt │ │ │ │ │ │ │ │ ├── Shape.kt │ │ │ │ │ │ │ │ ├── Theme.kt │ │ │ │ │ │ │ │ └── Type.kt │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── GameConstants.kt │ │ │ │ │ └── snake │ │ │ │ │ │ └── Snake.kt │ │ │ │ ├── nextvisualizer │ │ │ │ │ ├── NextVisualizer.kt │ │ │ │ │ ├── painters │ │ │ │ │ │ ├── Painter.kt │ │ │ │ │ │ ├── fft │ │ │ │ │ │ │ ├── FftAnalog.kt │ │ │ │ │ │ │ ├── FftBar.kt │ │ │ │ │ │ │ ├── FftCBar.kt │ │ │ │ │ │ │ ├── FftCLine.kt │ │ │ │ │ │ │ ├── FftCPoly.kt │ │ │ │ │ │ │ ├── FftCWave.kt │ │ │ │ │ │ │ ├── FftCWaveRgb.kt │ │ │ │ │ │ │ ├── FftLine.kt │ │ │ │ │ │ │ ├── FftPoly.kt │ │ │ │ │ │ │ ├── FftWave.kt │ │ │ │ │ │ │ └── FftWaveRgb.kt │ │ │ │ │ │ ├── misc │ │ │ │ │ │ │ ├── Background.kt │ │ │ │ │ │ │ ├── Gradient.kt │ │ │ │ │ │ │ ├── Icon.kt │ │ │ │ │ │ │ └── SimpleText.kt │ │ │ │ │ │ ├── modifier │ │ │ │ │ │ │ ├── Beat.kt │ │ │ │ │ │ │ ├── Blend.kt │ │ │ │ │ │ │ ├── Compose.kt │ │ │ │ │ │ │ ├── Glitch.kt │ │ │ │ │ │ │ ├── Move.kt │ │ │ │ │ │ │ ├── Rotate.kt │ │ │ │ │ │ │ ├── Scale.kt │ │ │ │ │ │ │ ├── Shake.kt │ │ │ │ │ │ │ └── Zoom.kt │ │ │ │ │ │ └── waveform │ │ │ │ │ │ │ └── WfmAnalog.kt │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── FrameManager.kt │ │ │ │ │ │ ├── Preset.kt │ │ │ │ │ │ └── VisualizerHelper.kt │ │ │ │ │ └── views │ │ │ │ │ │ └── VisualizerView.kt │ │ │ │ ├── pip │ │ │ │ │ ├── PictureInPicture.kt │ │ │ │ │ ├── PipEventContainer.kt │ │ │ │ │ └── PipModuleContainer.kt │ │ │ │ ├── webpotoken │ │ │ │ │ ├── JavaScriptUtil.kt │ │ │ │ │ ├── PoTokenException.kt │ │ │ │ │ ├── PoTokenGenerator.kt │ │ │ │ │ ├── PoTokenResult.kt │ │ │ │ │ └── PoTokenWebView.kt │ │ │ │ └── youtubelogin │ │ │ │ │ ├── YouTubeLogin.kt │ │ │ │ │ └── YoutubeSession.kt │ │ │ │ ├── models │ │ │ │ ├── Info.kt │ │ │ │ ├── Mood.kt │ │ │ │ ├── QueuedMediaItem.kt │ │ │ │ └── SortedSongPlaylistMap.kt │ │ │ │ ├── service │ │ │ │ ├── BitmapProvider.kt │ │ │ │ ├── MyDownloadHelper.kt │ │ │ │ ├── MyDownloadService.kt │ │ │ │ ├── PlaybackExceptions.kt │ │ │ │ └── modern │ │ │ │ │ ├── MediaLibrarySessionCallback.kt │ │ │ │ │ ├── PlayerServiceModern.kt │ │ │ │ │ └── SleepTimer.kt │ │ │ │ ├── ui │ │ │ │ ├── components │ │ │ │ │ ├── BottomSheet.kt │ │ │ │ │ ├── ButtonsRow.kt │ │ │ │ │ ├── CustomModalBottomSheet.kt │ │ │ │ │ ├── Menu.kt │ │ │ │ │ ├── MultiFloatingActionsButton.kt │ │ │ │ │ ├── MusicAnimations.kt │ │ │ │ │ ├── Scaffold.kt │ │ │ │ │ ├── ScaffoldTB.kt │ │ │ │ │ ├── SeekBar.kt │ │ │ │ │ ├── SeekBarAudioWaves.kt │ │ │ │ │ ├── SeekBarColored.kt │ │ │ │ │ ├── SeekBarCustom.kt │ │ │ │ │ ├── SeekBarWaved.kt │ │ │ │ │ ├── Skeleton.kt │ │ │ │ │ ├── SwipeableContent.kt │ │ │ │ │ ├── navigation │ │ │ │ │ │ ├── header │ │ │ │ │ │ │ ├── ActionBar.kt │ │ │ │ │ │ │ ├── AppHeader.kt │ │ │ │ │ │ │ ├── AppTitle.kt │ │ │ │ │ │ │ ├── TabToolBar.kt │ │ │ │ │ │ │ └── Utils.kt │ │ │ │ │ │ └── nav │ │ │ │ │ │ │ ├── AbstractNavigationBar.kt │ │ │ │ │ │ │ ├── HomeNavigation.kt │ │ │ │ │ │ │ ├── HorizontalNavigationBar.kt │ │ │ │ │ │ │ └── VerticalNavigationBar.kt │ │ │ │ │ ├── tab │ │ │ │ │ │ ├── TabHeader.kt │ │ │ │ │ │ └── toolbar │ │ │ │ │ │ │ ├── Button.kt │ │ │ │ │ │ │ ├── Clickable.kt │ │ │ │ │ │ │ ├── ConfirmDialog.kt │ │ │ │ │ │ │ ├── Descriptive.kt │ │ │ │ │ │ │ ├── Dialog.kt │ │ │ │ │ │ │ ├── DualIcon.kt │ │ │ │ │ │ │ ├── DynamicColor.kt │ │ │ │ │ │ │ ├── EllipsisMenuComponent.kt │ │ │ │ │ │ │ ├── Icon.kt │ │ │ │ │ │ │ ├── Menu.kt │ │ │ │ │ │ │ ├── MenuIcon.kt │ │ │ │ │ │ │ └── Randomizer.kt │ │ │ │ │ └── themed │ │ │ │ │ │ ├── AlbumsItemGridMenu.kt │ │ │ │ │ │ ├── AlbumsItemMenu.kt │ │ │ │ │ │ ├── AutoResizeText.kt │ │ │ │ │ │ ├── Button.kt │ │ │ │ │ │ ├── ButtonWithTitle.kt │ │ │ │ │ │ ├── CircularSlider.kt │ │ │ │ │ │ ├── CrossfadeContainer.kt │ │ │ │ │ │ ├── CustomElevateButton.kt │ │ │ │ │ │ ├── CustomSlider.kt │ │ │ │ │ │ ├── DeleteDialog.kt │ │ │ │ │ │ ├── Dialog.kt │ │ │ │ │ │ ├── DialogTextButton.kt │ │ │ │ │ │ ├── DownloadStateIconButton.kt │ │ │ │ │ │ ├── DropdownMenu.kt │ │ │ │ │ │ ├── FloatingActionsContainer.kt │ │ │ │ │ │ ├── FluidGradient.kt │ │ │ │ │ │ ├── GridMenu.kt │ │ │ │ │ │ ├── Header.kt │ │ │ │ │ │ ├── IDialog.kt │ │ │ │ │ │ ├── IconButton.kt │ │ │ │ │ │ ├── IconInfo.kt │ │ │ │ │ │ ├── InputTextField.kt │ │ │ │ │ │ ├── LayoutWithAdaptiveThumbnail.kt │ │ │ │ │ │ ├── Loader.kt │ │ │ │ │ │ ├── MediaItemGridMenu.kt │ │ │ │ │ │ ├── MediaItemMenu.kt │ │ │ │ │ │ ├── Menu.kt │ │ │ │ │ │ ├── MenuComponent.kt │ │ │ │ │ │ ├── NowPlaying.kt │ │ │ │ │ │ ├── PlayerMenu.kt │ │ │ │ │ │ ├── PlaylistsItemGridMenu.kt │ │ │ │ │ │ ├── PlaylistsItemMenu.kt │ │ │ │ │ │ ├── PlaylistsMenu.kt │ │ │ │ │ │ ├── PrimaryButton.kt │ │ │ │ │ │ ├── ProgressIndicator.kt │ │ │ │ │ │ ├── RotateThumbnailCover.kt │ │ │ │ │ │ ├── ScrollText.kt │ │ │ │ │ │ ├── SecondaryButton.kt │ │ │ │ │ │ ├── SecondaryTextButton.kt │ │ │ │ │ │ ├── Slider.kt │ │ │ │ │ │ ├── SliderControl.kt │ │ │ │ │ │ ├── SortMenu.kt │ │ │ │ │ │ ├── Switch.kt │ │ │ │ │ │ ├── TextIconButton.kt │ │ │ │ │ │ ├── TextPlaceholder.kt │ │ │ │ │ │ └── Title.kt │ │ │ │ ├── screens │ │ │ │ │ ├── AppNavigation.kt │ │ │ │ │ ├── history │ │ │ │ │ │ ├── HistoryList.kt │ │ │ │ │ │ └── HistoryScreen.kt │ │ │ │ │ ├── home │ │ │ │ │ │ ├── HomeAlbum.kt │ │ │ │ │ │ ├── HomeArtist.kt │ │ │ │ │ │ ├── HomeDiscovery.kt │ │ │ │ │ │ ├── HomeLibrary.kt │ │ │ │ │ │ ├── HomeQuickPicks.kt │ │ │ │ │ │ └── HomeScreen.kt │ │ │ │ │ ├── localplaylist │ │ │ │ │ │ ├── LocalPlaylistScreen.kt │ │ │ │ │ │ └── LocalPlaylistSongs.kt │ │ │ │ │ ├── mood │ │ │ │ │ │ ├── MoodList.kt │ │ │ │ │ │ ├── MoodScreen.kt │ │ │ │ │ │ ├── MoodsPage.kt │ │ │ │ │ │ └── MoodsPageScreen.kt │ │ │ │ │ ├── newreleases │ │ │ │ │ │ ├── NewAlbums.kt │ │ │ │ │ │ ├── NewAlbumsFromArtists.kt │ │ │ │ │ │ └── NewReleasesScreen.kt │ │ │ │ │ ├── player │ │ │ │ │ │ ├── AnimatedGradient.kt │ │ │ │ │ │ ├── Controls.kt │ │ │ │ │ │ ├── Lyrics.kt │ │ │ │ │ │ ├── MiniPlayer.kt │ │ │ │ │ │ ├── NextVisualizer.kt │ │ │ │ │ │ ├── PlaybackError.kt │ │ │ │ │ │ ├── Player.kt │ │ │ │ │ │ ├── PlayerSheetState.kt │ │ │ │ │ │ ├── Queue.kt │ │ │ │ │ │ ├── StatsForNerds.kt │ │ │ │ │ │ ├── Thumbnail.kt │ │ │ │ │ │ └── components │ │ │ │ │ │ │ ├── YoutubePlayer.kt │ │ │ │ │ │ │ └── controls │ │ │ │ │ │ │ ├── Essential.kt │ │ │ │ │ │ │ └── Modern.kt │ │ │ │ │ ├── podcast │ │ │ │ │ │ ├── Podcast.kt │ │ │ │ │ │ └── PodcastScreen.kt │ │ │ │ │ ├── search │ │ │ │ │ │ ├── GoToLink.kt │ │ │ │ │ │ ├── LocalSongSearch.kt │ │ │ │ │ │ ├── OnlineSearch.kt │ │ │ │ │ │ ├── SearchScreen.kt │ │ │ │ │ │ └── SearchTypeScreen.kt │ │ │ │ │ ├── searchresult │ │ │ │ │ │ ├── ItemsPage.kt │ │ │ │ │ │ └── SearchResultScreen.kt │ │ │ │ │ ├── settings │ │ │ │ │ │ ├── AccountsSettings.kt │ │ │ │ │ │ └── SettingsScreen.kt │ │ │ │ │ └── statistics │ │ │ │ │ │ ├── StatisticsPage.kt │ │ │ │ │ │ └── StatisticsScreen.kt │ │ │ │ └── styling │ │ │ │ │ ├── Appearance.kt │ │ │ │ │ ├── ColorPalette.kt │ │ │ │ │ ├── CustomColorPalette.kt │ │ │ │ │ ├── Dimensions.kt │ │ │ │ │ ├── Hsl.kt │ │ │ │ │ └── Typography.kt │ │ │ │ └── utils │ │ │ │ ├── ActionReceiver.kt │ │ │ │ ├── AppLifecycleTracker.kt │ │ │ │ ├── AudioUtils.kt │ │ │ │ ├── Bundle.kt │ │ │ │ ├── Cache.kt │ │ │ │ ├── CaptureCrash.kt │ │ │ │ ├── ClipBoard.kt │ │ │ │ ├── CoilBitmapLoader.kt │ │ │ │ ├── Configuration.kt │ │ │ │ ├── ConnectivityUtil.kt │ │ │ │ ├── Context.kt │ │ │ │ ├── CoroutineExtensions.kt │ │ │ │ ├── Discover.kt │ │ │ │ ├── DownloadUtils.kt │ │ │ │ ├── DrawScope.kt │ │ │ │ ├── DropShadow.kt │ │ │ │ ├── EffectHandler.kt │ │ │ │ ├── FadingEdge.kt │ │ │ │ ├── FileUtils.kt │ │ │ │ ├── GetControlsType.kt │ │ │ │ ├── GetDeviceInfo.kt │ │ │ │ ├── GetSeekBarType.kt │ │ │ │ ├── IPChecker.kt │ │ │ │ ├── InvincibleService.kt │ │ │ │ ├── IsCompositionLaunched.kt │ │ │ │ ├── LikeState.kt │ │ │ │ ├── LocalPlaylistSongs.kt │ │ │ │ ├── MenuItemColors.kt │ │ │ │ ├── Modifier.kt │ │ │ │ ├── MonetCompat.kt │ │ │ │ ├── MonthlyPlaylists.kt │ │ │ │ ├── NavControllerUtils.kt │ │ │ │ ├── OKHttpRequest.kt │ │ │ │ ├── PinchToggle.kt │ │ │ │ ├── Player.kt │ │ │ │ ├── PlayerState.kt │ │ │ │ ├── Preferences.kt │ │ │ │ ├── Resource.kt │ │ │ │ ├── RingBuffer.kt │ │ │ │ ├── ScrollingInfo.kt │ │ │ │ ├── SearchYoutubeEntity.kt │ │ │ │ ├── ShowUpdatedVersion.kt │ │ │ │ ├── SliderPulsatingEffectModifier.kt │ │ │ │ ├── SmoothScrollToTop.kt │ │ │ │ ├── SyncYTMusicUtils.kt │ │ │ │ ├── SynchronizedLyrics.kt │ │ │ │ ├── TextStyle.kt │ │ │ │ ├── TimerJob.kt │ │ │ │ ├── UpdateYoutubeEntity.kt │ │ │ │ ├── Utils.kt │ │ │ │ └── WelcomeMessage.kt │ │ └── me │ │ │ └── knighthat │ │ │ ├── component │ │ │ ├── ExportToFileDialog.kt │ │ │ ├── FolderItem.kt │ │ │ ├── ImportFromFile.kt │ │ │ ├── RenameDialog.kt │ │ │ ├── ResetCache.kt │ │ │ ├── album │ │ │ │ └── AlbumModifier.kt │ │ │ ├── artist │ │ │ │ └── FollowButton.kt │ │ │ ├── dialog │ │ │ │ ├── CheckboxDialog.kt │ │ │ │ ├── ConfirmDialog.kt │ │ │ │ ├── Dialog.kt │ │ │ │ ├── InputDialog.kt │ │ │ │ ├── InputDialogConstraints.kt │ │ │ │ ├── InteractiveDialog.kt │ │ │ │ ├── RestartAppDialog.kt │ │ │ │ └── TextInputDialog.kt │ │ │ ├── export │ │ │ │ ├── ExportDatabaseDialog.kt │ │ │ │ └── ExportSettingsDialog.kt │ │ │ ├── import │ │ │ │ ├── ImportDatabase.kt │ │ │ │ └── ImportSettings.kt │ │ │ ├── menu │ │ │ │ ├── GridMenu.kt │ │ │ │ ├── ListMenu.kt │ │ │ │ ├── MenuConstants.kt │ │ │ │ └── song │ │ │ │ │ └── SongItemMenu.kt │ │ │ ├── player │ │ │ │ ├── BlurAdjuster.kt │ │ │ │ ├── PlaybackSpeed.kt │ │ │ │ └── SleepTimer.kt │ │ │ ├── playlist │ │ │ │ ├── NewPlaylistDialog.kt │ │ │ │ ├── PinPlaylist.kt │ │ │ │ ├── RenamePlaylistDialog.kt │ │ │ │ └── Reposition.kt │ │ │ ├── settings │ │ │ │ ├── Contributor.kt │ │ │ │ ├── Developer.kt │ │ │ │ └── Translator.kt │ │ │ ├── song │ │ │ │ ├── ChangeAuthorDialog.kt │ │ │ │ ├── ExportCacheDialog.kt │ │ │ │ ├── GoToAlbum.kt │ │ │ │ ├── GoToArtist.kt │ │ │ │ ├── Information.kt │ │ │ │ ├── RenameSongDialog.kt │ │ │ │ └── ResetSongDialog.kt │ │ │ ├── tab │ │ │ │ ├── DeleteHiddenSongsDialog.kt │ │ │ │ ├── DeleteSongDialog.kt │ │ │ │ ├── ExportSongsToCSVDialog.kt │ │ │ │ ├── HiddenSongs.kt │ │ │ │ ├── HideSongDialog.kt │ │ │ │ ├── ImportSongsFromCSV.kt │ │ │ │ ├── LikeComponent.kt │ │ │ │ ├── Locator.kt │ │ │ │ ├── Radio.kt │ │ │ │ └── SongShuffler.kt │ │ │ └── ui │ │ │ │ └── screens │ │ │ │ ├── LayoutWithAdaptiveThumbnail.kt │ │ │ │ ├── album │ │ │ │ └── AlbumDetails.kt │ │ │ │ └── player │ │ │ │ └── Queue.kt │ │ │ ├── database │ │ │ ├── AlbumTable.kt │ │ │ ├── ArtistTable.kt │ │ │ ├── Converters.kt │ │ │ ├── EventTable.kt │ │ │ ├── FormatTable.kt │ │ │ ├── LyricsTable.kt │ │ │ ├── PlaylistTable.kt │ │ │ ├── QueuedMediaItemTable.kt │ │ │ ├── SearchQueryTable.kt │ │ │ ├── SongAlbumMapTable.kt │ │ │ ├── SongArtistMapTable.kt │ │ │ ├── SongPlaylistMapTable.kt │ │ │ ├── SongTable.kt │ │ │ ├── ext │ │ │ │ ├── EventWithSong.kt │ │ │ │ └── FormatWithSong.kt │ │ │ └── migration │ │ │ │ ├── From10To11Migration.kt │ │ │ │ ├── From11To12Migration.kt │ │ │ │ ├── From14To15Migration.kt │ │ │ │ ├── From20To21Migration.kt │ │ │ │ ├── From21To22Migration.kt │ │ │ │ ├── From22To23Migration.kt │ │ │ │ ├── From23To24Migration.kt │ │ │ │ ├── From24To25Migration.kt │ │ │ │ ├── From25To26Migration.kt │ │ │ │ ├── From26To27Migration.kt │ │ │ │ ├── From27To28Migration.kt │ │ │ │ ├── From3To4Migration.kt │ │ │ │ ├── From7To8Migration.kt │ │ │ │ └── From8To9Migration.kt │ │ │ ├── enums │ │ │ └── TextView.kt │ │ │ ├── impl │ │ │ └── DownloadHelperImpl.kt │ │ │ ├── sync │ │ │ └── YouTubeSync.kt │ │ │ ├── updater │ │ │ └── ChangelogsDialog.kt │ │ │ └── utils │ │ │ ├── DurationUtils.kt │ │ │ ├── ImageProcessor.kt │ │ │ ├── OnDeviceMedia.kt │ │ │ ├── PathUtils.kt │ │ │ ├── PropUtils.kt │ │ │ ├── Repository.kt │ │ │ ├── TimeDateUtils.kt │ │ │ ├── Toaster.kt │ │ │ └── csv │ │ │ ├── PreferenceCSV.kt │ │ │ └── SongCSV.kt │ └── res │ │ ├── drawable-anydpi │ │ ├── locked.xml │ │ ├── repeat.xml │ │ ├── search_circle.xml │ │ ├── settings.xml │ │ ├── translate.xml │ │ └── unlocked.xml │ │ ├── drawable-nodpi │ │ ├── a13shape.webp │ │ ├── ghost_orange.webp │ │ ├── ghost_red.webp │ │ ├── ghost_reverse.webp │ │ ├── preset0.webp │ │ ├── preset1.webp │ │ ├── preset2.webp │ │ ├── preset3.webp │ │ ├── preset4.webp │ │ ├── preset5.webp │ │ └── vinyl_background.png │ │ ├── drawable │ │ ├── add_in_playlist.xml │ │ ├── album.xml │ │ ├── alert.xml │ │ ├── alert_circle.xml │ │ ├── alert_circle_not_filled.xml │ │ ├── alternative_version.xml │ │ ├── app_icon_monochrome.xml │ │ ├── app_logo_text.xml │ │ ├── arrow_down.xml │ │ ├── arrow_forward.xml │ │ ├── arrow_left.xml │ │ ├── arrow_right.xml │ │ ├── arrow_up.xml │ │ ├── artist.xml │ │ ├── artists_edit.xml │ │ ├── backspace_outline.xml │ │ ├── bookmark.xml │ │ ├── bookmark_outline.xml │ │ ├── burger.xml │ │ ├── calendar.xml │ │ ├── calendar_clear.xml │ │ ├── cd.xml │ │ ├── checked_filled.xml │ │ ├── checkmark.xml │ │ ├── chevron_back.xml │ │ ├── chevron_down.xml │ │ ├── chevron_forward.xml │ │ ├── chevron_up.xml │ │ ├── close.xml │ │ ├── color_palette.xml │ │ ├── copy.xml │ │ ├── cover_edit.xml │ │ ├── crown.xml │ │ ├── devices.xml │ │ ├── dice.xml │ │ ├── discord_logo.xml │ │ ├── download.xml │ │ ├── download_cover.xml │ │ ├── download_progress.xml │ │ ├── downloaded.xml │ │ ├── drop_blur.xml │ │ ├── drop_half_fill.xml │ │ ├── droplet.xml │ │ ├── ellipsis_horizontal.xml │ │ ├── ellipsis_vertical.xml │ │ ├── enqueue.xml │ │ ├── equalizer.xml │ │ ├── explicit.xml │ │ ├── export_outline.xml │ │ ├── eye.xml │ │ ├── eye_off.xml │ │ ├── featured_playlist.xml │ │ ├── folder.xml │ │ ├── git_pull_request_outline.xml │ │ ├── github_logo.xml │ │ ├── globe.xml │ │ ├── heart.xml │ │ ├── heart_apple.xml │ │ ├── heart_apple_outline.xml │ │ ├── heart_breaked_no.xml │ │ ├── heart_breaked_yes.xml │ │ ├── heart_brilliant.xml │ │ ├── heart_brilliant_outline.xml │ │ ├── heart_dislike.xml │ │ ├── heart_gift.xml │ │ ├── heart_gift_outline.xml │ │ ├── heart_outline.xml │ │ ├── heart_shape.xml │ │ ├── heart_shape_outline.xml │ │ ├── heart_striped.xml │ │ ├── heart_striped_outline.xml │ │ ├── history.xml │ │ ├── horizontal_bold_line.xml │ │ ├── horizontal_bold_line_rounded.xml │ │ ├── horizontal_straight_line.xml │ │ ├── ic_banner_foreground.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_launcher_monochrome.xml │ │ ├── image.xml │ │ ├── images_sharp.xml │ │ ├── import_outline.xml │ │ ├── infinite.xml │ │ ├── information.xml │ │ ├── library.xml │ │ ├── link.xml │ │ ├── loader.xml │ │ ├── locate.xml │ │ ├── logo_youtube.xml │ │ ├── master_volume.xml │ │ ├── maximize.xml │ │ ├── medical.xml │ │ ├── menu.xml │ │ ├── musical_notes.xml │ │ ├── newspaper_outline.xml │ │ ├── noimage.xml │ │ ├── open.xml │ │ ├── pause.xml │ │ ├── pencil.xml │ │ ├── people.xml │ │ ├── person.xml │ │ ├── pin_filled.xml │ │ ├── play.xml │ │ ├── play_forward.xml │ │ ├── play_skip_back.xml │ │ ├── play_skip_forward.xml │ │ ├── playbackduration.xml │ │ ├── player_horizontal_widget.xml │ │ ├── player_vertical_widget.xml │ │ ├── playlist.xml │ │ ├── podcast.xml │ │ ├── position.xml │ │ ├── query_stats.xml │ │ ├── radio.xml │ │ ├── random.xml │ │ ├── refresh_circle.xml │ │ ├── reorder.xml │ │ ├── repeatone.xml │ │ ├── resize.xml │ │ ├── restart_player.xml │ │ ├── search.xml │ │ ├── server.xml │ │ ├── share_social.xml │ │ ├── shield_checkmark.xml │ │ ├── shuffle.xml │ │ ├── shuffle_filled.xml │ │ ├── sleep.xml │ │ ├── slow_motion.xml │ │ ├── smart_shuffle.xml │ │ ├── song_lyrics.xml │ │ ├── sound_effect.xml │ │ ├── sparkles.xml │ │ ├── speedometer_outline.xml │ │ ├── star_brilliant.xml │ │ ├── stat_3months.xml │ │ ├── stat_6months.xml │ │ ├── stat_month.xml │ │ ├── stat_today.xml │ │ ├── stat_week.xml │ │ ├── stat_year.xml │ │ ├── stats_chart.xml │ │ ├── swap_vertical_outline.xml │ │ ├── sync.xml │ │ ├── text.xml │ │ ├── time.xml │ │ ├── title_edit.xml │ │ ├── trash.xml │ │ ├── trending.xml │ │ ├── ui.xml │ │ ├── unchecked_outline.xml │ │ ├── up_right_arrow.xml │ │ ├── update.xml │ │ ├── video.xml │ │ ├── volume_up.xml │ │ ├── warning_outline.xml │ │ └── ytmusic.xml │ │ ├── font │ │ ├── pac_font.TTF │ │ ├── poppins_w300.ttf │ │ ├── poppins_w400.ttf │ │ ├── poppins_w500.ttf │ │ ├── poppins_w600.ttf │ │ ├── poppins_w700.ttf │ │ ├── rubik_w300.ttf │ │ ├── rubik_w400.ttf │ │ ├── rubik_w500.ttf │ │ ├── rubik_w600.ttf │ │ └── rubik_w700.ttf │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_banner.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_banner.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_banner.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_banner.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_banner.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── raw │ │ ├── contributors.json │ │ ├── licenses.json │ │ ├── po_token.html │ │ └── translators.json │ │ ├── resources.properties │ │ ├── values-af-rZA │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-ar-rSA │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-az-rAZ │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-b+sr+Latn │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-ba-rRU │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-bn-rBD │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-ca-rES │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-cs-rCZ │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-da-rDK │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-de-rDE │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-el-rGR │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-eo-rUY │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-es-rES │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-et-rEE │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-fa-rIR │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-fi-rFI │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-fil-rPH │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-fr-rFR │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-ga-rIE │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-gl-rES │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-hi-rIN │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-hu-rHU │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-ia │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-in-rID │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-it-rIT │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-iw-rIL │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-ja-rJP │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-ko-rKR │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-ml-rIN │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-night-v29 │ │ └── themes.xml │ │ ├── values-night │ │ └── themes.xml │ │ ├── values-nl-rNL │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-or-rIN │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-pl-rPL │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-ro-rRO │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-ru-rRU │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-si-rLK │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-sr │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-sv-rSE │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-ta-rIN │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-te-rIN │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-tr-rTR │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-uk-rUA │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-vi-rVN │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ ├── plurals.xml │ │ └── strings.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── plurals.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ ├── xml-v25 │ │ └── shortcuts.xml │ │ └── xml │ │ ├── automotive_app_desc.xml │ │ ├── network_security_config.xml │ │ ├── player_horizontal_widget_info.xml │ │ └── player_vertical_widget_info.xml │ ├── androidUnitTest │ └── kotlin │ │ └── it │ │ └── fast4x │ │ └── rimusic │ │ └── utils │ │ └── AppLifecycleTrackerTest.kt │ ├── commonMain │ ├── composeResources │ │ ├── values-af-rZA │ │ │ └── strings.xml │ │ ├── values-ar-rSA │ │ │ └── strings.xml │ │ ├── values-az-rAZ │ │ │ └── strings.xml │ │ ├── values-ba-rRU │ │ │ └── strings.xml │ │ ├── values-bn-rBD │ │ │ └── strings.xml │ │ ├── values-ca-rES │ │ │ └── strings.xml │ │ ├── values-cs-rCZ │ │ │ └── strings.xml │ │ ├── values-da-rDK │ │ │ └── strings.xml │ │ ├── values-de-rDE │ │ │ └── strings.xml │ │ ├── values-el-rGR │ │ │ └── strings.xml │ │ ├── values-eo-rUY │ │ │ └── strings.xml │ │ ├── values-es-rES │ │ │ └── strings.xml │ │ ├── values-et-rEE │ │ │ └── strings.xml │ │ ├── values-fa-rIR │ │ │ └── strings.xml │ │ ├── values-fi-rFI │ │ │ └── strings.xml │ │ ├── values-fil-rPH │ │ │ └── strings.xml │ │ ├── values-fr-rFR │ │ │ └── strings.xml │ │ ├── values-ga-rIE │ │ │ └── strings.xml │ │ ├── values-gl-rES │ │ │ └── strings.xml │ │ ├── values-hi-rIN │ │ │ └── strings.xml │ │ ├── values-hu-rHU │ │ │ └── strings.xml │ │ ├── values-ia │ │ │ └── strings.xml │ │ ├── values-in-rID │ │ │ └── strings.xml │ │ ├── values-it-rIT │ │ │ └── strings.xml │ │ ├── values-iw-rIL │ │ │ └── strings.xml │ │ ├── values-ja-rJP │ │ │ └── strings.xml │ │ ├── values-ko-rKR │ │ │ └── strings.xml │ │ ├── values-ml-rIN │ │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ │ └── strings.xml │ │ ├── values-nl-rNL │ │ │ └── strings.xml │ │ ├── values-or-rIN │ │ │ └── strings.xml │ │ ├── values-pl-rPL │ │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ │ └── strings.xml │ │ ├── values-ro-rRO │ │ │ └── strings.xml │ │ ├── values-ru-rRU │ │ │ └── strings.xml │ │ ├── values-si-rLK │ │ │ └── strings.xml │ │ ├── values-sr-rCS │ │ │ └── strings.xml │ │ ├── values-sr │ │ │ └── strings.xml │ │ ├── values-sv-rSE │ │ │ └── strings.xml │ │ ├── values-ta-rIN │ │ │ └── strings.xml │ │ ├── values-te-rIN │ │ │ └── strings.xml │ │ ├── values-tr-rTR │ │ │ └── strings.xml │ │ ├── values-uk-rUA │ │ │ └── strings.xml │ │ ├── values-vi-rVN │ │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ └── values │ │ │ └── strings.xml │ └── kotlin │ │ └── app │ │ └── kreate │ │ ├── constant │ │ ├── Language.kt │ │ └── SortCategory.kt │ │ ├── database │ │ └── models │ │ │ ├── Album.kt │ │ │ ├── Artist.kt │ │ │ ├── Event.kt │ │ │ ├── Format.kt │ │ │ ├── Lyrics.kt │ │ │ ├── Playlist.kt │ │ │ ├── PlaylistPreview.kt │ │ │ ├── SearchQuery.kt │ │ │ ├── Song.kt │ │ │ ├── SongAlbumMap.kt │ │ │ ├── SongArtistMap.kt │ │ │ └── SongPlaylistMap.kt │ │ └── util │ │ ├── DurationUtil.kt │ │ ├── PrefixUtils.kt │ │ └── ThumbnailUtils.kt │ ├── commonTest │ └── kotlin │ │ └── app │ │ └── kreate │ │ ├── constant │ │ └── LanguageTest.kt │ │ └── util │ │ └── DurationUtlTest.kt │ ├── desktopMain │ └── kotlin │ │ ├── database │ │ └── getMusicDatabase.kt │ │ ├── it │ │ └── fast4x │ │ │ └── rimusic │ │ │ ├── Platform.jvm.kt │ │ │ ├── enums │ │ │ ├── ColorPaletteMode.kt │ │ │ ├── ColorPaletteName.kt │ │ │ ├── FontType.kt │ │ │ ├── Locales.kt │ │ │ ├── PageType.kt │ │ │ └── ThumbnailRoundness.kt │ │ │ ├── items │ │ │ ├── ItemContainer.kt │ │ │ └── Items.kt │ │ │ ├── models │ │ │ └── PipedSession.kt │ │ │ ├── player │ │ │ ├── exception │ │ │ │ └── Catch.kt │ │ │ ├── extension │ │ │ │ └── Long.kt │ │ │ ├── player │ │ │ │ ├── DefaultControls.kt │ │ │ │ ├── PlayerController.kt │ │ │ │ ├── PlayerInput.kt │ │ │ │ ├── PlayerSource.kt │ │ │ │ ├── PlayerState.kt │ │ │ │ ├── component │ │ │ │ │ ├── ComponentContainer.kt │ │ │ │ │ ├── ComponentPlayer.kt │ │ │ │ │ └── ComponentRenderer.kt │ │ │ │ └── frame │ │ │ │ │ ├── FrameContainer.kt │ │ │ │ │ ├── FramePlayer.kt │ │ │ │ │ └── FrameRenderer.kt │ │ │ ├── upload │ │ │ │ └── UploadDialog.kt │ │ │ └── vlcj │ │ │ │ ├── VlcjComponentController.kt │ │ │ │ ├── VlcjController.kt │ │ │ │ └── VlcjFrameController.kt │ │ │ ├── styling │ │ │ ├── ColorPalette.kt │ │ │ └── Dimensions.kt │ │ │ ├── ui │ │ │ ├── DesktopApp.kt │ │ │ ├── ThreeColumnsApp.kt │ │ │ ├── bars │ │ │ │ └── DefaultBottomBar.kt │ │ │ ├── components │ │ │ │ ├── AutoResizeText.kt │ │ │ │ ├── CustomModalBottomSheet.kt │ │ │ │ ├── LayoutWithAdaptiveThumbnail.kt │ │ │ │ ├── Loader.kt │ │ │ │ ├── PlayerEssential.kt │ │ │ │ ├── Title.kt │ │ │ │ ├── Title2Actions.kt │ │ │ │ └── ToolButton.kt │ │ │ ├── pages │ │ │ │ ├── AlbumsPage.kt │ │ │ │ └── SongsPage.kt │ │ │ ├── screens │ │ │ │ ├── AlbumScreen.kt │ │ │ │ ├── ArtistScreen.kt │ │ │ │ ├── ArtistsScreen.kt │ │ │ │ ├── MoodScreen.kt │ │ │ │ ├── PlaylistScreen.kt │ │ │ │ └── QuickPicsScreen.kt │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Typography.kt │ │ │ └── utils │ │ │ ├── FadingEdge.kt │ │ │ ├── GetPipedSession.kt │ │ │ ├── LanguageDestination.kt │ │ │ ├── LoadImage.kt │ │ │ ├── MonthlyPlaylist.kt │ │ │ └── Utils.kt │ │ └── main.kt │ └── github │ └── AndroidManifest.xml ├── crowdin.yml ├── extensions ├── innertube │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ ├── it │ │ │ └── fast4x │ │ │ │ └── innertube │ │ │ │ ├── Innertube.kt │ │ │ │ ├── YtMusic.kt │ │ │ │ ├── clients │ │ │ │ ├── YouTubeClient.kt │ │ │ │ ├── YouTubeContext.kt │ │ │ │ └── YouTubeLocale.kt │ │ │ │ ├── models │ │ │ │ ├── AccountInfo.kt │ │ │ │ ├── AccountMenuResponse.kt │ │ │ │ ├── BadgesRenderer.kt │ │ │ │ ├── BrowseResponse.kt │ │ │ │ ├── ButtonRenderer.kt │ │ │ │ ├── Context.kt │ │ │ │ ├── Continuation.kt │ │ │ │ ├── ContinuationResponse.kt │ │ │ │ ├── CreatePlaylistResponse.kt │ │ │ │ ├── Endpoint.kt │ │ │ │ ├── GetQueueResponse.kt │ │ │ │ ├── GetSearchSuggestionsResponse.kt │ │ │ │ ├── GridRenderer.kt │ │ │ │ ├── Icon.kt │ │ │ │ ├── MediaType.kt │ │ │ │ ├── Menu.kt │ │ │ │ ├── MusicCarouselShelfRenderer.kt │ │ │ │ ├── MusicEditablePlaylistDetailHeaderRenderer.kt │ │ │ │ ├── MusicNavigationButtonRenderer.kt │ │ │ │ ├── MusicPlaylistShelfRenderer.kt │ │ │ │ ├── MusicResponsiveHeaderRenderer.kt │ │ │ │ ├── MusicResponsiveListItemRenderer.kt │ │ │ │ ├── MusicShelfRenderer.kt │ │ │ │ ├── MusicTwoRowItemRenderer.kt │ │ │ │ ├── NavigationEndpoint.kt │ │ │ │ ├── NextResponse.kt │ │ │ │ ├── PipedResponse.kt │ │ │ │ ├── PlayerResponse.kt │ │ │ │ ├── PlaylistPanelVideoRenderer.kt │ │ │ │ ├── ResponseContext.kt │ │ │ │ ├── Runs.kt │ │ │ │ ├── SearchResponse.kt │ │ │ │ ├── SearchSuggestionsResponse.kt │ │ │ │ ├── SearchSuggestionsSectionRenderer.kt │ │ │ │ ├── SectionListRenderer.kt │ │ │ │ ├── SubscriptionButton.kt │ │ │ │ ├── Tabs.kt │ │ │ │ ├── Thumbnail.kt │ │ │ │ ├── ThumbnailRenderer.kt │ │ │ │ ├── Thumbnails.kt │ │ │ │ ├── bodies │ │ │ │ │ ├── AccountMenuBody.kt │ │ │ │ │ ├── BrowseBody.kt │ │ │ │ │ ├── BrowseBodyWithLocale.kt │ │ │ │ │ ├── ContinuationBody.kt │ │ │ │ │ ├── ContinuationBodyWithLocale.kt │ │ │ │ │ ├── CreatePlaylistBody.kt │ │ │ │ │ ├── EditPlaylistBody.kt │ │ │ │ │ ├── FormData.kt │ │ │ │ │ ├── LikeBody.kt │ │ │ │ │ ├── NextBody.kt │ │ │ │ │ ├── PlayerBody.kt │ │ │ │ │ ├── PlaylistDeleteBody.kt │ │ │ │ │ ├── QueueBody.kt │ │ │ │ │ ├── SearchBody.kt │ │ │ │ │ ├── SearchSuggestionsBody.kt │ │ │ │ │ └── SubscribeBody.kt │ │ │ │ └── v0624 │ │ │ │ │ ├── BrowseResponse0624.kt │ │ │ │ │ ├── charts │ │ │ │ │ └── BrowseChartsResponse0624.kt │ │ │ │ │ └── podcasts │ │ │ │ │ └── BrowsePodcastsResponse0624.kt │ │ │ │ ├── requests │ │ │ │ ├── AlbumPage.kt │ │ │ │ ├── ArtistInfoPage.kt │ │ │ │ ├── ArtistItemsContinuationPage.kt │ │ │ │ ├── ArtistItemsPage.kt │ │ │ │ ├── ArtistPage.kt │ │ │ │ ├── Browse.kt │ │ │ │ ├── ChartsPage.kt │ │ │ │ ├── ChartsPageComplete.kt │ │ │ │ ├── DiscoverPage.kt │ │ │ │ ├── HistoryPage.kt │ │ │ │ ├── HomePage.kt │ │ │ │ ├── ItemsPage.kt │ │ │ │ ├── LibraryContinuationPage.kt │ │ │ │ ├── LibraryPage.kt │ │ │ │ ├── Lyrics.kt │ │ │ │ ├── NewReleaseAlbumPage.kt │ │ │ │ ├── PlaylistContinuationPage.kt │ │ │ │ ├── PlaylistPage.kt │ │ │ │ ├── PodcastPage.kt │ │ │ │ ├── Queue.kt │ │ │ │ ├── RelatedPage.kt │ │ │ │ ├── RelatedSongs.kt │ │ │ │ ├── SearchPage.kt │ │ │ │ └── SearchSuggestions.kt │ │ │ │ └── utils │ │ │ │ ├── FromMusicResponsiveListItemRenderer.kt │ │ │ │ ├── FromMusicShelfRendererContent.kt │ │ │ │ ├── FromMusicTwoRowItemRenderer.kt │ │ │ │ ├── LocalePreferences.kt │ │ │ │ ├── PageHelper.kt │ │ │ │ ├── ProxyPreferences.kt │ │ │ │ ├── Utils.kt │ │ │ │ └── YoutubePreferences.kt │ │ │ └── me │ │ │ └── knighthat │ │ │ ├── common │ │ │ ├── HttpFetcher.kt │ │ │ ├── PublicInstances.kt │ │ │ └── response │ │ │ │ ├── AudioFormat.kt │ │ │ │ └── MediaFormatContainer.kt │ │ │ ├── invidious │ │ │ ├── Invidious.kt │ │ │ ├── request │ │ │ │ └── Player.kt │ │ │ └── response │ │ │ │ └── PlayerResponse.kt │ │ │ └── piped │ │ │ ├── Piped.kt │ │ │ ├── request │ │ │ └── Player.kt │ │ │ └── response │ │ │ └── PlayerResponse.kt │ │ └── test │ │ └── kotlin │ │ └── Test.kt ├── ktor-client-brotli │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── io │ │ └── ktor │ │ └── client │ │ └── plugins │ │ └── compression │ │ └── BrotliEncoder.kt ├── kugou │ ├── .gitignore │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── it │ │ │ └── fast4x │ │ │ └── kugou │ │ │ ├── KuGou.kt │ │ │ ├── Result.kt │ │ │ └── models │ │ │ ├── DownloadLyricsResponse.kt │ │ │ ├── SearchLyricsResponse.kt │ │ │ └── SearchSongResponse.kt │ │ └── test │ │ └── kotlin │ │ └── Test.kt └── lrclib │ ├── build.gradle.kts │ └── src │ └── main │ └── kotlin │ └── it │ └── fast4x │ └── lrclib │ ├── LrcLib.kt │ ├── models │ └── Track.kt │ └── utils │ ├── Coroutines.kt │ ├── ProxyPreferences.kt │ └── Serializers.kt ├── fastlane └── metadata │ └── android │ ├── af-ZA │ ├── full_description.txt │ └── short_description.txt │ ├── ar-SA │ ├── full_description.txt │ └── short_description.txt │ ├── az-AZ │ ├── full_description.txt │ └── short_description.txt │ ├── ba-RU │ ├── full_description.txt │ └── short_description.txt │ ├── bn-BD │ ├── full_description.txt │ └── short_description.txt │ ├── ca-ES │ ├── full_description.txt │ └── short_description.txt │ ├── cs-CZ │ ├── full_description.txt │ └── short_description.txt │ ├── da-DK │ ├── full_description.txt │ └── short_description.txt │ ├── de-DE │ ├── full_description.txt │ └── short_description.txt │ ├── el-GR │ ├── full_description.txt │ └── short_description.txt │ ├── en-US │ ├── changelogs │ │ ├── 100.txt │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 106.txt │ │ ├── 107.txt │ │ ├── 108.txt │ │ ├── 109.txt │ │ ├── 110.txt │ │ ├── 111.txt │ │ ├── 112.txt │ │ ├── 113.txt │ │ ├── 114.txt │ │ ├── 115.txt │ │ ├── 116.txt │ │ ├── 117.txt │ │ ├── 118.txt │ │ ├── 119.txt │ │ ├── 120.txt │ │ ├── 121.txt │ │ ├── 122.txt │ │ ├── 123.txt │ │ ├── 124.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 90.txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 93.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ ├── short_description.txt │ └── title.txt │ ├── eo-UY │ ├── full_description.txt │ └── short_description.txt │ ├── es-ES │ ├── full_description.txt │ └── short_description.txt │ ├── et-EE │ ├── full_description.txt │ └── short_description.txt │ ├── fa-IR │ ├── full_description.txt │ └── short_description.txt │ ├── fi-FI │ ├── full_description.txt │ └── short_description.txt │ ├── fil-PH │ ├── full_description.txt │ └── short_description.txt │ ├── fr-FR │ ├── full_description.txt │ └── short_description.txt │ ├── ga-IE │ ├── full_description.txt │ └── short_description.txt │ ├── gl-ES │ ├── full_description.txt │ └── short_description.txt │ ├── he-IL │ ├── full_description.txt │ └── short_description.txt │ ├── hi-IN │ ├── full_description.txt │ └── short_description.txt │ ├── hu-HU │ ├── full_description.txt │ └── short_description.txt │ ├── ia │ ├── full_description.txt │ └── short_description.txt │ ├── id-ID │ ├── full_description.txt │ └── short_description.txt │ ├── it-IT │ ├── full_description.txt │ └── short_description.txt │ ├── ja-JP │ ├── full_description.txt │ └── short_description.txt │ ├── ko-KR │ ├── full_description.txt │ └── short_description.txt │ ├── ml-IN │ ├── full_description.txt │ └── short_description.txt │ ├── nb-NO │ ├── full_description.txt │ └── short_description.txt │ ├── nl-NL │ ├── full_description.txt │ └── short_description.txt │ ├── or-IN │ ├── full_description.txt │ └── short_description.txt │ ├── pl-PL │ ├── full_description.txt │ └── short_description.txt │ ├── pt-BR │ ├── full_description.txt │ └── short_description.txt │ ├── pt-PT │ ├── full_description.txt │ └── short_description.txt │ ├── ro-RO │ ├── full_description.txt │ └── short_description.txt │ ├── ru-RU │ ├── full_description.txt │ └── short_description.txt │ ├── si-LK │ ├── full_description.txt │ └── short_description.txt │ ├── sr-CS │ ├── full_description.txt │ └── short_description.txt │ ├── sr-SP │ ├── full_description.txt │ └── short_description.txt │ ├── sv-SE │ ├── full_description.txt │ └── short_description.txt │ ├── ta-IN │ ├── full_description.txt │ └── short_description.txt │ ├── te-IN │ ├── full_description.txt │ └── short_description.txt │ ├── tr-TR │ ├── full_description.txt │ └── short_description.txt │ ├── uk-UA │ ├── full_description.txt │ └── short_description.txt │ ├── vi-VN │ ├── full_description.txt │ └── short_description.txt │ ├── zh-CN │ ├── full_description.txt │ └── short_description.txt │ └── zh-TW │ ├── full_description.txt │ └── short_description.txt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.aiexclude: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/get_developers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/.github/get_developers.py -------------------------------------------------------------------------------- /.github/workflows/build-all-flavors-weekly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/.github/workflows/build-all-flavors-weekly.yml -------------------------------------------------------------------------------- /.github/workflows/build-nightly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/.github/workflows/build-nightly.yaml -------------------------------------------------------------------------------- /.github/workflows/chores.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/.github/workflows/chores.yaml -------------------------------------------------------------------------------- /.github/workflows/close-issues-on-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/.github/workflows/close-issues-on-release.yaml -------------------------------------------------------------------------------- /.github/workflows/close-stale-tickets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/.github/workflows/close-stale-tickets.yaml -------------------------------------------------------------------------------- /.github/workflows/comment-on-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/.github/workflows/comment-on-label.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/.gitmodules -------------------------------------------------------------------------------- /.noai: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/README.md -------------------------------------------------------------------------------- /assets/design/app_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/assets/design/app_banner.png -------------------------------------------------------------------------------- /assets/design/ic_launcher_background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/assets/design/ic_launcher_background.svg -------------------------------------------------------------------------------- /assets/design/ic_launcher_background_round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/assets/design/ic_launcher_background_round.svg -------------------------------------------------------------------------------- /assets/design/ic_launcher_foreground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/assets/design/ic_launcher_foreground.svg -------------------------------------------------------------------------------- /assets/design/ic_launcher_monochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/assets/design/ic_launcher_monochrome.svg -------------------------------------------------------------------------------- /assets/get-it-on/Accrescent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/assets/get-it-on/Accrescent.png -------------------------------------------------------------------------------- /assets/get-it-on/AndroidFreeware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/assets/get-it-on/AndroidFreeware.png -------------------------------------------------------------------------------- /assets/get-it-on/F-Droid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/assets/get-it-on/F-Droid.png -------------------------------------------------------------------------------- /assets/get-it-on/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/assets/get-it-on/GitHub.png -------------------------------------------------------------------------------- /assets/get-it-on/IzzyOnDroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/assets/get-it-on/IzzyOnDroid.png -------------------------------------------------------------------------------- /assets/get-it-on/Obtainium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/assets/get-it-on/Obtainium.png -------------------------------------------------------------------------------- /assets/get-it-on/OpenAPK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/assets/get-it-on/OpenAPK.png -------------------------------------------------------------------------------- /composeApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/.gitignore -------------------------------------------------------------------------------- /composeApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/build.gradle.kts -------------------------------------------------------------------------------- /composeApp/debug-proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/debug-proguard-rules.pro -------------------------------------------------------------------------------- /composeApp/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/proguard-rules.pro -------------------------------------------------------------------------------- /composeApp/schemas/database.MusicDatabase/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/database.MusicDatabase/23.json -------------------------------------------------------------------------------- /composeApp/schemas/database.MusicDatabaseConstructor/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/database.MusicDatabaseConstructor/23.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/1.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/10.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/11.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/12.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/13.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/14.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/15.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/16.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/17.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/18.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/19.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/2.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/20.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/21.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/22.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/23.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/24.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/25.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/26.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/27.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/28.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/3.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/4.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/5.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/6.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/7.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/8.json -------------------------------------------------------------------------------- /composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/schemas/it.fast4x.rimusic.DatabaseInitializer/9.json -------------------------------------------------------------------------------- /composeApp/src/androidDebug/res/raw/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidDebug/res/raw/release_notes.txt -------------------------------------------------------------------------------- /composeApp/src/androidDebug/res/xml-v25/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidDebug/res/xml-v25/shortcuts.xml -------------------------------------------------------------------------------- /composeApp/src/androidFdroid/kotlin/me/knighthat/updater/UpdateHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidFdroid/kotlin/me/knighthat/updater/UpdateHandler.kt -------------------------------------------------------------------------------- /composeApp/src/androidGithub/kotlin/me/knighthat/updater/GithubRelease.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidGithub/kotlin/me/knighthat/updater/GithubRelease.kt -------------------------------------------------------------------------------- /composeApp/src/androidGithub/kotlin/me/knighthat/updater/UpdateHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidGithub/kotlin/me/knighthat/updater/UpdateHandler.kt -------------------------------------------------------------------------------- /composeApp/src/androidGithub/kotlin/me/knighthat/updater/Updater.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidGithub/kotlin/me/knighthat/updater/Updater.kt -------------------------------------------------------------------------------- /composeApp/src/androidGithub/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidGithub/res/xml/provider_paths.xml -------------------------------------------------------------------------------- /composeApp/src/androidIzzy/kotlin/me/knighthat/updater/UpdateHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidIzzy/kotlin/me/knighthat/updater/UpdateHandler.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/app/kreate/android/Preferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/app/kreate/android/Preferences.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/app/kreate/android/constant/Speed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/app/kreate/android/constant/Speed.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/app/kreate/android/di/CacheModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/app/kreate/android/di/CacheModule.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/app/kreate/android/di/DownloadModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/app/kreate/android/di/DownloadModule.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/app/kreate/android/di/PlayerModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/app/kreate/android/di/PlayerModule.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/app/kreate/android/drawable/AppIcon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/app/kreate/android/drawable/AppIcon.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/app/kreate/android/service/Discord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/app/kreate/android/service/Discord.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/app/kreate/android/utils/BitmapUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/app/kreate/android/utils/BitmapUtils.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/app/kreate/android/utils/CharUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/app/kreate/android/utils/CharUtils.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/app/kreate/android/utils/ItemUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/app/kreate/android/utils/ItemUtils.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/app/kreate/android/utils/PageUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/app/kreate/android/utils/PageUtils.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/app/kreate/android/utils/UriUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/app/kreate/android/utils/UriUtils.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/app/kreate/android/widget/Widget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/app/kreate/android/widget/Widget.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/compose/persist/Persist.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/compose/persist/Persist.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/compose/persist/PersistMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/compose/persist/PersistMap.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/compose/persist/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/compose/persist/Utils.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/compose/reordering/Reorder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/compose/reordering/Reorder.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/Database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/Database.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/GlobalVars.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/GlobalVars.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/MainActivity.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/MainApplication.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/AlbumSortBy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/AlbumSortBy.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/AlbumsType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/AlbumsType.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/ArtistSortBy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/ArtistSortBy.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/ArtistsType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/ArtistsType.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/ButtonState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/ButtonState.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/CacheType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/CacheType.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/CarousalSize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/CarousalSize.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/DeviceLists.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/DeviceLists.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/DragAnchors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/DragAnchors.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/Drawable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/Drawable.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/Durations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/Durations.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/FilterBy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/FilterBy.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/FontType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/FontType.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/HistoryType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/HistoryType.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/HomeItemSize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/HomeItemSize.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/LogType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/LogType.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/LyricsColor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/LyricsColor.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/MaxSongs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/MaxSongs.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/MenuStyle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/MenuStyle.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/MoodType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/MoodType.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/NavRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/NavRoutes.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/PipModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/PipModule.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/PlayerType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/PlayerType.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/PopupType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/PopupType.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/PresetReverb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/PresetReverb.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/QueueType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/QueueType.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/Romanization.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/Romanization.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/SearchType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/SearchType.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/SongSortBy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/SongSortBy.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/SongsNumber.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/SongsNumber.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/SortOrder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/SortOrder.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/Statistics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/Statistics.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/UiType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/enums/UiType.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/models/Info.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/models/Info.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/models/Mood.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/models/Mood.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/ui/components/Menu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/ui/components/Menu.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/ui/styling/Hsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/ui/styling/Hsl.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/AudioUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/AudioUtils.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Bundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Bundle.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Cache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Cache.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/CaptureCrash.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/CaptureCrash.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/ClipBoard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/ClipBoard.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Context.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Context.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Discover.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Discover.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/DrawScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/DrawScope.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/DropShadow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/DropShadow.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/FadingEdge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/FadingEdge.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/FileUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/FileUtils.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/IPChecker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/IPChecker.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/LikeState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/LikeState.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Modifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Modifier.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/MonetCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/MonetCompat.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/PinchToggle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/PinchToggle.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Player.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Player.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/PlayerState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/PlayerState.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Preferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Preferences.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Resource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Resource.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/RingBuffer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/RingBuffer.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/TextStyle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/TextStyle.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/TimerJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/TimerJob.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/it/fast4x/rimusic/utils/Utils.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/component/FolderItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/component/FolderItem.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/component/RenameDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/component/RenameDialog.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/component/ResetCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/component/ResetCache.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/component/dialog/Dialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/component/dialog/Dialog.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/component/menu/GridMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/component/menu/GridMenu.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/component/menu/ListMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/component/menu/ListMenu.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/component/tab/Locator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/component/tab/Locator.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/component/tab/Radio.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/component/tab/Radio.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/database/AlbumTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/database/AlbumTable.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/database/ArtistTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/database/ArtistTable.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/database/Converters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/database/Converters.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/database/EventTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/database/EventTable.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/database/FormatTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/database/FormatTable.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/database/LyricsTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/database/LyricsTable.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/database/PlaylistTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/database/PlaylistTable.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/database/SongTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/database/SongTable.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/enums/TextView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/enums/TextView.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/impl/DownloadHelperImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/impl/DownloadHelperImpl.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/sync/YouTubeSync.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/sync/YouTubeSync.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/utils/DurationUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/utils/DurationUtils.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/utils/ImageProcessor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/utils/ImageProcessor.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/utils/OnDeviceMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/utils/OnDeviceMedia.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/utils/PathUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/utils/PathUtils.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/utils/PropUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/utils/PropUtils.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/utils/Repository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/utils/Repository.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/utils/TimeDateUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/utils/TimeDateUtils.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/utils/Toaster.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/utils/Toaster.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/kotlin/me/knighthat/utils/csv/SongCSV.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/kotlin/me/knighthat/utils/csv/SongCSV.kt -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-anydpi/locked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-anydpi/locked.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-anydpi/repeat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-anydpi/repeat.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-anydpi/search_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-anydpi/search_circle.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-anydpi/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-anydpi/settings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-anydpi/translate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-anydpi/translate.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-anydpi/unlocked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-anydpi/unlocked.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-nodpi/a13shape.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-nodpi/a13shape.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-nodpi/ghost_orange.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-nodpi/ghost_orange.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-nodpi/ghost_red.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-nodpi/ghost_red.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-nodpi/ghost_reverse.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-nodpi/ghost_reverse.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-nodpi/preset0.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-nodpi/preset0.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-nodpi/preset1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-nodpi/preset1.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-nodpi/preset2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-nodpi/preset2.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-nodpi/preset3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-nodpi/preset3.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-nodpi/preset4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-nodpi/preset4.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-nodpi/preset5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-nodpi/preset5.webp -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable-nodpi/vinyl_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable-nodpi/vinyl_background.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/add_in_playlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/add_in_playlist.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/album.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/album.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/alert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/alert.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/alert_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/alert_circle.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/alert_circle_not_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/alert_circle_not_filled.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/alternative_version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/alternative_version.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/app_icon_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/app_icon_monochrome.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/app_logo_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/app_logo_text.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/arrow_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/arrow_down.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/arrow_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/arrow_forward.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/arrow_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/arrow_left.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/arrow_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/arrow_right.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/arrow_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/arrow_up.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/artist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/artist.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/artists_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/artists_edit.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/backspace_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/backspace_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/bookmark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/bookmark.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/bookmark_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/bookmark_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/burger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/burger.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/calendar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/calendar.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/calendar_clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/calendar_clear.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/cd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/cd.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/checked_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/checked_filled.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/checkmark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/checkmark.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/chevron_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/chevron_back.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/chevron_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/chevron_down.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/chevron_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/chevron_forward.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/chevron_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/chevron_up.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/close.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/color_palette.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/color_palette.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/copy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/copy.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/cover_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/cover_edit.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/crown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/crown.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/devices.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/devices.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/dice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/dice.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/discord_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/discord_logo.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/download.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/download_cover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/download_cover.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/download_progress.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/download_progress.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/downloaded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/downloaded.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/drop_blur.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/drop_blur.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/drop_half_fill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/drop_half_fill.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/droplet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/droplet.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/ellipsis_horizontal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/ellipsis_horizontal.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/ellipsis_vertical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/ellipsis_vertical.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/enqueue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/enqueue.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/equalizer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/equalizer.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/explicit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/explicit.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/export_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/export_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/eye.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/eye.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/eye_off.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/eye_off.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/featured_playlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/featured_playlist.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/folder.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/git_pull_request_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/git_pull_request_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/github_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/github_logo.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/globe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/globe.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart_apple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart_apple.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart_apple_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart_apple_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart_breaked_no.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart_breaked_no.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart_breaked_yes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart_breaked_yes.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart_brilliant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart_brilliant.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart_brilliant_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart_brilliant_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart_dislike.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart_dislike.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart_gift.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart_gift.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart_gift_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart_gift_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart_shape.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart_shape_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart_shape_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart_striped.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart_striped.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/heart_striped_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/heart_striped_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/history.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/horizontal_bold_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/horizontal_bold_line.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/horizontal_straight_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/horizontal_straight_line.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/ic_banner_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/ic_banner_foreground.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/image.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/images_sharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/images_sharp.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/import_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/import_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/infinite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/infinite.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/information.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/information.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/library.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/library.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/link.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/loader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/loader.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/locate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/locate.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/logo_youtube.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/logo_youtube.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/master_volume.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/master_volume.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/maximize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/maximize.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/medical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/medical.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/menu.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/musical_notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/musical_notes.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/newspaper_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/newspaper_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/noimage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/noimage.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/open.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/open.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/pause.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/pencil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/pencil.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/people.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/people.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/person.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/person.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/pin_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/pin_filled.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/play.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/play_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/play_forward.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/play_skip_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/play_skip_back.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/play_skip_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/play_skip_forward.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/playbackduration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/playbackduration.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/player_horizontal_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/player_horizontal_widget.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/player_vertical_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/player_vertical_widget.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/playlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/playlist.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/podcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/podcast.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/position.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/position.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/query_stats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/query_stats.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/radio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/radio.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/random.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/random.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/refresh_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/refresh_circle.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/reorder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/reorder.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/repeatone.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/repeatone.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/resize.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/resize.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/restart_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/restart_player.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/search.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/server.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/share_social.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/share_social.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/shield_checkmark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/shield_checkmark.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/shuffle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/shuffle.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/shuffle_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/shuffle_filled.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/sleep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/sleep.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/slow_motion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/slow_motion.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/smart_shuffle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/smart_shuffle.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/song_lyrics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/song_lyrics.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/sound_effect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/sound_effect.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/sparkles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/sparkles.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/speedometer_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/speedometer_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/star_brilliant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/star_brilliant.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/stat_3months.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/stat_3months.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/stat_6months.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/stat_6months.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/stat_month.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/stat_month.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/stat_today.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/stat_today.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/stat_week.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/stat_week.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/stat_year.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/stat_year.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/stats_chart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/stats_chart.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/swap_vertical_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/swap_vertical_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/sync.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/text.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/time.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/title_edit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/title_edit.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/trash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/trash.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/trending.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/trending.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/ui.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/unchecked_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/unchecked_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/up_right_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/up_right_arrow.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/update.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/video.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/video.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/volume_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/volume_up.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/warning_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/warning_outline.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/drawable/ytmusic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/drawable/ytmusic.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/font/pac_font.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/font/pac_font.TTF -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/font/poppins_w300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/font/poppins_w300.ttf -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/font/poppins_w400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/font/poppins_w400.ttf -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/font/poppins_w500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/font/poppins_w500.ttf -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/font/poppins_w600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/font/poppins_w600.ttf -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/font/poppins_w700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/font/poppins_w700.ttf -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/font/rubik_w300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/font/rubik_w300.ttf -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/font/rubik_w400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/font/rubik_w400.ttf -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/font/rubik_w500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/font/rubik_w500.ttf -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/font/rubik_w600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/font/rubik_w600.ttf -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/font/rubik_w700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/font/rubik_w700.ttf -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-hdpi/ic_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-hdpi/ic_banner.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-mdpi/ic_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-mdpi/ic_banner.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xhdpi/ic_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-xhdpi/ic_banner.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxhdpi/ic_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_banner.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_banner.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/raw/contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/raw/contributors.json -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/raw/licenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/raw/licenses.json -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/raw/po_token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/raw/po_token.html -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/raw/translators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/raw/translators.json -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/resources.properties: -------------------------------------------------------------------------------- 1 | unqualifiedResLocale=en -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-af-rZA/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-af-rZA/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-af-rZA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-af-rZA/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ar-rSA/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ar-rSA/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ar-rSA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ar-rSA/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-az-rAZ/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-az-rAZ/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-az-rAZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-az-rAZ/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-b+sr+Latn/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-b+sr+Latn/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-b+sr+Latn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-b+sr+Latn/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ba-rRU/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ba-rRU/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ba-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ba-rRU/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-bn-rBD/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-bn-rBD/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-bn-rBD/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-bn-rBD/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ca-rES/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ca-rES/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ca-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ca-rES/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-cs-rCZ/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-cs-rCZ/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-cs-rCZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-cs-rCZ/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-da-rDK/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-da-rDK/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-da-rDK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-da-rDK/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-de-rDE/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-de-rDE/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-de-rDE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-de-rDE/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-el-rGR/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-el-rGR/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-el-rGR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-el-rGR/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-eo-rUY/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-eo-rUY/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-eo-rUY/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-eo-rUY/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-es-rES/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-es-rES/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-es-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-es-rES/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-et-rEE/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-et-rEE/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-et-rEE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-et-rEE/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-fa-rIR/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-fa-rIR/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-fa-rIR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-fa-rIR/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-fi-rFI/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-fi-rFI/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-fi-rFI/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-fi-rFI/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-fil-rPH/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-fil-rPH/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-fil-rPH/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-fil-rPH/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-fr-rFR/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-fr-rFR/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-fr-rFR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-fr-rFR/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ga-rIE/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ga-rIE/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ga-rIE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ga-rIE/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-gl-rES/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-gl-rES/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-gl-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-gl-rES/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-hi-rIN/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-hi-rIN/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-hi-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-hi-rIN/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-hu-rHU/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-hu-rHU/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-hu-rHU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-hu-rHU/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ia/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ia/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ia/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ia/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-in-rID/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-in-rID/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-in-rID/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-in-rID/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-it-rIT/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-it-rIT/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-it-rIT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-it-rIT/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-iw-rIL/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-iw-rIL/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-iw-rIL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-iw-rIL/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ja-rJP/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ja-rJP/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ja-rJP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ja-rJP/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ko-rKR/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ko-rKR/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ko-rKR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ko-rKR/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ml-rIN/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ml-rIN/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ml-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ml-rIN/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-nb-rNO/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-nb-rNO/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-nb-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-nb-rNO/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-night-v29/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-night-v29/themes.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-night/themes.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-nl-rNL/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-nl-rNL/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-nl-rNL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-nl-rNL/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-or-rIN/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-or-rIN/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-or-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-or-rIN/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-pl-rPL/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-pl-rPL/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-pl-rPL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-pl-rPL/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-pt-rBR/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-pt-rBR/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-pt-rPT/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-pt-rPT/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ro-rRO/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ro-rRO/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ro-rRO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ro-rRO/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ru-rRU/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ru-rRU/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ru-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ru-rRU/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-si-rLK/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-si-rLK/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-si-rLK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-si-rLK/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-sr/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-sr/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-sr/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-sv-rSE/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-sv-rSE/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-sv-rSE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-sv-rSE/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ta-rIN/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ta-rIN/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-ta-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-ta-rIN/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-te-rIN/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-te-rIN/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-te-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-te-rIN/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-tr-rTR/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-tr-rTR/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-tr-rTR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-tr-rTR/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-uk-rUA/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-uk-rUA/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-uk-rUA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-uk-rUA/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-vi-rVN/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-vi-rVN/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-vi-rVN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-vi-rVN/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-zh-rCN/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-zh-rCN/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-zh-rTW/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-zh-rTW/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values/colors.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values/plurals.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/values/themes.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/xml-v25/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/xml-v25/shortcuts.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/xml/automotive_app_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/xml/automotive_app_desc.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/xml/player_horizontal_widget_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/xml/player_horizontal_widget_info.xml -------------------------------------------------------------------------------- /composeApp/src/androidMain/res/xml/player_vertical_widget_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/androidMain/res/xml/player_vertical_widget_info.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-af-rZA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-af-rZA/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-ar-rSA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-ar-rSA/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-az-rAZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-az-rAZ/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-ba-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-ba-rRU/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-bn-rBD/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-bn-rBD/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-ca-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-ca-rES/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-cs-rCZ/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-cs-rCZ/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-da-rDK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-da-rDK/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-de-rDE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-de-rDE/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-el-rGR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-el-rGR/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-eo-rUY/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-eo-rUY/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-es-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-es-rES/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-et-rEE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-et-rEE/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-fa-rIR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-fa-rIR/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-fi-rFI/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-fi-rFI/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-fil-rPH/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-fil-rPH/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-fr-rFR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-fr-rFR/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-ga-rIE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-ga-rIE/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-gl-rES/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-gl-rES/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-hi-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-hi-rIN/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-hu-rHU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-hu-rHU/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-ia/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-ia/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-in-rID/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-in-rID/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-it-rIT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-it-rIT/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-iw-rIL/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-ja-rJP/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-ja-rJP/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-ko-rKR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-ko-rKR/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-ml-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-ml-rIN/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-nb-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-nb-rNO/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-nl-rNL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-nl-rNL/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-or-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-or-rIN/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-pl-rPL/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-pl-rPL/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-ro-rRO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-ro-rRO/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-ru-rRU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-ru-rRU/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-si-rLK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-si-rLK/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-sr-rCS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-sr-rCS/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-sr/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-sv-rSE/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-sv-rSE/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-ta-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-ta-rIN/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-te-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-te-rIN/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-tr-rTR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-tr-rTR/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-uk-rUA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-uk-rUA/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-vi-rVN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-vi-rVN/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/app/kreate/constant/Language.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/kotlin/app/kreate/constant/Language.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/app/kreate/constant/SortCategory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/kotlin/app/kreate/constant/SortCategory.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/app/kreate/database/models/Album.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/kotlin/app/kreate/database/models/Album.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/app/kreate/database/models/Artist.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/kotlin/app/kreate/database/models/Artist.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/app/kreate/database/models/Event.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/kotlin/app/kreate/database/models/Event.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/app/kreate/database/models/Format.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/kotlin/app/kreate/database/models/Format.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/app/kreate/database/models/Lyrics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/kotlin/app/kreate/database/models/Lyrics.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/app/kreate/database/models/Song.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/kotlin/app/kreate/database/models/Song.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/app/kreate/util/DurationUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/kotlin/app/kreate/util/DurationUtil.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/app/kreate/util/PrefixUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/kotlin/app/kreate/util/PrefixUtils.kt -------------------------------------------------------------------------------- /composeApp/src/commonMain/kotlin/app/kreate/util/ThumbnailUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonMain/kotlin/app/kreate/util/ThumbnailUtils.kt -------------------------------------------------------------------------------- /composeApp/src/commonTest/kotlin/app/kreate/constant/LanguageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonTest/kotlin/app/kreate/constant/LanguageTest.kt -------------------------------------------------------------------------------- /composeApp/src/commonTest/kotlin/app/kreate/util/DurationUtlTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/commonTest/kotlin/app/kreate/util/DurationUtlTest.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/database/getMusicDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/desktopMain/kotlin/database/getMusicDatabase.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/Platform.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/Platform.jvm.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/enums/FontType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/enums/FontType.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/enums/Locales.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/enums/Locales.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/enums/PageType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/enums/PageType.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/items/Items.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/items/Items.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/ui/DesktopApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/ui/DesktopApp.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/ui/theme/Color.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/ui/theme/Theme.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/utils/LoadImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/utils/LoadImage.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/utils/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/desktopMain/kotlin/it/fast4x/rimusic/utils/Utils.kt -------------------------------------------------------------------------------- /composeApp/src/desktopMain/kotlin/main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/desktopMain/kotlin/main.kt -------------------------------------------------------------------------------- /composeApp/src/github/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/composeApp/src/github/AndroidManifest.xml -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/crowdin.yml -------------------------------------------------------------------------------- /extensions/innertube/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /extensions/innertube/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/extensions/innertube/build.gradle.kts -------------------------------------------------------------------------------- /extensions/innertube/src/main/kotlin/it/fast4x/innertube/Innertube.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/extensions/innertube/src/main/kotlin/it/fast4x/innertube/Innertube.kt -------------------------------------------------------------------------------- /extensions/innertube/src/main/kotlin/it/fast4x/innertube/YtMusic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/extensions/innertube/src/main/kotlin/it/fast4x/innertube/YtMusic.kt -------------------------------------------------------------------------------- /extensions/innertube/src/main/kotlin/me/knighthat/piped/Piped.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/extensions/innertube/src/main/kotlin/me/knighthat/piped/Piped.kt -------------------------------------------------------------------------------- /extensions/innertube/src/test/kotlin/Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/extensions/innertube/src/test/kotlin/Test.kt -------------------------------------------------------------------------------- /extensions/ktor-client-brotli/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /extensions/ktor-client-brotli/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/extensions/ktor-client-brotli/build.gradle.kts -------------------------------------------------------------------------------- /extensions/kugou/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /extensions/kugou/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/extensions/kugou/build.gradle.kts -------------------------------------------------------------------------------- /extensions/kugou/src/main/kotlin/it/fast4x/kugou/KuGou.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/extensions/kugou/src/main/kotlin/it/fast4x/kugou/KuGou.kt -------------------------------------------------------------------------------- /extensions/kugou/src/main/kotlin/it/fast4x/kugou/Result.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/extensions/kugou/src/main/kotlin/it/fast4x/kugou/Result.kt -------------------------------------------------------------------------------- /extensions/kugou/src/test/kotlin/Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/extensions/kugou/src/test/kotlin/Test.kt -------------------------------------------------------------------------------- /extensions/lrclib/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/extensions/lrclib/build.gradle.kts -------------------------------------------------------------------------------- /extensions/lrclib/src/main/kotlin/it/fast4x/lrclib/LrcLib.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/extensions/lrclib/src/main/kotlin/it/fast4x/lrclib/LrcLib.kt -------------------------------------------------------------------------------- /extensions/lrclib/src/main/kotlin/it/fast4x/lrclib/models/Track.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/extensions/lrclib/src/main/kotlin/it/fast4x/lrclib/models/Track.kt -------------------------------------------------------------------------------- /extensions/lrclib/src/main/kotlin/it/fast4x/lrclib/utils/Coroutines.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/extensions/lrclib/src/main/kotlin/it/fast4x/lrclib/utils/Coroutines.kt -------------------------------------------------------------------------------- /fastlane/metadata/android/af-ZA/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/af-ZA/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/af-ZA/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/af-ZA/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar-SA/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ar-SA/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar-SA/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ar-SA/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/az-AZ/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/az-AZ/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/az-AZ/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/az-AZ/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ba-RU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ba-RU/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ba-RU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ba-RU/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/bn-BD/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/bn-BD/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/bn-BD/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/bn-BD/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ca-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ca-ES/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ca-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ca-ES/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/cs-CZ/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/cs-CZ/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/da-DK/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/da-DK/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/da-DK/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/da-DK/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/de-DE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/de-DE/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/el-GR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/el-GR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/100.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/101.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/102.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/103.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/104.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/105.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/106.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/107.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/108.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/109.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/110.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/111.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/112.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/112.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/113.txt: -------------------------------------------------------------------------------- 1 | Fixed: 2 | - App crashed when queue contained empty duration -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/114.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/114.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/115.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/115.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/116.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/116.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/117.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/117.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/118.txt: -------------------------------------------------------------------------------- 1 | Fixed: 2 | - App crashed on start up when logged in #676 -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/119.txt: -------------------------------------------------------------------------------- 1 | Fixed: 2 | - App crashed on start up when logged in #676 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/120.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/121.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/121.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/122.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/122.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/123.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/123.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/124.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/124.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/87.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/88.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/89.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/90.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/90.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/91.txt: -------------------------------------------------------------------------------- 1 | Fixed: 2 | - "No update available" constantly popping up 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/92.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/93.txt: -------------------------------------------------------------------------------- 1 | Fixed: 2 | - Android Auto failed to load -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/94.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/95.txt: -------------------------------------------------------------------------------- 1 | Fixed: 2 | - Unresponsive sort arrow -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/96.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/97.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/98.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/98.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/changelogs/99.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/7.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/8.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/9.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Kreate 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/eo-UY/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/eo-UY/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/eo-UY/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/eo-UY/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/es-ES/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/es-ES/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/et-EE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/et-EE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/et-EE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/et-EE/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fa-IR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/fa-IR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fa-IR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/fa-IR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/fi-FI/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/fi-FI/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fil-PH/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/fil-PH/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fil-PH/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/fil-PH/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/fr-FR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/fr-FR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ga-IE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ga-IE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ga-IE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ga-IE/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/gl-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/gl-ES/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/gl-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/gl-ES/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/he-IL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/he-IL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/he-IL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/he-IL/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/hi-IN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/hi-IN/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/hu-HU/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/hu-HU/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ia/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ia/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ia/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ia/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/id-ID/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/id-ID/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/id-ID/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/id-ID/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/it-IT/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/it-IT/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ja-JP/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ja-JP/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ko-KR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ko-KR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ml-IN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ml-IN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ml-IN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ml-IN/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nb-NO/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/nb-NO/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nb-NO/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/nb-NO/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/nl-NL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/nl-NL/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/or-IN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/or-IN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/or-IN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/or-IN/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/pl-PL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/pl-PL/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/pt-BR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/pt-BR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/pt-PT/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/pt-PT/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ro-RO/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ro-RO/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ro-RO/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ro-RO/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ru-RU/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ru-RU/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/si-LK/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/si-LK/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/si-LK/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/si-LK/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sr-CS/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/sr-CS/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sr-CS/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/sr-CS/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sr-SP/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/sr-SP/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sr-SP/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/sr-SP/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/sv-SE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/sv-SE/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ta-IN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ta-IN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ta-IN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/ta-IN/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/te-IN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/te-IN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/te-IN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/te-IN/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/tr-TR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/short_description.txt: -------------------------------------------------------------------------------- 1 | Android için çok dilli, performans odaklı bir YouTube Music ön yüzü. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uk-UA/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/uk-UA/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/uk-UA/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/uk-UA/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/vi-VN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/vi-VN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/vi-VN/short_description.txt: -------------------------------------------------------------------------------- 1 | Trình nghe nhạc YouTube Music, ưu tiên hiệu năng. 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/zh-CN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/zh-CN/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/zh-TW/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/fastlane/metadata/android/zh-TW/short_description.txt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knighthat/Kreate/HEAD/settings.gradle.kts --------------------------------------------------------------------------------