Full Code of 1RandomDev/showly-oss for AI

master 8f8e2754e232 cached
2285 files
33.3 MB
1.3M tokens
1 requests
Download .txt
Showing preview only (5,476K chars total). Download the full file or copy to clipboard to get everything.
Repository: 1RandomDev/showly-oss
Branch: master
Commit: 8f8e2754e232
Files: 2285
Total size: 33.3 MB

Directory structure:
gitextract_7hdornwr/

├── .editorconfig
├── .github/
│   └── ISSUE_TEMPLATE/
│       └── bug-problem-report.md
├── .gitignore
├── LICENSE
├── README.md
├── app/
│   ├── .gitignore
│   ├── build.gradle
│   ├── proguard-rules.pro
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── assets/
│       │   │   └── release_notes.txt
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── showly_oss/
│       │   │               ├── App.kt
│       │   │               ├── di/
│       │   │               │   └── module/
│       │   │               │       ├── PreferencesModule.kt
│       │   │               │       ├── ServicesModule.kt
│       │   │               │       └── WorkModule.kt
│       │   │               ├── fcm/
│       │   │               │   └── FcmExtra.kt
│       │   │               ├── ui/
│       │   │               │   ├── BaseActivity.kt
│       │   │               │   ├── main/
│       │   │               │   │   ├── MainActivity.kt
│       │   │               │   │   ├── MainUiState.kt
│       │   │               │   │   ├── MainViewModel.kt
│       │   │               │   │   ├── cases/
│       │   │               │   │   │   ├── MainAnnouncementsCase.kt
│       │   │               │   │   │   ├── MainClearingCase.kt
│       │   │               │   │   │   ├── MainInitialsCase.kt
│       │   │               │   │   │   ├── MainModesCase.kt
│       │   │               │   │   │   ├── MainRateAppCase.kt
│       │   │               │   │   │   ├── MainSettingsCase.kt
│       │   │               │   │   │   ├── MainTipsCase.kt
│       │   │               │   │   │   ├── MainTraktCase.kt
│       │   │               │   │   │   └── deeplink/
│       │   │               │   │   │       ├── ImdbDeepLinkCase.kt
│       │   │               │   │   │       ├── MainDeepLinksCase.kt
│       │   │               │   │   │       ├── TmdbDeepLinkCase.kt
│       │   │               │   │   │       └── TraktDeepLinkCase.kt
│       │   │               │   │   └── delegates/
│       │   │               │   │       └── TipsDelegate.kt
│       │   │               │   └── views/
│       │   │               │       ├── BottomMenuView.kt
│       │   │               │       ├── WelcomeLanguageView.kt
│       │   │               │       ├── WelcomeNoteView.kt
│       │   │               │       └── WhatsNewView.kt
│       │   │               └── utilities/
│       │   │                   └── deeplink/
│       │   │                       ├── DeepLinkBundle.kt
│       │   │                       ├── DeepLinkResolver.kt
│       │   │                       ├── DeepLinkSource.kt
│       │   │                       └── resolvers/
│       │   │                           ├── ImdbSourceResolver.kt
│       │   │                           ├── SourceResolver.kt
│       │   │                           ├── TmdbSourceResolver.kt
│       │   │                           └── TraktSourceResolver.kt
│       │   ├── play/
│       │   │   └── release-notes/
│       │   │       └── en-GB/
│       │   │           └── default.txt
│       │   └── res/
│       │       ├── drawable/
│       │       │   ├── bg_dialog.xml
│       │       │   ├── ic_eye_off.xml
│       │       │   ├── ic_languages.xml
│       │       │   ├── ic_launcher_foreground.xml
│       │       │   ├── ic_launcher_mono.xml
│       │       │   └── selector_bottom_menu.xml
│       │       ├── layout/
│       │       │   ├── activity_main.xml
│       │       │   ├── view_bottom_menu.xml
│       │       │   ├── view_welcome_language.xml
│       │       │   ├── view_welcome_note.xml
│       │       │   └── view_whats_new.xml
│       │       ├── menu/
│       │       │   └── bottom_navigation_menu.xml
│       │       ├── mipmap-anydpi-v26/
│       │       │   ├── ic_launcher.xml
│       │       │   └── ic_launcher_round.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   ├── ic_launcher_background.xml
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   └── dimens.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       ├── values-zh/
│       │       │   └── strings.xml
│       │       └── xml/
│       │           ├── locales_config.xml
│       │           └── shortcuts.xml
│       └── test/
│           └── java/
│               ├── BaseMockTest.kt
│               └── com/
│                   └── michaldrabik/
│                       └── showly_oss/
│                           └── ui/
│                               └── main/
│                                   └── cases/
│                                       ├── MainRateAppCaseTest.kt
│                                       └── MainTipsCaseTest.kt
├── assets/
│   ├── codestyle.xml
│   ├── graphics/
│   │   ├── video_preview_feature_graphic.xcf
│   │   └── web_feature_graphic.xcf
│   └── screenshots/
│       └── screenshots.xcf
├── build.gradle
├── common/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── debug/
│       │   └── java/
│       │       └── com/
│       │           └── michaldrabik/
│       │               └── common/
│       │                   └── ConfigVariant.kt
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   └── java/
│       │       └── com/
│       │           └── michaldrabik/
│       │               └── common/
│       │                   ├── Config.kt
│       │                   ├── Mode.kt
│       │                   ├── di/
│       │                   │   └── CommonBindingModule.kt
│       │                   ├── dispatchers/
│       │                   │   ├── CoroutineDispatchers.kt
│       │                   │   └── DefaultCoroutineDispatchers.kt
│       │                   ├── errors/
│       │                   │   ├── ErrorHelper.kt
│       │                   │   └── ShowlyError.kt
│       │                   └── extensions/
│       │                       └── DateExtensions.kt
│       └── release/
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── common/
│                           └── ConfigVariant.kt
├── common-test/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── common_test/
│                           ├── MainDispatcherRule.kt
│                           └── UnconfinedCoroutineDispatchers.kt
├── crowdin.yml
├── data-local/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── androidTest/
│       │   └── java/
│       │       └── com/
│       │           └── michaldrabik/
│       │               └── data_local/
│       │                   └── database/
│       │                       └── dao/
│       │                           ├── BaseDaoTest.kt
│       │                           ├── DiscoverShowsDaoTest.kt
│       │                           ├── EpisodesDaoTest.kt
│       │                           ├── EpisodesSyncLogDaoTest.kt
│       │                           ├── MyShowsDaoTest.kt
│       │                           ├── RecentSearchDaoTest.kt
│       │                           ├── RelatedShowsDaoTest.kt
│       │                           ├── SeasonsDaoTest.kt
│       │                           ├── SettingsDaoTest.kt
│       │                           ├── ShowImagesDaoTest.kt
│       │                           ├── ShowsDaoTest.kt
│       │                           ├── UserDaoTest.kt
│       │                           ├── WatchlistShowsDaoTest.kt
│       │                           ├── converters/
│       │                           │   └── DateConverterTest.kt
│       │                           └── helpers/
│       │                               └── TestData.kt
│       └── main/
│           ├── AndroidManifest.xml
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── data_local/
│                           ├── LocalDataSource.kt
│                           ├── database/
│                           │   ├── AppDatabase.kt
│                           │   ├── converters/
│                           │   │   └── DateConverter.kt
│                           │   ├── dao/
│                           │   │   ├── ArchiveMoviesDao.kt
│                           │   │   ├── ArchiveShowsDao.kt
│                           │   │   ├── BaseDao.kt
│                           │   │   ├── CustomImagesDao.kt
│                           │   │   ├── CustomListsDao.kt
│                           │   │   ├── CustomListsItemsDao.kt
│                           │   │   ├── DiscoverMoviesDao.kt
│                           │   │   ├── DiscoverShowsDao.kt
│                           │   │   ├── EpisodeTranslationsDao.kt
│                           │   │   ├── EpisodesDao.kt
│                           │   │   ├── EpisodesSyncLogDao.kt
│                           │   │   ├── MovieCollectionsDao.kt
│                           │   │   ├── MovieCollectionsItemsDao.kt
│                           │   │   ├── MovieImagesDao.kt
│                           │   │   ├── MovieRatingsDao.kt
│                           │   │   ├── MovieStreamingsDao.kt
│                           │   │   ├── MovieTranslationsDao.kt
│                           │   │   ├── MoviesDao.kt
│                           │   │   ├── MoviesSyncLogDao.kt
│                           │   │   ├── MyMoviesDao.kt
│                           │   │   ├── MyShowsDao.kt
│                           │   │   ├── NewsDao.kt
│                           │   │   ├── PeopleCreditsDao.kt
│                           │   │   ├── PeopleDao.kt
│                           │   │   ├── PeopleImagesDao.kt
│                           │   │   ├── PeopleShowsMoviesDao.kt
│                           │   │   ├── RatingsDao.kt
│                           │   │   ├── RecentSearchDao.kt
│                           │   │   ├── RelatedMoviesDao.kt
│                           │   │   ├── RelatedShowsDao.kt
│                           │   │   ├── SeasonsDao.kt
│                           │   │   ├── SettingsDao.kt
│                           │   │   ├── ShowImagesDao.kt
│                           │   │   ├── ShowRatingsDao.kt
│                           │   │   ├── ShowStreamingsDao.kt
│                           │   │   ├── ShowTranslationsDao.kt
│                           │   │   ├── ShowsDao.kt
│                           │   │   ├── TraktSyncLogDao.kt
│                           │   │   ├── TraktSyncQueueDao.kt
│                           │   │   ├── TranslationsMoviesSyncLogDao.kt
│                           │   │   ├── TranslationsSyncLogDao.kt
│                           │   │   ├── UserDao.kt
│                           │   │   ├── WatchlistMoviesDao.kt
│                           │   │   └── WatchlistShowsDao.kt
│                           │   ├── migrations/
│                           │   │   └── Migrations.kt
│                           │   └── model/
│                           │       ├── ArchiveMovie.kt
│                           │       ├── ArchiveShow.kt
│                           │       ├── CustomImage.kt
│                           │       ├── CustomList.kt
│                           │       ├── CustomListItem.kt
│                           │       ├── DiscoverMovie.kt
│                           │       ├── DiscoverShow.kt
│                           │       ├── Episode.kt
│                           │       ├── EpisodeTranslation.kt
│                           │       ├── EpisodesSyncLog.kt
│                           │       ├── Movie.kt
│                           │       ├── MovieCollection.kt
│                           │       ├── MovieCollectionItem.kt
│                           │       ├── MovieImage.kt
│                           │       ├── MovieRatings.kt
│                           │       ├── MovieStreaming.kt
│                           │       ├── MovieTranslation.kt
│                           │       ├── MoviesSyncLog.kt
│                           │       ├── MyMovie.kt
│                           │       ├── MyShow.kt
│                           │       ├── News.kt
│                           │       ├── Person.kt
│                           │       ├── PersonCredits.kt
│                           │       ├── PersonImage.kt
│                           │       ├── PersonShowMovie.kt
│                           │       ├── Rating.kt
│                           │       ├── RecentSearch.kt
│                           │       ├── RelatedMovie.kt
│                           │       ├── RelatedShow.kt
│                           │       ├── Season.kt
│                           │       ├── Settings.kt
│                           │       ├── Show.kt
│                           │       ├── ShowImage.kt
│                           │       ├── ShowRatings.kt
│                           │       ├── ShowStreaming.kt
│                           │       ├── ShowTranslation.kt
│                           │       ├── TraktSyncLog.kt
│                           │       ├── TraktSyncQueue.kt
│                           │       ├── TranslationsMoviesSyncLog.kt
│                           │       ├── TranslationsSyncLog.kt
│                           │       ├── User.kt
│                           │       ├── WatchlistMovie.kt
│                           │       └── WatchlistShow.kt
│                           ├── di/
│                           │   ├── LocalDataModule.kt
│                           │   ├── SourcesModule.kt
│                           │   └── StorageModule.kt
│                           ├── sources/
│                           │   ├── ArchiveMoviesLocalDataSource.kt
│                           │   ├── ArchiveShowsLocalDataSource.kt
│                           │   ├── CustomImagesLocalDataSource.kt
│                           │   ├── CustomListsItemsLocalDataSource.kt
│                           │   ├── CustomListsLocalDataSource.kt
│                           │   ├── DiscoverMoviesLocalDataSource.kt
│                           │   ├── DiscoverShowsLocalDataSource.kt
│                           │   ├── EpisodeTranslationsLocalDataSource.kt
│                           │   ├── EpisodesLocalDataSource.kt
│                           │   ├── EpisodesSyncLogLocalDataSource.kt
│                           │   ├── MovieCollectionsItemsLocalDataSource.kt
│                           │   ├── MovieCollectionsLocalDataSource.kt
│                           │   ├── MovieImagesLocalDataSource.kt
│                           │   ├── MovieRatingsLocalDataSource.kt
│                           │   ├── MovieStreamingsLocalDataSource.kt
│                           │   ├── MovieTranslationsLocalDataSource.kt
│                           │   ├── MoviesLocalDataSource.kt
│                           │   ├── MoviesSyncLogLocalDataSource.kt
│                           │   ├── MyMoviesLocalDataSource.kt
│                           │   ├── MyShowsLocalDataSource.kt
│                           │   ├── NewsLocalDataSource.kt
│                           │   ├── PeopleCreditsLocalDataSource.kt
│                           │   ├── PeopleImagesLocalDataSource.kt
│                           │   ├── PeopleLocalDataSource.kt
│                           │   ├── PeopleShowsMoviesLocalDataSource.kt
│                           │   ├── RatingsLocalDataSource.kt
│                           │   ├── RecentSearchLocalDataSource.kt
│                           │   ├── RelatedMoviesLocalDataSource.kt
│                           │   ├── RelatedShowsLocalDataSource.kt
│                           │   ├── SeasonsLocalDataSource.kt
│                           │   ├── SettingsLocalDataSource.kt
│                           │   ├── ShowImagesLocalDataSource.kt
│                           │   ├── ShowRatingsLocalDataSource.kt
│                           │   ├── ShowStreamingsLocalDataSource.kt
│                           │   ├── ShowTranslationsLocalDataSource.kt
│                           │   ├── ShowsLocalDataSource.kt
│                           │   ├── TraktSyncLogLocalDataSource.kt
│                           │   ├── TraktSyncQueueLocalDataSource.kt
│                           │   ├── TranslationsMoviesSyncLogLocalDataSource.kt
│                           │   ├── TranslationsShowsSyncLogLocalDataSource.kt
│                           │   ├── UserLocalDataSource.kt
│                           │   ├── WatchlistMoviesLocalDataSource.kt
│                           │   └── WatchlistShowsLocalDataSource.kt
│                           └── utilities/
│                               └── TransactionsProvider.kt
├── data-remote/
│   ├── .gitignore
│   ├── build.gradle
│   ├── consumer-rules.pro
│   ├── proguard-rules.pro
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── data_remote/
│                           ├── Config.kt
│                           ├── RemoteDataSource.kt
│                           ├── aws/
│                           │   ├── AwsRemoteDataSource.kt
│                           │   ├── api/
│                           │   │   ├── AwsApi.kt
│                           │   │   └── AwsService.kt
│                           │   └── model/
│                           │       ├── AwsImage.kt
│                           │       └── AwsImagesList.kt
│                           ├── di/
│                           │   └── module/
│                           │       ├── AwsModule.kt
│                           │       ├── OkHttpModule.kt
│                           │       ├── OmdbModule.kt
│                           │       ├── PreferencesModule.kt
│                           │       ├── RedditModule.kt
│                           │       ├── RemoteDataModule.kt
│                           │       ├── RetrofitModule.kt
│                           │       ├── TmdbModule.kt
│                           │       └── TraktModule.kt
│                           ├── omdb/
│                           │   ├── OmdbInterceptor.kt
│                           │   ├── OmdbRemoteDataSource.kt
│                           │   ├── api/
│                           │   │   ├── OmdbApi.kt
│                           │   │   └── OmdbService.kt
│                           │   └── model/
│                           │       └── OmdbResult.kt
│                           ├── reddit/
│                           │   ├── RedditRemoteDataSource.kt
│                           │   ├── api/
│                           │   │   ├── RedditApi.kt
│                           │   │   ├── RedditAuthApi.kt
│                           │   │   ├── RedditListingApi.kt
│                           │   │   └── RedditService.kt
│                           │   └── model/
│                           │       ├── RedditAuthResponse.kt
│                           │       ├── RedditData.kt
│                           │       ├── RedditDataItem.kt
│                           │       ├── RedditItem.kt
│                           │       └── RedditResponse.kt
│                           ├── tmdb/
│                           │   ├── TmdbInterceptor.kt
│                           │   ├── TmdbRemoteDataSource.kt
│                           │   ├── api/
│                           │   │   ├── TmdbApi.kt
│                           │   │   └── TmdbService.kt
│                           │   └── model/
│                           │       ├── TmdbImage.kt
│                           │       ├── TmdbImages.kt
│                           │       ├── TmdbPeople.kt
│                           │       ├── TmdbPerson.kt
│                           │       ├── TmdbStreamingCountry.kt
│                           │       ├── TmdbStreamingService.kt
│                           │       ├── TmdbStreamings.kt
│                           │       ├── TmdbTranslation.kt
│                           │       └── TmdbTranslationResponse.kt
│                           ├── token/
│                           │   ├── TokenProvider.kt
│                           │   └── TraktTokenProvider.kt
│                           └── trakt/
│                               ├── TraktRemoteDataSource.kt
│                               ├── api/
│                               │   ├── TraktApi.kt
│                               │   └── service/
│                               │       ├── TraktAuthService.kt
│                               │       ├── TraktCommentsService.kt
│                               │       ├── TraktMoviesService.kt
│                               │       ├── TraktPeopleService.kt
│                               │       ├── TraktSearchService.kt
│                               │       ├── TraktShowsService.kt
│                               │       ├── TraktSyncService.kt
│                               │       └── TraktUsersService.kt
│                               ├── interceptors/
│                               │   ├── TraktAuthenticator.kt
│                               │   ├── TraktAuthorizationInterceptor.kt
│                               │   ├── TraktHeadersInterceptor.kt
│                               │   ├── TraktRefreshTokenInterceptor.kt
│                               │   └── TraktRetryInterceptor.kt
│                               └── model/
│                                   ├── AirTime.kt
│                                   ├── Comment.kt
│                                   ├── CustomList.kt
│                                   ├── Episode.kt
│                                   ├── HiddenItem.kt
│                                   ├── Ids.kt
│                                   ├── Movie.kt
│                                   ├── MovieCollection.kt
│                                   ├── MovieCollectionItem.kt
│                                   ├── MovieResult.kt
│                                   ├── OAuthResponse.kt
│                                   ├── Person.kt
│                                   ├── PersonCredit.kt
│                                   ├── PersonCreditsResult.kt
│                                   ├── RatingResultMovie.kt
│                                   ├── RatingResultShow.kt
│                                   ├── RatingResultValue.kt
│                                   ├── SearchResult.kt
│                                   ├── Season.kt
│                                   ├── SeasonTranslation.kt
│                                   ├── Show.kt
│                                   ├── ShowResult.kt
│                                   ├── SyncExportItem.kt
│                                   ├── SyncExportRequest.kt
│                                   ├── SyncExportResult.kt
│                                   ├── SyncItem.kt
│                                   ├── TraktUser.kt
│                                   ├── Translation.kt
│                                   ├── User.kt
│                                   └── request/
│                                       ├── CommentRequest.kt
│                                       ├── CreateListRequest.kt
│                                       ├── OAuthRefreshRequest.kt
│                                       ├── OAuthRequest.kt
│                                       ├── OAuthRevokeRequest.kt
│                                       └── RatingRequest.kt
├── gradle/
│   ├── libs.versions.toml
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── repository/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   └── java/
│       │       └── com/
│       │           └── michaldrabik/
│       │               └── repository/
│       │                   ├── CommentsRepository.kt
│       │                   ├── EpisodesManager.kt
│       │                   ├── ListsRepository.kt
│       │                   ├── NewsRepository.kt
│       │                   ├── OnHoldItemsRepository.kt
│       │                   ├── PeopleRepository.kt
│       │                   ├── PinnedItemsRepository.kt
│       │                   ├── RatingsRepository.kt
│       │                   ├── StreamingsRepository.kt
│       │                   ├── TranslationsRepository.kt
│       │                   ├── UserRedditManager.kt
│       │                   ├── UserTraktManager.kt
│       │                   ├── images/
│       │                   │   ├── EpisodeImagesProvider.kt
│       │                   │   ├── MovieImagesProvider.kt
│       │                   │   ├── PeopleImagesProvider.kt
│       │                   │   └── ShowImagesProvider.kt
│       │                   ├── mappers/
│       │                   │   ├── CollectionMapper.kt
│       │                   │   ├── CommentMapper.kt
│       │                   │   ├── CustomListMapper.kt
│       │                   │   ├── EpisodeMapper.kt
│       │                   │   ├── IdsMapper.kt
│       │                   │   ├── ImageMapper.kt
│       │                   │   ├── Mappers.kt
│       │                   │   ├── MovieMapper.kt
│       │                   │   ├── NewsMapper.kt
│       │                   │   ├── PersonMapper.kt
│       │                   │   ├── RatingsMapper.kt
│       │                   │   ├── SeasonMapper.kt
│       │                   │   ├── SettingsMapper.kt
│       │                   │   ├── ShowMapper.kt
│       │                   │   ├── StreamingsMapper.kt
│       │                   │   ├── TranslationMapper.kt
│       │                   │   └── UserRatingsMapper.kt
│       │                   ├── movies/
│       │                   │   ├── DiscoverMoviesRepository.kt
│       │                   │   ├── HiddenMoviesRepository.kt
│       │                   │   ├── MovieCollectionsRepository.kt
│       │                   │   ├── MovieDetailsRepository.kt
│       │                   │   ├── MovieStreamingsRepository.kt
│       │                   │   ├── MoviesRepository.kt
│       │                   │   ├── MyMoviesRepository.kt
│       │                   │   ├── RelatedMoviesRepository.kt
│       │                   │   ├── WatchlistMoviesRepository.kt
│       │                   │   └── ratings/
│       │                   │       ├── MoviesExternalRatingsRepository.kt
│       │                   │       └── MoviesRatingsRepository.kt
│       │                   ├── settings/
│       │                   │   ├── SettingsFiltersRepository.kt
│       │                   │   ├── SettingsRepository.kt
│       │                   │   ├── SettingsSortRepository.kt
│       │                   │   ├── SettingsSpoilersRepository.kt
│       │                   │   ├── SettingsViewModeRepository.kt
│       │                   │   └── SettingsWidgetsRepository.kt
│       │                   ├── shows/
│       │                   │   ├── DiscoverShowsRepository.kt
│       │                   │   ├── HiddenShowsRepository.kt
│       │                   │   ├── MyShowsRepository.kt
│       │                   │   ├── RelatedShowsRepository.kt
│       │                   │   ├── ShowDetailsRepository.kt
│       │                   │   ├── ShowStreamingsRepository.kt
│       │                   │   ├── ShowsRepository.kt
│       │                   │   ├── WatchlistShowsRepository.kt
│       │                   │   └── ratings/
│       │                   │       ├── ShowsExternalRatingsRepository.kt
│       │                   │       └── ShowsRatingsRepository.kt
│       │                   └── utilities/
│       │                       └── PreferencesDelegates.kt
│       └── test/
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── repository/
│                           ├── DiscoverShowsRepositoryTest.kt
│                           ├── MyShowsRepositoryTest.kt
│                           ├── PeopleRepositoryTest.kt
│                           ├── RelatedShowsRepositoryTest.kt
│                           ├── SettingsRepositoryTest.kt
│                           ├── ShowDetailsRepositoryTest.kt
│                           ├── WatchlistShowsRepositoryTest.kt
│                           └── common/
│                               └── BaseMockTest.kt
├── settings.gradle
├── ui-base/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_base/
│           │               ├── Analytics.kt
│           │               ├── BaseAdapter.kt
│           │               ├── BaseBottomSheetFragment.kt
│           │               ├── BaseFragment.kt
│           │               ├── BaseMovieAdapter.kt
│           │               ├── Logger.kt
│           │               ├── common/
│           │               │   ├── AppCountry.kt
│           │               │   ├── AppScopeProvider.kt
│           │               │   ├── FastLinearLayoutManager.kt
│           │               │   ├── ListItem.kt
│           │               │   ├── ListViewMode.kt
│           │               │   ├── MovieListItem.kt
│           │               │   ├── OnScrollResetListener.kt
│           │               │   ├── OnSearchClickListener.kt
│           │               │   ├── OnShowsMoviesSyncedListener.kt
│           │               │   ├── OnTabReselectedListener.kt
│           │               │   ├── OnTraktAuthorizeListener.kt
│           │               │   ├── SafeOnClickListener.kt
│           │               │   ├── WidgetsProvider.kt
│           │               │   ├── behaviour/
│           │               │   │   ├── ScrollableViewBehaviour.kt
│           │               │   │   └── SearchViewBehaviour.kt
│           │               │   ├── sheets/
│           │               │   │   ├── context_menu/
│           │               │   │   │   ├── ContextMenuBottomSheet.kt
│           │               │   │   │   ├── events/
│           │               │   │   │   │   ├── FinishUiEvent.kt
│           │               │   │   │   │   └── RemoveTraktUiEvent.kt
│           │               │   │   │   ├── movie/
│           │               │   │   │   │   ├── MovieContextMenuBottomSheet.kt
│           │               │   │   │   │   ├── MovieContextMenuUiState.kt
│           │               │   │   │   │   ├── MovieContextMenuViewModel.kt
│           │               │   │   │   │   ├── cases/
│           │               │   │   │   │   │   ├── MovieContextMenuHiddenCase.kt
│           │               │   │   │   │   │   ├── MovieContextMenuLoadItemCase.kt
│           │               │   │   │   │   │   ├── MovieContextMenuMyMoviesCase.kt
│           │               │   │   │   │   │   ├── MovieContextMenuPinnedCase.kt
│           │               │   │   │   │   │   └── MovieContextMenuWatchlistCase.kt
│           │               │   │   │   │   └── helpers/
│           │               │   │   │   │       └── MovieContextItem.kt
│           │               │   │   │   └── show/
│           │               │   │   │       ├── ShowContextMenuBottomSheet.kt
│           │               │   │   │       ├── ShowContextMenuUiState.kt
│           │               │   │   │       ├── ShowContextMenuViewModel.kt
│           │               │   │   │       ├── cases/
│           │               │   │   │       │   ├── ShowContextMenuHiddenCase.kt
│           │               │   │   │       │   ├── ShowContextMenuLoadItemCase.kt
│           │               │   │   │       │   ├── ShowContextMenuMyShowsCase.kt
│           │               │   │   │       │   ├── ShowContextMenuOnHoldCase.kt
│           │               │   │   │       │   ├── ShowContextMenuPinnedCase.kt
│           │               │   │   │       │   └── ShowContextMenuWatchlistCase.kt
│           │               │   │   │       └── helpers/
│           │               │   │   │           └── ShowContextItem.kt
│           │               │   │   ├── links/
│           │               │   │   │   ├── LinksBottomSheet.kt
│           │               │   │   │   ├── LinksViewModel.kt
│           │               │   │   │   └── views/
│           │               │   │   │       └── LinkItemView.kt
│           │               │   │   ├── ratings/
│           │               │   │   │   ├── RatingsBottomSheet.kt
│           │               │   │   │   ├── RatingsSheetViewModel.kt
│           │               │   │   │   ├── RatingsUiEvents.kt
│           │               │   │   │   ├── RatingsUiState.kt
│           │               │   │   │   └── cases/
│           │               │   │   │       ├── RatingsEpisodeCase.kt
│           │               │   │   │       ├── RatingsMovieCase.kt
│           │               │   │   │       ├── RatingsSeasonCase.kt
│           │               │   │   │       └── RatingsShowCase.kt
│           │               │   │   ├── remove_trakt/
│           │               │   │   │   ├── RemoveTraktBottomSheet.kt
│           │               │   │   │   ├── remove_trakt_hidden/
│           │               │   │   │   │   ├── RemoveTraktHiddenBottomSheet.kt
│           │               │   │   │   │   ├── RemoveTraktHiddenUiState.kt
│           │               │   │   │   │   ├── RemoveTraktHiddenViewModel.kt
│           │               │   │   │   │   └── cases/
│           │               │   │   │   │       └── RemoveTraktHiddenCase.kt
│           │               │   │   │   ├── remove_trakt_progress/
│           │               │   │   │   │   ├── RemoveTraktProgressBottomSheet.kt
│           │               │   │   │   │   ├── RemoveTraktProgressUiState.kt
│           │               │   │   │   │   ├── RemoveTraktProgressViewModel.kt
│           │               │   │   │   │   └── cases/
│           │               │   │   │   │       └── RemoveTraktProgressCase.kt
│           │               │   │   │   └── remove_trakt_watchlist/
│           │               │   │   │       ├── RemoveTraktWatchlistBottomSheet.kt
│           │               │   │   │       ├── RemoveTraktWatchlistUiState.kt
│           │               │   │   │       ├── RemoveTraktWatchlistViewModel.kt
│           │               │   │   │       └── cases/
│           │               │   │   │           └── RemoveTraktWatchlistCase.kt
│           │               │   │   └── sort_order/
│           │               │   │       ├── SortOrderBottomSheet.kt
│           │               │   │       └── views/
│           │               │   │           └── SortOrderItemView.kt
│           │               │   └── views/
│           │               │       ├── EmptySearchView.kt
│           │               │       ├── FoldableTextView.kt
│           │               │       ├── ModeTabsView.kt
│           │               │       ├── MovieView.kt
│           │               │       ├── PremiumAdView.kt
│           │               │       ├── RateValueView.kt
│           │               │       ├── RatingsStripView.kt
│           │               │       ├── ScrollableImageView.kt
│           │               │       ├── ScrollableTabLayout.kt
│           │               │       ├── SearchLocalView.kt
│           │               │       ├── SearchView.kt
│           │               │       ├── SecretTextView.kt
│           │               │       ├── ShowView.kt
│           │               │       └── tips/
│           │               │           ├── TipOverlayView.kt
│           │               │           └── TipView.kt
│           │               ├── dates/
│           │               │   ├── AppDateFormat.kt
│           │               │   └── DateFormatProvider.kt
│           │               ├── events/
│           │               │   ├── Event.kt
│           │               │   └── EventsManager.kt
│           │               ├── fcm/
│           │               │   └── NotificationChannel.kt
│           │               ├── network/
│           │               │   ├── NetworkCallbackAdapter.kt
│           │               │   └── NetworkStatusProvider.kt
│           │               ├── notifications/
│           │               │   ├── AnnouncementManager.kt
│           │               │   ├── AnnouncementWorker.kt
│           │               │   └── schedulers/
│           │               │       ├── MovieAnnouncementScheduler.kt
│           │               │       └── ShowAnnouncementScheduler.kt
│           │               ├── sync/
│           │               │   ├── ShowsMoviesSyncWorker.kt
│           │               │   └── runners/
│           │               │       ├── MoviesSyncRunner.kt
│           │               │       └── ShowsSyncRunner.kt
│           │               ├── trakt/
│           │               │   ├── TraktNotificationWorker.kt
│           │               │   ├── TraktSyncRunner.kt
│           │               │   ├── TraktSyncWorker.kt
│           │               │   ├── exports/
│           │               │   │   ├── TraktExportListsRunner.kt
│           │               │   │   ├── TraktExportWatchedRunner.kt
│           │               │   │   └── TraktExportWatchlistRunner.kt
│           │               │   ├── imports/
│           │               │   │   ├── TraktImportListsRunner.kt
│           │               │   │   ├── TraktImportWatchedRunner.kt
│           │               │   │   └── TraktImportWatchlistRunner.kt
│           │               │   └── quicksync/
│           │               │       ├── QuickSyncManager.kt
│           │               │       ├── QuickSyncWorker.kt
│           │               │       └── runners/
│           │               │           ├── QuickSyncListsRunner.kt
│           │               │           ├── QuickSyncRunner.kt
│           │               │           └── cases/
│           │               │               ├── QuickSyncDuplicateEpisodesCase.kt
│           │               │               └── QuickSyncDuplicateMoviesCase.kt
│           │               ├── utilities/
│           │               │   ├── DurationPrinter.kt
│           │               │   ├── FragmentViewBindingDelegate.kt
│           │               │   ├── ModeHost.kt
│           │               │   ├── MoviesStatusHost.kt
│           │               │   ├── NavigationHost.kt
│           │               │   ├── NetworkIconProvider.kt
│           │               │   ├── SnackbarHost.kt
│           │               │   ├── TipsHost.kt
│           │               │   ├── events/
│           │               │   │   ├── Event.kt
│           │               │   │   └── MessageEvent.kt
│           │               │   ├── extensions/
│           │               │   │   ├── BuildExtensions.kt
│           │               │   │   ├── BundleExtensions.kt
│           │               │   │   ├── ContextExtensions.kt
│           │               │   │   ├── Extensions.kt
│           │               │   │   ├── FlowCombineExtensions.kt
│           │               │   │   ├── GlideExtensions.kt
│           │               │   │   ├── LayoutExtensions.kt
│           │               │   │   ├── LifecycleExtensions.kt
│           │               │   │   ├── SnackbarExtensions.kt
│           │               │   │   ├── UiExtensions.kt
│           │               │   │   ├── ViewModelExtensions.kt
│           │               │   │   └── WebExtensions.kt
│           │               │   └── ui/
│           │               │       └── EqualSpacingItemDecoration.kt
│           │               └── viewmodel/
│           │                   ├── ChannelsDelegate.kt
│           │                   └── DefaultChannelsDelegate.kt
│           └── res/
│               ├── anim/
│               │   ├── anim_recycler_fall_down.xml
│               │   ├── anim_recycler_fall_down_fast.xml
│               │   ├── anim_recycler_fall_down_item.xml
│               │   ├── anim_recycler_fall_down_item_fast.xml
│               │   ├── anim_slide_in_from_left.xml
│               │   ├── anim_slide_in_from_right.xml
│               │   ├── anim_slide_out_from_left.xml
│               │   └── anim_slide_out_from_right.xml
│               ├── anim-ar/
│               │   ├── anim_slide_in_from_left.xml
│               │   ├── anim_slide_in_from_right.xml
│               │   ├── anim_slide_out_from_left.xml
│               │   └── anim_slide_out_from_right.xml
│               ├── color/
│               │   ├── selector_chip_background.xml
│               │   ├── selector_chip_stroke.xml
│               │   ├── selector_chip_text.xml
│               │   ├── selector_discover_chip_background.xml
│               │   ├── selector_discover_chip_text.xml
│               │   ├── selector_main_button.xml
│               │   └── selector_main_checkbox.xml
│               ├── color-notnight/
│               │   ├── selector_chip_background.xml
│               │   ├── selector_chip_stroke.xml
│               │   └── selector_main_checkbox.xml
│               ├── drawable/
│               │   ├── bg_badge.xml
│               │   ├── bg_bottom_sheet.xml
│               │   ├── bg_dialog.xml
│               │   ├── bg_filters_sheet.xml
│               │   ├── bg_item_menu_elevation.xml
│               │   ├── bg_item_menu_placeholder.xml
│               │   ├── bg_link_item.xml
│               │   ├── bg_link_item_ripple.xml
│               │   ├── bg_media_view_elevation.xml
│               │   ├── bg_media_view_elevation_card.xml
│               │   ├── bg_media_view_placeholder.xml
│               │   ├── bg_media_view_ripple.xml
│               │   ├── bg_premium_ad.xml
│               │   ├── bg_snackbar_error.xml
│               │   ├── bg_snackbar_info.xml
│               │   ├── bg_sort_item_badge.xml
│               │   ├── bg_text_on_surface.xml
│               │   ├── bg_tip_view.xml
│               │   ├── divider_item_menu.xml
│               │   ├── ic_abc.xml
│               │   ├── ic_amc.xml
│               │   ├── ic_anim_search_to_close.xml
│               │   ├── ic_arrow_alt.xml
│               │   ├── ic_arrow_alt_down.xml
│               │   ├── ic_arrow_alt_up.xml
│               │   ├── ic_arrow_back.xml
│               │   ├── ic_arrow_right.xml
│               │   ├── ic_bookmark.xml
│               │   ├── ic_bookmark_full.xml
│               │   ├── ic_calendar.xml
│               │   ├── ic_check.xml
│               │   ├── ic_check_small.xml
│               │   ├── ic_circle.xml
│               │   ├── ic_clock.xml
│               │   ├── ic_clock_compact.xml
│               │   ├── ic_clock_small.xml
│               │   ├── ic_close.xml
│               │   ├── ic_comment.xml
│               │   ├── ic_crown.xml
│               │   ├── ic_crown_small.xml
│               │   ├── ic_custom_image.xml
│               │   ├── ic_delete.xml
│               │   ├── ic_duckduck.xml
│               │   ├── ic_eye.xml
│               │   ├── ic_eye_no.xml
│               │   ├── ic_film.xml
│               │   ├── ic_giphy.xml
│               │   ├── ic_github.xml
│               │   ├── ic_google.xml
│               │   ├── ic_history.xml
│               │   ├── ic_imdb.xml
│               │   ├── ic_info.xml
│               │   ├── ic_insight.xml
│               │   ├── ic_link.xml
│               │   ├── ic_link_color.xml
│               │   ├── ic_list_alt.xml
│               │   ├── ic_lists.xml
│               │   ├── ic_news.xml
│               │   ├── ic_notification_bell.xml
│               │   ├── ic_open_browser.xml
│               │   ├── ic_pause.xml
│               │   ├── ic_person_outline.xml
│               │   ├── ic_pin.xml
│               │   ├── ic_play.xml
│               │   ├── ic_remove_list.xml
│               │   ├── ic_search.xml
│               │   ├── ic_settings.xml
│               │   ├── ic_share.xml
│               │   ├── ic_star.xml
│               │   ├── ic_star_empty.xml
│               │   ├── ic_star_small.xml
│               │   ├── ic_stars_round.xml
│               │   ├── ic_television.xml
│               │   ├── ic_tmdb.xml
│               │   ├── ic_trakt.xml
│               │   ├── ic_twitter.xml
│               │   ├── ic_view_grid.xml
│               │   ├── ic_view_list.xml
│               │   ├── ic_wikipedia.xml
│               │   └── ic_youtube.xml
│               ├── drawable-ar/
│               │   └── ic_arrow_back.xml
│               ├── drawable-notnight/
│               │   ├── ic_github.xml
│               │   └── ic_wikipedia.xml
│               ├── layout/
│               │   ├── view_context_menu.xml
│               │   ├── view_links.xml
│               │   ├── view_links_item.xml
│               │   ├── view_mode_tabs.xml
│               │   ├── view_premium_ad.xml
│               │   ├── view_premium_ad_list.xml
│               │   ├── view_rate_sheet.xml
│               │   ├── view_rate_value.xml
│               │   ├── view_ratings_strip.xml
│               │   ├── view_remove_trakt_hidden.xml
│               │   ├── view_remove_trakt_progress.xml
│               │   ├── view_remove_trakt_watchlist.xml
│               │   ├── view_search.xml
│               │   ├── view_search_empty.xml
│               │   ├── view_search_local.xml
│               │   ├── view_sort_order.xml
│               │   ├── view_sort_order_item.xml
│               │   ├── view_tip.xml
│               │   └── view_tip_overlay.xml
│               ├── layout-sw600dp/
│               │   └── view_ratings_strip.xml
│               ├── values/
│               │   ├── attrs.xml
│               │   ├── bool.xml
│               │   ├── colors.xml
│               │   ├── dimens.xml
│               │   ├── misc.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-notnight/
│               │   ├── colors.xml
│               │   ├── dimens.xml
│               │   ├── misc.xml
│               │   └── styles.xml
│               ├── values-notnight-v27/
│               │   └── styles.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   ├── bool.xml
│               │   ├── dimens.xml
│               │   └── styles.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-comments/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_comments/
│           │               ├── CommentItemDiffCallback.kt
│           │               ├── CommentView.kt
│           │               ├── CommentsAdapter.kt
│           │               ├── fragment/
│           │               │   ├── CommentsFragment.kt
│           │               │   ├── CommentsUiState.kt
│           │               │   ├── CommentsViewModel.kt
│           │               │   └── cases/
│           │               │       ├── DeleteCommentCase.kt
│           │               │       ├── LoadCommentsCase.kt
│           │               │       └── LoadRepliesCase.kt
│           │               ├── post/
│           │               │   ├── PostCommentBottomSheet.kt
│           │               │   ├── PostCommentUiState.kt
│           │               │   └── PostCommentViewModel.kt
│           │               └── utilities/
│           │                   └── Extensions.kt
│           └── res/
│               ├── color/
│               │   ├── selector_comment_button.xml
│               │   └── selector_comment_input.xml
│               ├── drawable/
│               │   ├── bg_comment_rating.xml
│               │   ├── divider_comments_list.xml
│               │   ├── ic_add_comment.xml
│               │   ├── ic_delete.xml
│               │   └── ic_reply.xml
│               ├── layout/
│               │   ├── fragment_comments.xml
│               │   ├── view_comment.xml
│               │   └── view_post_comment.xml
│               ├── layout-sw600dp/
│               │   └── view_comment.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-discover/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_discover/
│       │   │               ├── DiscoverFragment.kt
│       │   │               ├── DiscoverUiState.kt
│       │   │               ├── DiscoverViewModel.kt
│       │   │               ├── cases/
│       │   │               │   ├── DiscoverFiltersCase.kt
│       │   │               │   ├── DiscoverShowsCase.kt
│       │   │               │   └── DiscoverTwitterCase.kt
│       │   │               ├── di/
│       │   │               │   └── DiscoverModule.kt
│       │   │               ├── filters/
│       │   │               │   ├── feed/
│       │   │               │   │   ├── DiscoverFiltersFeedBottomSheet.kt
│       │   │               │   │   ├── DiscoverFiltersFeedUiEvent.kt
│       │   │               │   │   ├── DiscoverFiltersFeedUiState.kt
│       │   │               │   │   └── DiscoverFiltersFeedViewModel.kt
│       │   │               │   ├── genres/
│       │   │               │   │   ├── DiscoverFiltersGenresBottomSheet.kt
│       │   │               │   │   ├── DiscoverFiltersGenresUiEvent.kt
│       │   │               │   │   ├── DiscoverFiltersGenresUiState.kt
│       │   │               │   │   └── DiscoverFiltersGenresViewModel.kt
│       │   │               │   ├── networks/
│       │   │               │   │   ├── DiscoverFiltersNetworksBottomSheet.kt
│       │   │               │   │   ├── DiscoverFiltersNetworksUiEvent.kt
│       │   │               │   │   ├── DiscoverFiltersNetworksUiState.kt
│       │   │               │   │   └── DiscoverFiltersNetworksViewModel.kt
│       │   │               │   └── views/
│       │   │               │       └── DiscoverFiltersView.kt
│       │   │               ├── helpers/
│       │   │               │   ├── DiscoverLayoutManagerProvider.kt
│       │   │               │   └── itemtype/
│       │   │               │       ├── ImageTypeProvider.kt
│       │   │               │       ├── PhoneImageTypeProvider.kt
│       │   │               │       └── TabletImageTypeProvider.kt
│       │   │               ├── recycler/
│       │   │               │   ├── DiscoverAdapter.kt
│       │   │               │   ├── DiscoverItemDiffCallback.kt
│       │   │               │   └── DiscoverListItem.kt
│       │   │               └── views/
│       │   │                   ├── ShowFanartView.kt
│       │   │                   ├── ShowPosterView.kt
│       │   │                   ├── ShowPremiumView.kt
│       │   │                   └── ShowTwitterView.kt
│       │   └── res/
│       │       ├── color/
│       │       │   └── selector_filters_button.xml
│       │       ├── drawable/
│       │       │   ├── bg_twitter.xml
│       │       │   └── bg_twitter_cancel.xml
│       │       ├── layout/
│       │       │   ├── fragment_discover.xml
│       │       │   ├── view_discover_filters.xml
│       │       │   ├── view_discover_filters_feed.xml
│       │       │   ├── view_discover_filters_genres.xml
│       │       │   ├── view_discover_filters_networks.xml
│       │       │   ├── view_show_fanart.xml
│       │       │   ├── view_show_poster.xml
│       │       │   ├── view_show_premium.xml
│       │       │   └── view_show_twitter.xml
│       │       ├── values/
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               ├── BaseMockTest.kt
│               ├── TestData.kt
│               └── com/
│                   └── michaldrabik/
│                       └── ui_discover/
│                           └── DiscoverViewModelTest.kt
├── ui-discover-movies/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_discover_movies/
│           │               ├── DiscoverMoviesFragment.kt
│           │               ├── DiscoverMoviesUiState.kt
│           │               ├── DiscoverMoviesViewModel.kt
│           │               ├── cases/
│           │               │   ├── DiscoverFiltersCase.kt
│           │               │   └── DiscoverMoviesCase.kt
│           │               ├── di/
│           │               │   └── DiscoverMoviesModule.kt
│           │               ├── filters/
│           │               │   ├── feed/
│           │               │   │   ├── DiscoverMoviesFiltersFeedBottomSheet.kt
│           │               │   │   ├── DiscoverMoviesFiltersFeedUiEvent.kt
│           │               │   │   ├── DiscoverMoviesFiltersFeedUiState.kt
│           │               │   │   └── DiscoverMoviesFiltersFeedViewModel.kt
│           │               │   ├── genres/
│           │               │   │   ├── DiscoverMoviesFiltersGenresBottomSheet.kt
│           │               │   │   ├── DiscoverMoviesFiltersGenresUiEvent.kt
│           │               │   │   ├── DiscoverMoviesFiltersGenresUiState.kt
│           │               │   │   └── DiscoverMoviesFiltersGenresViewModel.kt
│           │               │   └── views/
│           │               │       └── DiscoverMoviesFiltersView.kt
│           │               ├── helpers/
│           │               │   ├── DiscoverMoviesLayoutManagerProvider.kt
│           │               │   └── itemtype/
│           │               │       ├── ImageTypeProvider.kt
│           │               │       ├── PhoneImageTypeProvider.kt
│           │               │       └── TabletImageTypeProvider.kt
│           │               ├── recycler/
│           │               │   ├── DiscoverMovieItemDiffCallback.kt
│           │               │   ├── DiscoverMovieListItem.kt
│           │               │   └── DiscoverMoviesAdapter.kt
│           │               └── views/
│           │                   ├── MovieFanartView.kt
│           │                   ├── MoviePosterView.kt
│           │                   └── MoviePremiumView.kt
│           └── res/
│               ├── layout/
│               │   ├── fragment_discover_movies.xml
│               │   ├── view_discover_movies_filters.xml
│               │   ├── view_discover_movies_filters_feed.xml
│               │   ├── view_discover_movies_filters_genres.xml
│               │   ├── view_movie_fanart.xml
│               │   ├── view_movie_poster.xml
│               │   └── view_movie_premium.xml
│               ├── values/
│               │   └── strings.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-episodes/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_episodes/
│           │               └── details/
│           │                   ├── EpisodeDetailsBottomSheet.kt
│           │                   ├── EpisodeDetailsUiState.kt
│           │                   ├── EpisodeDetailsViewModel.kt
│           │                   └── cases/
│           │                       ├── EpisodeDetailsSeasonCase.kt
│           │                       └── EpisodeDetailsWatchedCase.kt
│           └── res/
│               ├── color/
│               │   └── selector_comment_button.xml
│               ├── drawable/
│               │   ├── bg_bottom_sheet_placeholder.xml
│               │   └── divider_comments_list.xml
│               ├── layout/
│               │   └── view_episode_details.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-es/
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-it/
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-ru/
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-gallery/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_gallery/
│           │               ├── custom/
│           │               │   ├── CustomImagesBottomSheet.kt
│           │               │   ├── CustomImagesUiState.kt
│           │               │   └── CustomImagesViewModel.kt
│           │               └── fanart/
│           │                   ├── ArtGalleryFragment.kt
│           │                   ├── ArtGalleryUiState.kt
│           │                   ├── ArtGalleryViewModel.kt
│           │                   ├── cases/
│           │                   │   └── ArtLoadImagesCase.kt
│           │                   └── recycler/
│           │                       ├── ArtGalleryAdapter.kt
│           │                       ├── ImageItemDiffCallback.kt
│           │                       └── views/
│           │                           ├── ArtGalleryFanartView.kt
│           │                           ├── ArtGalleryPosterView.kt
│           │                           └── ArtGalleryUrlView.kt
│           └── res/
│               ├── color/
│               │   └── selector_url_input_layout.xml
│               ├── drawable/
│               │   ├── bg_custom_image_frame.xml
│               │   ├── bg_delete_circle.xml
│               │   ├── bg_indicator_circle.xml
│               │   ├── ic_custom_image2x.xml
│               │   ├── ic_delete.xml
│               │   └── ic_download.xml
│               ├── drawable-notnight/
│               │   └── bg_indicator_circle.xml
│               ├── layout/
│               │   ├── fragment_art_gallery.xml
│               │   ├── view_custom_images.xml
│               │   ├── view_gallery_fanart_image.xml
│               │   ├── view_gallery_poster_image.xml
│               │   └── view_gallery_url_dialog.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-notnight/
│               │   └── styles.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-lists/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_lists/
│           │               ├── create/
│           │               │   ├── CreateListBottomSheet.kt
│           │               │   ├── CreateListUiState.kt
│           │               │   ├── CreateListViewModel.kt
│           │               │   └── cases/
│           │               │       ├── CreateListCase.kt
│           │               │       └── ListDetailsCase.kt
│           │               ├── details/
│           │               │   ├── ListDetailsFragment.kt
│           │               │   ├── ListDetailsUiEvents.kt
│           │               │   ├── ListDetailsUiState.kt
│           │               │   ├── ListDetailsViewModel.kt
│           │               │   ├── cases/
│           │               │   │   ├── ListDetailsItemsCase.kt
│           │               │   │   ├── ListDetailsMainCase.kt
│           │               │   │   ├── ListDetailsSortCase.kt
│           │               │   │   ├── ListDetailsTipsCase.kt
│           │               │   │   ├── ListDetailsTranslationsCase.kt
│           │               │   │   └── ListDetailsViewModeCase.kt
│           │               │   ├── helpers/
│           │               │   │   ├── ListDetailsSorter.kt
│           │               │   │   ├── ListItemDragListener.kt
│           │               │   │   ├── ListItemSwipeListener.kt
│           │               │   │   ├── ReorderListCallback.kt
│           │               │   │   └── ReorderListCallbackAdapter.kt
│           │               │   ├── recycler/
│           │               │   │   ├── ListDetailsAdapter.kt
│           │               │   │   ├── ListDetailsDiffCallback.kt
│           │               │   │   ├── ListDetailsItem.kt
│           │               │   │   └── helpers/
│           │               │   │       ├── ListDetailsGridItemDecoration.kt
│           │               │   │       ├── ListDetailsLayoutManagerProvider.kt
│           │               │   │       └── ListDetailsListItemDecoration.kt
│           │               │   └── views/
│           │               │       ├── ListDetailsDeleteConfirmView.kt
│           │               │       ├── ListDetailsFilterView.kt
│           │               │       ├── ListDetailsItemView.kt
│           │               │       ├── ListDetailsMovieItemView.kt
│           │               │       ├── ListDetailsShowItemView.kt
│           │               │       ├── compact/
│           │               │       │   ├── ListDetailsCompactMovieItemView.kt
│           │               │       │   └── ListDetailsCompactShowItemView.kt
│           │               │       └── grid/
│           │               │           ├── ListDetailsGridItemView.kt
│           │               │           └── ListDetailsGridTitleItemView.kt
│           │               ├── lists/
│           │               │   ├── ListsFragment.kt
│           │               │   ├── ListsUiState.kt
│           │               │   ├── ListsViewModel.kt
│           │               │   ├── cases/
│           │               │   │   ├── MainListsCase.kt
│           │               │   │   └── SortOrderListsCase.kt
│           │               │   ├── helpers/
│           │               │   │   ├── ListsItemImage.kt
│           │               │   │   ├── ListsLayoutManagerProvider.kt
│           │               │   │   └── ListsSorter.kt
│           │               │   ├── recycler/
│           │               │   │   ├── ListsAdapter.kt
│           │               │   │   ├── ListsItem.kt
│           │               │   │   └── ListsItemDiffCallback.kt
│           │               │   └── views/
│           │               │       ├── ListsFiltersView.kt
│           │               │       ├── ListsItemView.kt
│           │               │       └── ListsTripleImageView.kt
│           │               └── manage/
│           │                   ├── ManageListsBottomSheet.kt
│           │                   ├── ManageListsUiState.kt
│           │                   ├── ManageListsViewModel.kt
│           │                   ├── cases/
│           │                   │   └── ManageListsCase.kt
│           │                   ├── recycler/
│           │                   │   ├── ManageListsAdapter.kt
│           │                   │   ├── ManageListsItem.kt
│           │                   │   └── ManageListsItemDiffCallback.kt
│           │                   └── views/
│           │                       └── ManageListsItemView.kt
│           └── res/
│               ├── color/
│               │   ├── selector_create_list_button.xml
│               │   ├── selector_create_list_input.xml
│               │   ├── selector_list_chip_background.xml
│               │   └── selector_list_chip_text.xml
│               ├── color-notnight/
│               │   └── selector_list_chip_background.xml
│               ├── drawable/
│               │   ├── bg_rank.xml
│               │   ├── ic_edit.xml
│               │   ├── ic_handle.xml
│               │   ├── ic_list_create.xml
│               │   ├── ic_more.xml
│               │   └── ic_reorder.xml
│               ├── layout/
│               │   ├── fragment_list_details.xml
│               │   ├── fragment_lists.xml
│               │   ├── layout_list_details_empty.xml
│               │   ├── layout_list_details_item_grid.xml
│               │   ├── layout_lists_empty.xml
│               │   ├── layout_manage_lists_empty.xml
│               │   ├── view_create_list.xml
│               │   ├── view_list_delete_confirm.xml
│               │   ├── view_list_details_filters.xml
│               │   ├── view_list_details_item_grid.xml
│               │   ├── view_list_details_item_grid_title.xml
│               │   ├── view_list_details_movie_item.xml
│               │   ├── view_list_details_movie_item_compact.xml
│               │   ├── view_list_details_show_item.xml
│               │   ├── view_list_details_show_item_compact.xml
│               │   ├── view_lists_filters.xml
│               │   ├── view_lists_item.xml
│               │   ├── view_manage_lists.xml
│               │   ├── view_manage_lists_item.xml
│               │   └── view_triple_image.xml
│               ├── menu/
│               │   └── menu_list_details.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-notnight/
│               │   └── dimens.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-model/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_model/
│           │               ├── AirTime.kt
│           │               ├── CalendarMode.kt
│           │               ├── Comment.kt
│           │               ├── CustomList.kt
│           │               ├── DiscoverFilters.kt
│           │               ├── DiscoverSortOrder.kt
│           │               ├── Episode.kt
│           │               ├── EpisodeBundle.kt
│           │               ├── Genre.kt
│           │               ├── Ids.kt
│           │               ├── Image.kt
│           │               ├── ImageFamily.kt
│           │               ├── ImageSource.kt
│           │               ├── ImageStatus.kt
│           │               ├── ImageType.kt
│           │               ├── Movie.kt
│           │               ├── MovieCollection.kt
│           │               ├── MovieStatus.kt
│           │               ├── MyMoviesSection.kt
│           │               ├── MyShowsSection.kt
│           │               ├── Network.kt
│           │               ├── NewsItem.kt
│           │               ├── NotificationDelay.kt
│           │               ├── Person.kt
│           │               ├── PersonCredit.kt
│           │               ├── PremiumFeature.kt
│           │               ├── ProgressNextEpisodeType.kt
│           │               ├── ProgressType.kt
│           │               ├── RatingState.kt
│           │               ├── Ratings.kt
│           │               ├── RecentSearch.kt
│           │               ├── SearchResult.kt
│           │               ├── Season.kt
│           │               ├── SeasonBundle.kt
│           │               ├── SeasonTranslation.kt
│           │               ├── Settings.kt
│           │               ├── Show.kt
│           │               ├── ShowStatus.kt
│           │               ├── SortOrder.kt
│           │               ├── SortType.kt
│           │               ├── SpoilersSettings.kt
│           │               ├── StreamingService.kt
│           │               ├── Tip.kt
│           │               ├── TraktRating.kt
│           │               ├── TraktSyncSchedule.kt
│           │               ├── Translation.kt
│           │               └── User.kt
│           └── res/
│               ├── values/
│               │   └── strings.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-movie/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_movie/
│           │               ├── MovieDetailsFragment.kt
│           │               ├── MovieDetailsUiEvents.kt
│           │               ├── MovieDetailsUiState.kt
│           │               ├── MovieDetailsViewModel.kt
│           │               ├── cases/
│           │               │   ├── MovieDetailsHiddenCase.kt
│           │               │   ├── MovieDetailsListsCase.kt
│           │               │   ├── MovieDetailsMainCase.kt
│           │               │   ├── MovieDetailsMyMoviesCase.kt
│           │               │   ├── MovieDetailsTranslationCase.kt
│           │               │   └── MovieDetailsWatchlistCase.kt
│           │               ├── helpers/
│           │               │   ├── MovieDetailsMeta.kt
│           │               │   └── MovieLink.kt
│           │               ├── sections/
│           │               │   ├── collections/
│           │               │   │   ├── details/
│           │               │   │   │   ├── MovieDetailsCollectionBottomSheet.kt
│           │               │   │   │   ├── MovieDetailsCollectionUiState.kt
│           │               │   │   │   ├── MovieDetailsCollectionViewModel.kt
│           │               │   │   │   ├── cases/
│           │               │   │   │   │   ├── MovieDetailsCollectionDetailsCase.kt
│           │               │   │   │   │   ├── MovieDetailsCollectionImagesCase.kt
│           │               │   │   │   │   ├── MovieDetailsCollectionMoviesCase.kt
│           │               │   │   │   │   └── MovieDetailsCollectionTranslationsCase.kt
│           │               │   │   │   └── recycler/
│           │               │   │   │       ├── MovieDetailsCollectionAdapter.kt
│           │               │   │   │       ├── MovieDetailsCollectionItem.kt
│           │               │   │   │       ├── MovieDetailsCollectionItemDiffCallback.kt
│           │               │   │   │       └── views/
│           │               │   │   │           ├── MovieDetailsCollectionHeaderView.kt
│           │               │   │   │           ├── MovieDetailsCollectionItemView.kt
│           │               │   │   │           └── MovieDetailsCollectionLoadingView.kt
│           │               │   │   └── list/
│           │               │   │       ├── MovieDetailsCollectionsFragment.kt
│           │               │   │       ├── MovieDetailsCollectionsUiState.kt
│           │               │   │       ├── MovieDetailsCollectionsViewModel.kt
│           │               │   │       ├── cases/
│           │               │   │       │   └── MovieDetailsCollectionsCase.kt
│           │               │   │       └── recycler/
│           │               │   │           ├── MovieCollectionAdapter.kt
│           │               │   │           ├── MovieCollectionDiffCallback.kt
│           │               │   │           └── MovieCollectionItemView.kt
│           │               │   ├── people/
│           │               │   │   ├── MovieDetailsPeopleFragment.kt
│           │               │   │   ├── MovieDetailsPeopleUiState.kt
│           │               │   │   ├── MovieDetailsPeopleViewModel.kt
│           │               │   │   ├── cases/
│           │               │   │   │   └── MovieDetailsPeopleCase.kt
│           │               │   │   └── recycler/
│           │               │   │       ├── ActorView.kt
│           │               │   │       └── ActorsAdapter.kt
│           │               │   ├── ratings/
│           │               │   │   ├── MovieDetailsRatingsFragment.kt
│           │               │   │   ├── MovieDetailsRatingsUiState.kt
│           │               │   │   ├── MovieDetailsRatingsViewModel.kt
│           │               │   │   └── cases/
│           │               │   │       ├── MovieDetailsRatingCase.kt
│           │               │   │       └── MovieDetailsRatingSpoilersCase.kt
│           │               │   ├── related/
│           │               │   │   ├── MovieDetailsRelatedFragment.kt
│           │               │   │   ├── MovieDetailsRelatedUiState.kt
│           │               │   │   ├── MovieDetailsRelatedViewModel.kt
│           │               │   │   ├── cases/
│           │               │   │   │   └── MovieDetailsRelatedCase.kt
│           │               │   │   └── recycler/
│           │               │   │       ├── RelatedItemDiffCallback.kt
│           │               │   │       ├── RelatedListItem.kt
│           │               │   │       ├── RelatedMovieAdapter.kt
│           │               │   │       └── RelatedMovieView.kt
│           │               │   └── streamings/
│           │               │       ├── MovieDetailsStreamingsFragment.kt
│           │               │       ├── MovieDetailsStreamingsUiState.kt
│           │               │       ├── MovieDetailsStreamingsViewModel.kt
│           │               │       └── cases/
│           │               │           └── MovieDetailsStreamingCase.kt
│           │               └── views/
│           │                   └── AddToMoviesButton.kt
│           └── res/
│               ├── drawable/
│               │   ├── bg_check_ripple.xml
│               │   ├── bg_collection.xml
│               │   ├── bg_collection_ripple.xml
│               │   ├── bg_rank.xml
│               │   └── divider_horizontal_list.xml
│               ├── layout/
│               │   ├── fragment_movie_details.xml
│               │   ├── fragment_movie_details_collection.xml
│               │   ├── fragment_movie_details_people.xml
│               │   ├── fragment_movie_details_ratings.xml
│               │   ├── fragment_movie_details_related.xml
│               │   ├── fragment_movie_details_streamings.xml
│               │   ├── view_actor_movie.xml
│               │   ├── view_add_to_movies_button.xml
│               │   ├── view_movie_collection.xml
│               │   ├── view_movie_collection_details.xml
│               │   ├── view_movie_collection_items_list.xml
│               │   ├── view_movie_collection_list_header.xml
│               │   ├── view_movie_collection_list_item.xml
│               │   ├── view_movie_collection_list_loading.xml
│               │   └── view_related_movie.xml
│               ├── layout-sw600dp/
│               │   ├── fragment_movie_details.xml
│               │   ├── fragment_movie_details_collection.xml
│               │   ├── fragment_movie_details_people.xml
│               │   ├── fragment_movie_details_related.xml
│               │   ├── fragment_movie_details_streamings.xml
│               │   └── view_movie_collection.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-my-movies/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_my_movies/
│           │               ├── common/
│           │               │   ├── helpers/
│           │               │   │   ├── CollectionItemFilter.kt
│           │               │   │   └── CollectionItemSorter.kt
│           │               │   ├── layout/
│           │               │   │   ├── CollectionMovieGridItemDecoration.kt
│           │               │   │   ├── CollectionMovieLayoutManagerProvider.kt
│           │               │   │   └── CollectionMovieListItemDecoration.kt
│           │               │   ├── recycler/
│           │               │   │   ├── CollectionAdapter.kt
│           │               │   │   ├── CollectionItemDiffCallback.kt
│           │               │   │   └── CollectionListItem.kt
│           │               │   └── views/
│           │               │       ├── CollectionMovieCompactView.kt
│           │               │       ├── CollectionMovieFiltersView.kt
│           │               │       ├── CollectionMovieGridTitleView.kt
│           │               │       ├── CollectionMovieGridView.kt
│           │               │       └── CollectionMovieView.kt
│           │               ├── filters/
│           │               │   ├── CollectionFiltersOrigin.kt
│           │               │   ├── CollectionFiltersUiEvent.kt
│           │               │   └── genre/
│           │               │       ├── CollectionFiltersGenreBottomSheet.kt
│           │               │       ├── CollectionFiltersGenreUiState.kt
│           │               │       └── CollectionFiltersGenreViewModel.kt
│           │               ├── hidden/
│           │               │   ├── HiddenFragment.kt
│           │               │   ├── HiddenUiState.kt
│           │               │   ├── HiddenViewModel.kt
│           │               │   └── cases/
│           │               │       ├── HiddenLoadMoviesCase.kt
│           │               │       ├── HiddenRatingsCase.kt
│           │               │       ├── HiddenSortOrderCase.kt
│           │               │       └── HiddenViewModeCase.kt
│           │               ├── main/
│           │               │   ├── FollowedMoviesFragment.kt
│           │               │   ├── FollowedMoviesUiEvent.kt
│           │               │   ├── FollowedMoviesUiState.kt
│           │               │   ├── FollowedMoviesViewModel.kt
│           │               │   └── FollowedPagesAdapter.kt
│           │               ├── mymovies/
│           │               │   ├── MyMoviesFragment.kt
│           │               │   ├── MyMoviesUiState.kt
│           │               │   ├── MyMoviesViewModel.kt
│           │               │   ├── cases/
│           │               │   │   ├── MyMoviesLoadCase.kt
│           │               │   │   ├── MyMoviesRatingsCase.kt
│           │               │   │   ├── MyMoviesSortingCase.kt
│           │               │   │   └── MyMoviesViewModeCase.kt
│           │               │   ├── helpers/
│           │               │   │   └── MyMoviesSorter.kt
│           │               │   ├── recycler/
│           │               │   │   ├── MyMoviesAdapter.kt
│           │               │   │   ├── MyMoviesItem.kt
│           │               │   │   ├── MyMoviesItemDiffCallback.kt
│           │               │   │   └── MyMoviesLayoutManagerProvider.kt
│           │               │   ├── utilities/
│           │               │   │   ├── MyMoviesGridItemDecoration.kt
│           │               │   │   └── MyMoviesListItemDecoration.kt
│           │               │   └── views/
│           │               │       ├── MyMovieAllCompactView.kt
│           │               │       ├── MyMovieAllGridTitleView.kt
│           │               │       ├── MyMovieAllGridView.kt
│           │               │       ├── MyMovieAllView.kt
│           │               │       ├── MyMovieFanartView.kt
│           │               │       ├── MyMovieHeaderView.kt
│           │               │       └── MyMoviesRecentsView.kt
│           │               └── watchlist/
│           │                   ├── WatchlistFragment.kt
│           │                   ├── WatchlistUiState.kt
│           │                   ├── WatchlistViewModel.kt
│           │                   ├── cases/
│           │                   │   ├── WatchlistFiltersCase.kt
│           │                   │   ├── WatchlistLoadMoviesCase.kt
│           │                   │   ├── WatchlistRatingsCase.kt
│           │                   │   ├── WatchlistSortOrderCase.kt
│           │                   │   └── WatchlistViewModeCase.kt
│           │                   └── recycler/
│           │                       └── WatchlistListItem.kt
│           └── res/
│               ├── drawable/
│               │   ├── divider_my_movies_fanart.xml
│               │   └── divider_my_movies_horizontal.xml
│               ├── layout/
│               │   ├── fragment_followed_movies.xml
│               │   ├── fragment_hidden_movies.xml
│               │   ├── fragment_my_movies.xml
│               │   ├── fragment_watchlist_movies.xml
│               │   ├── layout_hidden_empty.xml
│               │   ├── layout_my_movies_empty.xml
│               │   ├── layout_watchlist_movies_empty.xml
│               │   ├── view_collection_movie.xml
│               │   ├── view_collection_movie_compact.xml
│               │   ├── view_collection_movie_grid.xml
│               │   ├── view_collection_movie_grid_title.xml
│               │   ├── view_filters_genres.xml
│               │   ├── view_movies_filters.xml
│               │   ├── view_my_movies_all.xml
│               │   ├── view_my_movies_fanart.xml
│               │   ├── view_my_movies_header.xml
│               │   └── view_my_movies_recents.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-de/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-my-shows/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_my_shows/
│           │               ├── common/
│           │               │   ├── filters/
│           │               │   │   ├── CollectionFiltersOrigin.kt
│           │               │   │   ├── CollectionFiltersUiEvent.kt
│           │               │   │   ├── genre/
│           │               │   │   │   ├── CollectionFiltersGenreBottomSheet.kt
│           │               │   │   │   ├── CollectionFiltersGenreUiState.kt
│           │               │   │   │   └── CollectionFiltersGenreViewModel.kt
│           │               │   │   └── network/
│           │               │   │       ├── CollectionFiltersNetworkBottomSheet.kt
│           │               │   │       ├── CollectionFiltersNetworkUiState.kt
│           │               │   │       └── CollectionFiltersNetworkViewModel.kt
│           │               │   ├── layout/
│           │               │   │   ├── CollectionShowGridItemDecoration.kt
│           │               │   │   ├── CollectionShowLayoutManagerProvider.kt
│           │               │   │   └── CollectionShowListItemDecoration.kt
│           │               │   ├── recycler/
│           │               │   │   ├── CollectionAdapter.kt
│           │               │   │   ├── CollectionItemDiffCallback.kt
│           │               │   │   └── CollectionListItem.kt
│           │               │   └── views/
│           │               │       ├── CollectionShowCompactView.kt
│           │               │       ├── CollectionShowFiltersView.kt
│           │               │       ├── CollectionShowGridTitleView.kt
│           │               │       ├── CollectionShowGridView.kt
│           │               │       └── CollectionShowView.kt
│           │               ├── hidden/
│           │               │   ├── HiddenFragment.kt
│           │               │   ├── HiddenUiState.kt
│           │               │   ├── HiddenViewModel.kt
│           │               │   ├── cases/
│           │               │   │   ├── HiddenLoadShowsCase.kt
│           │               │   │   ├── HiddenRatingsCase.kt
│           │               │   │   ├── HiddenSortOrderCase.kt
│           │               │   │   ├── HiddenTranslationsCase.kt
│           │               │   │   └── HiddenViewModeCase.kt
│           │               │   └── helpers/
│           │               │       └── HiddenItemSorter.kt
│           │               ├── main/
│           │               │   ├── FollowedPagesAdapter.kt
│           │               │   ├── FollowedShowsFragment.kt
│           │               │   ├── FollowedShowsUiEvent.kt
│           │               │   ├── FollowedShowsUiState.kt
│           │               │   └── FollowedShowsViewModel.kt
│           │               ├── myshows/
│           │               │   ├── MyShowsFragment.kt
│           │               │   ├── MyShowsUiState.kt
│           │               │   ├── MyShowsViewModel.kt
│           │               │   ├── cases/
│           │               │   │   ├── MyShowsLoadShowsCase.kt
│           │               │   │   ├── MyShowsRatingsCase.kt
│           │               │   │   ├── MyShowsSortingCase.kt
│           │               │   │   ├── MyShowsTranslationsCase.kt
│           │               │   │   └── MyShowsViewModeCase.kt
│           │               │   ├── filters/
│           │               │   │   ├── MyShowsFiltersBottomSheet.kt
│           │               │   │   ├── MyShowsFiltersUiEvent.kt
│           │               │   │   ├── MyShowsFiltersUiState.kt
│           │               │   │   ├── MyShowsFiltersViewModel.kt
│           │               │   │   └── views/
│           │               │   │       └── MyShowsFilterItemView.kt
│           │               │   ├── helpers/
│           │               │   │   └── MyShowsItemSorter.kt
│           │               │   ├── recycler/
│           │               │   │   ├── MyShowsAdapter.kt
│           │               │   │   ├── MyShowsItem.kt
│           │               │   │   ├── MyShowsItemDiffCallback.kt
│           │               │   │   └── MyShowsLayoutManagerProvider.kt
│           │               │   └── views/
│           │               │       ├── MyShowAllCompactView.kt
│           │               │       ├── MyShowAllView.kt
│           │               │       ├── MyShowFanartView.kt
│           │               │       ├── MyShowGridTitleView.kt
│           │               │       ├── MyShowGridView.kt
│           │               │       ├── MyShowHeaderView.kt
│           │               │       └── MyShowsRecentsView.kt
│           │               ├── utilities/
│           │               │   ├── MyShowsGridItemDecoration.kt
│           │               │   └── MyShowsListItemDecoration.kt
│           │               └── watchlist/
│           │                   ├── WatchlistFragment.kt
│           │                   ├── WatchlistUiState.kt
│           │                   ├── WatchlistViewModel.kt
│           │                   ├── cases/
│           │                   │   ├── WatchlistFiltersCase.kt
│           │                   │   ├── WatchlistLoadShowsCase.kt
│           │                   │   ├── WatchlistRatingsCase.kt
│           │                   │   ├── WatchlistSortOrderCase.kt
│           │                   │   ├── WatchlistTranslationsCase.kt
│           │                   │   └── WatchlistViewModeCase.kt
│           │                   └── helpers/
│           │                       ├── WatchlistItemFilter.kt
│           │                       └── WatchlistItemSorter.kt
│           └── res/
│               ├── layout/
│               │   ├── fragment_followed_shows.xml
│               │   ├── fragment_hidden.xml
│               │   ├── fragment_my_shows.xml
│               │   ├── fragment_watchlist.xml
│               │   ├── layout_archive_empty.xml
│               │   ├── layout_my_shows_empty.xml
│               │   ├── layout_watchlist_empty.xml
│               │   ├── view_collection_show.xml
│               │   ├── view_collection_show_compact.xml
│               │   ├── view_collection_show_grid.xml
│               │   ├── view_collection_show_grid_title.xml
│               │   ├── view_filters_genres.xml
│               │   ├── view_filters_networks.xml
│               │   ├── view_my_shows_fanart.xml
│               │   ├── view_my_shows_header.xml
│               │   ├── view_my_shows_recents.xml
│               │   ├── view_my_shows_type_filter_item.xml
│               │   ├── view_my_shows_type_filters.xml
│               │   └── view_shows_filters.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-de/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-navigation/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com.michaldrabik.ui_navigation.java/
│           │       └── NavigationArgs.kt
│           └── res/
│               ├── anim/
│               │   ├── anim_fade_in.xml
│               │   ├── anim_fade_out.xml
│               │   ├── anim_in_from_left.xml
│               │   ├── anim_in_from_right.xml
│               │   ├── anim_out_from_left.xml
│               │   └── anim_out_from_right.xml
│               ├── anim-ar/
│               │   ├── anim_in_from_left.xml
│               │   ├── anim_in_from_right.xml
│               │   ├── anim_out_from_left.xml
│               │   └── anim_out_from_right.xml
│               └── navigation/
│                   └── navigation_graph.xml
├── ui-news/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_news/
│       │   │               ├── NewsFragment.kt
│       │   │               ├── NewsUiState.kt
│       │   │               ├── NewsViewModel.kt
│       │   │               ├── cases/
│       │   │               │   ├── NewsFiltersCase.kt
│       │   │               │   ├── NewsLoadItemsCase.kt
│       │   │               │   └── NewsViewTypeCase.kt
│       │   │               ├── providers/
│       │   │               │   └── NewsLayoutManagerProvider.kt
│       │   │               ├── recycler/
│       │   │               │   ├── NewsAdapter.kt
│       │   │               │   ├── NewsListItem.kt
│       │   │               │   └── NewsListItemDiffCallback.kt
│       │   │               └── views/
│       │   │                   ├── NewsFiltersView.kt
│       │   │                   ├── NewsHeaderView.kt
│       │   │                   └── item/
│       │   │                       ├── NewsItemCardView.kt
│       │   │                       ├── NewsItemRowView.kt
│       │   │                       └── NewsItemViewType.kt
│       │   └── res/
│       │       ├── drawable/
│       │       │   ├── bg_news_card_view_elevation.xml
│       │       │   ├── bg_news_card_view_placeholder.xml
│       │       │   ├── bg_play_circle.xml
│       │       │   ├── divider_news.xml
│       │       │   ├── ic_play_arrow.xml
│       │       │   ├── ic_view_cards.xml
│       │       │   └── iv_view_list.xml
│       │       ├── layout/
│       │       │   ├── fragment_news.xml
│       │       │   ├── layout_news_empty.xml
│       │       │   ├── view_news_filters.xml
│       │       │   ├── view_news_header.xml
│       │       │   ├── view_news_item.xml
│       │       │   └── view_news_item_card.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   └── dimens.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── ui_news/
│                           └── ExampleUnitTest.kt
├── ui-people/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_people/
│       │   │               ├── details/
│       │   │               │   ├── PersonDetailsArgs.kt
│       │   │               │   ├── PersonDetailsBottomSheet.kt
│       │   │               │   ├── PersonDetailsUiEvent.kt
│       │   │               │   ├── PersonDetailsUiState.kt
│       │   │               │   ├── PersonDetailsViewModel.kt
│       │   │               │   ├── cases/
│       │   │               │   │   ├── PersonDetailsCreditsCase.kt
│       │   │               │   │   ├── PersonDetailsImagesCase.kt
│       │   │               │   │   ├── PersonDetailsLoadCase.kt
│       │   │               │   │   └── PersonDetailsTranslationsCase.kt
│       │   │               │   ├── links/
│       │   │               │   │   └── PersonLinksBottomSheet.kt
│       │   │               │   └── recycler/
│       │   │               │       ├── PersonDetailsAdapter.kt
│       │   │               │       ├── PersonDetailsItem.kt
│       │   │               │       ├── PersonDetailsItemDiffCallback.kt
│       │   │               │       └── views/
│       │   │               │           ├── PersonDetailsBioView.kt
│       │   │               │           ├── PersonDetailsCreditsItemView.kt
│       │   │               │           ├── PersonDetailsFiltersView.kt
│       │   │               │           ├── PersonDetailsHeaderView.kt
│       │   │               │           ├── PersonDetailsInfoView.kt
│       │   │               │           └── PersonDetailsLoadingView.kt
│       │   │               ├── gallery/
│       │   │               │   ├── PersonGalleryFragment.kt
│       │   │               │   ├── PersonGalleryUiState.kt
│       │   │               │   ├── PersonGalleryViewModel.kt
│       │   │               │   ├── cases/
│       │   │               │   │   └── PersonGalleryImagesCase.kt
│       │   │               │   └── recycler/
│       │   │               │       ├── ImageItemDiffCallback.kt
│       │   │               │       ├── PersonGalleryAdapter.kt
│       │   │               │       └── views/
│       │   │               │           └── PersonGalleryImageView.kt
│       │   │               └── list/
│       │   │                   ├── PeopleListBottomSheet.kt
│       │   │                   ├── PeopleListUiState.kt
│       │   │                   ├── PeopleListViewModel.kt
│       │   │                   ├── cases/
│       │   │                   │   └── PeopleListItemsCase.kt
│       │   │                   └── recycler/
│       │   │                       ├── PeopleItemDiffCallback.kt
│       │   │                       ├── PeopleListAdapter.kt
│       │   │                       ├── PeopleListItem.kt
│       │   │                       └── views/
│       │   │                           ├── PeopleListHeaderView.kt
│       │   │                           └── PeopleListItemView.kt
│       │   └── res/
│       │       ├── color/
│       │       │   ├── selector_search_chip_background.xml
│       │       │   └── selector_search_chip_text.xml
│       │       ├── drawable/
│       │       │   ├── bg_indicator_circle.xml
│       │       │   ├── bg_person_image_elevation.xml
│       │       │   └── bg_person_placeholder.xml
│       │       ├── drawable-notnight/
│       │       │   └── bg_indicator_circle.xml
│       │       ├── layout/
│       │       │   ├── fragment_person_gallery.xml
│       │       │   ├── view_people_list.xml
│       │       │   ├── view_people_list_header.xml
│       │       │   ├── view_people_list_item.xml
│       │       │   ├── view_person_details.xml
│       │       │   ├── view_person_details_bio.xml
│       │       │   ├── view_person_details_credits_item.xml
│       │       │   ├── view_person_details_filters.xml
│       │       │   ├── view_person_details_header.xml
│       │       │   ├── view_person_details_info.xml
│       │       │   ├── view_person_details_loading.xml
│       │       │   ├── view_person_gallery_image.xml
│       │       │   └── view_person_links.xml
│       │       ├── layout-sw600dp/
│       │       │   └── view_person_details_credits_item.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   └── dimens.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── ui_people/
│                           └── ExampleUnitTest.kt
├── ui-premium/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_premium/
│           │               ├── PremiumFragment.kt
│           │               ├── PremiumUiEvent.kt
│           │               ├── PremiumUiState.kt
│           │               ├── PremiumViewModel.kt
│           │               └── views/
│           │                   └── PurchaseItemView.kt
│           └── res/
│               ├── drawable/
│               │   ├── divider_purchase_items.xml
│               │   ├── ic_flash.xml
│               │   ├── ic_genie.xml
│               │   ├── ic_homer.xml
│               │   ├── ic_spongebob.xml
│               │   ├── ic_walter_white.xml
│               │   ├── ic_yoda.xml
│               │   └── ic_zoidberg.xml
│               ├── layout/
│               │   ├── fragment_premium.xml
│               │   └── view_purchase_item.xml
│               ├── values/
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-progress/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_progress/
│           │               ├── calendar/
│           │               │   ├── CalendarFragment.kt
│           │               │   ├── CalendarUiState.kt
│           │               │   ├── CalendarViewModel.kt
│           │               │   ├── cases/
│           │               │   │   ├── CalendarRatingsCase.kt
│           │               │   │   └── items/
│           │               │   │       ├── CalendarFutureCase.kt
│           │               │   │       ├── CalendarItemsCase.kt
│           │               │   │       └── CalendarRecentsCase.kt
│           │               │   ├── helpers/
│           │               │   │   ├── WatchlistAppender.kt
│           │               │   │   ├── filters/
│           │               │   │   │   ├── CalendarFilter.kt
│           │               │   │   │   ├── CalendarFutureFilter.kt
│           │               │   │   │   └── CalendarRecentsFilter.kt
│           │               │   │   └── groupers/
│           │               │   │       ├── CalendarFutureGrouper.kt
│           │               │   │       ├── CalendarGrouper.kt
│           │               │   │       └── CalendarRecentsGrouper.kt
│           │               │   ├── recycler/
│           │               │   │   ├── CalendarAdapter.kt
│           │               │   │   ├── CalendarItemDiffCallback.kt
│           │               │   │   └── CalendarListItem.kt
│           │               │   └── views/
│           │               │       ├── CalendarHeaderView.kt
│           │               │       └── CalendarItemView.kt
│           │               ├── helpers/
│           │               │   ├── ProgressItemsSorter.kt
│           │               │   ├── ProgressLayoutManagerProvider.kt
│           │               │   ├── TopOverscrollAdapter.kt
│           │               │   └── TranslationsBundle.kt
│           │               ├── main/
│           │               │   ├── ProgressMainFragment.kt
│           │               │   ├── ProgressMainUiEvents.kt
│           │               │   ├── ProgressMainUiState.kt
│           │               │   ├── ProgressMainViewModel.kt
│           │               │   ├── adapters/
│           │               │   │   └── ProgressMainAdapter.kt
│           │               │   └── cases/
│           │               │       └── ProgressMainEpisodesCase.kt
│           │               └── progress/
│           │                   ├── ProgressFragment.kt
│           │                   ├── ProgressUiState.kt
│           │                   ├── ProgressViewModel.kt
│           │                   ├── cases/
│           │                   │   ├── ProgressFiltersCase.kt
│           │                   │   ├── ProgressHeadersCase.kt
│           │                   │   ├── ProgressItemsCase.kt
│           │                   │   ├── ProgressRatingsCase.kt
│           │                   │   └── ProgressSortOrderCase.kt
│           │                   ├── recycler/
│           │                   │   ├── ProgressAdapter.kt
│           │                   │   ├── ProgressItemDiffCallback.kt
│           │                   │   └── ProgressListItem.kt
│           │                   └── views/
│           │                       ├── ProgressFiltersView.kt
│           │                       ├── ProgressHeaderView.kt
│           │                       └── ProgressItemView.kt
│           └── res/
│               ├── layout/
│               │   ├── fragment_calendar.xml
│               │   ├── fragment_progress.xml
│               │   ├── fragment_progress_main.xml
│               │   ├── layout_calendar_empty.xml
│               │   ├── layout_progress_empty.xml
│               │   ├── layout_recents_empty.xml
│               │   ├── view_calendar_header.xml
│               │   ├── view_calendar_item.xml
│               │   ├── view_progress_filters.xml
│               │   ├── view_progress_header.xml
│               │   └── view_progress_item.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-ar/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-de/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-progress-movies/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_progress_movies/
│       │   │               ├── calendar/
│       │   │               │   ├── CalendarMoviesFragment.kt
│       │   │               │   ├── CalendarMoviesUiState.kt
│       │   │               │   ├── CalendarMoviesViewModel.kt
│       │   │               │   ├── cases/
│       │   │               │   │   ├── CalendarMoviesRatingsCase.kt
│       │   │               │   │   └── items/
│       │   │               │   │       ├── CalendarMoviesFutureCase.kt
│       │   │               │   │       ├── CalendarMoviesItemsCase.kt
│       │   │               │   │       └── CalendarMoviesRecentsCase.kt
│       │   │               │   ├── helpers/
│       │   │               │   │   ├── filters/
│       │   │               │   │   │   ├── CalendarFilter.kt
│       │   │               │   │   │   ├── CalendarFutureFilter.kt
│       │   │               │   │   │   └── CalendarRecentsFilter.kt
│       │   │               │   │   ├── groupers/
│       │   │               │   │   │   ├── CalendarFutureGrouper.kt
│       │   │               │   │   │   ├── CalendarGrouper.kt
│       │   │               │   │   │   └── CalendarRecentsGrouper.kt
│       │   │               │   │   └── sorter/
│       │   │               │   │       ├── CalendarFutureSorter.kt
│       │   │               │   │       ├── CalendarRecentsSorter.kt
│       │   │               │   │       └── CalendarSorter.kt
│       │   │               │   ├── recycler/
│       │   │               │   │   ├── CalendarMovieItemDiffCallback.kt
│       │   │               │   │   ├── CalendarMovieListItem.kt
│       │   │               │   │   └── CalendarMoviesAdapter.kt
│       │   │               │   └── views/
│       │   │               │       ├── CalendarMoviesHeaderView.kt
│       │   │               │       └── CalendarMoviesItemView.kt
│       │   │               ├── helpers/
│       │   │               │   ├── ProgressMoviesItemsSorter.kt
│       │   │               │   ├── ProgressMoviesLayoutManagerProvider.kt
│       │   │               │   └── TopOverscrollAdapter.kt
│       │   │               ├── main/
│       │   │               │   ├── ProgressMoviesMainAdapter.kt
│       │   │               │   ├── ProgressMoviesMainFragment.kt
│       │   │               │   ├── ProgressMoviesMainUiEvents.kt
│       │   │               │   ├── ProgressMoviesMainUiState.kt
│       │   │               │   ├── ProgressMoviesMainViewModel.kt
│       │   │               │   └── cases/
│       │   │               │       └── ProgressMoviesMainCase.kt
│       │   │               └── progress/
│       │   │                   ├── ProgressMoviesFragment.kt
│       │   │                   ├── ProgressMoviesUiState.kt
│       │   │                   ├── ProgressMoviesViewModel.kt
│       │   │                   ├── cases/
│       │   │                   │   ├── ProgressMoviesItemsCase.kt
│       │   │                   │   ├── ProgressMoviesPinnedCase.kt
│       │   │                   │   └── ProgressMoviesSortCase.kt
│       │   │                   ├── recycler/
│       │   │                   │   ├── ProgressMovieItemDiffCallback.kt
│       │   │                   │   ├── ProgressMovieListItem.kt
│       │   │                   │   └── ProgressMoviesAdapter.kt
│       │   │                   └── views/
│       │   │                       ├── ProgressMoviesFiltersView.kt
│       │   │                       └── ProgressMoviesItemView.kt
│       │   └── res/
│       │       ├── layout/
│       │       │   ├── fragment_calendar_movies.xml
│       │       │   ├── fragment_progress_main_movies.xml
│       │       │   ├── fragment_progress_movies.xml
│       │       │   ├── layout_calendar_movies_future_empty.xml
│       │       │   ├── layout_calendar_movies_recents_empty.xml
│       │       │   ├── layout_progress_movies_empty.xml
│       │       │   ├── view_calendar_movies_header.xml
│       │       │   ├── view_progress_movies_calendar_item.xml
│       │       │   ├── view_progress_movies_filters.xml
│       │       │   └── view_progress_movies_main_item.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   └── dimens.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── ui_progress_movies/
│                           ├── BaseMockTest.kt
│                           ├── calendar/
│                           │   ├── CalendarMoviesViewModelTest.kt
│                           │   ├── cases/
│                           │   │   └── CalendarMoviesRatingsCaseTest.kt
│                           │   └── helpers/
│                           │       ├── filters/
│                           │       │   ├── CalendarFutureFilterTest.kt
│                           │       │   └── CalendarRecentsFilterTest.kt
│                           │       ├── groupers/
│                           │       │   ├── CalendarFutureGrouperTest.kt
│                           │       │   └── CalendarRecentsGrouperTest.kt
│                           │       └── sorter/
│                           │           ├── CalendarFutureSorterTest.kt
│                           │           └── CalendarRecentsSorterTest.kt
│                           ├── main/
│                           │   ├── ProgressMoviesMainViewModelTest.kt
│                           │   └── cases/
│                           │       └── ProgressMoviesMainCaseTest.kt
│                           └── progress/
│                               ├── ProgressMoviesViewModelTest.kt
│                               └── cases/
│                                   ├── ProgressMoviesItemsCaseTest.kt
│                                   ├── ProgressMoviesPinnedCaseTest.kt
│                                   └── ProgressMoviesSortCaseTest.kt
├── ui-search/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_search/
│       │   │               ├── SearchFragment.kt
│       │   │               ├── SearchUiState.kt
│       │   │               ├── SearchViewModel.kt
│       │   │               ├── cases/
│       │   │               │   ├── SearchFiltersCase.kt
│       │   │               │   ├── SearchInvalidateItemCase.kt
│       │   │               │   ├── SearchQueryCase.kt
│       │   │               │   ├── SearchRecentsCase.kt
│       │   │               │   ├── SearchSortingCase.kt
│       │   │               │   ├── SearchSuggestionsCase.kt
│       │   │               │   └── SearchTranslationsCase.kt
│       │   │               ├── recycler/
│       │   │               │   ├── SearchAdapter.kt
│       │   │               │   ├── SearchItemDiffCallback.kt
│       │   │               │   ├── SearchListItem.kt
│       │   │               │   └── suggestions/
│       │   │               │       ├── SuggestionAdapter.kt
│       │   │               │       └── SuggestionItemDiffCallback.kt
│       │   │               ├── utilities/
│       │   │               │   ├── SearchLayoutManagerProvider.kt
│       │   │               │   ├── SearchOptions.kt
│       │   │               │   └── TextWatcherAdapter.kt
│       │   │               └── views/
│       │   │                   ├── InitialSearchView.kt
│       │   │                   ├── RecentSearchView.kt
│       │   │                   ├── SearchFiltersView.kt
│       │   │                   ├── SearchItemView.kt
│       │   │                   └── SearchSuggestionView.kt
│       │   └── res/
│       │       ├── color/
│       │       │   ├── selector_search_chip_background.xml
│       │       │   └── selector_search_chip_text.xml
│       │       ├── color-notnight/
│       │       │   └── selector_search_chip_background.xml
│       │       ├── drawable/
│       │       │   └── bg_suggestions.xml
│       │       ├── layout/
│       │       │   ├── fragment_search.xml
│       │       │   ├── view_search_filters.xml
│       │       │   ├── view_search_initial.xml
│       │       │   ├── view_search_recent.xml
│       │       │   ├── view_show_search.xml
│       │       │   └── view_suggestion_search.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   └── dimens.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               └── com.michaldrabik.ui_search/
│                   ├── BaseMockTest.kt
│                   ├── SearchViewModelTest.kt
│                   ├── cases/
│                   │   ├── SearchFiltersCaseTest.kt
│                   │   ├── SearchQueryCaseTest.kt
│                   │   ├── SearchRecentsCaseTest.kt
│                   │   ├── SearchSortingCaseTest.kt
│                   │   ├── SearchSuggestionsCaseTest.kt
│                   │   └── SearchTranslationsCaseTest.kt
│                   └── helpers/
│                       └── TestData.kt
├── ui-settings/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── androidTest/
│       │   └── java/
│       │       └── com/
│       │           └── michaldrabik/
│       │               └── ui_settings/
│       │                   └── ExampleInstrumentedTest.kt
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_settings/
│       │   │               ├── SettingsFragment.kt
│       │   │               ├── SettingsUiState.kt
│       │   │               ├── SettingsViewModel.kt
│       │   │               ├── helpers/
│       │   │               │   ├── AppLanguage.kt
│       │   │               │   ├── AppTheme.kt
│       │   │               │   └── WidgetTransparency.kt
│       │   │               └── sections/
│       │   │                   ├── general/
│       │   │                   │   ├── SettingsGeneralFragment.kt
│       │   │                   │   ├── SettingsGeneralUiState.kt
│       │   │                   │   ├── SettingsGeneralViewModel.kt
│       │   │                   │   └── cases/
│       │   │                   │       ├── SettingsGeneralMainCase.kt
│       │   │                   │       ├── SettingsGeneralStreamingsCase.kt
│       │   │                   │       └── SettingsGeneralThemesCase.kt
│       │   │                   ├── misc/
│       │   │                   │   ├── SettingsMiscFragment.kt
│       │   │                   │   ├── SettingsMiscUiState.kt
│       │   │                   │   ├── SettingsMiscViewModel.kt
│       │   │                   │   └── cases/
│       │   │                   │       ├── SettingsMiscCacheCase.kt
│       │   │                   │       └── SettingsMiscUserCase.kt
│       │   │                   ├── notifications/
│       │   │                   │   ├── SettingsNotificationsFragment.kt
│       │   │                   │   ├── SettingsNotificationsUiEvent.kt
│       │   │                   │   ├── SettingsNotificationsUiState.kt
│       │   │                   │   ├── SettingsNotificationsViewModel.kt
│       │   │                   │   ├── cases/
│       │   │                   │   │   └── SettingsNotificationsMainCase.kt
│       │   │                   │   └── views/
│       │   │                   │       └── NotificationsRationaleView.kt
│       │   │                   ├── spoilers/
│       │   │                   │   ├── SettingsSpoilersFragment.kt
│       │   │                   │   ├── SettingsSpoilersUiState.kt
│       │   │                   │   ├── SettingsSpoilersViewModel.kt
│       │   │                   │   ├── episodes/
│       │   │                   │   │   ├── SpoilersEpisodesBottomSheet.kt
│       │   │                   │   │   ├── SpoilersEpisodesUiState.kt
│       │   │                   │   │   └── SpoilersEpisodesViewModel.kt
│       │   │                   │   ├── helpers/
│       │   │                   │   │   └── SettingsSpoilersHelper.kt
│       │   │                   │   ├── movies/
│       │   │                   │   │   ├── SpoilersMoviesBottomSheet.kt
│       │   │                   │   │   ├── SpoilersMoviesUiState.kt
│       │   │                   │   │   └── SpoilersMoviesViewModel.kt
│       │   │                   │   └── shows/
│       │   │                   │       ├── SpoilersShowsBottomSheet.kt
│       │   │                   │       ├── SpoilersShowsUiState.kt
│       │   │                   │       └── SpoilersShowsViewModel.kt
│       │   │                   ├── trakt/
│       │   │                   │   ├── SettingsTraktFragment.kt
│       │   │                   │   ├── SettingsTraktUiEvent.kt
│       │   │                   │   ├── SettingsTraktUiState.kt
│       │   │                   │   ├── SettingsTraktViewModel.kt
│       │   │                   │   ├── cases/
│       │   │                   │   │   ├── SettingsRatingsCase.kt
│       │   │                   │   │   ├── SettingsTraktCase.kt
│       │   │                   │   │   └── SettingsTraktMainCase.kt
│       │   │                   │   └── views/
│       │   │                   │       └── TraktNotificationsRationaleView.kt
│       │   │                   └── widgets/
│       │   │                       ├── SettingsWidgetsFragment.kt
│       │   │                       ├── SettingsWidgetsUiState.kt
│       │   │                       ├── SettingsWidgetsViewModel.kt
│       │   │                       └── cases/
│       │   │                           ├── SettingsWidgetsMainCase.kt
│       │   │                           └── SettingsWidgetsThemesCase.kt
│       │   └── res/
│       │       ├── drawable/
│       │       │   └── bg_premium_ad.xml
│       │       ├── layout/
│       │       │   ├── fragment_settings.xml
│       │       │   ├── fragment_settings_general.xml
│       │       │   ├── fragment_settings_misc.xml
│       │       │   ├── fragment_settings_notifications.xml
│       │       │   ├── fragment_settings_spoilers.xml
│       │       │   ├── fragment_settings_trakt.xml
│       │       │   ├── fragment_settings_widgets.xml
│       │       │   ├── sheet_spoilers_episodes.xml
│       │       │   ├── sheet_spoilers_movies.xml
│       │       │   ├── sheet_spoilers_shows.xml
│       │       │   ├── view_notifications_rationale.xml
│       │       │   └── view_trakt_notifications_rationale.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   ├── strings.xml
│       │       │   └── styles.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   ├── dimens.xml
│       │       │   └── styles.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── ui_settings/
│                           └── ExampleUnitTest.kt
├── ui-show/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_show/
│           │               ├── ShowDetailsFragment.kt
│           │               ├── ShowDetailsUiEvents.kt
│           │               ├── ShowDetailsUiState.kt
│           │               ├── ShowDetailsViewModel.kt
│           │               ├── cases/
│           │               │   ├── ShowDetailsHiddenCase.kt
│           │               │   ├── ShowDetailsListsCase.kt
│           │               │   ├── ShowDetailsMainCase.kt
│           │               │   ├── ShowDetailsMyShowsCase.kt
│           │               │   ├── ShowDetailsTranslationCase.kt
│           │               │   └── ShowDetailsWatchlistCase.kt
│           │               ├── episodes/
│           │               │   ├── ShowDetailsEpisodesFragment.kt
│           │               │   ├── ShowDetailsEpisodesUiEvents.kt
│           │               │   ├── ShowDetailsEpisodesUiState.kt
│           │               │   ├── ShowDetailsEpisodesViewModel.kt
│           │               │   ├── cases/
│           │               │   │   ├── EpisodesAnnouncementsCase.kt
│           │               │   │   ├── EpisodesLoadShowCase.kt
│           │               │   │   ├── EpisodesMarkWatchedCase.kt
│           │               │   │   ├── EpisodesRatingCase.kt
│           │               │   │   ├── EpisodesSetEpisodeWatchedCase.kt
│           │               │   │   ├── EpisodesSetSeasonWatchedCase.kt
│           │               │   │   └── EpisodesTranslationCase.kt
│           │               │   └── recycler/
│           │               │       ├── EpisodeListItem.kt
│           │               │       ├── EpisodeListItemDiffCallback.kt
│           │               │       ├── EpisodeView.kt
│           │               │       └── EpisodesAdapter.kt
│           │               ├── helpers/
│           │               │   └── ShowDetailsMeta.kt
│           │               ├── quicksetup/
│           │               │   ├── QuickSetupAdapter.kt
│           │               │   ├── QuickSetupItemDiffCallback.kt
│           │               │   ├── QuickSetupListItem.kt
│           │               │   ├── QuickSetupView.kt
│           │               │   └── views/
│           │               │       ├── QuickSetupHeaderView.kt
│           │               │       └── QuickSetupItemView.kt
│           │               ├── sections/
│           │               │   ├── nextepisode/
│           │               │   │   ├── ShowDetailsNextEpisodeFragment.kt
│           │               │   │   ├── ShowDetailsNextEpisodeUiState.kt
│           │               │   │   ├── ShowDetailsNextEpisodeViewModel.kt
│           │               │   │   ├── cases/
│           │               │   │   │   ├── ShowDetailsNextEpisodeCase.kt
│           │               │   │   │   ├── ShowDetailsTranslationCase.kt
│           │               │   │   │   └── ShowDetailsWatchedCase.kt
│           │               │   │   └── helpers/
│           │               │   │       └── NextEpisodeBundle.kt
│           │               │   ├── people/
│           │               │   │   ├── ShowDetailsPeopleFragment.kt
│           │               │   │   ├── ShowDetailsPeopleUiState.kt
│           │               │   │   ├── ShowDetailsPeopleViewModel.kt
│           │               │   │   ├── cases/
│           │               │   │   │   └── ShowDetailsPeopleCase.kt
│           │               │   │   └── recycler/
│           │               │   │       ├── ActorView.kt
│           │               │   │       └── ActorsAdapter.kt
│           │               │   ├── ratings/
│           │               │   │   ├── ShowDetailsRatingsFragment.kt
│           │               │   │   ├── ShowDetailsRatingsUiState.kt
│           │               │   │   ├── ShowDetailsRatingsViewModel.kt
│           │               │   │   ├── ShowLink.kt
│           │               │   │   └── cases/
│           │               │   │       ├── ShowDetailsRatingCase.kt
│           │               │   │       └── ShowDetailsRatingSpoilersCase.kt
│           │               │   ├── related/
│           │               │   │   ├── ShowDetailsRelatedFragment.kt
│           │               │   │   ├── ShowDetailsRelatedUiState.kt
│           │               │   │   ├── ShowDetailsRelatedViewModel.kt
│           │               │   │   ├── cases/
│           │               │   │   │   └── ShowDetailsRelatedCase.kt
│           │               │   │   └── recycler/
│           │               │   │       ├── RelatedItemDiffCallback.kt
│           │               │   │       ├── RelatedListItem.kt
│           │               │   │       ├── RelatedShowAdapter.kt
│           │               │   │       └── RelatedShowView.kt
│           │               │   ├── seasons/
│           │               │   │   ├── ShowDetailsSeasonsFragment.kt
│           │               │   │   ├── ShowDetailsSeasonsUiEvents.kt
│           │               │   │   ├── ShowDetailsSeasonsUiState.kt
│           │               │   │   ├── ShowDetailsSeasonsViewModel.kt
│           │               │   │   ├── cases/
│           │               │   │   │   ├── ShowDetailsLoadSeasonsCase.kt
│           │               │   │   │   ├── ShowDetailsQuickProgressCase.kt
│           │               │   │   │   └── ShowDetailsWatchedSeasonCase.kt
│           │               │   │   ├── helpers/
│           │               │   │   │   ├── SeasonsBundle.kt
│           │               │   │   │   └── SeasonsCache.kt
│           │               │   │   └── recycler/
│           │               │   │       ├── SeasonListItem.kt
│           │               │   │       ├── SeasonListItemDiffCallback.kt
│           │               │   │       ├── SeasonView.kt
│           │               │   │       ├── SeasonsAdapter.kt
│           │               │   │       └── helpers/
│           │               │   │           ├── SeasonsGridItemDecoration.kt
│           │               │   │           └── SeasonsLayoutManagerProvider.kt
│           │               │   └── streamings/
│           │               │       ├── ShowDetailsStreamingsFragment.kt
│           │               │       ├── ShowDetailsStreamingsUiState.kt
│           │               │       ├── ShowDetailsStreamingsViewModel.kt
│           │               │       └── cases/
│           │               │           └── ShowDetailsStreamingCase.kt
│           │               └── views/
│           │                   └── AddToShowsButton.kt
│           └── res/
│               ├── drawable/
│               │   ├── divider_horizontal_list.xml
│               │   ├── ic_arrow_right.xml
│               │   ├── ic_locked.xml
│               │   ├── ic_quick_setup.xml
│               │   └── ic_unlocked.xml
│               ├── drawable-ar/
│               │   └── ic_arrow_right.xml
│               ├── layout/
│               │   ├── fragment_show_details.xml
│               │   ├── fragment_show_details_episodes.xml
│               │   ├── fragment_show_details_next_episode.xml
│               │   ├── fragment_show_details_people.xml
│               │   ├── fragment_show_details_ratings.xml
│               │   ├── fragment_show_details_related.xml
│               │   ├── fragment_show_details_seasons.xml
│               │   ├── fragment_show_details_streamings.xml
│               │   ├── view_actor.xml
│               │   ├── view_add_to_shows_button.xml
│               │   ├── view_episode.xml
│               │   ├── view_quick_setup.xml
│               │   ├── view_quick_setup_header.xml
│               │   ├── view_quick_setup_item.xml
│               │   ├── view_related_show.xml
│               │   └── view_season.xml
│               ├── layout-sw600dp/
│               │   ├── fragment_show_details.xml
│               │   ├── fragment_show_details_next_episode.xml
│               │   ├── fragment_show_details_people.xml
│               │   ├── fragment_show_details_related.xml
│               │   ├── fragment_show_details_seasons.xml
│               │   └── view_season.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-statistics/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_statistics/
│       │   │               ├── StatisticsFragment.kt
│       │   │               ├── StatisticsUiState.kt
│       │   │               ├── StatisticsViewModel.kt
│       │   │               ├── cases/
│       │   │               │   └── StatisticsLoadRatingsCase.kt
│       │   │               └── views/
│       │   │                   ├── StatisticsTopGenresView.kt
│       │   │                   ├── StatisticsTotalEpisodesView.kt
│       │   │                   ├── StatisticsTotalTimeSpentView.kt
│       │   │                   ├── mostWatched/
│       │   │                   │   ├── StatisticsMostWatchedItem.kt
│       │   │                   │   ├── StatisticsMostWatchedItemView.kt
│       │   │                   │   ├── StatisticsMostWatchedShowsView.kt
│       │   │                   │   └── recycler/
│       │   │                   │       ├── MostWatchedAdapter.kt
│       │   │                   │       └── MostWatchedItemDiffCallback.kt
│       │   │                   └── ratings/
│       │   │                       ├── StatisticsRateItemView.kt
│       │   │                       ├── StatisticsRatingsView.kt
│       │   │                       └── recycler/
│       │   │                           ├── StatisticsRatingItem.kt
│       │   │                           ├── StatisticsRatingsAdapter.kt
│       │   │                           └── StatisticsRatingsDiffCallback.kt
│       │   └── res/
│       │       ├── drawable/
│       │       │   ├── divider_statistics_most_watched.xml
│       │       │   └── divider_statistics_ratings.xml
│       │       ├── layout/
│       │       │   ├── fragment_statistics.xml
│       │       │   ├── layout_statistics_empty.xml
│       │       │   ├── view_statistics_card_most_watched_shows.xml
│       │       │   ├── view_statistics_card_ratings.xml
│       │       │   ├── view_statistics_card_top_genre.xml
│       │       │   ├── view_statistics_card_total_episodes.xml
│       │       │   ├── view_statistics_card_total_time.xml
│       │       │   ├── view_statistics_most_watched_item.xml
│       │       │   └── view_statistics_rate_item.xml
│       │       ├── layout-sw600dp/
│       │       │   └── fragment_statistics.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   ├── strings.xml
│       │       │   └── styles.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-notnight/
│       │       │   └── dimens.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   └── dimens.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               ├── BaseMockTest.kt
│               ├── TestData.kt
│               └── com/
│                   └── michaldrabik/
│                       └── ui_statistics/
│                           ├── StatisticsViewModelTest.kt
│                           └── cases/
│                               └── StatisticsLoadRatingsCaseTest.kt
├── ui-statistics-movies/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_statistics_movies/
│       │   │               ├── StatisticsMoviesFragment.kt
│       │   │               ├── StatisticsMoviesUiState.kt
│       │   │               ├── StatisticsMoviesViewModel.kt
│       │   │               ├── cases/
│       │   │               │   └── StatisticsMoviesLoadRatingsCase.kt
│       │   │               └── views/
│       │   │                   ├── StatisticsMoviesTopGenresView.kt
│       │   │                   ├── StatisticsMoviesTotalMoviesView.kt
│       │   │                   ├── StatisticsMoviesTotalTimeSpentView.kt
│       │   │                   └── ratings/
│       │   │                       ├── StatisticsMoviesRateItemView.kt
│       │   │                       ├── StatisticsMoviesRatingsView.kt
│       │   │                       └── recycler/
│       │   │                           ├── StatisticsMoviesRatingItem.kt
│       │   │                           ├── StatisticsMoviesRatingsAdapter.kt
│       │   │                           └── StatisticsMoviesRatingsDiffCallback.kt
│       │   └── res/
│       │       ├── drawable/
│       │       │   └── divider_statistics_ratings.xml
│       │       ├── layout/
│       │       │   ├── fragment_statistics_movies.xml
│       │       │   ├── layout_statistics_movies_empty.xml
│       │       │   ├── view_statistics_movies_card_ratings.xml
│       │       │   ├── view_statistics_movies_card_top_genre.xml
│       │       │   ├── view_statistics_movies_card_total_movies.xml
│       │       │   ├── view_statistics_movies_card_total_time.xml
│       │       │   └── view_statistics_movies_rate_item.xml
│       │       ├── layout-sw600dp/
│       │       │   └── fragment_statistics_movies.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-notnight/
│       │       │   └── dimens.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               ├── BaseMockTest.kt
│               └── com/
│                   └── michaldrabik/
│                       └── ui_statistics_movies/
│                           ├── StatisticsMoviesViewModelTest.kt
│                           └── cases/
│                               └── StatisticsMoviesLoadRatingsCaseTest.kt
├── ui-streamings/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_streamings/
│           │               ├── recycler/
│           │               │   ├── StreamingAdapter.kt
│           │               │   └── StreamingItemDiffCallback.kt
│           │               └── views/
│           │                   └── StreamingView.kt
│           └── res/
│               ├── drawable/
│               │   ├── bg_streaming.xml
│               │   └── bg_streaming_ripple.xml
│               ├── layout/
│               │   └── view_streaming.xml
│               ├── layout-sw600dp/
│               │   └── view_streaming.xml
│               ├── values/
│               │   └── dimens.xml
│               └── values-sw600dp/
│                   └── dimens.xml
├── ui-trakt-sync/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_trakt_sync/
│       │   │               ├── TraktSyncFragment.kt
│       │   │               ├── TraktSyncUiEvent.kt
│       │   │               ├── TraktSyncUiState.kt
│       │   │               ├── TraktSyncViewModel.kt
│       │   │               ├── cases/
│       │   │               │   └── TraktSyncRatingsCase.kt
│       │   │               └── views/
│       │   │                   └── NotificationsRationaleView.kt
│       │   └── res/
│       │       ├── drawable/
│       │       │   └── ic_sync.xml
│       │       ├── layout/
│       │       │   ├── fragment_trakt_sync.xml
│       │       │   └── view_trakt_notifications_rationale.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   └── dimens.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               ├── BaseMockTest.kt
│               └── com/
│                   └── michaldrabik/
│                       └── ui_trakt_sync/
│                           └── TraktSyncViewModelTest.kt
├── ui-widgets/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_widgets/
│           │               ├── BaseWidgetProvider.kt
│           │               ├── calendar/
│           │               │   ├── CalendarWidgetProvider.kt
│           │               │   ├── CalendarWidgetService.kt
│           │               │   └── CalendarWidgetViewsFactory.kt
│           │               ├── calendar_movies/
│           │               │   ├── CalendarMoviesWidgetProvider.kt
│           │               │   ├── CalendarMoviesWidgetService.kt
│           │               │   └── CalendarMoviesWidgetViewsFactory.kt
│           │               ├── progress/
│           │               │   ├── ProgressWidgetEpisodeCheckService.kt
│           │               │   ├── ProgressWidgetProvider.kt
│           │               │   ├── ProgressWidgetService.kt
│           │               │   └── ProgressWidgetViewsFactory.kt
│           │               ├── progress_movies/
│           │               │   ├── ProgressMoviesWidgetCheckService.kt
│           │               │   ├── ProgressMoviesWidgetProvider.kt
│           │               │   ├── ProgressMoviesWidgetService.kt
│           │               │   └── ProgressMoviesWidgetViewsFactory.kt
│           │               └── search/
│           │                   └── SearchWidgetProvider.kt
│           └── res/
│               ├── drawable/
│               │   ├── bg_widget.xml
│               │   ├── bg_widget_0.xml
│               │   ├── bg_widget_25.xml
│               │   ├── bg_widget_50.xml
│               │   ├── bg_widget_75.xml
│               │   ├── bg_widget_check_button.xml
│               │   ├── bg_widget_media_view_elevation.xml
│               │   ├── bg_widget_search.xml
│               │   └── bg_widget_toolbar.xml
│               ├── layout/
│               │   ├── layout_widget_calendar.xml
│               │   ├── layout_widget_calendar_item.xml
│               │   ├── layout_widget_header.xml
│               │   ├── layout_widget_movies_calendar.xml
│               │   ├── layout_widget_movies_calendar_item.xml
│               │   ├── layout_widget_movies_progress.xml
│               │   ├── layout_widget_movies_progress_item.xml
│               │   ├── layout_widget_progress.xml
│               │   ├── layout_widget_progress_item.xml
│               │   ├── widget_calendar_day.xml
│               │   ├── widget_calendar_item_day.xml
│               │   ├── widget_calendar_item_night.xml
│               │   ├── widget_calendar_night.xml
│               │   ├── widget_header_day.xml
│               │   ├── widget_header_night.xml
│               │   ├── widget_loading_item.xml
│               │   ├── widget_movies_calendar_day.xml
│               │   ├── widget_movies_calendar_item_day.xml
│               │   ├── widget_movies_calendar_item_night.xml
│               │   ├── widget_movies_calendar_night.xml
│               │   ├── widget_movies_progress_day.xml
│               │   ├── widget_movies_progress_item_day.xml
│               │   ├── widget_movies_progress_item_night.xml
│               │   ├── widget_movies_progress_night.xml
│               │   ├── widget_progress_day.xml
│               │   ├── widget_progress_item_day.xml
│               │   ├── widget_progress_item_night.xml
│               │   ├── widget_progress_night.xml
│               │   └── widget_search.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── xml/
│                   ├── calendar_movies_widgets_provider.xml
│                   ├── calendar_widgets_provider.xml
│                   ├── progress_movies_widgets_provider.xml
│                   ├── progress_widgets_provider.xml
│                   └── search_widgets_provider.xml
└── versions.gradle

================================================
FILE CONTENTS
================================================

================================================
FILE: .editorconfig
================================================
[*.{kt,kts}]
indent_size=2
insert_final_newline=true
max_line_length=150
disabled_rules=import-ordering

================================================
FILE: .github/ISSUE_TEMPLATE/bug-problem-report.md
================================================
---
name: Bug/Problem Report
about: Create a report of bug/problem you have encountered
title: ''
labels: ''
assignees: ''

---

If you have an idea for a new feature or how to improve the app please use [Discussions](https://github.com/michaldrabik/showly-2.0/discussions) for that purpose.

**Describe the bug**
A clear description of what the problem is.

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.


================================================
FILE: .gitignore
================================================
*.iml
.gradle
/local.properties
/.idea
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
ktlint2.jar
/app/keystore.properties
/app/keystore


================================================
FILE: LICENSE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright (C) <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.


================================================
FILE: README.md
================================================
![Version](https://img.shields.io/github/v/tag/1RandomDev/showly-oss?style=flat&label=Version)
![Downloads](https://img.shields.io/github/downloads/1RandomDev/showly-oss/total?style=flat&label=Downloads)

> [!NOTE]  
> Since the official Showly app is now open source (only APK on GitHub, not the PlayStore version), this fork becomes obsolete and will therefor be archived. You can download the latest OSS version from the [official repo](https://github.com/michaldrabik/showly/releases).

# Showly OSS
<img src="https://i.ibb.co/ChBN7Lg/ic-launcher.png" align="left" width="180" hspace="10" vspace="10" />

Showly 2.0 is modern, slick, open source Android TV Shows Tracker.

This fork gets rid of all proprietary tracking libraries.

<a href="https://github.com/1RandomDev/showly-oss/releases/latest">
  <img
    alt="Get it on GitHub"
    height="80"
    src="badge_github.png"/>
</a>
<a href="https://apt.izzysoft.de/fdroid/index/apk/com.michaldrabik.showly_oss">
  <img
    alt="Get it on IzzyOnDroid"
    height="80"
    src="https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png"/>
</a>

## Screenshots

<div>
   <img src="assets/screenshots/github1a.jpg" width="150" alt="Screenshot 1">
   <img src="assets/screenshots/github2a.jpg" width="150" alt="Screenshot 2">
   <img src="assets/screenshots/github3a.jpg" width="150" alt="Screenshot 3">
   <img src="assets/screenshots/github4a.jpg" width="150" alt="Screenshot 4">
</div>

## Project Setup

1. Clone repository and open project in the latest version of Android Studio.
2. Create `keystore.properties` file and put it in the `/app` folder.
3. Add following properties into `keystore.properties` file (values are not important at this moment):
```
keyAlias=github
keyPassword=github
storePassword=github
```
4. Add your [Trakt.tv](https://trakt.tv/oauth/applications), [TMDB](https://developers.themoviedb.org/3/), [OMDB](http://www.omdbapi.com) and [Reddit](https://www.reddit.com/prefs/apps) API keys as following properties into your `local.properties` file located in the root directory of the project:
```
traktClientId="your trakt client id"
traktClientSecret="your trakt client secret"
tmdbApiKey="your tmdb api key (v4)"
omdbApiKey="your omdb api key"
redditClientId="your reddit client id"
```
5. Rebuild and start the app.

## Issues & Contributions

Feel free to post problems with the app as Github [Issues](https://github.com/1RandomDev/showly-oss/issues).

Features ideas should be posted as new Github [Discussion](https://github.com/michaldrabik/showly-2.0/discussions).

Pull requests are welcome. Remember about leaving a comment in the relevant issue if you are working on something.

### Language Translations

We're always looking for help with translating app into more languages.<br>
If you are interested in helping now or in the future, please visit our CrowdIn project and join:<br>
https://crwd.in/showly-android-app

## FAQ

**1. Can I watch/stream/download shows and movies with Showly app?**

  No, that is not possible. Showly is a progress tracking type of app - not a streaming service.

**2. Show/Episode/Movie I'm looking for seems to be missing. What can I do?**

  Showly uses [Trakt.tv](https://trakt.tv) as its main data source.
  If something is missing please use "Import Show" / "Import Movie" option located at the bottom of Trakt.tv website.
  It's also possible to contact Trakt.tv support about any related issue.


================================================
FILE: app/.gitignore
================================================
/build
/release


================================================
FILE: app/build.gradle
================================================
plugins {
  id 'com.android.application'
  id 'kotlin-android'
  id 'com.google.devtools.ksp'
  id 'dagger.hilt.android.plugin'
}

apply from: '../versions.gradle'

android {
  kotlinOptions { jvmTarget = "17" }
  compileOptions {
    coreLibraryDesugaringEnabled true
    sourceCompatibility JavaVersion.VERSION_17
    targetCompatibility JavaVersion.VERSION_17
  }

  buildFeatures {
    buildConfig = true
    viewBinding true
  }

  hilt {
    enableExperimentalClasspathAggregation = true
  }

  compileSdkVersion versions.compileSdk

  defaultConfig {
    applicationId "com.michaldrabik.showly_oss"
    minSdkVersion versions.minSdk
    targetSdkVersion versions.targetSdk
    compileSdkVersion versions.compileSdk
    compileSdkVersion versions.compileSdk
    versionCode versions.versionCode
    versionName versions.versionName
    resourceConfigurations += ['en', 'ar', 'de', 'es', 'fi', 'fr', 'it', 'pl', 'pt', 'ru', 'tr', 'zh', 'uk', 'vi']

    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  }

  buildTypes {
    debug {
      applicationIdSuffix '.debug'
      versionNameSuffix '-debug'
      minifyEnabled true
      proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
      manifestPlaceholders = [
          appIcon: "@mipmap/ic_launcher_gray",
          appIconRound: "@mipmap/ic_launcher_round_gray"
      ]
    }
    release {
      minifyEnabled true
      proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
      manifestPlaceholders = [
              appIcon: "@mipmap/ic_launcher",
              appIconRound: "@mipmap/ic_launcher_round"
      ]
    }
  }

  lint {
    checkReleaseBuilds false
  }

  namespace 'com.michaldrabik.showly_oss'
}

dependencies {
  implementation project(':common')
  implementation project(':data-remote')
  implementation project(':data-local')
  implementation project(':repository')
  implementation project(':ui-base')
  implementation project(':ui-model')
  implementation project(':ui-navigation')
  implementation project(':ui-trakt-sync')
  implementation project(':ui-discover')
  implementation project(':ui-discover-movies')
  implementation project(':ui-episodes')
  implementation project(':ui-comments')
  implementation project(':ui-lists')
  implementation project(':ui-show')
  implementation project(':ui-movie')
  implementation project(':ui-gallery')
  implementation project(':ui-my-shows')
  implementation project(':ui-my-movies')
  implementation project(':ui-search')
  implementation project(':ui-statistics')
  implementation project(':ui-statistics-movies')
  implementation project(':ui-settings')
  implementation project(':ui-progress')
  implementation project(':ui-progress-movies')
  implementation project(':ui-premium')
  implementation project(':ui-news')
  implementation project(':ui-widgets')

  implementation libs.hilt.android
  ksp libs.hilt.compiler
  implementation libs.hilt.work
  ksp libs.hilt.work.compiler

  testImplementation libs.bundles.testing
  androidTestImplementation libs.android.test.runner

  //  debugImplementation "com.squareup.leakcanary:leakcanary-android:$versions.leakCanary"
  coreLibraryDesugaring libs.android.desugar
}


================================================
FILE: app/proguard-rules.pro
================================================
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
#   public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

-dontwarn okhttp3.internal.platform.ConscryptPlatform

================================================
FILE: app/src/main/AndroidManifest.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<manifest
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  >

  <uses-permission android:name="android.permission.INTERNET" />
  <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
  <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />

  <application
    android:name=".App"
    android:allowBackup="true"
    android:icon="${appIcon}"
    android:label="@string/app_name"
    android:localeConfig="@xml/locales_config"
    android:roundIcon="${appIconRound}"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"
    tools:ignore="GoogleAppIndexingWarning"
    >

    <!-- Activities -->

    <activity
      android:name=".ui.main.MainActivity"
      android:configChanges="orientation|screenSize|keyboardHidden|keyboard"
      android:exported="true"
      android:launchMode="singleInstance"
      android:screenOrientation="portrait"
      tools:ignore="LockedOrientationActivity"
      >
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
        <category android:name="android.intent.category.DEFAULT" />
      </intent-filter>

      <intent-filter>
        <action android:name="android.intent.action.VIEW" />

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />

        <data
          android:host="trakt"
          android:scheme="showlyoss"
          />
      </intent-filter>

      <intent-filter>
        <action android:name="android.intent.action.VIEW" />

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />

        <data
          android:pathPrefix="/title/tt"
          android:scheme="https"
          />

        <data android:host="imdb.com" />
        <data android:host="www.imdb.com" />
        <data android:host="m.imdb.com" />
      </intent-filter>

      <intent-filter>
        <action android:name="android.intent.action.VIEW" />

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />


        <data android:scheme="https" />

        <data android:pathPrefix="/tv/" />
        <data android:pathPrefix="/movie/" />

        <data android:host="themoviedb.org" />
        <data android:host="www.themoviedb.org" />
      </intent-filter>

      <intent-filter>
        <action android:name="android.intent.action.VIEW" />

        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />

        <data android:scheme="https" />

        <data android:host="trakt.tv" />
        <data android:host="www.trakt.tv" />

        <data android:pathPrefix="/shows/" />
        <data android:pathPrefix="/movies/" />
      </intent-filter>

      <meta-data
        android:name="android.app.shortcuts"
        android:resource="@xml/shortcuts"
        />

    </activity>

    <!--  Work Manager  -->

    <provider
      android:name="androidx.startup.InitializationProvider"
      android:authorities="${applicationId}.androidx-startup"
      tools:node="remove"
      />

    <!-- Services -->

    <service
      android:name="androidx.appcompat.app.AppLocalesMetadataHolderService"
      android:enabled="false"
      android:exported="false"
      >
      <meta-data
        android:name="autoStoreLocales"
        android:value="true"
        />
    </service>
  </application>
</manifest>


================================================
FILE: app/src/main/assets/release_notes.txt
================================================
* Fix issue where actors list of shows and movies would not return to its scrolled position
* Other bugfixes

Do you enjoy Showly and want to support the one and only developer?
Become a Premium user and gain access to cool bonus features! Check Settings to learn more!


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/App.kt
================================================
package com.michaldrabik.showly_oss

import android.app.Application
import android.app.NotificationChannel
import android.os.Build
import android.os.StrictMode
import androidx.appcompat.app.AppCompatDelegate.setDefaultNightMode
import androidx.hilt.work.HiltWorkerFactory
import androidx.work.Configuration
import com.jakewharton.processphoenix.ProcessPhoenix
import com.michaldrabik.repository.settings.SettingsRepository
import com.michaldrabik.ui_base.common.AppScopeProvider
import com.michaldrabik.ui_base.common.WidgetsProvider
import com.michaldrabik.ui_base.utilities.extensions.notificationManager
import com.michaldrabik.ui_model.Settings
import com.michaldrabik.ui_widgets.calendar.CalendarWidgetProvider
import com.michaldrabik.ui_widgets.calendar_movies.CalendarMoviesWidgetProvider
import com.michaldrabik.ui_widgets.progress.ProgressWidgetProvider
import com.michaldrabik.ui_widgets.progress_movies.ProgressMoviesWidgetProvider
import dagger.hilt.android.HiltAndroidApp
import kotlinx.coroutines.MainScope
import kotlinx.coroutines.launch
import kotlinx.coroutines.runBlocking
import timber.log.Timber
import javax.inject.Inject
import com.michaldrabik.ui_base.fcm.NotificationChannel as AppNotificationChannel

@HiltAndroidApp
class App :
  Application(),
  AppScopeProvider,
  Configuration.Provider,
  WidgetsProvider {

  override val appScope = MainScope()

  @Inject lateinit var workerFactory: HiltWorkerFactory
  @Inject lateinit var settingsRepository: SettingsRepository

  override fun onCreate() {

    fun setupSettings() = runBlocking {
      if (!settingsRepository.isInitialized()) {
        settingsRepository.update(Settings.createInitial())
      }
    }

    fun setupStrictMode() {
      if (BuildConfig.DEBUG) {
        StrictMode
          .setThreadPolicy(
            StrictMode.ThreadPolicy.Builder()
              .detectAll()
              .penaltyLog()
              .build()
          )
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
          StrictMode.setVmPolicy(
            StrictMode.VmPolicy.Builder()
              .detectUnsafeIntentLaunch()
              .penaltyDeath()
              .build()
          )
        }
      }
    }

    fun setupNotificationChannels() {
      if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) return

      fun createChannel(channel: AppNotificationChannel) =
        NotificationChannel(
          /* id = */ channel.name,
          /* name = */ channel.displayName,
          /* importance = */ channel.importance
        ).apply {
          description = channel.description
        }

      notificationManager().run {
        createNotificationChannel(createChannel(AppNotificationChannel.GENERAL_INFO))
        createNotificationChannel(createChannel(AppNotificationChannel.SHOWS_INFO))
        createNotificationChannel(createChannel(AppNotificationChannel.EPISODES_ANNOUNCEMENTS))
        createNotificationChannel(createChannel(AppNotificationChannel.MOVIES_ANNOUNCEMENTS))
      }
    }

    fun setupTheme() {
      setDefaultNightMode(settingsRepository.theme)
    }

    super.onCreate()

    if (ProcessPhoenix.isPhoenixProcess(this)) return

    if (BuildConfig.DEBUG) {
      Timber.plant(Timber.DebugTree())
    }

    setupSettings()
    setupStrictMode()
    setupNotificationChannels()
    setupTheme()
  }

  override fun requestShowsWidgetsUpdate() {
    appScope.launch {
      ProgressWidgetProvider.requestUpdate(applicationContext)
      CalendarWidgetProvider.requestUpdate(applicationContext)
    }
  }

  override fun requestMoviesWidgetsUpdate() {
    appScope.launch {
      ProgressMoviesWidgetProvider.requestUpdate(applicationContext)
      CalendarMoviesWidgetProvider.requestUpdate(applicationContext)
    }
  }

  override fun getWorkManagerConfiguration() =
    Configuration.Builder()
      .setWorkerFactory(workerFactory)
      .build()
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/di/module/PreferencesModule.kt
================================================
package com.michaldrabik.showly_oss.di.module

import android.content.Context
import android.content.SharedPreferences
import dagger.Module
import dagger.Provides
import dagger.hilt.InstallIn
import dagger.hilt.android.qualifiers.ApplicationContext
import dagger.hilt.components.SingletonComponent
import javax.inject.Named
import javax.inject.Singleton

@Module
@InstallIn(SingletonComponent::class)
class PreferencesModule {

  @Provides
  @Singleton
  @Named("tipsPreferences")
  fun providesTutorialsPreferences(@ApplicationContext context: Context): SharedPreferences =
    context.applicationContext.getSharedPreferences(
      "PREFERENCES_TUTORIALS",
      Context.MODE_PRIVATE
    )

  @Provides
  @Singleton
  @Named("watchlistPreferences")
  fun providesProgressShowsPreferences(@ApplicationContext context: Context): SharedPreferences =
    context.applicationContext.getSharedPreferences(
      "PREFERENCES_WATCHLIST",
      Context.MODE_PRIVATE
    )

  @Provides
  @Singleton
  @Named("progressOnHoldPreferences")
  fun providesProgressShowsOnHoldPreferences(@ApplicationContext context: Context): SharedPreferences =
    context.applicationContext.getSharedPreferences(
      "PREFERENCES_PROGRESS_SHOWS_ON_HOLD",
      Context.MODE_PRIVATE
    )

  @Provides
  @Singleton
  @Named("progressMoviesPreferences")
  fun providesProgressMoviesPreferences(@ApplicationContext context: Context): SharedPreferences =
    context.applicationContext.getSharedPreferences(
      "PREFERENCES_PROGRESS_MOVIES",
      Context.MODE_PRIVATE
    )

  @Provides
  @Singleton
  @Named("miscPreferences")
  fun providesMiscPreferences(@ApplicationContext context: Context): SharedPreferences =
    context.applicationContext.getSharedPreferences(
      "PREFERENCES_MISC",
      Context.MODE_PRIVATE
    )

  @Provides
  @Singleton
  @Named("spoilersPreferences")
  fun providesSpoilersPreferences(@ApplicationContext context: Context): SharedPreferences =
    context.applicationContext.getSharedPreferences(
      "PREFERENCES_SPOILERS",
      Context.MODE_PRIVATE
    )
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/di/module/ServicesModule.kt
================================================
package com.michaldrabik.showly_oss.di.module

import android.content.Context
import android.net.ConnectivityManager
import dagger.Module
import dagger.Provides
import dagger.hilt.InstallIn
import dagger.hilt.android.qualifiers.ApplicationContext
import dagger.hilt.components.SingletonComponent
import javax.inject.Singleton

@Module
@InstallIn(SingletonComponent::class)
class ServicesModule {

  @Provides
  @Singleton
  fun providesConnectivityManager(@ApplicationContext context: Context) =
    context.getSystemService(Context.CONNECTIVITY_SERVICE) as ConnectivityManager
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/di/module/WorkModule.kt
================================================
package com.michaldrabik.showly_oss.di.module

import android.content.Context
import androidx.work.WorkManager
import dagger.Module
import dagger.Provides
import dagger.hilt.InstallIn
import dagger.hilt.android.qualifiers.ApplicationContext
import dagger.hilt.components.SingletonComponent
import javax.inject.Singleton

@Module
@InstallIn(SingletonComponent::class)
class WorkModule {

  @Provides
  @Singleton
  fun providesWorkManager(@ApplicationContext context: Context) =
    WorkManager.getInstance(context)
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/fcm/FcmExtra.kt
================================================
package com.michaldrabik.showly_oss.fcm

enum class FcmExtra(val key: String) {
  SHOW_ID("extra_show_id")
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/BaseActivity.kt
================================================
package com.michaldrabik.showly_oss.ui

import android.annotation.SuppressLint
import android.net.Uri
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import androidx.navigation.fragment.NavHostFragment
import androidx.navigation.fragment.findNavController
import com.michaldrabik.showly_oss.R
import com.michaldrabik.showly_oss.fcm.FcmExtra
import com.michaldrabik.ui_base.Logger
import com.michaldrabik.ui_base.common.OnTraktAuthorizeListener
import com.michaldrabik.ui_navigation.java.NavigationArgs.ARG_MOVIE_ID
import com.michaldrabik.ui_navigation.java.NavigationArgs.ARG_SHOW_ID
import com.michaldrabik.ui_widgets.BaseWidgetProvider.Companion.EXTRA_MOVIE_ID
import com.michaldrabik.ui_widgets.BaseWidgetProvider.Companion.EXTRA_SHOW_ID
import com.michaldrabik.ui_widgets.search.SearchWidgetProvider

abstract class BaseActivity : AppCompatActivity() {

  private val actionKeys = arrayOf(
    FcmExtra.SHOW_ID.key,
    EXTRA_SHOW_ID,
    EXTRA_MOVIE_ID
  )

  protected fun findNavHostFragment() = supportFragmentManager.findFragmentById(R.id.navigationHost) as? NavHostFragment

  protected abstract fun handleSearchWidgetClick(bundle: Bundle?)

  fun handleNotification(extras: Bundle?, action: () -> Unit = {}) {
    if (extras == null) return
    if (extras.containsKey(SearchWidgetProvider.EXTRA_WIDGET_SEARCH_CLICK)) {
      handleSearchWidgetClick(extras)
      return
    }
    actionKeys.forEach {
      if (extras.containsKey(it)) {
        handleShowMovieExtra(extras, it, action)
      }
    }
  }

  @SuppressLint("RestrictedApi")
  private fun handleShowMovieExtra(extras: Bundle, key: String, action: () -> Unit) {
    val itemId = extras.getString(key)?.toLong() ?: -1
    val bundle = Bundle().apply {
      putLong(ARG_SHOW_ID, itemId)
      putLong(ARG_MOVIE_ID, itemId)
    }

    findNavHostFragment()?.findNavController()?.run {
      try {
        val isShow = key in arrayOf(EXTRA_SHOW_ID, FcmExtra.SHOW_ID.key)
        if (isShow) {
          navigate(R.id.actionNavigateShowDetailsFragment, bundle)
        } else {
          navigate(R.id.actionNavigateMovieDetailsFragment, bundle)
        }
        extras.clear()
        action()
      } catch (error: Throwable) {
        Logger.record(error, "BaseActivity::handleShowMovieExtra()")
      }
    }
  }

  protected fun handleTraktAuthorization(authData: Uri?) {
    findNavHostFragment()?.findNavController()?.currentDestination?.id?.let {
      val navHost = supportFragmentManager.findFragmentById(R.id.navigationHost)
      navHost?.childFragmentManager?.primaryNavigationFragment?.let {
        if (authData.toString().startsWith("showlyoss://trakt")) {
          (it as? OnTraktAuthorizeListener)?.onAuthorizationResult(authData)
        }
      }
    }
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/MainActivity.kt
================================================
package com.michaldrabik.showly_oss.ui.main

import android.annotation.SuppressLint
import android.content.Intent
import android.os.Bundle
import android.view.ViewGroup
import android.view.animation.DecelerateInterpolator
import androidx.activity.addCallback
import androidx.activity.viewModels
import androidx.core.content.ContextCompat
import androidx.core.view.isVisible
import androidx.fragment.app.Fragment
import androidx.lifecycle.Lifecycle
import androidx.lifecycle.lifecycleScope
import androidx.lifecycle.repeatOnLifecycle
import androidx.navigation.fragment.findNavController
import androidx.work.WorkManager
import com.google.android.material.dialog.MaterialAlertDialogBuilder
import com.google.android.material.snackbar.BaseTransientBottomBar.LENGTH_INDEFINITE
import com.michaldrabik.common.Config
import com.michaldrabik.common.Mode
import com.michaldrabik.common.Mode.MOVIES
import com.michaldrabik.common.Mode.SHOWS
import com.michaldrabik.repository.settings.SettingsRepository
import com.michaldrabik.showly_oss.R
import com.michaldrabik.showly_oss.databinding.ActivityMainBinding
import com.michaldrabik.showly_oss.ui.BaseActivity
import com.michaldrabik.showly_oss.ui.main.delegates.MainTipsDelegate
import com.michaldrabik.showly_oss.ui.main.delegates.TipsDelegate
import com.michaldrabik.showly_oss.ui.views.WhatsNewView
import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkResolver
import com.michaldrabik.ui_base.Logger
import com.michaldrabik.ui_base.common.OnShowsMoviesSyncedListener
import com.michaldrabik.ui_base.common.OnTabReselectedListener
import com.michaldrabik.ui_base.events.Event
import com.michaldrabik.ui_base.events.EventsManager
import com.michaldrabik.ui_base.events.ShowsMoviesSyncComplete
import com.michaldrabik.ui_base.events.TraktQuickSyncSuccess
import com.michaldrabik.ui_base.events.TraktSyncAuthError
import com.michaldrabik.ui_base.network.NetworkStatusProvider
import com.michaldrabik.ui_base.sync.ShowsMoviesSyncWorker
import com.michaldrabik.ui_base.utilities.ModeHost
import com.michaldrabik.ui_base.utilities.MoviesStatusHost
import com.michaldrabik.ui_base.utilities.NavigationHost
import com.michaldrabik.ui_base.utilities.SnackbarHost
import com.michaldrabik.ui_base.utilities.extensions.dimenToPx
import com.michaldrabik.ui_base.utilities.extensions.fadeIn
import com.michaldrabik.ui_base.utilities.extensions.fadeOut
import com.michaldrabik.ui_base.utilities.extensions.onClick
import com.michaldrabik.ui_base.utilities.extensions.openWebUrl
import com.michaldrabik.ui_base.utilities.extensions.showErrorSnackbar
import com.michaldrabik.ui_base.utilities.extensions.showInfoSnackbar
import com.michaldrabik.ui_base.utilities.extensions.visibleIf
import com.michaldrabik.ui_settings.helpers.AppLanguage
import dagger.hilt.android.AndroidEntryPoint
import kotlinx.coroutines.launch
import timber.log.Timber
import javax.inject.Inject

@AndroidEntryPoint
class MainActivity :
  BaseActivity(),
  SnackbarHost,
  NavigationHost,
  ModeHost,
  MoviesStatusHost,
  TipsDelegate by MainTipsDelegate() {

  companion object {
    private const val NAVIGATION_TRANSITION_DURATION_MS = 350L
    private const val ARG_NAVIGATION_VISIBLE = "ARG_NAVIGATION_VISIBLE"
  }

  private val viewModel by viewModels<MainViewModel>()
  private lateinit var binding: ActivityMainBinding

  private val navigationHeightPad by lazy { dimenToPx(R.dimen.bottomNavigationHeightPadded) }
  private val navigationHeight by lazy { dimenToPx(R.dimen.bottomNavigationHeight) }
  private val decelerateInterpolator by lazy { DecelerateInterpolator(2F) }

  @Inject lateinit var workManager: WorkManager
  @Inject lateinit var eventsManager: EventsManager
  @Inject lateinit var deepLinkResolver: DeepLinkResolver
  @Inject lateinit var settingsRepository: SettingsRepository
  @Inject lateinit var networkStatusProvider: NetworkStatusProvider

  override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    binding = ActivityMainBinding.inflate(layoutInflater)
    setContentView(binding.root)

    //onUpdateDownloaded() TODO: Implement own updater from GitHub

    registerTipsDelegate(viewModel, binding)

    setupViewModel()
    setupNavigation()
    setupView()
    setupNetworkObserver()

    restoreState(savedInstanceState)
    onNewIntent(intent)
  }

  override fun onStart() {
    super.onStart()
    ShowsMoviesSyncWorker.schedule(workManager)
  }

  override fun onResume() {
    super.onResume()
    setupBackPressed()
  }

  override fun onNewIntent(intent: Intent?) {
    super.onNewIntent(intent)
    handleAppShortcut(intent)
    handleNotification(intent?.extras) { hideNavigation(false) }
    handleTraktAuthorization(intent?.data)
    handleDeepLink(intent)
  }

  override fun onDestroy() {
    lifecycle.removeObserver(networkStatusProvider)
    super.onDestroy()
  }

  private fun setupViewModel() {
    lifecycleScope.launch {
      repeatOnLifecycle(Lifecycle.State.STARTED) {
        launch { viewModel.uiState.collect { render(it) } }
        launch { eventsManager.events.collect { handleEvent(it) } }
      }
    }
    viewModel.initialize()
    viewModel.refreshTraktSyncSchedule()
  }

  private fun setupView() {
    with(binding.bottomMenuView) {
      isModeMenuEnabled = hasMoviesEnabled()
      onModeSelected = { setMode(it) }
    }
    binding.viewMask.onClick { /* NOOP */ }
  }

  private fun setupNetworkObserver() {
    lifecycle.addObserver(networkStatusProvider)
    lifecycleScope.launch {
      repeatOnLifecycle(Lifecycle.State.STARTED) {
        launch {
          networkStatusProvider.status.collect {
            binding.statusView.visibleIf(!it)
            binding.statusView.text = getString(R.string.errorNoInternetConnection)
          }
        }
      }
    }
  }

  private fun setupNavigation() {
    findNavControl()?.run {
      val graph = navInflater.inflate(R.navigation.navigation_graph).apply {
        val destination = when (viewModel.getMode()) {
          SHOWS -> R.id.progressMainFragment
          MOVIES -> R.id.progressMoviesMainFragment
          else -> throw IllegalStateException()
        }
        setStartDestination(destination)
      }
      setGraph(graph, Bundle.EMPTY)
    }
    with(binding.bottomMenuView.binding.bottomNavigationView) {
      setOnItemSelectedListener { item ->
        if (selectedItemId == item.itemId) {
          doForFragments { (it as? OnTabReselectedListener)?.onTabReselected() }
          return@setOnItemSelectedListener true
        }

        val target = when (item.itemId) {
          R.id.menuProgress -> getMenuProgressAction()
          R.id.menuDiscover -> getMenuDiscoverAction()
          R.id.menuCollection -> getMenuCollectionAction()
          R.id.menuNews -> R.id.actionNavigateNewsFragment
          else -> throw IllegalStateException("Invalid menu item.")
        }

        findNavControl()?.navigate(target)
        showNavigation(true)

        if (item.itemId == R.id.menuDiscover) {
          // Try showing rate app dialog when user navigates to Discover section.
          viewModel.checkRateApp()
        }

        return@setOnItemSelectedListener true
      }
      menu.findItem(R.id.menuNews).isVisible = viewModel.hasNewsEnabled()
    }
  }

  private fun setupBackPressed() {
    with(binding) {
      onBackPressedDispatcher.addCallback(this@MainActivity) {
        if (tutorialView.isVisible) {
          tutorialView.fadeOut()
          return@addCallback
        }
        findNavControl()?.run {
          when (currentDestination?.id) {
            R.id.discoverFragment,
            R.id.discoverMoviesFragment,
            R.id.followedShowsFragment,
            R.id.followedMoviesFragment,
            R.id.listsFragment,
            R.id.newsFragment,
            -> {
              bottomMenuView.binding.bottomNavigationView.selectedItemId = R.id.menuProgress
            }
            else -> {
              remove()
              super.onBackPressed()
            }
          }
        }
      }
    }
  }

  override fun hideNavigation(animate: Boolean) {
    with(binding) {
      hideAllTips()
      bottomMenuView.binding.bottomNavigationView.run {
        isEnabled = false
        isClickable = false
      }
      snackbarHost.translationY = navigationHeight.toFloat()
      bottomNavigationWrapper.animate().translationYBy(navigationHeightPad.toFloat())
        .setDuration(if (animate) NAVIGATION_TRANSITION_DURATION_MS else 0)
        .setInterpolator(decelerateInterpolator).start()
    }
  }

  override fun showNavigation(animate: Boolean) {
    showAllTips()
    binding.bottomMenuView.binding.bottomNavigationView.run {
      isEnabled = true
      isClickable = true
    }
    binding.snackbarHost.translationY = 0F
    binding.bottomNavigationWrapper
      .animate()
      .translationY(0F)
      .setDuration(if (animate) NAVIGATION_TRANSITION_DURATION_MS else 0)
      .setInterpolator(decelerateInterpolator).start()
  }

  override fun navigateToDiscover() {
    binding.bottomMenuView.binding.bottomNavigationView.selectedItemId = R.id.menuDiscover
  }

  override fun setMode(mode: Mode, force: Boolean) {
    if (force || viewModel.getMode() != mode) {
      viewModel.setMode(mode)
      val target = when (binding.bottomMenuView.binding.bottomNavigationView.selectedItemId) {
        R.id.menuDiscover -> getMenuDiscoverAction()
        R.id.menuCollection -> getMenuCollectionAction()
        R.id.menuProgress -> getMenuProgressAction()
        R.id.menuNews -> R.id.actionNavigateNewsFragment
        else -> 0
      }
      if (target != 0) {
        findNavControl()?.navigate(target)
      }
    }
  }

  override fun getMode() = viewModel.getMode()

  override fun hasMoviesEnabled() = viewModel.hasMoviesEnabled()

  private fun render(uiState: MainUiState) {
    with(binding) {
      uiState.run {
        isLoading.let {
          mainProgress.visibleIf(it)
        }
        showMask.let {
          viewMask.visibleIf(it)
        }
        isInitialRun?.let {
          if (it.consume() == true) {
            viewModel.checkInitialLanguage()
          }
        }
        showWhatsNew?.let {
          if (it.consume() == true) showWhatsNewDialog()
        }
        initialLanguage?.let { event ->
          event.consume()?.let {
            showWelcomeDialog(it)
          }
        }
        openLink?.let { event ->
          event.consume()?.let { bundle ->
            findNavHostFragment()?.findNavController()?.let { nav ->
              bundle.show?.let {
                deepLinkResolver.resolveDestination(nav, bottomMenuView.binding.bottomNavigationView, it)
              }
              bundle.movie?.let {
                deepLinkResolver.resolveDestination(nav, bottomMenuView.binding.bottomNavigationView, it)
              }
            }
          }
        }
      }
    }
  }

  private fun showWelcomeDialog(language: AppLanguage) {
    navigateToDiscover()
    with(binding.welcomeView) {
      setLanguage(language)
      fadeIn()
      onOkClickListener = {
        fadeOut()
        showMask(false)
        if (language != AppLanguage.ENGLISH) {
          showWelcomeLanguageDialog(language)
        }
      }
    }
    showMask(true)
  }

  private fun showWelcomeLanguageDialog(language: AppLanguage) {
    with(binding.welcomeLanguageView) {
      setLanguage(language)
      fadeIn()
      onYesClick = {
        viewModel.setLanguage(language)
        fadeOut()
        showMask(false)
      }
      onNoClick = {
        viewModel.setLanguage(AppLanguage.ENGLISH)
        fadeOut()
        showMask(false)
      }
    }
    showMask(true)
  }

  private fun showMask(show: Boolean) {
    binding.viewMask.visibleIf(show)
    if (!show) viewModel.clearMask()
  }

  @SuppressLint("MissingSuperCall")
  override fun onSaveInstanceState(outState: Bundle) {
    outState.putBoolean(ARG_NAVIGATION_VISIBLE, binding.bottomNavigationWrapper.translationY == 0F)
    super.onSaveInstanceState(outState)
  }

  private fun restoreState(savedInstanceState: Bundle?) {
    val isNavigationVisible = savedInstanceState?.getBoolean(ARG_NAVIGATION_VISIBLE, true) ?: true
    if (!isNavigationVisible) hideNavigation(true)
  }

  private fun doForFragments(action: (Fragment) -> Unit) {
    findNavControl()?.currentDestination?.id?.let {
      val navHost = supportFragmentManager.findFragmentById(R.id.navigationHost)
      navHost?.childFragmentManager?.primaryNavigationFragment?.let { action(it) }
    }
  }

  private fun handleEvent(event: Event) {
    when (event) {
      is ShowsMoviesSyncComplete -> {
        if (event.count > 0) {
          doForFragments { (it as? OnShowsMoviesSyncedListener)?.onShowsMoviesSyncFinished() }
        }
        viewModel.refreshAnnouncements()
      }
      is TraktQuickSyncSuccess -> {
        val message = resources.getQuantityString(R.plurals.textTraktQuickSyncComplete, event.count, event.count)
        provideSnackbarLayout().showInfoSnackbar(message)
      }
      is TraktSyncAuthError -> {
        provideSnackbarLayout().showErrorSnackbar(getString(R.string.errorTraktAuthorization))
      }
      else -> Timber.d("Event ignored. Noop.")
    }
  }

  private fun handleAppShortcut(intent: Intent?) {
    when {
      intent == null -> return

      intent.extras?.containsKey("extraShortcutProgress") == true ->
        binding.bottomMenuView.binding.bottomNavigationView.selectedItemId = R.id.menuProgress

      intent.extras?.containsKey("extraShortcutDiscover") == true ->
        binding.bottomMenuView.binding.bottomNavigationView.selectedItemId = R.id.menuDiscover

      intent.extras?.containsKey("extraShortcutCollection") == true ->
        binding.bottomMenuView.binding.bottomNavigationView.selectedItemId = R.id.menuCollection

      intent.extras?.containsKey("extraShortcutSearch") == true -> {
        binding.bottomMenuView.binding.bottomNavigationView.selectedItemId = R.id.menuDiscover
        val action = when (viewModel.getMode()) {
          SHOWS -> R.id.actionDiscoverFragmentToSearchFragment
          MOVIES -> R.id.actionDiscoverMoviesFragmentToSearchFragment
          else -> throw IllegalStateException()
        }
        findNavControl()?.navigate(action)
      }
    }
  }

  override fun handleSearchWidgetClick(bundle: Bundle?) {
    findNavHostFragment()?.findNavController()?.run {
      try {
        when (currentDestination?.id) {
          R.id.searchFragment -> return@run
          R.id.showDetailsFragment, R.id.movieDetailsFragment -> navigateUp()
        }
        if (currentDestination?.id != R.id.discoverFragment) {
          binding.bottomMenuView.binding.bottomNavigationView.selectedItemId = R.id.menuDiscover
        }
        when (currentDestination?.id) {
          R.id.discoverFragment -> navigate(R.id.actionDiscoverFragmentToSearchFragment)
          R.id.discoverMoviesFragment -> navigate(R.id.actionDiscoverMoviesFragmentToSearchFragment)
        }
        bundle?.clear()
      } catch (error: Throwable) {
        Logger.record(error, "BaseActivity::handleSearchWidgetClick()")
      }
    }
  }

  private fun showWhatsNewDialog() {
    MaterialAlertDialogBuilder(this, R.style.AlertDialog).setBackground(ContextCompat.getDrawable(this, R.drawable.bg_dialog))
      .setView(WhatsNewView(this)).setCancelable(false).setPositiveButton(R.string.textClose) { _, _ -> }
      .setNeutralButton("GitHub") { _, _ -> openWebUrl(Config.GITHUB_URL) }.show()
  }

  private fun getMenuDiscoverAction() = when (viewModel.getMode()) {
    SHOWS -> R.id.actionNavigateDiscoverFragment
    MOVIES -> R.id.actionNavigateDiscoverMoviesFragment
    else -> throw IllegalStateException()
  }

  private fun getMenuCollectionAction() = when (viewModel.getMode()) {
    SHOWS -> R.id.actionNavigateFollowedShowsFragment
    MOVIES -> R.id.actionNavigateFollowedMoviesFragment
    else -> throw IllegalStateException()
  }

  private fun getMenuProgressAction() = when (viewModel.getMode()) {
    SHOWS -> R.id.actionNavigateProgressFragment
    MOVIES -> R.id.actionNavigateProgressMoviesFragment
    else -> throw IllegalStateException()
  }

  private fun onUpdateDownloaded() {
    provideSnackbarLayout().showInfoSnackbar(
      message = getString(R.string.textUpdateDownloaded), actionText = R.string.textUpdateInstall, length = LENGTH_INDEFINITE
    ) {
      // TODO: Implement own updater from GitHub
    }
  }

  private fun handleDeepLink(intent: Intent?) {
    deepLinkResolver.findSource(intent)?.let {
      viewModel.openDeepLink(it)
    }
  }

  override fun findNavControl() = findNavHostFragment()?.findNavController()

  override fun provideSnackbarLayout(): ViewGroup = binding.snackbarHost
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/MainUiState.kt
================================================
package com.michaldrabik.showly_oss.ui.main

import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkBundle
import com.michaldrabik.ui_base.utilities.events.Event
import com.michaldrabik.ui_settings.helpers.AppLanguage

// TODO Split events into their Channel
data class MainUiState(
  val isLoading: Boolean = false,
  val isInitialRun: Event<Boolean>? = null,
  val showWhatsNew: Event<Boolean>? = null,
  val initialLanguage: Event<AppLanguage>? = null,
  val showRateApp: Event<Boolean>? = null,
  val showMask: Boolean = false,
  val openLink: Event<DeepLinkBundle>? = null,
)


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/MainViewModel.kt
================================================
package com.michaldrabik.showly_oss.ui.main

import android.annotation.SuppressLint
import androidx.appcompat.app.AppCompatDelegate
import androidx.core.os.LocaleListCompat
import androidx.lifecycle.ViewModel
import androidx.lifecycle.viewModelScope
import com.michaldrabik.common.Mode
import com.michaldrabik.repository.settings.SettingsRepository
import com.michaldrabik.showly_oss.ui.main.cases.MainAnnouncementsCase
import com.michaldrabik.showly_oss.ui.main.cases.MainClearingCase
import com.michaldrabik.showly_oss.ui.main.cases.MainInitialsCase
import com.michaldrabik.showly_oss.ui.main.cases.MainModesCase
import com.michaldrabik.showly_oss.ui.main.cases.MainRateAppCase
import com.michaldrabik.showly_oss.ui.main.cases.MainSettingsCase
import com.michaldrabik.showly_oss.ui.main.cases.MainTipsCase
import com.michaldrabik.showly_oss.ui.main.cases.MainTraktCase
import com.michaldrabik.showly_oss.ui.main.cases.deeplink.MainDeepLinksCase
import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkBundle
import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkSource
import com.michaldrabik.ui_base.Logger
import com.michaldrabik.ui_base.utilities.events.Event
import com.michaldrabik.ui_base.utilities.extensions.SUBSCRIBE_STOP_TIMEOUT
import com.michaldrabik.ui_base.utilities.extensions.combine
import com.michaldrabik.ui_base.utilities.extensions.launchDelayed
import com.michaldrabik.ui_base.utilities.extensions.rethrowCancellation
import com.michaldrabik.ui_model.Tip
import com.michaldrabik.ui_settings.helpers.AppLanguage
import dagger.hilt.android.lifecycle.HiltViewModel
import kotlinx.coroutines.cancelAndJoin
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.SharingStarted
import kotlinx.coroutines.flow.stateIn
import kotlinx.coroutines.launch
import javax.inject.Inject

@SuppressLint("StaticFieldLeak")
@HiltViewModel
class MainViewModel @Inject constructor(
  private val initCase: MainInitialsCase,
  private val tipsCase: MainTipsCase,
  private val traktCase: MainTraktCase,
  private val clearingCase: MainClearingCase,
  private val settingsCase: MainSettingsCase,
  private val announcementsCase: MainAnnouncementsCase,
  private val modesCase: MainModesCase,
  private val rateAppCase: MainRateAppCase,
  private val linksCase: MainDeepLinksCase,
  private val settingsRepository: SettingsRepository,
) : ViewModel() {

  private val loadingState = MutableStateFlow(false)
  private val maskState = MutableStateFlow(false)
  private val initialRunEvent = MutableStateFlow<Event<Boolean>?>(null)
  private val initialLanguageEvent = MutableStateFlow<Event<AppLanguage>?>(null)
  private val whatsNewEvent = MutableStateFlow<Event<Boolean>?>(null)
  private val rateAppEvent = MutableStateFlow<Event<Boolean>?>(null)
  private val openLinkEvent = MutableStateFlow<Event<DeepLinkBundle>?>(null)

  fun initialize() {
    viewModelScope.launch {
      val isInitialRun = checkInitialRun()
      with(initCase) {
        preloadRatings()
        saveInstallTimestamp()
      }
      checkApi13Locale(isInitialRun)
    }
  }

  private suspend fun checkInitialRun(): Boolean {
    val isInitialRun = initCase.isInitialRun()
    if (isInitialRun) {
      initCase.setInitialRun(false)
      initCase.setInitialNotifications()
      initCase.setInitialCountry()
    }

    val showWhatsNew = initCase.showWhatsNew(isInitialRun)

    initialRunEvent.value = Event(isInitialRun)
    whatsNewEvent.value = Event(showWhatsNew)

    return isInitialRun
  }

  fun checkRateApp() {
    val showRateApp = rateAppCase.shouldShowRateApp()
    rateAppEvent.value = Event(showRateApp)
  }

  fun setLanguage(appLanguage: AppLanguage) = initCase.setLanguage(appLanguage)

  fun checkInitialLanguage() {
    viewModelScope.launch {
      val initialLanguage = initCase.checkInitialLanguage()
      initialLanguageEvent.value = Event(initialLanguage)
      maskState.value = true
    }
  }

  private fun checkApi13Locale(isInitialRun: Boolean) {
    if (!isInitialRun && !settingsRepository.isLocaleInitialised) {
      settingsRepository.isLocaleInitialised = true
      val locale = LocaleListCompat.forLanguageTags(settingsRepository.language)
      AppCompatDelegate.setApplicationLocales(locale)
    }
  }

  fun refreshAnnouncements() {
    viewModelScope.launch {
      announcementsCase.refreshAnnouncements()
    }
  }

  fun refreshTraktSyncSchedule() {
    viewModelScope.launch {
      traktCase.run {
        refreshTraktSyncSchedule()
        refreshTraktQuickSync()
      }
    }
  }

  fun setMode(mode: Mode) = modesCase.setMode(mode)
  fun getMode(): Mode = modesCase.getMode()

  fun isTipShown(tip: Tip) = tipsCase.isTipShown(tip)
  fun setTipShown(tip: Tip) = tipsCase.setTipShown(tip)

  fun hasMoviesEnabled(): Boolean = settingsCase.hasMoviesEnabled()
  fun hasNewsEnabled(): Boolean = settingsCase.hasNewsEnabled()

  fun completeAppRate() = rateAppCase.complete()

  fun clearMask() {
    maskState.value = false
  }

  fun openDeepLink(source: DeepLinkSource) {
    viewModelScope.launch {
      val progressJob = launchDelayed(750) {
        loadingState.value = true
        maskState.value = true
      }
      try {
        val result = when (source) {
          is DeepLinkSource.ImdbSource -> linksCase.findById(source.id)
          is DeepLinkSource.TmdbSource -> linksCase.findById(source.id, source.type)
          is DeepLinkSource.TraktSource -> linksCase.findById(source.id, source.type)
        }
        loadingState.value = false
        maskState.value = false
        openLinkEvent.value = Event(result)
      } catch (error: Throwable) {
        Logger.record(error, "MainViewModel::openDeepLink:$source")
        rethrowCancellation(error)
      } finally {
        progressJob.cancelAndJoin()
      }
    }
  }

  override fun onCleared() {
    clearingCase.clear()
    super.onCleared()
  }

  val uiState = combine(
    initialRunEvent,
    initialLanguageEvent,
    whatsNewEvent,
    rateAppEvent,
    openLinkEvent,
    loadingState,
    maskState
  ) { s1, s2, s3, s4, s5, s6, s7 ->
    MainUiState(
      isInitialRun = s1,
      initialLanguage = s2,
      showWhatsNew = s3,
      showRateApp = s4,
      openLink = s5,
      isLoading = s6,
      showMask = s7
    )
  }.stateIn(
    scope = viewModelScope,
    started = SharingStarted.WhileSubscribed(SUBSCRIBE_STOP_TIMEOUT),
    initialValue = MainUiState()
  )
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainAnnouncementsCase.kt
================================================
package com.michaldrabik.showly_oss.ui.main.cases

import com.michaldrabik.common.dispatchers.CoroutineDispatchers
import com.michaldrabik.ui_base.notifications.AnnouncementManager
import dagger.hilt.android.scopes.ViewModelScoped
import kotlinx.coroutines.withContext
import javax.inject.Inject

@ViewModelScoped
class MainAnnouncementsCase @Inject constructor(
  private val dispatchers: CoroutineDispatchers,
  private val announcementManager: AnnouncementManager,
) {

  suspend fun refreshAnnouncements() {
    withContext(dispatchers.IO) {
      announcementManager.refreshShowsAnnouncements()
      announcementManager.refreshMoviesAnnouncements()
    }
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainClearingCase.kt
================================================
package com.michaldrabik.showly_oss.ui.main.cases

import com.michaldrabik.repository.images.MovieImagesProvider
import com.michaldrabik.repository.images.ShowImagesProvider
import dagger.hilt.android.scopes.ViewModelScoped
import timber.log.Timber
import javax.inject.Inject

@ViewModelScoped
class MainClearingCase @Inject constructor(
  private val showImagesProvider: ShowImagesProvider,
  private val movieImagesProvider: MovieImagesProvider,
) {

  fun clear() {
    showImagesProvider.clear()
    movieImagesProvider.clear()
    Timber.d("Clearing...")
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainInitialsCase.kt
================================================
package com.michaldrabik.showly_oss.ui.main.cases

import android.content.Context
import android.content.SharedPreferences
import android.telephony.TelephonyManager
import androidx.appcompat.app.AppCompatDelegate
import androidx.core.content.edit
import androidx.core.os.LocaleListCompat
import com.michaldrabik.common.Config
import com.michaldrabik.common.extensions.nowUtc
import com.michaldrabik.common.extensions.nowUtcMillis
import com.michaldrabik.repository.RatingsRepository
import com.michaldrabik.repository.UserTraktManager
import com.michaldrabik.repository.settings.SettingsRepository
import com.michaldrabik.showly_oss.BuildConfig
import com.michaldrabik.ui_base.common.AppCountry
import com.michaldrabik.ui_base.utilities.extensions.withApiAtLeast
import com.michaldrabik.ui_settings.helpers.AppLanguage
import dagger.hilt.android.qualifiers.ApplicationContext
import dagger.hilt.android.scopes.ViewModelScoped
import kotlinx.coroutines.CoroutineExceptionHandler
import kotlinx.coroutines.launch
import kotlinx.coroutines.supervisorScope
import timber.log.Timber
import java.util.Locale
import javax.inject.Inject
import javax.inject.Named

@ViewModelScoped
class MainInitialsCase @Inject constructor(
  @ApplicationContext private val context: Context,
  private val userTraktManager: UserTraktManager,
  private val ratingsRepository: RatingsRepository,
  private val settingsRepository: SettingsRepository,
  @Named("miscPreferences") private var miscPreferences: SharedPreferences,
) {

  suspend fun setInitialRun(value: Boolean) {
    val settings = settingsRepository.load()
    settings.let {
      settingsRepository.update(it.copy(isInitialRun = value))
    }
  }

  suspend fun isInitialRun(): Boolean {
    val settings = settingsRepository.load()
    return settings.isInitialRun
  }

  fun setInitialCountry() {
    var country = (context.getSystemService(Context.TELEPHONY_SERVICE) as? TelephonyManager)?.simCountryIso
    if (country == null) {
      val locale = LocaleListCompat.getAdjustedDefault()
      country = if (locale.size() > 1) {
        locale.get(1)?.country
      } else {
        locale.get(0)?.country
      }
    }
    if (!country.isNullOrBlank()) {
      AppCountry.values().forEach { appCountry ->
        if (appCountry.code.equals(country, ignoreCase = true)) {
          settingsRepository.country = appCountry.code
          return
        }
      }
    }
  }

  suspend fun setInitialNotifications() {
    withApiAtLeast(33) {
      val settings = settingsRepository.load()
      settings.let {
        settingsRepository.update(it.copy(episodesNotificationsEnabled = false))
      }
    }
  }

  fun setLanguage(appLanguage: AppLanguage) {
    settingsRepository.language = appLanguage.code
    val locales = LocaleListCompat.forLanguageTags(appLanguage.code)
    AppCompatDelegate.setApplicationLocales(locales)
  }

  fun checkInitialLanguage(): AppLanguage {
    val locales = LocaleListCompat.getAdjustedDefault()
    val appLanguages = AppLanguage.values()

    if (locales.size() == 1 && !locales[0]?.language.equals(Locale("en").language)) {
      appLanguages.forEach { appLanguage ->
        if (appLanguage.code.equals(locales[0]?.language, ignoreCase = true)) {
          return appLanguage
        }
      }
    }

    if (locales.size() > 1) {
      val languagesCodes = arrayOf(locales[0], locales[1])
        .filterNotNull()
        .map { it.language.lowercase() }
      if (languagesCodes.any { it != Locale(Config.DEFAULT_LANGUAGE).language }) {
        val languageCodes = appLanguages.map { it.code }
        languagesCodes.forEach { language ->
          if (language in languageCodes) {
            return appLanguages.first { it.code == language }
          }
        }
        appLanguages
          .filter { it.code != Config.DEFAULT_LANGUAGE }
          .forEach { appLanguage ->
            if (appLanguage.code in languagesCodes) {
              return appLanguage
            }
          }
      }
    }

    return AppLanguage.ENGLISH
  }

  suspend fun preloadRatings() = supervisorScope {
    val errorHandler = CoroutineExceptionHandler { _, _ -> Timber.e("Failed to preload.") }

    if (!userTraktManager.isAuthorized()) {
      return@supervisorScope
    }

    userTraktManager.checkAuthorization()
    launch(errorHandler) { ratingsRepository.shows.preloadRatings() }
    if (settingsRepository.isMoviesEnabled) {
      launch(errorHandler) { ratingsRepository.movies.preloadRatings() }
    }
  }

  fun showWhatsNew(isInitialRun: Boolean): Boolean {
    val keyAppVersion = "APP_VERSION"
    val keyAppVersionName = "APP_VERSION_NAME"

    val version = miscPreferences.getInt(keyAppVersion, 0)
    val name = miscPreferences.getString(keyAppVersionName, "")

    fun isPatchUpdate(): Boolean {
      if (name.isNullOrBlank()) return false

      val major = name.split(".").getOrNull(0)?.toIntOrNull()
      val minor = name.split(".").getOrNull(1)?.toIntOrNull()

      val currentMajor = BuildConfig.VERSION_NAME.split(".").getOrNull(0)?.toIntOrNull()
      val currentMinor = BuildConfig.VERSION_NAME.split(".").getOrNull(1)?.toIntOrNull()

      if (major == currentMajor && minor == currentMinor) return true
      return false
    }

    miscPreferences.edit {
      putInt(keyAppVersion, BuildConfig.VERSION_CODE).apply()
      putString(keyAppVersionName, BuildConfig.VERSION_NAME).apply()
    }

    if (Config.SHOW_WHATS_NEW &&
      BuildConfig.VERSION_CODE > version &&
      BuildConfig.VERSION_NAME != name &&
      !isInitialRun &&
      !isPatchUpdate()
    ) {
      return true
    }
    return false
  }

  fun saveInstallTimestamp() {
    if (settingsRepository.installTimestamp == 0L) {
      settingsRepository.installTimestamp = nowUtcMillis()
      Timber.d("Installation timestamp saved: ${nowUtc()}")
    }
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainModesCase.kt
================================================
package com.michaldrabik.showly_oss.ui.main.cases

import com.michaldrabik.common.Mode
import com.michaldrabik.common.Mode.MOVIES
import com.michaldrabik.common.Mode.SHOWS
import com.michaldrabik.repository.settings.SettingsRepository
import dagger.hilt.android.scopes.ViewModelScoped
import javax.inject.Inject

@ViewModelScoped
class MainModesCase @Inject constructor(
  private val settingsRepository: SettingsRepository,
) {

  fun setMode(mode: Mode) {
    settingsRepository.mode = mode
  }

  fun getMode(): Mode {
    val isMoviesEnabled = settingsRepository.isMoviesEnabled
    val isMovies = settingsRepository.mode == MOVIES
    return if (isMoviesEnabled && isMovies) MOVIES else SHOWS
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainRateAppCase.kt
================================================
package com.michaldrabik.showly_oss.ui.main.cases

import android.content.SharedPreferences
import com.michaldrabik.common.extensions.nowUtcMillis
import dagger.hilt.android.scopes.ViewModelScoped
import java.util.concurrent.TimeUnit
import javax.inject.Inject
import javax.inject.Named

@ViewModelScoped
class MainRateAppCase @Inject constructor(
  @Named("miscPreferences") private var miscPreferences: SharedPreferences
) {

  companion object {
    const val KEY_RATE_APP_COUNT = "KEY_RATE_APP_COUNT"
    const val KEY_RATE_APP_TIMESTAMP = "KEY_RATE_APP_TIMESTAMP"

    const val MAX_COUNT = 3
  }

  fun shouldShowRateApp(): Boolean {
    val count = miscPreferences.getInt(KEY_RATE_APP_COUNT, 0)
    val timestamp = miscPreferences.getLong(KEY_RATE_APP_TIMESTAMP, -1)
    val isPastTwoWeeks = nowUtcMillis() - timestamp > TimeUnit.DAYS.toMillis(14)

    if (timestamp == -1L) {
      updateTimestamp(count)
      return false
    }

    if (count < MAX_COUNT && isPastTwoWeeks) {
      updateTimestamp(count)
      return true
    }

    return false
  }

  private fun updateTimestamp(count: Int) {
    miscPreferences.edit().apply {
      putInt(KEY_RATE_APP_COUNT, count)
      putLong(KEY_RATE_APP_TIMESTAMP, nowUtcMillis())
      apply()
    }
  }

  fun complete() {
    val count = miscPreferences.getInt(KEY_RATE_APP_COUNT, 0)
    updateTimestamp(count + 1)
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainSettingsCase.kt
================================================
package com.michaldrabik.showly_oss.ui.main.cases

import com.michaldrabik.repository.settings.SettingsRepository
import com.michaldrabik.showly_oss.BuildConfig
import dagger.hilt.android.scopes.ViewModelScoped
import javax.inject.Inject

@ViewModelScoped
class MainSettingsCase @Inject constructor(
  private val settingsRepository: SettingsRepository,
) {

  fun hasMoviesEnabled() = settingsRepository.isMoviesEnabled

  fun hasNewsEnabled(): Boolean {
    if (BuildConfig.DEBUG) return true
    return settingsRepository.isNewsEnabled && settingsRepository.isPremium
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainTipsCase.kt
================================================
package com.michaldrabik.showly_oss.ui.main.cases

import android.content.SharedPreferences
import com.michaldrabik.common.Config
import com.michaldrabik.showly_oss.BuildConfig
import com.michaldrabik.ui_model.Tip
import dagger.hilt.android.scopes.ViewModelScoped
import javax.inject.Inject
import javax.inject.Named

@ViewModelScoped
class MainTipsCase @Inject constructor(
  @Named("tipsPreferences") private val sharedPreferences: SharedPreferences
) {

  fun isTipShown(tip: Tip) = when {
    BuildConfig.DEBUG -> !Config.SHOW_TIPS_DEBUG
    else -> sharedPreferences.getBoolean(tip.name, false)
  }

  fun setTipShown(tip: Tip) {
    sharedPreferences.edit().putBoolean(tip.name, true).apply()
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainTraktCase.kt
================================================
package com.michaldrabik.showly_oss.ui.main.cases

import androidx.work.WorkManager
import com.michaldrabik.repository.settings.SettingsRepository
import com.michaldrabik.ui_base.trakt.TraktSyncWorker
import com.michaldrabik.ui_base.trakt.quicksync.QuickSyncManager
import com.michaldrabik.ui_base.trakt.quicksync.QuickSyncWorker
import dagger.hilt.android.scopes.ViewModelScoped
import javax.inject.Inject

@ViewModelScoped
class MainTraktCase @Inject constructor(
  private val settingsRepository: SettingsRepository,
  private val quickSyncManager: QuickSyncManager,
  private val workManager: WorkManager,
) {

  suspend fun refreshTraktSyncSchedule() {
    if (!settingsRepository.isInitialized()) return
    val schedule = settingsRepository.load().traktSyncSchedule
    TraktSyncWorker.schedulePeriodic(workManager, schedule, cancelExisting = false)
  }

  suspend fun refreshTraktQuickSync() {
    if (quickSyncManager.isAnyScheduled()) {
      QuickSyncWorker.schedule(workManager)
    }
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/deeplink/ImdbDeepLinkCase.kt
================================================
package com.michaldrabik.showly_oss.ui.main.cases.deeplink

import com.michaldrabik.data_local.sources.MoviesLocalDataSource
import com.michaldrabik.data_local.sources.ShowsLocalDataSource
import com.michaldrabik.data_remote.trakt.TraktRemoteDataSource
import com.michaldrabik.repository.mappers.Mappers
import com.michaldrabik.repository.movies.MovieDetailsRepository
import com.michaldrabik.repository.shows.ShowDetailsRepository
import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkBundle
import com.michaldrabik.ui_model.IdImdb
import javax.inject.Inject

class ImdbDeepLinkCase @Inject constructor(
  private val traktRemoteSource: TraktRemoteDataSource,
  private val showsLocalSource: ShowsLocalDataSource,
  private val moviesLocalSource: MoviesLocalDataSource,
  private val showDetailsRepository: ShowDetailsRepository,
  private val movieDetailsRepository: MovieDetailsRepository,
  private val mappers: Mappers
) {

  companion object {
    private const val SEARCH_ID_TYPE = "imdb"
  }

  suspend fun findById(imdbId: IdImdb): DeepLinkBundle {
    val show = showDetailsRepository.find(imdbId)
    if (show != null) {
      return DeepLinkBundle(show = show)
    }

    val movie = movieDetailsRepository.find(imdbId)
    if (movie != null) {
      return DeepLinkBundle(movie = movie)
    }

    val searchResult = traktRemoteSource.fetchSearchId(SEARCH_ID_TYPE, imdbId.id)
    if (searchResult.size == 1) {
      val showSearch = searchResult[0].show
      val movieSearch = searchResult[0].movie
      when {
        showSearch != null -> {
          val uiShow = mappers.show.fromNetwork(showSearch)
          showsLocalSource.upsert(listOf(mappers.show.toDatabase(uiShow)))
          return DeepLinkBundle(show = uiShow)
        }
        movieSearch != null -> {
          val uiMovie = mappers.movie.fromNetwork(movieSearch)
          moviesLocalSource.upsert(listOf(mappers.movie.toDatabase(uiMovie)))
          return DeepLinkBundle(movie = uiMovie)
        }
      }
    }

    return DeepLinkBundle.EMPTY
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/deeplink/MainDeepLinksCase.kt
================================================
package com.michaldrabik.showly_oss.ui.main.cases.deeplink

import com.michaldrabik.ui_model.IdImdb
import com.michaldrabik.ui_model.IdSlug
import com.michaldrabik.ui_model.IdTmdb
import dagger.hilt.android.scopes.ViewModelScoped
import javax.inject.Inject

@ViewModelScoped
class MainDeepLinksCase @Inject constructor(
  private val imdbDeepLinkCase: ImdbDeepLinkCase,
  private val tmdbDeepLinkCase: TmdbDeepLinkCase,
  private val traktDeepLinkCase: TraktDeepLinkCase,
) {

  suspend fun findById(imdbId: IdImdb) =
    imdbDeepLinkCase.findById(imdbId)

  suspend fun findById(tmdbId: IdTmdb, type: String) =
    tmdbDeepLinkCase.findById(tmdbId, type)

  suspend fun findById(traktSlug: IdSlug, type: String) =
    traktDeepLinkCase.findById(traktSlug, type)
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/deeplink/TmdbDeepLinkCase.kt
================================================
package com.michaldrabik.showly_oss.ui.main.cases.deeplink

import com.michaldrabik.data_local.sources.MoviesLocalDataSource
import com.michaldrabik.data_local.sources.ShowsLocalDataSource
import com.michaldrabik.data_remote.trakt.TraktRemoteDataSource
import com.michaldrabik.repository.mappers.Mappers
import com.michaldrabik.repository.movies.MovieDetailsRepository
import com.michaldrabik.repository.shows.ShowDetailsRepository
import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkBundle
import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkResolver.Companion.TMDB_TYPE_MOVIE
import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkResolver.Companion.TMDB_TYPE_TV
import com.michaldrabik.ui_model.IdTmdb
import javax.inject.Inject

class TmdbDeepLinkCase @Inject constructor(
  private val traktRemoteSource: TraktRemoteDataSource,
  private val showsLocalSource: ShowsLocalDataSource,
  private val moviesLocalSource: MoviesLocalDataSource,
  private val showDetailsRepository: ShowDetailsRepository,
  private val movieDetailsRepository: MovieDetailsRepository,
  private val mappers: Mappers
) {

  companion object {
    private const val SEARCH_ID_TYPE = "tmdb"
  }

  suspend fun findById(tmdbId: IdTmdb, type: String): DeepLinkBundle {
    val localShow = showDetailsRepository.find(tmdbId)
    if (localShow != null && type == TMDB_TYPE_TV) {
      return DeepLinkBundle(show = localShow)
    }

    val localMovie = movieDetailsRepository.find(tmdbId)
    if (localMovie != null && type == TMDB_TYPE_MOVIE) {
      return DeepLinkBundle(movie = localMovie)
    }

    val searchResult = traktRemoteSource.fetchSearchId(SEARCH_ID_TYPE, tmdbId.id.toString())
    if (searchResult.isNotEmpty()) {
      searchResult
        .filter { it.show != null || it.movie != null }
        .forEach { result ->
          val show = result.show
          val movie = result.movie
          if (show != null && type == TMDB_TYPE_TV) {
            val uiShow = mappers.show.fromNetwork(show)
            showsLocalSource.upsert(listOf(mappers.show.toDatabase(uiShow)))
            return DeepLinkBundle(show = uiShow)
          }
          if (movie != null && type == TMDB_TYPE_MOVIE) {
            val uiMovie = mappers.movie.fromNetwork(movie)
            moviesLocalSource.upsert(listOf(mappers.movie.toDatabase(uiMovie)))
            return DeepLinkBundle(movie = uiMovie)
          }
        }
    }

    return DeepLinkBundle.EMPTY
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/deeplink/TraktDeepLinkCase.kt
================================================
package com.michaldrabik.showly_oss.ui.main.cases.deeplink

import com.michaldrabik.data_local.sources.MoviesLocalDataSource
import com.michaldrabik.data_local.sources.ShowsLocalDataSource
import com.michaldrabik.data_remote.trakt.TraktRemoteDataSource
import com.michaldrabik.repository.mappers.Mappers
import com.michaldrabik.repository.movies.MovieDetailsRepository
import com.michaldrabik.repository.shows.ShowDetailsRepository
import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkBundle
import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkResolver.Companion.TRAKT_TYPE_MOVIE
import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkResolver.Companion.TRAKT_TYPE_TV
import com.michaldrabik.ui_model.IdSlug
import javax.inject.Inject

class TraktDeepLinkCase @Inject constructor(
  private val traktRemoteSource: TraktRemoteDataSource,
  private val showsLocalSource: ShowsLocalDataSource,
  private val moviesLocalSource: MoviesLocalDataSource,
  private val showDetailsRepository: ShowDetailsRepository,
  private val movieDetailsRepository: MovieDetailsRepository,
  private val mappers: Mappers
) {

  suspend fun findById(traktSlug: IdSlug, type: String) = when (type) {
    TRAKT_TYPE_TV -> {
      val localShow = showDetailsRepository.find(traktSlug)
      if (localShow != null) {
        DeepLinkBundle(show = localShow)
      }
      try {
        val show = traktRemoteSource.fetchShow(traktSlug.id)
        val uiShow = mappers.show.fromNetwork(show)
        showsLocalSource.upsert(listOf(mappers.show.toDatabase(uiShow)))
        DeepLinkBundle(show = uiShow)
      } catch (error: Throwable) {
        DeepLinkBundle.EMPTY
      }
    }
    TRAKT_TYPE_MOVIE -> {
      val localMovie = movieDetailsRepository.find(traktSlug)
      if (localMovie != null) {
        DeepLinkBundle(movie = localMovie)
      }
      try {
        val movie = traktRemoteSource.fetchMovie(traktSlug.id)
        val uiMovie = mappers.movie.fromNetwork(movie)
        moviesLocalSource.upsert(listOf(mappers.movie.toDatabase(uiMovie)))
        DeepLinkBundle(movie = uiMovie)
      } catch (error: Throwable) {
        DeepLinkBundle.EMPTY
      }
    }
    else -> DeepLinkBundle.EMPTY
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/main/delegates/TipsDelegate.kt
================================================
package com.michaldrabik.showly_oss.ui.main.delegates

import androidx.lifecycle.DefaultLifecycleObserver
import com.michaldrabik.showly_oss.databinding.ActivityMainBinding
import com.michaldrabik.showly_oss.ui.main.MainViewModel
import com.michaldrabik.ui_base.utilities.TipsHost
import com.michaldrabik.ui_base.utilities.extensions.gone
import com.michaldrabik.ui_base.utilities.extensions.onClick
import com.michaldrabik.ui_base.utilities.extensions.visibleIf
import com.michaldrabik.ui_model.Tip

interface TipsDelegate : TipsHost {
  fun registerTipsDelegate(
    viewModel: MainViewModel,
    binding: ActivityMainBinding,
  )

  fun showAllTips()
  fun hideAllTips()
}

class MainTipsDelegate : TipsDelegate, DefaultLifecycleObserver {

  private lateinit var viewModel: MainViewModel
  private lateinit var binding: ActivityMainBinding

  private val tips by lazy {
    mapOf(
      Tip.MENU_DISCOVER to binding.tutorialTipDiscover,
      Tip.MENU_MY_SHOWS to binding.tutorialTipMyShows,
      Tip.MENU_MODES to binding.tutorialTipModeMenu
    )
  }

  override fun registerTipsDelegate(
    viewModel: MainViewModel,
    binding: ActivityMainBinding,
  ) {
    this.viewModel = viewModel
    this.binding = binding
    setupTips()
  }

  private fun setupTips() {
    tips.entries.forEach { (tip, view) ->
      view.visibleIf(!isTipShown(tip))
      view.onClick {
        it.gone()
        showTip(tip)
      }
    }
  }

  override fun setTipShow(tip: Tip) = viewModel.setTipShown(tip)

  override fun isTipShown(tip: Tip) = viewModel.isTipShown(tip)

  override fun showTip(tip: Tip) {
    binding.tutorialView.showTip(tip)
    setTipShow(tip)
  }

  override fun showAllTips() {
    tips.entries.forEach { (tip, view) -> view.visibleIf(!isTipShown(tip)) }
  }

  override fun hideAllTips() {
    tips.values.forEach { it.gone() }
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/views/BottomMenuView.kt
================================================
package com.michaldrabik.showly_oss.ui.views

import android.animation.Animator
import android.animation.AnimatorListenerAdapter
import android.content.Context
import android.util.AttributeSet
import android.view.LayoutInflater
import android.view.MotionEvent
import android.view.MotionEvent.ACTION_CANCEL
import android.view.MotionEvent.ACTION_DOWN
import android.view.MotionEvent.ACTION_MOVE
import android.view.MotionEvent.ACTION_UP
import android.view.ViewGroup
import android.view.ViewPropertyAnimator
import android.widget.FrameLayout
import androidx.core.view.children
import com.google.android.material.bottomnavigation.BottomNavigationItemView
import com.michaldrabik.common.Mode
import com.michaldrabik.showly_oss.R
import com.michaldrabik.showly_oss.databinding.ViewBottomMenuBinding
import com.michaldrabik.ui_base.utilities.extensions.add
import com.michaldrabik.ui_base.utilities.extensions.colorFromAttr
import com.michaldrabik.ui_base.utilities.extensions.fadeIn
import com.michaldrabik.ui_base.utilities.extensions.fadeOut
import com.michaldrabik.ui_base.utilities.extensions.screenWidth
import com.michaldrabik.ui_base.utilities.extensions.visible
import kotlin.math.abs

class BottomMenuView : FrameLayout {

  companion object {
    private const val SWIPE_MIN_THRESHOLD = 150F
    private const val FADE_DELAY = 150L
  }

  constructor(context: Context) : super(context)
  constructor(context: Context, attrs: AttributeSet?) : super(context, attrs)
  constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr)

  val binding = ViewBottomMenuBinding.inflate(LayoutInflater.from(context), this)

  var isModeMenuEnabled = true
  var onModeSelected: ((Mode) -> Unit)? = null

  private val screenWidth by lazy { screenWidth() }
  private val itemIdleColor by lazy { context.colorFromAttr(R.attr.colorBottomMenuItem) }
  private val itemSelectedColor by lazy { context.colorFromAttr(R.attr.colorBottomMenuItemChecked) }
  private val animations = mutableListOf<ViewPropertyAnimator?>()

  private var touchX = 0F
  private var isModeMenu = false

  override fun onInterceptTouchEvent(ev: MotionEvent?): Boolean {
    if (!isModeMenuEnabled) return super.onInterceptTouchEvent(ev)

    when (ev?.actionMasked) {
      ACTION_DOWN -> {
        touchX = ev.x
        isModeMenu = false
        disableTooltips()
      }
      ACTION_MOVE -> {
        val delta = ev.x - touchX
        if (!isModeMenu && abs(delta) > SWIPE_MIN_THRESHOLD) {
          isModeMenu = true
          showModeMenu()
        }
        with(binding) {
          if (isModeMenu) {
            if (ev.x > screenWidth / 2) {
              bottomMenuModeShows.setTextColor(itemIdleColor)
              bottomMenuModeMovies.setTextColor(itemSelectedColor)
            } else {
              bottomMenuModeShows.setTextColor(itemSelectedColor)
              bottomMenuModeMovies.setTextColor(itemIdleColor)
            }
          }
        }
      }
      ACTION_UP, ACTION_CANCEL -> {
        if (isModeMenu) {
          hideModeMenu()
          isModeMenu = false
          when {
            ev.x > screenWidth / 2 -> onModeSelected?.invoke(Mode.MOVIES)
            else -> onModeSelected?.invoke(Mode.SHOWS)
          }
        }
      }
    }

    return super.onInterceptTouchEvent(ev)
  }

  private fun showModeMenu() {
    with(binding) {
      bottomMenuModeShows.setTextColor(itemIdleColor)
      bottomMenuModeMovies.setTextColor(itemIdleColor)
      bottomNavigationView.fadeOut(FADE_DELAY).add(animations)
      bottomMenuModeLayout.fadeIn(FADE_DELAY).add(animations)
    }
  }

  private fun hideModeMenu() {
    with(binding) {
      with(animations) {
        forEach {
          it?.setListener(object : AnimatorListenerAdapter() {
            override fun onAnimationCancel(animation: Animator) {
              bottomNavigationView.visible()
              bottomNavigationView.alpha = 1F
            }
          })
          it?.cancel()
        }
        clear()
      }
      bottomNavigationView.fadeIn(FADE_DELAY).add(animations)
      bottomMenuModeLayout.fadeOut(FADE_DELAY).add(animations)
    }
  }

  private fun disableTooltips() {
    val content = binding.bottomNavigationView.getChildAt(0)
    if (content is ViewGroup) {
      content.children.forEach {
        if (it is BottomNavigationItemView) {
          it.setOnLongClickListener(null)
        }
      }
    }
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/views/WelcomeLanguageView.kt
================================================
package com.michaldrabik.showly_oss.ui.views

import android.annotation.SuppressLint
import android.content.Context
import android.util.AttributeSet
import android.view.LayoutInflater
import android.view.ViewGroup.LayoutParams.MATCH_PARENT
import android.view.ViewGroup.LayoutParams.WRAP_CONTENT
import android.widget.FrameLayout
import com.michaldrabik.showly_oss.R
import com.michaldrabik.showly_oss.databinding.ViewWelcomeLanguageBinding
import com.michaldrabik.ui_base.utilities.extensions.onClick
import com.michaldrabik.ui_settings.helpers.AppLanguage

class WelcomeLanguageView : FrameLayout {

  constructor(context: Context) : super(context)
  constructor(context: Context, attrs: AttributeSet?) : super(context, attrs)
  constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr)

  private val binding = ViewWelcomeLanguageBinding.inflate(LayoutInflater.from(context), this)

  var onYesClick: (() -> Unit)? = null
  var onNoClick: (() -> Unit)? = null

  init {
    layoutParams = LayoutParams(MATCH_PARENT, WRAP_CONTENT)
    with(binding) {
      viewWelcomeLanguageYesButton.onClick { onYesClick?.invoke() }
      viewWelcomeLanguageLeaveButton.onClick { onNoClick?.invoke() }
    }
  }

  @SuppressLint("SetTextI18n")
  fun setLanguage(appLanguage: AppLanguage) {
    // This text will always be English.
    binding.viewWelcomeLanguageMessage.text = "It seems like your device\'s language is ${appLanguage.displayNameRaw}.\n" +
      "Would you like to use it in Showly app?"
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/views/WelcomeNoteView.kt
================================================
package com.michaldrabik.showly_oss.ui.views

import android.content.Context
import android.util.AttributeSet
import android.view.LayoutInflater
import android.view.ViewGroup.LayoutParams.MATCH_PARENT
import android.view.ViewGroup.LayoutParams.WRAP_CONTENT
import android.widget.FrameLayout
import com.michaldrabik.showly_oss.R
import com.michaldrabik.showly_oss.databinding.ViewWelcomeNoteBinding
import com.michaldrabik.ui_base.utilities.extensions.getLocaleStringResource
import com.michaldrabik.ui_base.utilities.extensions.onClick
import com.michaldrabik.ui_settings.helpers.AppLanguage
import java.util.Locale

class WelcomeNoteView : FrameLayout {

  constructor(context: Context) : super(context)
  constructor(context: Context, attrs: AttributeSet?) : super(context, attrs)
  constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr)

  private val binding = ViewWelcomeNoteBinding.inflate(LayoutInflater.from(context), this)

  var onOkClickListener: (() -> Unit)? = null

  init {
    layoutParams = LayoutParams(MATCH_PARENT, WRAP_CONTENT)
    binding.viewWelcomeNoteYesButton.onClick { onOkClickListener?.invoke() }
  }

  fun setLanguage(language: AppLanguage) {
    if (language == AppLanguage.ENGLISH) return
    val locale = Locale(language.code)
    with(binding) {
      viewWelcomeNoteTitle.text = context.getLocaleStringResource(locale, R.string.textDisclaimerTitle)
      viewWelcomeNoteMessage.text = context.getLocaleStringResource(locale, R.string.textDisclaimerText)
      viewWelcomeNoteYesButton.text = context.getLocaleStringResource(locale, R.string.textDisclaimerConfirmText)
    }
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/ui/views/WhatsNewView.kt
================================================
package com.michaldrabik.showly_oss.ui.views

import android.annotation.SuppressLint
import android.content.Context
import android.util.AttributeSet
import android.view.LayoutInflater
import android.view.ViewGroup.LayoutParams.MATCH_PARENT
import android.widget.ScrollView
import com.michaldrabik.showly_oss.BuildConfig
import com.michaldrabik.showly_oss.R
import com.michaldrabik.showly_oss.databinding.ViewWhatsNewBinding

@SuppressLint("SetTextI18n")
class WhatsNewView : ScrollView {

  constructor(context: Context) : super(context)
  constructor(context: Context, attrs: AttributeSet?) : super(context, attrs)
  constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr)

  private val binding = ViewWhatsNewBinding.inflate(LayoutInflater.from(context), this)

  init {
    layoutParams = LayoutParams(MATCH_PARENT, MATCH_PARENT)

    val whatsNew = context.assets.open("release_notes.txt")
      .bufferedReader()
      .use { it.readText() }

    with(binding) {
      viewWhatsNewMessage.text = whatsNew
      viewWhatsNewSubtitle.text = context.getString(R.string.textWhatsNewSubtitle, BuildConfig.VERSION_NAME)
    }
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/utilities/deeplink/DeepLinkBundle.kt
================================================
package com.michaldrabik.showly_oss.utilities.deeplink

import com.michaldrabik.ui_model.Movie
import com.michaldrabik.ui_model.Show

data class DeepLinkBundle(
  val show: Show? = null,
  val movie: Movie? = null
) {

  companion object {
    val EMPTY = DeepLinkBundle()
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/utilities/deeplink/DeepLinkResolver.kt
================================================
package com.michaldrabik.showly_oss.utilities.deeplink

import android.content.Intent
import androidx.core.os.bundleOf
import androidx.navigation.NavController
import com.google.android.material.bottomnavigation.BottomNavigationView
import com.michaldrabik.showly_oss.R
import com.michaldrabik.showly_oss.utilities.deeplink.resolvers.ImdbSourceResolver
import com.michaldrabik.showly_oss.utilities.deeplink.resolvers.TmdbSourceResolver
import com.michaldrabik.showly_oss.utilities.deeplink.resolvers.TraktSourceResolver
import com.michaldrabik.ui_base.Logger
import com.michaldrabik.ui_model.Movie
import com.michaldrabik.ui_model.Show
import com.michaldrabik.ui_navigation.java.NavigationArgs
import javax.inject.Inject
import javax.inject.Singleton

@Singleton
class DeepLinkResolver @Inject constructor() {

  companion object {
    const val TMDB_TYPE_TV = "tv"
    const val TMDB_TYPE_MOVIE = "movie"

    const val TRAKT_TYPE_TV = "shows"
    const val TRAKT_TYPE_MOVIE = "movies"
  }

  private val sourceResolvers = setOf(
    TraktSourceResolver(),
    ImdbSourceResolver(),
    TmdbSourceResolver()
  )

  private val progressDestinations = arrayOf(
    R.id.progressMainFragment,
    R.id.progressMoviesMainFragment,
  )

  private val mainDestinations = arrayOf(
    *progressDestinations,
    R.id.discoverFragment,
    R.id.discoverMoviesFragment,
    R.id.followedShowsFragment,
    R.id.followedMoviesFragment,
    R.id.listsFragment,
    R.id.newsFragment,
  )

  fun findSource(intent: Intent?): DeepLinkSource? {
    val path = intent?.data?.pathSegments ?: emptyList()
    return sourceResolvers.firstNotNullOfOrNull { it.resolve(path) }
  }

  fun resolveDestination(
    navController: NavController,
    navigationView: BottomNavigationView,
    show: Show,
  ) {
    try {
      resetNavigation(navController, navigationView)

      val navBundle = bundleOf(NavigationArgs.ARG_SHOW_ID to show.traktId)
      val actionId = when (navController.currentDestination?.id) {
        R.id.progressMainFragment -> R.id.actionProgressFragmentToShowDetailsFragment
        R.id.progressMoviesMainFragment -> R.id.actionProgressMoviesFragmentToShowDetailsFragment
        else -> error("Unknown actionId. ActionId: ${navController.currentDestination?.id}")
      }
      navController.navigate(actionId, navBundle)
    } catch (error: Throwable) {
      Logger.record(error, "DeepLinkResolver::resolveDestination(show:${show.traktId})")
    }
  }

  fun resolveDestination(
    navController: NavController,
    navigationView: BottomNavigationView,
    movie: Movie,
  ) {
    try {
      resetNavigation(navController, navigationView)

      val navBundle = bundleOf(NavigationArgs.ARG_MOVIE_ID to movie.traktId)
      val actionId = when (navController.currentDestination?.id) {
        R.id.progressMainFragment -> R.id.actionProgressFragmentToMovieDetailsFragment
        R.id.progressMoviesMainFragment -> R.id.actionProgressMoviesFragmentToMovieDetailsFragment
        else -> error("Unknown actionId. ActionId: $navController.currentDestination?.id")
      }
      navController.navigate(actionId, navBundle)
    } catch (error: Throwable) {
      Logger.record(error, "DeepLinkResolver::resolveDestination(movie:${movie.traktId})")
    }
  }

  private fun resetNavigation(navController: NavController, navigationView: BottomNavigationView) {
    while (navController.currentDestination?.id !in mainDestinations) {
      navController.popBackStack()
    }

    if (navController.currentDestination?.id !in progressDestinations) {
      navigationView.selectedItemId = R.id.menuProgress
    }
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/utilities/deeplink/DeepLinkSource.kt
================================================
package com.michaldrabik.showly_oss.utilities.deeplink

import com.michaldrabik.ui_model.IdImdb
import com.michaldrabik.ui_model.IdSlug
import com.michaldrabik.ui_model.IdTmdb

sealed class DeepLinkSource {

  data class ImdbSource(val id: IdImdb) : DeepLinkSource()

  data class TmdbSource(val id: IdTmdb, val type: String) : DeepLinkSource()

  data class TraktSource(val id: IdSlug, val type: String) : DeepLinkSource()
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/utilities/deeplink/resolvers/ImdbSourceResolver.kt
================================================
package com.michaldrabik.showly_oss.utilities.deeplink.resolvers

import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkSource
import com.michaldrabik.ui_model.IdImdb

class ImdbSourceResolver : SourceResolver {

  override fun resolve(linkPath: List<String>): DeepLinkSource? {
    if (linkPath.size < 2 || !linkPath[1].startsWith("tt") || linkPath[1].length <= 2) {
      return null
    }

    return DeepLinkSource.ImdbSource(IdImdb(linkPath[1]))
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/utilities/deeplink/resolvers/SourceResolver.kt
================================================
package com.michaldrabik.showly_oss.utilities.deeplink.resolvers

import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkSource

interface SourceResolver {
  fun resolve(linkPath: List<String>): DeepLinkSource?
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/utilities/deeplink/resolvers/TmdbSourceResolver.kt
================================================
package com.michaldrabik.showly_oss.utilities.deeplink.resolvers

import androidx.core.text.isDigitsOnly
import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkResolver
import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkSource
import com.michaldrabik.ui_model.IdTmdb

class TmdbSourceResolver : SourceResolver {

  override fun resolve(linkPath: List<String>): DeepLinkSource? {
    if (linkPath.size < 2 ||
      !(linkPath[0] == DeepLinkResolver.TMDB_TYPE_TV || linkPath[0] == DeepLinkResolver.TMDB_TYPE_MOVIE) ||
      linkPath[1].length <= 1
    ) {
      return null
    }

    val id = linkPath[1].substringBefore("-").trim()
    val type = linkPath[0]
    return if (id.isDigitsOnly()) {
      DeepLinkSource.TmdbSource(IdTmdb(id.toLong()), type)
    } else {
      null
    }
  }
}


================================================
FILE: app/src/main/java/com/michaldrabik/showly_oss/utilities/deeplink/resolvers/TraktSourceResolver.kt
================================================
package com.michaldrabik.showly_oss.utilities.deeplink.resolvers

import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkResolver
import com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkSource
import com.michaldrabik.ui_model.IdSlug

class TraktSourceResolver : SourceResolver {

  override fun resolve(linkPath: List<String>): DeepLinkSource? {
    if (linkPath.size < 2 || !(linkPath[0] == DeepLinkResolver.TRAKT_TYPE_TV || linkPath[0] == DeepLinkResolver.TRAKT_TYPE_MOVIE)) {
      return null
    }

    return DeepLinkSource.TraktSource(IdSlug(linkPath[1]), linkPath[0])
  }
}


================================================
FILE: app/src/main/play/release-notes/en-GB/default.txt
================================================
* Fix issue where actors list of shows and movies would not return to its scrolled position
* Other bugfixes

================================================
FILE: app/src/main/res/drawable/bg_dialog.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<shape
  xmlns:android="http://schemas.android.com/apk/res/android">
  <solid android:color="?attr/colorPrimary" />
  <corners android:radius="8dp" />
</shape>

================================================
FILE: app/src/main/res/drawable/ic_eye_off.xml
================================================
<vector android:height="24dp" android:tint="#FFFFFF"
    android:viewportHeight="24" android:viewportWidth="24"
    android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
    <path android:fillColor="@android:color/white" android:pathData="M12,7c2.76,0 5,2.24 5,5 0,0.65 -0.13,1.26 -0.36,1.83l2.92,2.92c1.51,-1.26 2.7,-2.89 3.43,-4.75 -1.73,-4.39 -6,-7.5 -11,-7.5 -1.4,0 -2.74,0.25 -3.98,0.7l2.16,2.16C10.74,7.13 11.35,7 12,7zM2,4.27l2.28,2.28 0.46,0.46C3.08,8.3 1.78,10.02 1,12c1.73,4.39 6,7.5 11,7.5 1.55,0 3.03,-0.3 4.38,-0.84l0.42,0.42L19.73,22 21,20.73 3.27,3 2,4.27zM7.53,9.8l1.55,1.55c-0.05,0.21 -0.08,0.43 -0.08,0.65 0,1.66 1.34,3 3,3 0.22,0 0.44,-0.03 0.65,-0.08l1.55,1.55c-0.67,0.33 -1.41,0.53 -2.2,0.53 -2.76,0 -5,-2.24 -5,-5 0,-0.79 0.2,-1.53 0.53,-2.2zM11.84,9.02l3.15,3.15 0.02,-0.16c0,-1.66 -1.34,-3 -3,-3l-0.17,0.01z"/>
</vector>


================================================
FILE: app/src/main/res/drawable/ic_languages.xml
================================================
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="512dp"
    android:height="512dp"
    android:viewportWidth="512"
    android:viewportHeight="512">
  <path
      android:pathData="m504.5,273.101c0,-70.961 -31.942,-134.462 -82.232,-176.909 -40.279,-33.998 -153.438,-37.892 -153.438,-37.892l-82.012,0.473c-0.61,0.258 -1.347,0.079 -1.954,0.342 -80.382,34.882 -132.545,117.531 -132.545,213.605 0,127.798 95.283,214.76 223.081,214.76 38.422,0 72.357,7.656 104.247,-8.915 74.182,-38.546 124.853,-116.088 124.853,-205.464z"
      android:fillColor="#94ccd4"/>
  <path
      android:pathData="m422.27,96.19c-23.53,15.39 -48.79,30.66 -58.26,32.73 -25.99,7.6 -59.82,-8.5 -66.77,29.83 -0.2,7.4 -0.85,14.43 -1.96,20.99 -1.24,7.32 -3.96,14.21 -7.91,20.33s-14.463,7.906 -20.583,12.106c-16.85,11.58 -30.541,12.274 -48.681,2.824 -0.46,-0.24 -0.93,-0.49 -1.4,-0.74 -30.22,-14.81 -47.973,-48.87 -16.643,-73.76 20.59,-17 17.476,-46.987 3.086,-65.727l-8.66,-10.02c6.723,-2.777 3.986,-10.878 11.01,-13.021 21.385,-6.524 44.084,-10.032 67.6,-10.032 56.841,0 108.891,20.49 149.171,54.49z"
      android:fillColor="#b7e546"/>
  <path
      android:pathData="m452.566,215.821c-0.129,-19.101 -7.841,-37.381 -21.444,-50.801 -11.605,-13.278 -15.619,-21.189 -31.569,-6.53 -15.118,18.805 -0.207,42.145 -32.34,74.213 -5.691,5.793 -8.884,13.723 -8.563,21.852 -0.012,-0.002 -0.007,-1.436 -0.018,-1.438 1.155,20.135 14.908,36.366 34.51,36.366 25.18,-0.001 59.424,-29.559 59.424,-73.662z"
      android:fillColor="#b7e546"/>
  <path
      android:pathData="m380.12,231.21c-5.69,5.8 -8.89,13.73 -8.57,21.86 -0.01,-0.01 -0.01,-0.02 -0.02,-0.02 0.96,16.67 15.41,30.7 31.48,35.04 -3.37,0.92 -6.69,1.39 -9.87,1.39 -19.6,0 -40.45,-16.29 -41.61,-36.43 0.01,0 0.01,0.01 0.02,0.02 -0.32,-8.13 2.88,-16.06 8.57,-21.86 32.13,-32.06 13.51,-57.11 28.63,-75.91 9.11,-8.38 17.86,-8.34 25.84,-4.29 -1.93,1.07 -3.87,2.48 -5.84,4.29 -15.12,18.8 3.5,43.85 -28.63,75.91z"
      android:fillColor="#abd641"/>
  <path
      android:pathData="m474.303,25.001v115.506l-7.36,6.988c0,9.665 -10.988,11.121 -20.654,11.121l-52.829,-0.397c-2.458,0 -4.854,0.776 -6.844,2.218l-43.595,30.271c-3.857,2.794 -9.256,0.038 -9.256,-4.724l4.092,-14.559c0,-6.444 -5.224,-11.667 -11.667,-11.667h-14c-9.665,0 -17.501,-7.835 -17.501,-17.501l-2.11,-108.357c0,-9.665 3.839,-19.859 13.504,-19.859l4.878,-6.541h145.841c9.666,0 17.501,7.835 17.501,17.501z"
      android:fillColor="#dc4955"/>
  <path
      android:pathData="m474.303,140.507v5.834c0,9.666 -7.835,17.501 -17.501,17.501h-62.63c-2.462,0 -4.854,0.782 -6.837,2.217l-47.288,34.243c-3.85,2.8 -9.252,0.047 -9.252,-4.725v-20.068c0,-6.444 -5.224,-11.667 -11.667,-11.667h-14.001c-9.665,0 -17.501,-7.835 -17.501,-17.501v-121.34c0,-9.665 7.835,-17.501 17.501,-17.501h5.834v130.674c0,1.289 1.045,2.333 2.333,2.333h5.834c13.429,0 25.112,7.595 30.979,18.725 1,1.897 3.425,2.496 5.162,1.237l18.368,-13.312c6.009,-4.352 13.114,-6.65 20.534,-6.65z"
      android:fillColor="#d82f3c"/>
  <path
      android:pathData="m328.1,484.28c-130.86,0 -236.95,-105.78 -236.95,-236.26 0,-77.71 35.628,-145.845 93.718,-188.905 -84.029,34.685 -143.168,117.43 -143.168,213.985 0,39.347 9.82,76.4 27.144,108.842 0,0 54.989,43.55 82.795,64.014 38.358,28.23 112.89,46.439 112.89,46.439s82.932,2.814 114.732,-13.646c-16.481,3.621 -33.591,5.531 -51.161,5.531z"
      android:fillColor="#6fbbc6"/>
  <path
      android:pathData="m379.635,478.541c-18.595,-25.899 -52.793,-54.451 -51.323,-88.84 0.501,-11.724 -1.046,-23.487 -4.906,-34.574 -0.061,-0.15 -0.11,-0.297 -0.159,-0.443 -1.952,-5.491 -4.884,-10.572 -8.535,-15.101 -10.078,-12.52 -31.583,-45.184 -42.098,-49.764 -20.079,-12.419 -47.263,-3.171 -58.005,17.22 -9.324,23.587 -11.896,55.905 -36.253,68.627 -14.56,7.896 -35.545,6.122 -46.621,-6.952 -19.217,-24.96 -46.122,-0.826 -62.868,13.218 6.654,12.431 33.803,21.544 42.583,32.57 36.43,45.761 68.853,63.401 122.234,72.98 49.652,9.01 100.602,14.614 145.41,-8.666 0.18,-0.094 0.361,-0.182 0.541,-0.275z"
      android:fillColor="#b7e546"/>
  <path
      android:pathData="m379.17,478.77c-39.78,20.697 -85.715,29.138 -130.28,24.46v-0.01c-75.319,-7.365 -144.829,-54.348 -180.02,-121.29 13.24,-11.11 32.85,-28.54 49.98,-22.97 39.85,74.57 118.61,125.32 209.25,125.32 17.54,0 34.62,-1.9 51.07,-5.51z"
      android:fillColor="#abd641"/>
  <path
      android:pathData="m430.775,278.427v115.506l-7.36,6.988c0,9.665 -10.988,11.121 -20.654,11.121l-52.829,-0.397c-2.458,0 -4.854,0.776 -6.844,2.218l-43.595,30.271c-3.857,2.794 -9.256,0.038 -9.256,-4.724l4.092,-14.559c0,-6.444 -5.224,-11.667 -11.667,-11.667h-14.001c-9.665,0 -17.501,-7.835 -17.501,-17.501l-2.11,-108.356c0,-9.665 3.839,-19.859 13.504,-19.859l4.878,-6.541h145.841c9.666,-0.001 17.502,7.835 17.502,17.5z"
      android:fillColor="#ffbf54"/>
  <path
      android:pathData="m430.775,393.933v5.834c0,9.665 -7.835,17.501 -17.501,17.501h-62.63c-2.462,0 -4.854,0.782 -6.837,2.217l-47.288,34.243c-3.85,2.8 -9.252,0.047 -9.252,-4.725v-20.068c0,-6.444 -5.224,-11.667 -11.667,-11.667h-14.001c-9.665,0 -17.501,-7.835 -17.501,-17.501v-121.34c0,-9.665 7.835,-17.501 17.501,-17.501h5.834v130.674c0,1.289 1.045,2.333 2.333,2.333h5.834c13.429,0 25.112,7.595 30.979,18.725 1,1.897 3.425,2.496 5.162,1.237l18.368,-13.312c6.009,-4.352 13.114,-6.65 20.534,-6.65z"
      android:fillColor="#ffa442"/>
  <path
      android:pathData="m207.66,153.42 l-0.29,0.24c-3.86,3.07 -17.26,15.34 -26.76,25.86 -3.82,-14.43 -0.5,-29.75 14.32,-41.52 20.59,-17 12.99,-50.12 -1.4,-68.86l-8.666,-10.025c6.72,-2.78 13.606,-5.245 20.636,-7.385 6.22,9.45 11.75,17.41 11.75,17.41 14.91,27.77 15.58,63.51 -9.59,84.28z"
      android:fillColor="#abd641"/>
  <path
      android:pathData="m288.21,198.71c-0.27,0.46 -0.55,0.91 -0.84,1.36 -3.95,6.12 -9.11,11.46 -15.23,15.66 -16.85,11.58 -38.7,12.88 -56.84,3.43 -0.46,-0.24 -0.93,-0.49 -1.4,-0.74 -28.44,-13.94 -47.89,-50.81 -23.98,-75.85 -7.61,22.98 10.36,49.51 34.55,60.85 0.49,0.25 0.98,0.5 1.46,0.74 18.96,9.45 41.8,8.15 59.41,-3.43 0.98,-0.64 1.94,-1.31 2.87,-2.02z"
      android:fillColor="#abd641"/>
  <path
      android:pathData="m246.362,502.945c0.064,0.007 0.128,0.015 0.192,0.022 -0.064,-0.007 -0.128,-0.014 -0.192,-0.022z"
      android:fillColor="#94ccd4"/>
  <path
      android:pathData="m174.635,482.535c0.227,0.107 0.456,0.211 0.683,0.317 -0.228,-0.106 -0.456,-0.21 -0.683,-0.317z"
      android:fillColor="#94ccd4"/>
  <path
      android:pathData="m379.26,478.75c-4.13,2.14 -8.32,4.15 -12.59,6.03 4.2,-1.86 8.34,-3.85 12.42,-5.97 0.03,-0.01 0.05,-0.03 0.08,-0.04s0.06,-0.01 0.09,-0.02z"
      android:fillColor="#94ccd4"/>
  <path
      android:pathData="m15.553,144.502 l1.468,100.637c0,9.855 8.03,17.844 17.936,17.844l56.305,1.84c2.519,0 4.974,0.792 7.014,2.262l38.427,32.486c3.953,2.849 9.486,0.039 9.486,-4.817l2.428,-15.705c0,-6.57 5.353,-11.896 11.957,-11.896l18.584,-0.068c9.906,0 19.66,-2.352 19.66,-12.207v-123.721c0,-9.855 -8.03,-17.844 -17.936,-17.844h-155.446c-9.906,0 -9.883,21.334 -9.883,31.189z"
      android:fillColor="#faf8f8"/>
  <path
      android:pathData="m198.82,252.72v2.16c0,9.85 -8.03,17.84 -17.94,17.84h-14.35c-6.6,0 -11.95,5.33 -11.95,11.9v20.47c0,4.85 -5.54,7.66 -9.49,4.81l-48.45,-34.92c-2.04,-1.47 -4.5,-2.26 -7.02,-2.26h-64.18c-9.91,0 -17.94,-7.99 -17.94,-17.84v-123.72c0,-9.86 8.03,-17.85 17.94,-17.85h2.06v134.41c0,2.761 2.239,5 5,5h57.12c6.72,0 13.27,2.12 18.71,6.04l22.35,16.11c2.14,1.54 5.12,0.6 6.08,-1.85 4.66,-11.87 16.25,-20.3 29.77,-20.3z"
      android:fillColor="#f0e9e6"/>
  <path
      android:fillColor="#FF000000"
      android:pathData="m481.888,156.912c0.81,-2.472 1.254,-5.108 1.254,-7.846v-123.722c0,-13.975 -11.411,-25.344 -25.436,-25.344h-155.446c-14.025,0 -25.436,11.369 -25.436,25.344v8.902c-33.533,-0.672 -68.387,6.287 -99.202,19.801 -28.212,12.313 -53.438,29.731 -75.046,51.765h-26.576c-4.142,0 -7.5,3.358 -7.5,7.5s3.358,7.5 7.5,7.5h104.882c5.754,0 10.436,4.641 10.436,10.344v123.721c0,5.704 -4.682,10.345 -10.436,10.345h-14.349c-10.729,0 -19.458,8.701 -19.458,19.396v17.47l-46.054,-33.188c-3.338,-2.406 -7.28,-3.677 -11.399,-3.677h-64.186c-5.754,0 -10.436,-4.641 -10.436,-10.345v-123.721c0,-5.704 4.682,-10.344 10.436,-10.344h15.564c4.142,0 7.5,-3.358 7.5,-7.5s-3.358,-7.5 -7.5,-7.5h-15.564c-14.025,0 -25.436,11.369 -25.436,25.344v123.721c0,13.975 11.411,25.345 25.436,25.345h8.881c1.778,61.143 26.418,118.367 69.857,161.806 45.122,45.121 105.115,69.971 168.927,69.971 33.177,0 65.293,-6.674 95.458,-19.836 29.134,-12.712 55.096,-30.852 77.166,-53.915 2.864,-2.993 2.76,-7.74 -0.233,-10.604 -2.994,-2.864 -7.74,-2.76 -10.604,0.233 -16.479,17.22 -35.175,31.437 -55.462,42.419 -9.532,-12.686 -23.519,-27.95 -32.87,-42.58l1.788,-1.289c0.768,-0.554 1.677,-0.846 2.628,-0.846h64.186c14.025,0 25.436,-11.369 25.436,-25.344v-123.721c0,-1.675 -0.168,-3.31 -0.481,-4.895 12.89,-15.429 19.951,-35.097 19.951,-55.852 -0.1,-14.759 -4.27,-29.019 -11.927,-41.36h9.568c5.264,0 10.16,-1.602 14.223,-4.342 16.427,31.673 25.072,67.079 25.072,103.033 0,46.297 -14.006,90.723 -40.504,128.476 -2.38,3.39 -1.561,8.068 1.83,10.447 2.238,1.608 7.05,2.252 10.447,-1.83 28.279,-40.29 43.227,-87.696 43.227,-137.093 0,-40.738 -10.402,-80.827 -30.112,-116.189zM180.882,105.813h-56.612c17.613,-15.735 37.295,-28.388 58.426,-37.713l5.014,5.785c8.417,11.05 13.671,26.913 11.948,40.194 -4.654,-5.076 -11.348,-8.266 -18.776,-8.266zM355.558,464.428c3.586,4.368 7.034,8.573 10.2,12.678 -28.669,13.037 -60.073,19.894 -92.657,19.894 -83.92,0 -157.19,-46.417 -195.523,-114.917 10.574,-8.721 24.195,-19.32 35.077,-18.058 4.441,0.516 8.373,3.111 12.02,7.937 9.126,12.064 24.526,14.415 35.315,15.134 16.11,-0.996 30.466,-9.225 39.429,-22.493 2.343,-3.416 1.474,-8.084 -1.942,-10.427 -3.416,-2.344 -8.084,-1.473 -10.427,1.942 -6.445,9.396 -14.957,14.48 -26.746,15.963 -12.244,-0.899 -19.559,-3.738 -23.665,-9.167 -6.161,-8.15 -13.648,-12.79 -22.254,-13.79 -15.885,-1.841 -31.508,9.32 -43.835,19.326 -12.724,-26.921 -20.235,-56.765 -21.224,-88.228h40.295c0.952,0 1.861,0.292 2.629,0.846l48.453,34.918c2.352,1.695 5.108,2.557 7.883,2.557 2.1,0 4.21,-0.494 6.163,-1.493 4.519,-2.313 7.325,-6.897 7.325,-11.965v-20.467c0,-2.424 2,-4.396 4.458,-4.396h14.349c14.025,0 25.436,-11.37 25.436,-25.345v-32.007c8.927,5.505 23.066,10.392 34.576,10.079 12.446,0 24.833,-3.712 35.494,-11.034 13.914,-9.556 23.494,-24.472 26.285,-40.923 0.362,-2.136 0.679,-4.336 0.951,-6.583h12.985c2.458,0 4.457,1.972 4.457,4.396v20.467c0,5.067 2.807,9.652 7.325,11.965 3.812,1.784 8.457,2.389 14.045,-1.063l30.874,-22.249c-1.193,11.615 -4.317,23.836 -18.543,38.033 -6.681,6.801 -10.516,15.886 -10.72,25.213h-84.335c-14.025,0 -25.436,11.37 -25.436,25.345v3.242c-13.924,5.308 -25.072,17.024 -30.068,31.782 -1.089,3.218 -2.794,8.699 -4.378,13.934 -1.211,3.961 1.018,8.154 4.979,9.365 3.02,0.848 7.296,-0.198 9.365,-4.979 1.063,-3.478 2.521,-8.328 4.243,-13.511 2.888,-8.532 8.6,-15.61 15.86,-19.975v103.862c0,13.975 11.411,25.344 25.436,25.344h14.349c2.458,0 4.457,1.972 4.457,4.396v20.466c0,5.067 2.807,9.651 7.325,11.965 1.953,1 4.063,1.493 6.164,1.493 2.775,0 5.532,-0.862 7.883,-2.556l34.488,-24.853c6.324,9.818 13.849,19.01 21.18,27.937zM425.596,400.237c0,5.704 -4.682,10.344 -10.436,10.344h-64.186c-4.12,0 -8.062,1.272 -11.399,3.678l-46.055,33.189v-17.471c0,-10.695 -8.729,-19.396 -19.457,-19.396h-14.349c-5.754,0 -10.436,-4.641 -10.436,-10.344v-123.72c0,-5.704 4.682,-10.345 10.436,-10.345h92.635c0.008,0 0.015,0.002 0.023,0.002 0.011,0 0.022,-0.002 0.033,-0.002h62.756c5.754,0 10.436,4.641 10.436,10.345v123.72zM445.066,215.821c0,15.236 -4.597,29.757 -13.056,41.732 -4.491,-3.966 -10.391,-6.381 -16.85,-6.381h-56.106c0.2,-5.417 2.48,-10.697 6.362,-14.648 21.123,-21.079 22.407,-39.759 23.438,-54.768 0.126,-1.844 0.253,-3.615 0.409,-5.327l1.626,-1.172c0.769,-0.554 1.678,-0.847 2.63,-0.847h36.092c9.878,11.564 15.351,26.181 15.455,41.411zM457.706,159.41h-64.186c-4.119,0 -8.061,1.271 -11.399,3.677l-4.481,3.229c-0.017,0.012 -0.034,0.024 -0.051,0.036l-41.523,29.924v-17.471c0,-10.695 -8.729,-19.396 -19.457,-19.396h-14.349c-5.754,0 -10.436,-4.641 -10.436,-10.344v-28.065c0,-4.142 -3.358,-7.5 -7.5,-7.5s-7.5,3.358 -7.5,7.5v28.065c0,9.115 4.856,17.118 12.123,21.584 -0.286,2.694 -0.636,5.321 -1.063,7.836 -2.115,12.472 -9.401,23.795 -19.988,31.066 -18.677,13.146 -43.842,9.827 -61.578,-4.852v-67.815c16.092,-21.223 8.041,-54.981 -8.872,-74.67 24.144,-8.66 52.191,-13.541 79.377,-12.969v36.755c0,4.142 3.358,7.5 7.5,7.5s7.5,-3.358 7.5,-7.5v-60.656c0,-5.704 4.682,-10.344 10.436,-10.344h155.446c5.754,0 10.436,4.641 10.436,10.344v123.721c0.001,5.704 -4.681,10.345 -10.435,10.345z"/>
  <path
      android:fillColor="#FF000000"
      android:pathData="m426.308,49.753h-38.825v-12.753c0,-4.142 -3.358,-7.5 -7.5,-7.5s-7.5,3.358 -7.5,7.5v12.753h-38.825c-4.142,0 -7.5,3.358 -7.5,7.5s3.358,7.5 7.5,7.5h15.551c3.601,15.961 10.724,30.639 20.644,43.123 -7.591,7.247 -16.472,13.255 -26.375,17.669l-10.333,4.605c-3.784,1.686 -5.484,6.12 -3.798,9.903 1.244,2.792 3.984,4.449 6.855,4.449 1.02,0 2.057,-0.209 3.048,-0.651l10.333,-4.605c11.399,-5.08 21.635,-11.977 30.4,-20.293 8.765,8.316 19.001,15.213 30.4,20.293l10.333,4.605c2.636,1.092 7.58,0.786 9.903,-3.798 1.686,-3.783 -0.014,-8.217 -3.798,-9.903l-10.333,-4.605c-9.904,-4.413 -18.784,-10.422 -26.375,-17.669 9.92,-12.484 17.042,-27.162 20.643,-43.123h15.551c4.142,0 7.5,-3.358 7.5,-7.5s-3.357,-7.5 -7.499,-7.5zM379.983,96.446c-7.028,-9.387 -12.272,-20.113 -15.335,-31.693h30.669c-3.063,11.58 -8.306,22.306 -15.334,31.693z"/>
  <path
      android:fillColor="#FF000000"
      android:pathData="m64.983,245.017c3.876,1.462 8.204,-0.494 9.665,-4.369l6.509,-17.247h43.945l6.577,17.269c1.14,2.993 3.988,4.833 7.01,4.833 0.887,0 1.79,-0.159 2.668,-0.493 3.871,-1.474 5.813,-5.807 4.339,-9.678l-33.794,-88.732c-0.022,-0.057 -0.044,-0.114 -0.067,-0.171 -1.472,-3.597 -4.934,-5.923 -8.82,-5.927 -0.004,0 -0.006,0 -0.01,0 -3.881,0 -7.344,2.319 -8.822,5.909 -0.028,0.068 -0.055,0.137 -0.082,0.207l-33.487,88.736c-1.463,3.873 0.493,8.201 4.369,9.663zM103.028,165.444 L119.389,208.401h-32.572z"/>
  <path
      android:fillColor="#FF000000"
      android:pathData="m394.886,293h-34.891c-4.142,0 -7.5,3.358 -7.5,7.5s3.358,7.5 7.5,7.5h9.945v23.5h-29.833c1.743,-3.549 2.724,-7.537 2.724,-11.75 0,-14.75 -12,-26.75 -26.75,-26.75h-21.656c-4.142,0 -7.5,3.358 -7.5,7.5s3.358,7.5 7.5,7.5h21.656c6.479,0 11.75,5.271 11.75,11.75s-5.271,11.75 -11.75,11.75h-24.063c-4.142,0 -7.5,3.358 -7.5,7.5s3.358,7.5 7.5,7.5h24.063c6.479,0 11.75,5.271 11.75,11.75 0,6.589 -5.161,11.75 -11.75,11.75 -10.362,0 -22.125,-1.168 -30.791,-9.834 -2.929,-2.929 -7.678,-2.929 -10.606,0 -2.929,2.929 -2.929,7.678 0,10.606 12.611,12.611 28.748,14.228 41.397,14.228 14.75,0 26.75,-12 26.75,-26.75 0,-4.213 -0.981,-8.201 -2.724,-11.75h29.833v31c0,4.142 3.358,7.5 7.5,7.5s7.5,-3.358 7.5,-7.5v-69.5h9.945c4.142,0 7.5,-3.358 7.5,-7.5s-3.357,-7.5 -7.499,-7.5z"/>
</vector>


================================================
FILE: app/src/main/res/drawable/ic_launcher_foreground.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<vector
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:width="108dp"
  android:height="108dp"
  android:viewportWidth="78"
  android:viewportHeight="165.456"
  >
  <group
    android:scaleX="0.2893104"
    android:scaleY="0.61369413"
    android:translateX="27.716894"
    android:translateY="31.018133"
    >
    <group android:translateY="134.208">
      <path
        android:fillColor="#F44336"
        android:pathData="M36.144,-13.536Q45.936,-13.536,50.4,-16.848Q54.864,-20.16,54.864,-26.208Q54.864,-29.808,53.352,-32.4Q51.84,-34.992,49.032,-37.08Q46.224,-39.168,42.192,-40.968Q38.16,-42.768,32.976,-44.496Q27.792,-46.368,22.968,-48.6Q18.144,-50.832,14.472,-54.144Q10.8,-57.456,8.568,-62.064Q6.336,-66.672,6.336,-73.152Q6.336,-86.688,15.696,-94.392Q25.056,-102.096,41.184,-102.096Q50.544,-102.096,57.816,-100.008Q65.088,-97.92,69.264,-95.472L63.648,-80.784Q58.752,-83.52,52.92,-84.96Q47.088,-86.4,40.896,-86.4Q33.552,-86.4,29.448,-83.376Q25.344,-80.352,25.344,-74.88Q25.344,-71.568,26.712,-69.192Q28.08,-66.816,30.6,-64.944Q33.12,-63.072,36.504,-61.488Q39.888,-59.904,43.92,-58.464Q50.976,-55.872,56.52,-53.208Q62.064,-50.544,65.88,-46.872Q69.696,-43.2,71.712,-38.232Q73.728,-33.264,73.728,-26.208Q73.728,-12.672,64.152,-5.256Q54.576,2.16,36.144,2.16Q29.952,2.16,24.84,1.368Q19.728,0.576,15.768,-0.576Q11.808,-1.728,8.928,-2.952Q6.048,-4.176,4.32,-5.184L9.648,-20.016Q13.536,-17.856,20.16,-15.696Q26.784,-13.536,36.144,-13.536Z"
        />
    </group>
  </group>
</vector>

================================================
FILE: app/src/main/res/drawable/ic_launcher_mono.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<vector
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:width="108dp"
  android:height="108dp"
  android:viewportWidth="78"
  android:viewportHeight="165.456"
  >
  <group
    android:scaleX="0.2893104"
    android:scaleY="0.61369413"
    android:translateX="27.716894"
    android:translateY="31.018133"
    >
    <group android:translateY="134.208">
      <path
        android:fillColor="#FFFFFF"
        android:pathData="M36.144,-13.536Q45.936,-13.536,50.4,-16.848Q54.864,-20.16,54.864,-26.208Q54.864,-29.808,53.352,-32.4Q51.84,-34.992,49.032,-37.08Q46.224,-39.168,42.192,-40.968Q38.16,-42.768,32.976,-44.496Q27.792,-46.368,22.968,-48.6Q18.144,-50.832,14.472,-54.144Q10.8,-57.456,8.568,-62.064Q6.336,-66.672,6.336,-73.152Q6.336,-86.688,15.696,-94.392Q25.056,-102.096,41.184,-102.096Q50.544,-102.096,57.816,-100.008Q65.088,-97.92,69.264,-95.472L63.648,-80.784Q58.752,-83.52,52.92,-84.96Q47.088,-86.4,40.896,-86.4Q33.552,-86.4,29.448,-83.376Q25.344,-80.352,25.344,-74.88Q25.344,-71.568,26.712,-69.192Q28.08,-66.816,30.6,-64.944Q33.12,-63.072,36.504,-61.488Q39.888,-59.904,43.92,-58.464Q50.976,-55.872,56.52,-53.208Q62.064,-50.544,65.88,-46.872Q69.696,-43.2,71.712,-38.232Q73.728,-33.264,73.728,-26.208Q73.728,-12.672,64.152,-5.256Q54.576,2.16,36.144,2.16Q29.952,2.16,24.84,1.368Q19.728,0.576,15.768,-0.576Q11.808,-1.728,8.928,-2.952Q6.048,-4.176,4.32,-5.184L9.648,-20.016Q13.536,-17.856,20.16,-15.696Q26.784,-13.536,36.144,-13.536Z"
        />
    </group>
  </group>
</vector>

================================================
FILE: app/src/main/res/drawable/selector_bottom_menu.xml
================================================
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:color="?attr/colorBottomMenuItemChecked" android:state_checked="true" />
  <item android:color="?attr/colorBottomMenuItem" android:state_checked="false" />
</selector>

================================================
FILE: app/src/main/res/layout/activity_main.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:id="@+id/rootLayout"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="?android:windowBackground"
  android:clipChildren="false"
  tools:context=".ui.main.MainActivity"
  >

  <androidx.fragment.app.FragmentContainerView
    android:id="@+id/navigationHost"
    android:name="androidx.navigation.fragment.NavHostFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    />

  <LinearLayout
    android:id="@+id/bottomNavigationWrapper"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom"
    android:background="?attr/colorBottomMenuBackground"
    android:elevation="@dimen/elevationNormal"
    android:orientation="vertical"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintVertical_bias="1"
    >

    <TextView
      android:id="@+id/statusView"
      android:layout_width="match_parent"
      android:layout_height="@dimen/bottomNoInternetViewHeight"
      android:background="?colorErrorSnackbar"
      android:gravity="center"
      android:text="@string/errorNoInternetConnection"
      android:textColor="?textColorOnSurface"
      android:textSize="12sp"
      android:visibility="gone"
      tools:visibility="visible"
      />

    <View
      android:id="@+id/bottomNavigationSeparator"
      android:layout_width="match_parent"
      android:layout_height="1dp"
      android:background="?attr/colorBottomMenuSeparator"
      />

    <com.michaldrabik.showly_oss.ui.views.BottomMenuView
      android:id="@+id/bottomMenuView"
      android:layout_width="match_parent"
      android:layout_height="@dimen/bottomNavigationHeight"
      />

  </LinearLayout>

  <androidx.coordinatorlayout.widget.CoordinatorLayout
    android:id="@+id/snackbarHost"
    android:layout_width="0dp"
    android:layout_height="0dp"
    app:layout_constraintBottom_toTopOf="@+id/bottomNavigationWrapper"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    />

  <com.michaldrabik.ui_base.common.views.tips.TipView
    android:id="@+id/tutorialTipModeMenu"
    android:layout_width="@dimen/tutorialTipSize"
    android:layout_height="@dimen/tutorialTipSize"
    android:layout_marginBottom="54dp"
    app:layout_constraintBottom_toBottomOf="@id/bottomNavigationWrapper"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="@dimen/tipModeMenuRatio"
    app:layout_constraintStart_toStartOf="parent"
    />

  <com.michaldrabik.ui_base.common.views.tips.TipView
    android:id="@+id/tutorialTipDiscover"
    android:layout_width="@dimen/tutorialTipSize"
    android:layout_height="@dimen/tutorialTipSize"
    android:layout_marginBottom="54dp"
    android:translationZ="10dp"
    app:layout_constraintBottom_toBottomOf="@id/bottomNavigationWrapper"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="@dimen/tipDiscoverRatio"
    app:layout_constraintStart_toStartOf="parent"
    />

  <com.michaldrabik.ui_base.common.views.tips.TipView
    android:id="@+id/tutorialTipMyShows"
    android:layout_width="@dimen/tutorialTipSize"
    android:layout_height="@dimen/tutorialTipSize"
    android:layout_marginBottom="54dp"
    android:translationZ="10dp"
    app:layout_constraintBottom_toBottomOf="@id/bottomNavigationWrapper"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="@dimen/tipMyShows"
    app:layout_constraintStart_toStartOf="parent"
    />

  <com.michaldrabik.ui_base.common.views.tips.TipOverlayView
    android:id="@+id/tutorialView"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:visibility="gone"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    />

  <View
    android:id="@+id/viewMask"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:background="@color/colorBlackTranslucent"
    android:translationZ="12dp"
    android:visibility="gone"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    tools:visibility="visible"
    />

  <com.michaldrabik.showly_oss.ui.views.WelcomeNoteView
    android:id="@+id/welcomeView"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_margin="@dimen/welcomeDialogSpace"
    android:translationZ="13dp"
    android:visibility="gone"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    tools:visibility="gone"
    />

  <com.michaldrabik.showly_oss.ui.views.WelcomeLanguageView
    android:id="@+id/welcomeLanguageView"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_margin="@dimen/welcomeDialogSpace"
    android:translationZ="15dp"
    android:visibility="gone"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    tools:visibility="visible"
    />

  <ProgressBar
    android:id="@+id/mainProgress"
    style="@style/ProgressBar.Accent"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:translationZ="20dp"
    android:visibility="gone"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    />

</androidx.constraintlayout.widget.ConstraintLayout>

================================================
FILE: app/src/main/res/layout/view_bottom_menu.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<merge
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:layout_height="wrap_content"
  tools:parentTag="android.widget.FrameLayout"
  >

  <com.google.android.material.bottomnavigation.BottomNavigationView
    android:id="@+id/bottomNavigationView"
    style="@style/ShowlyBottomBar"
    android:layout_width="match_parent"
    android:layout_height="@dimen/bottomNavigationHeight"
    app:backgroundTint="?attr/colorBottomMenuBackground"
    app:elevation="0dp"
    app:itemActiveIndicatorStyle="@style/ShowlyBottomBar.Indicator"
    app:itemIconTint="@drawable/selector_bottom_menu"
    app:itemRippleColor="@null"
    app:itemTextColor="@drawable/selector_bottom_menu"
    app:labelVisibilityMode="labeled"
    app:menu="@menu/bottom_navigation_menu"
    />

  <LinearLayout
    android:id="@+id/bottomMenuModeLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:translationZ="10dp"
    android:visibility="gone"
    tools:visibility="gone"
    >

    <TextView
      android:id="@+id/bottomMenuModeShows"
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_gravity="center"
      android:layout_weight="1"
      android:gravity="center"
      android:text="@string/textShows"
      android:textColor="?attr/colorBottomMenuItem"
      android:textSize="22sp"
      android:textStyle="bold"
      />

    <View
      android:layout_width="1dp"
      android:layout_height="match_parent"
      android:layout_gravity="center"
      android:layout_marginTop="@dimen/spaceMedium"
      android:layout_marginBottom="@dimen/spaceMedium"
      android:background="?attr/colorBottomMenuItem"
      />

    <TextView
      android:id="@+id/bottomMenuModeMovies"
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_gravity="center"
      android:layout_weight="1"
      android:gravity="center"
      android:text="@string/textMovies"
      android:textColor="?attr/colorBottomMenuItem"
      android:textSize="22sp"
      android:textStyle="bold"
      />

  </LinearLayout>

</merge>

================================================
FILE: app/src/main/res/layout/view_welcome_language.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<merge
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  tools:parentTag="android.widget.FrameLayout"
  >

  <androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/bg_dialog"
    android:elevation="@dimen/elevationNormal"
    android:paddingStart="@dimen/spaceNormal"
    android:paddingTop="@dimen/spaceBig"
    android:paddingEnd="@dimen/spaceNormal"
    android:paddingBottom="@dimen/spaceSmall"
    >

    <ImageView
      android:id="@+id/viewWelcomeLanguageIcon"
      android:layout_width="100dp"
      android:layout_height="100dp"
      app:layout_constraintEnd_toEndOf="parent"
      app:layout_constraintStart_toStartOf="parent"
      app:layout_constraintTop_toTopOf="parent"
      app:srcCompat="@drawable/ic_languages"
      />

    <TextView
      android:id="@+id/viewWelcomeLanguageMessage"
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_marginTop="@dimen/spaceBig"
      android:layout_marginBottom="@dimen/spaceSmall"
      android:maxLines="10"
      android:textColor="?android:attr/textColorPrimary"
      android:textSize="16sp"
      app:layout_constraintBottom_toTopOf="@id/viewWelcomeLanguageMessage2"
      app:layout_constraintEnd_toEndOf="parent"
      app:layout_constraintStart_toStartOf="parent"
      app:layout_constraintTop_toBottomOf="@id/viewWelcomeLanguageIcon"
      tools:text="@tools:sample/lorem/random"
      />

    <TextView
      android:id="@+id/viewWelcomeLanguageMessage2"
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_marginBottom="@dimen/spaceNormal"
      android:text="@string/textLanguagesChoose2"
      android:textColor="?android:attr/textColorSecondary"
      android:textSize="12sp"
      android:textStyle="italic"
      app:layout_constraintBottom_toTopOf="@id/viewWelcomeLanguageYesButton"
      app:layout_constraintEnd_toEndOf="parent"
      app:layout_constraintStart_toStartOf="parent"
      app:layout_constraintTop_toBottomOf="@id/viewWelcomeLanguageMessage"
      />

    <com.google.android.material.button.MaterialButton
      android:id="@+id/viewWelcomeLanguageYesButton"
      style="@style/RoundTextButton"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginStart="@dimen/spaceSmall"
      android:text="@string/textChangeLanguage"
      android:textColor="?android:attr/textColorPrimary"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintEnd_toEndOf="parent"
      />

    <com.google.android.material.button.MaterialButton
      android:id="@+id/viewWelcomeLanguageLeaveButton"
      style="@style/RoundTextButton"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginStart="@dimen/spaceSmall"
      android:layout_marginEnd="@dimen/spaceNormal"
      android:text="@string/textLeaveEnglish"
      android:textColor="?android:attr/textColorSecondary"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintEnd_toStartOf="@id/viewWelcomeLanguageYesButton"
      />

  </androidx.constraintlayout.widget.ConstraintLayout>

</merge>

================================================
FILE: app/src/main/res/layout/view_welcome_note.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<merge
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  tools:parentTag="android.widget.FrameLayout"
  >

  <androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/bg_dialog"
    android:elevation="@dimen/elevationNormal"
    android:paddingStart="@dimen/spaceNormal"
    android:paddingTop="@dimen/spaceNormal"
    android:paddingEnd="@dimen/spaceNormal"
    android:paddingBottom="@dimen/spaceSmall"
    >

    <TextView
      android:id="@+id/viewWelcomeNoteTitle"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="@string/textDisclaimerTitle"
      android:textColor="?android:attr/textColorPrimary"
      android:textSize="28sp"
      android:textStyle="bold"
      app:layout_constraintBottom_toTopOf="@id/viewWelcomeEyeIcon"
      app:layout_constraintEnd_toEndOf="parent"
      app:layout_constraintStart_toStartOf="parent"
      app:layout_constraintTop_toTopOf="parent"
      />

    <ImageView
      android:id="@+id/viewWelcomeEyeIcon"
      android:layout_width="80dp"
      android:layout_height="80dp"
      android:layout_margin="@dimen/spaceBig"
      app:layout_constraintBottom_toTopOf="@id/viewWelcomeNoteMessage"
      app:layout_constraintEnd_toEndOf="parent"
      app:layout_constraintStart_toStartOf="parent"
      app:layout_constraintTop_toBottomOf="@id/viewWelcomeNoteTitle"
      app:srcCompat="@drawable/ic_eye_off"
      />

    <TextView
      android:id="@+id/viewWelcomeNoteMessage"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginBottom="@dimen/spaceNormal"
      android:text="@string/textDisclaimerText"
      android:textColor="?android:attr/textColorPrimary"
      android:textSize="15sp"
      app:layout_constraintBottom_toTopOf="@id/viewWelcomeNoteYesButton"
      app:layout_constraintEnd_toEndOf="parent"
      app:layout_constraintStart_toStartOf="parent"
      app:layout_constraintTop_toBottomOf="@id/viewWelcomeEyeIcon"
      />

    <com.google.android.material.button.MaterialButton
      android:id="@+id/viewWelcomeNoteYesButton"
      style="@style/RoundTextButton"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginStart="@dimen/spaceSmall"
      android:text="@string/textDisclaimerConfirmText"
      android:textColor="?android:attr/textColorPrimary"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintEnd_toEndOf="parent"
      />

  </androidx.constraintlayout.widget.ConstraintLayout>

</merge>

================================================
FILE: app/src/main/res/layout/view_whats_new.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<merge
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:layout_gravity="center"
  android:overScrollMode="never"
  tools:parentTag="android.widget.ScrollView"
  >

  <androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="@dimen/spaceNormal"
    >

    <TextView
      android:id="@+id/viewWhatsNewTitle"
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:text="@string/textWhatsNewTitle"
      android:textAllCaps="true"
      android:textColor="?android:attr/textColorPrimary"
      android:textSize="20sp"
      android:textStyle="bold"
      app:layout_constraintEnd_toEndOf="parent"
      app:layout_constraintStart_toStartOf="parent"
      app:layout_constraintTop_toTopOf="parent"
      />

    <TextView
      android:id="@+id/viewWhatsNewSubtitle"
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:text="@string/textWhatsNewSubtitle"
      android:textColor="?android:attr/textColorSecondary"
      android:textSize="12sp"
      app:layout_constraintEnd_toEndOf="parent"
      app:layout_constraintStart_toStartOf="parent"
      app:layout_constraintTop_toBottomOf="@id/viewWhatsNewTitle"
      />

    <TextView
      android:id="@+id/viewWhatsNewMessage"
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_marginTop="@dimen/spaceNormal"
      android:lineSpacingExtra="1dp"
      android:textColor="?android:attr/textColorPrimary"
      app:layout_constraintEnd_toEndOf="parent"
      app:layout_constraintStart_toStartOf="parent"
      app:layout_constraintTop_toBottomOf="@id/viewWhatsNewSubtitle"
      tools:text="@tools:sample/lorem/random"
      />

  </androidx.constraintlayout.widget.ConstraintLayout>

</merge>

================================================
FILE: app/src/main/res/menu/bottom_navigation_menu.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<menu
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  >

  <item
    android:id="@+id/menuProgress"
    android:enabled="true"
    android:icon="@drawable/ic_check"
    android:title="@string/menuProgress"
    app:showAsAction="always"
    tools:ignore="AlwaysShowAction"
    />

  <item
    android:id="@+id/menuDiscover"
    android:enabled="true"
    android:icon="@drawable/ic_search"
    android:title="@string/menuDiscover"
    app:showAsAction="always"
    />

  <item
    android:id="@+id/menuCollection"
    android:enabled="true"
    android:icon="@drawable/ic_bookmark"
    android:title="@string/menuCollection"
    app:showAsAction="always"
    />

  <item
    android:id="@+id/menuNews"
    android:enabled="true"
    android:icon="@drawable/ic_news"
    android:title="@string/menuNews"
    android:visible="false"
    app:showAsAction="always"
    />

</menu>

================================================
FILE: app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
  xmlns:android="http://schemas.android.com/apk/res/android">
  <background android:drawable="@color/ic_launcher_background" />
  <foreground android:drawable="@drawable/ic_launcher_foreground" />
  <monochrome android:drawable="@drawable/ic_launcher_mono" />
</adaptive-icon>

================================================
FILE: app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon
  xmlns:android="http://schemas.android.com/apk/res/android">
  <background android:drawable="@color/ic_launcher_background" />
  <foreground android:drawable="@drawable/ic_launcher_foreground" />
  <monochrome android:drawable="@drawable/ic_launcher_mono" />
</adaptive-icon>

================================================
FILE: app/src/main/res/values/dimens.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <dimen name="welcomeDialogSpace">@dimen/spaceBig</dimen>

  <item name="tipModeMenuRatio" format="float" type="dimen">0.2</item>
  <item name="tipDiscoverRatio" format="float" type="dimen">0.55</item>
  <item name="tipMyShows" format="float" type="dimen">0.925</item>

</resources>

================================================
FILE: app/src/main/res/values/ic_launcher_background.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <color name="ic_launcher_background">#27282C</color>
</resources>

================================================
FILE: app/src/main/res/values/strings.xml
================================================
<resources>
  <string name="app_name" translatable="false">Showly OSS</string>

  <string name="menuProgress">Progress</string>
  <string name="menuDiscover">Discover</string>
  <string name="menuCollection">Collection</string>
  <string name="menuNews">News</string>

  <string name="textRateAppTitle">Enjoying Showly 2.0?</string>
  <string name="textRateAppMessage">Would you like to rate the app?\nIt only takes a few seconds. Thanks!\n\n<i>The app will not be closed.</i></string>
  <string name="textRateAppYesButton">Sure, why not?</string>
  <string name="textRateAppNoButton">Not now</string>

  <string name="textDisclaimerTitle">Welcome!</string>
  <string name="textDisclaimerText">Please note that you <b>CAN\'T</b> watch, stream or download shows and movies with this app.\n\nUse apps like <b>Netflix</b> to stream and watch content.</string>
  <string name="textDisclaimerConfirmText">OK, I understand</string>
  <string name="textLanguagesChoose2" translatable="false">Language can always be changed later via Settings.</string>
  <string name="textLeaveEnglish" translatable="false">No, I prefer English</string>
  <string name="textChangeLanguage" translatable="false">Yes</string>

  <string name="textWhatsNewTitle">What\'s New</string>
  <string name="textWhatsNewSubtitle">Version %s</string>

  <string name="shortcutDiscover">Discover</string>
  <string name="shortcutCollection">Collection</string>
  <string name="shortcutSearch">Search</string>
  <string name="shortcutProgress">Progress</string>

  <string name="textUpdateDownloaded" translatable="false">Update is now available.</string>
  <string name="textUpdateInstall" translatable="false">Install</string>
</resources>


================================================
FILE: app/src/main/res/values-ar/strings.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="menuProgress">مستوى التقدم</string>
  <string name="menuDiscover">اكتشف</string>
  <string name="menuCollection">المجموعة</string>
  <string name="menuNews">الأخبار</string>
  <string name="textRateAppTitle">هل تستمتع باستخدام Showly 2.0 ؟</string>
  <string name="textRateAppMessage">أترغب بِتقييم التطبيق؟\nلن يستغرق التقييم سِوى ثوانٍ قليلة مِن وقتك. شكرًا!\n\n<i>لن يُغلق التطبيق.</i></string>
  <string name="textRateAppYesButton">بالطبع، لما لا؟</string>
  <string name="textRateAppNoButton">ليس الآن</string>
  <string name="textDisclaimerTitle">أهلًا بك!</string>
  <string name="textDisclaimerText">يرجى مُلاحظة أن هذا التطبيق <b>غير مُخصص</b> لِمُشاهدة أو تحميل الأفلام والمُسلسلات.\n\nيُمكنك اِستخدام تطبيقات مثل <b>Netflix</b> لهذه الأمور.</string>
  <string name="textDisclaimerConfirmText">حسنًا، فهمت</string>
  <string name="textWhatsNewTitle">ما الجديد</string>
  <string name="textWhatsNewSubtitle">الإصدار %s</string>
  <string name="shortcutDiscover">إكتشف</string>
  <string name="shortcutCollection">المجموعة</string>
  <string name="shortcutSearch">البحث</string>
  <string name="shortcutProgress">مستوى التقدم</string>
</resources>


================================================
FILE: app/src/main/res/values-de/strings.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="menuProgress">Fortschritt</string>
  <string name="menuDiscover">Entdecken</string>
  <string name="menuCollection">Sammlung</string>
  <string name="menuNews">News</string>
  <string name="textRateAppTitle">Gefallt dir Showly 2.0?</string>
  <string name="textRateAppMessage">Möchtest du die App bewerten?\nEs dauert nur wenige Sekunden. Danke!\n\n<i>Die App wird dabei nicht geschlossen.</i></string>
  <string name="textRateAppYesButton">Sicher, wieso nicht?</string>
  <string name="textRateAppNoButton">Nicht jetzt</string>
  <string name="textDisclaimerTitle">Willkommen!</string>
  <string name="textDisclaimerText">Bitte beachte, dass du mit dieser App <b>keine</b> Serien und Filme ansehen, streamen oder herunterladen kannst.\n\nVerwende Apps wie <b>Netflix</b>, um Inhalte zu streamen und anzusehen.</string>
  <string name="textDisclaimerConfirmText">OK, ich verstehe</string>
  <string name="textWhatsNewTitle">Was gibts Neues?</string>
  <string name="textWhatsNewSubtitle">Version %s</string>
  <string name="shortcutDiscover">Entdecken</string>
  <string name="shortcutCollection">Sammlung</string>
  <string name="shortcutSearch">Suche</string>
  <string name="shortcutProgress">Fortschritt</string>
</resources>


================================================
FILE: app/src/main/res/values-es/strings.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="menuProgress">Progreso</string>
  <string name="menuDiscover">Descubrir</string>
  <string name="menuCollection">Colección</string>
  <string name="menuNews">Noticias</string>
  <string name="textRateAppTitle">¿Disfrutando Showly 2.0?</string>
  <string name="textRateAppMessage">¿Le gustaría calificar la aplicación?\nSolo toma unos segundos. ¡Gracias!\n\n<i>La aplicación no se cerrará.</i></string>
  <string name="textRateAppYesButton">Sí, ¿por qué no?</string>
  <string name="textRateAppNoButton">Ahora no</string>
  <string name="textDisclaimerTitle">Bienvenido!</string>
  <string name="textDisclaimerText">Ten en cuenta que <b>NO PUEDES</b> ver, transmitir o descargar series y películas con esta aplicación.\n\nUsa aplicaciones como <b>Netflix</b> para transmitir y ver el contenido.</string>
  <string name="textDisclaimerConfirmText">Vale, lo entiendo</string>
  <string name="textWhatsNewTitle">Novedades</string>
  <string name="textWhatsNewSubtitle">Versión %s</string>
  <string name="shortcutDiscover">Descubrir</string>
  <string name="shortcutCollection">Colección</string>
  <string name="shortcutSearch">Buscar</string>
  <string name="shortcutProgress">Progreso</string>
</resources>


================================================
FILE: app/src/main/res/values-fi/strings.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="menuProgress">Katselutila</string>
  <string name="menuDiscover">Etsi</string>
  <string name="menuCollection">Kokoelma</string>
  <string name="menuNews">Uutiset</string>
  <string name="textRateAppTitle">Nautitko Showly 2.0:sta?</string>
  <string name="textRateAppMessage">Haluaisitko arvioida sovelluksen?\nTämä kestää vain muutaman sekunnin. Kiitos!\n\n<i>Sovellusta ei suljeta.</i></string>
  <string name="textRateAppYesButton">Toki, miksipä en?</string>
  <string name="textRateAppNoButton">En nyt</string>
  <string name="textDisclaimerTitle">Tervetuloa!</string>
  <string name="textDisclaimerText">Huomioi, että tällä sovelluksella <b>ET VOI</b> katsella, suoratoistaa tai ladata sarjoja ja elokuvia.\n\nKäytä suoratoistoon ja katseluun <b>Netflixin</b> kaltaisia sovelluksia.</string>
  <string name="textDisclaimerConfirmText">OK, ymmärrän</string>
  <string name="textWhatsNewTitle">Mitä uutta</string>
  <string name="textWhatsNewSubtitle">Versio %s</string>
  <string name="shortcutDiscover">Etsi</string>
  <string name="shortcutCollection">Kokoelma</string>
  <string name="shortcutSearch">Haku</string>
  <string name="shortcutProgress">Katselutila</string>
</resources>


================================================
FILE: app/src/main/res/values-fr/strings.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="menuProgress">Progression</string>
  <string name="menuDiscover">Découvrir</string>
  <string name="menuCollection">Collection</string>
  <string name="menuNews">Actualités</string>
  <string name="textRateAppTitle">Aimez-vous Showly 2.0 ?</string>
  <string name="textRateAppMessage">Souhaitez-vous noter l\'application ?\nCela ne prendrait que quelques secondes. Merci !\n\n<i>L\'application ne se fermera pas.</i></string>
  <string name="textRateAppYesButton">Bien sûr, pourquoi pas ?</string>
  <string name="textRateAppNoButton">Pas maintenant</string>
  <string name="textDisclaimerTitle">Bienvenue !</string>
  <string name="textDisclaimerText">Veuillez prendre note que vous <b>NE POUVEZ PAS</b> regarder ou télécharger des séries ou des films avec cette application.\n\nUtilisez des applications telles que <b>Netflix</b> pour regarder du contenu.</string>
  <string name="textDisclaimerConfirmText">Compris</string>
  <string name="textWhatsNewTitle">Quoi de neuf</string>
  <string name="textWhatsNewSubtitle">Version %s</string>
  <string name="shortcutDiscover">Découvrir</string>
  <string name="shortcutCollection">Collection</string>
  <string name="shortcutSearch">Recherche</string>
  <string name="shortcutProgress">Progression</string>
</resources>


================================================
FILE: app/src/main/res/values-it/strings.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="menuProgress">Progressi</string>
  <string name="menuDiscover">Scopri</string>
  <string name="menuCollection">Raccolta</string>
  <string name="menuNews">Notizie</string>
  <string name="textRateAppTitle">Ti piace Showly 2.0?</string>
  <string name="textRateAppMessage">Ti piacerebbe valutare questa app?\nCi vorranno solo pochi secondi. Grazie!\n\n<i>L\'app non verrà chiusa.</i></string>
  <string name="textRateAppYesButton">Certo, perché no?</string>
  <string name="textRateAppNoButton">Non ora</string>
  <string name="textDisclaimerTitle">Benvenuto/a!</string>
  <string name="textDisclaimerText">Si prega di notare che <b>NON È POSSIBILE</b> guardare, riprodurre o scaricare show e film con questa app.\n\nUsa app come <b>Netflix</b> per riprodurre e guardare i contenuti.</string>
  <string name="textDisclaimerConfirmText">OK, ho capito</string>
  <string name="textWhatsNewTitle">Novità</string>
  <string name="textWhatsNewSubtitle">Versione %s</string>
  <string name="shortcutDiscover">Scopri</string>
  <string name="shortcutCollection">Raccolta</string>
  <string name="shortcutSearch">Cerca</string>
  <string name="shortcutProgress">Progressi</string>
</resources>


================================================
FILE: app/src/main/res/values-pl/strings.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="menuProgress">Postęp</string>
  <string name="menuDiscover">Odkrywaj</string>
  <string name="menuCollection">Kolekcja</string>
  <string name="menuNews">Newsy</string>
  <string name="textRateAppTitle">Podoba Ci się Showly 2.0?</string>
  <string name="textRateAppMessage">Czy chciałbyś ocenić aplikację?\nZajmie to tylko kilka sekund. Dziękuję!\n\n<i>Aplikacja pozostanie otwarta.</i></string>
  <string name="textRateAppYesButton">Jasne, czemu nie?</string>
  <string name="textRateAppNoButton">Nie teraz</string>
  <string name="textDisclaimerTitle">Witaj!</string>
  <string name="textDisclaimerText">Pamiętaj, że <b>NIE MOŻESZ</b> oglądać, streamować lub pobierać seriali i filmów z pomocą tej aplikacji.\n\nMożesz użyć aplikacji takich jak <b>Netflix</b> aby streamować i oglądać treści.</string>
  <string name="textDisclaimerConfirmText">OK, rozumiem</string>
  <string name="textWhatsNewTitle">Co Nowego?</string>
  <string name="textWhatsNewSubtitle">Wersja %s</string>
  <string name="shortcutDiscover">Odkrywaj</string>
  <string name="shortcutCollection">Kolekcja</string>
  <string name="shortcutSearch">Szukaj</string>
  <string name="shortcutProgress">Postęp</string>
</resources>


================================================
FILE: app/src/main/res/values-pt/strings.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="menuProgress">Progresso</string>
  <string name="menuDiscover">Explorar</string>
  <string name="menuCollection">Coleção</string>
  <string name="menuNews">Notícias</string>
  <string name="textRateAppTitle">Curtindo o Showly 2.0?</string>
  <string name="textRateAppMessage">Gostaria de avaliar o aplicativo?\nLeva apenas alguns segundos. Obrigado!\n\n<i>O aplicativo não será fechado.</i></string>
  <string name="textRateAppYesButton">Claro, por que não?</string>
  <string name="textRateAppNoButton">Agora não</string>
  <string name="textDisclaimerTitle">Bem-vindo!</string>
  <string name="textDisclaimerText">Observe que você não pode assistir, transmitir ou baixar programas e filmes com este aplicativo.\n\nUse aplicativos como o Netflix para transmitir e assistir conteúdo.</string>
  <string name="textDisclaimerConfirmText">OK, eu entendo</string>
  <string name="textWhatsNewTitle">O que há de novo</string>
  <string name="textWhatsNewSubtitle">Versão %s</string>
  <string name="shortcutDiscover">Explorar</string>
  <string name="shortcutCollection">Coleção</string>
  <string name="shortcutSearch">Pesquisar</string>
  <string name="shortcutProgress">Progresso</string>
</resources>


================================================
FILE: app/src/main/res/values-ru/strings.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="menuProgress">Прогресс</string>
  <string name="menuDiscover">Открытия</string>
  <string name="menuCollection">Коллекция</string>
  <string name="menuNews">Новости</string>
  <string name="textRateAppTitle">Вам нравится Showly 2.0?</string>
  <string name="textRateAppMessage">Вы хотите оценить приложение?\nЭто займёт всего несколько секунд. Спасибо!\n\n<i>Приложение не будет закрыто.</i></string>
  <string name="textRateAppYesButton">Конечно, почему нет?</string>
  <string name="textRateAppNoButton">Позже</string>
  <string name="textDisclaimerTitle">Добро пожаловать!</string>
  <string name="textDisclaimerText">Обратите внимание, что приложение <b>НЕ ПРЕДНАЗНАЧЕНО</b> для просмотра или скачивания сериалов и фильмов.\n\nИспользуйте приложения по типу <b>Netflix</b>, чтобы скачивать и просматривать контент.</string>
  <string name="textDisclaimerConfirmText">Ок, я понял</string>
  <string name="textWhatsNewTitle">Что нового</string>
  <string name="textWhatsNewSubtitle">Версия %s</string>
  <string name="shortcutDiscover">Открытия</string>
  <string name="shortcutCollection">Коллекция</string>
  <string name="shortcutSearch">Поиск</string>
  <string name="shortcutProgress">Прогресс</string>
</resources>


================================================
FILE: app/src/main/res/values-sw600dp/dimens.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <dimen name="welcomeDialogSpace">112dp</dimen>

  <item name="tipModeMenuRatio" format="float" type="dimen">0.32</item>
  <item name="tipDiscoverRatio" format="float" type="dimen">0.55</item>
  <item name="tipMyShows" format="float" type="dimen">0.77</item>
</resources>

================================================
FILE: app/src/main/res/values-tr/strings.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="menuProgress">İlerleme</string>
  <string name="menuDiscover">Keşfet</string>
  <string name="menuCollection">Koleksiyon</string>
  <string name="menuNews">Haberler</string>
  <string name="textRateAppTitle">Showly 2.0 uygulamasından memnun musunuz?</string>
  <string name="textRateAppMessage">Uygulamayı derecelendirmek ister misiniz?\nSadece birkaç saniye sürer. Teşekkürler!\n\n <i>Uygulama kapatılmayacaktır.</i></string>
  <string name="textRateAppYesButton">Tabii ki, neden olmasın?</string>
  <string name="textRateAppNoButton">Şimdi değil</string>
  <string name="textDisclaimerTitle">Hoş geldiniz!</string>
  <string name="textDisclaimerText">Lütfen bu uygulama ile dizileri ve filmleri izleyemeyeceğinizi veya indiremeyeceğinizi unutmayın!\n\n İçerikleri izlemek için <b>Netflix</b> gibi uygulamaları kullanın.</string>
  <string name="textDisclaimerConfirmText">Tamam, anladım</string>
  <string name="textWhatsNewTitle">Neler Yeni</string>
  <string name="textWhatsNewSubtitle">%s Sürümü</string>
  <string name="shortcutDiscover">Keşfet</string>
  <string name="shortcutCollection">Koleksiyon</string>
  <string name="shortcutSearch">Ara</string>
  <string name="shortcutProgress">İlerleme</string>
</resources>


================================================
FILE: app/src/main/res/values-uk/strings.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="menuProgress">Прогрес</string>
  <string name="menuDiscover">Огляд</string>
  <string name="menuCollection">Колекція</string>
  <string name="menuNews">Новини</string>
  <string name="textRateAppTitle">Подобається Showly 2.0?</string>
  <string name="textRateAppMessage">Ви хотіли б оцінити додаток?\nЦе займає лише декілька секунд. Дякуємо!\n\n<i>Додаток не буде закрито.</i></string>
  <string name="textRateAppYesButton">Авжеж, чому ні?</string>
  <string name="textRateAppNoButton">Не зараз</string>
  <string name="textDisclaimerTitle">Вітаємо!</string>
  <string name="textDisclaimerText">Будь ласка, зверніть увагу, що ви <b>НЕ МОЖЕТЕ</b> дивитися або завантажувати серіали та фільми з цим додатком.\n\nВикористовуйте додатки, такі як <b>Netflix</b> для завантаження та перегляду вмісту.</string>
  <string name="textDisclaimerConfirmText">ОК, зрозуміло</string>
  <string name="textWhatsNewTitle">Що нового</string>
  <string name="textWhatsNewSubtitle">Версія: %s</string>
  <string name="shortcutDiscover">Огляд</string>
  <string name="shortcutCollection">Колекція</string>
  <string name="shortcutSearch">Пошук</string>
  <string name="shortcutProgress">Прогрес</string>
</resources>


================================================
FILE: app/src/main/res/values-vi/strings.xml
================================================
<resources>
  <string name="app_name" translatable="false">Showly OSS</string>

  <string name="menuProgress">Tiến độ</string>
  <string name="menuDiscover">Khám phá</string>
  <string name="menuCollection">Bộ sưu tập</string>
  <string name="menuNews">Tin tức</string>

  <string name="textRateAppTitle">Bạn có thích Showly 2.0 không?</string>
  <string name="textRateAppMessage">Bạn có muốn xếp hạng ứng dụng không?\nViệc này chỉ mất vài giây. Cảm ơn!\n\n<i>Ứng dụng sẽ không bị đóng.</i></string>
  <string name="textRateAppYesButton">Chắc chắn rồi, tại sao không?</string>
  <string name="textRateAppNoButton">Không phải bây giờ</string>

  <string name="textDisclaimerTitle">Chào mừng!</string>
  <string name="textDisclaimerText">Xin lưu ý rằng bạn <b>KHÔNG THỂ</b> xem, phát trực tuyến hoặc tải xuống các chương trình và phim bằng ứng dụng này.\n\nSử dụng các ứng dụng như <b>Netflix</b> để phát trực tuyến và xem nội dung.</string >
  <string name="textDisclaimerConfirmText">Được rồi, tôi hiểu</string>

  <string name="textWhatsNewTitle">Có gì mới</string>
  <string name="textWhatsNewSubtitle">Phiên bản %s</string>

  <string name="shortcutDiscover">Khám phá</string>
  <string name="shortcutCollection">Bộ sưu tập</string>
  <string name="shortcutSearch">Tìm kiếm</string>
  <string name="shortcutProgress">Tiến độ</string>

  <string name="textUpdateDownloaded" translatable="false">Hiện đã có bản cập nhật.</string>
  <string name="textUpdateInstall" translatable="false">Cài đặt</string>
</resources>

================================================
FILE: app/src/main/res/values-zh/strings.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="menuProgress">进度</string>
  <string name="menuDiscover">发现</string>
  <string name="menuCollection">合集</string>
  <string name="menuNews">新闻</string>
  <string name="textRateAppTitle">喜欢 Showly 2.0 吗?</string>
  <string name="textRateAppMessage">您愿意给应用评分吗?\n仅需几秒,感谢!\n\n<i>应用不会被关闭。</i></string>
  <string name="textRateAppYesButton">好,没问题。</string>
  <string name="textRateAppNoButton">稍后</string>
  <string name="textDisclaimerTitle">欢迎!</string>
  <string name="textDisclaimerText">请注意您 <b>不能</b> 使用此应用观看或下载剧集和电影。\n\n使用 <b>Netflix</b> 等应用来观看。</string>
  <string name="textDisclaimerConfirmText">好的,我已了解</string>
  <string name="textWhatsNewTitle">更新内容</string>
  <string name="textWhatsNewSubtitle">版本:%s</string>
  <string name="shortcutDiscover">发现</string>
  <string name="shortcutCollection">合集</string>
  <string name="shortcutSearch">搜索</string>
  <string name="shortcutProgress">进度</string>
</resources>


================================================
FILE: app/src/main/res/xml/locales_config.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<locale-config xmlns:android="http://schemas.android.com/apk/res/android">
  <locale android:name="en" />
  <locale android:name="ar" />
  <locale android:name="de" />
  <locale android:name="es" />
  <locale android:name="fi" />
  <locale android:name="fr" />
  <locale android:name="it" />
  <locale android:name="pl" />
  <locale android:name="pt" />
  <locale android:name="ru" />
  <locale android:name="tr" />
  <locale android:name="zh" />
  <locale android:name="vi" />
</locale-config>


================================================
FILE: app/src/main/res/xml/shortcuts.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<shortcuts
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  tools:targetApi="n_mr1"
  >
  <shortcut
    android:enabled="true"
    android:icon="@drawable/ic_shortcut_search"
    android:shortcutId="shortcutSearch"
    android:shortcutLongLabel="@string/shortcutSearch"
    android:shortcutShortLabel="@string/shortcutSearch"
    >
    <intent
      android:action="android.intent.action.VIEW"
      android:targetClass="com.michaldrabik.showly_oss.ui.main.MainActivity"
      android:targetPackage="com.michaldrabik.showly_oss"
      >
      <extra
        android:name="extraShortcutSearch"
        android:value="extraShortcutSearch"
        />
    </intent>
  </shortcut>

  <shortcut
    android:enabled="true"
    android:icon="@drawable/ic_shortcut_bookmark"
    android:shortcutId="shortcutCollection"
    android:shortcutLongLabel="@string/shortcutCollection"
    android:shortcutShortLabel="@string/shortcutCollection"
    >
    <intent
      android:action="android.intent.action.VIEW"
      android:targetClass="com.michaldrabik.showly_oss.ui.main.MainActivity"
      android:targetPackage="com.michaldrabik.showly_oss"
      >
      <extra
        android:name="extraShortcutCollection"
        android:value="extraShortcutCollection"
        />
    </intent>
  </shortcut>

  <shortcut
    android:enabled="true"
    android:icon="@drawable/ic_shortcut_search"
    android:shortcutId="shortcutDiscover"
    android:shortcutLongLabel="@string/shortcutDiscover"
    android:shortcutShortLabel="@string/shortcutDiscover"
    >
    <intent
      android:action="android.intent.action.VIEW"
      android:targetClass="com.michaldrabik.showly_oss.ui.main.MainActivity"
      android:targetPackage="com.michaldrabik.showly_oss"
      >
      <extra
        android:name="extraShortcutDiscover"
        android:value="extraShortcutDiscover"
        />
    </intent>
  </shortcut>

  <shortcut
    android:enabled="true"
    android:icon="@drawable/ic_shortcut_check"
    android:shortcutId="shortcutWatchlist"
    android:shortcutLongLabel="@string/shortcutProgress"
    android:shortcutShortLabel="@string/shortcutProgress"
    >
    <intent
      android:action="android.intent.action.VIEW"
      android:targetClass="com.michaldrabik.showly_oss.ui.main.MainActivity"
      android:targetPackage="com.michaldrabik.showly_oss"
      >
      <extra
        android:name="extraShortcutProgress"
        android:value="extraShortcutProgress"
        />
    </intent>
  </shortcut>
</shortcuts>

================================================
FILE: app/src/test/java/BaseMockTest.kt
================================================
import io.mockk.MockKAnnotations
import io.mockk.mockkStatic
import org.junit.Before

@Suppress("EXPERIMENTAL_API_USAGE")
abstract class BaseMockTest {

  @Before
  open fun setUp() {
    MockKAnnotations.init(this)
    mockkStatic("androidx.room.RoomDatabaseKt")
  }
}


================================================
FILE: app/src/test/java/com/michaldrabik/showly_oss/ui/main/cases/MainRateAppCaseTest.kt
================================================
package com.michaldrabik.showly_oss.ui.main.cases

import BaseMockTest
import android.content.SharedPreferences
import com.google.common.truth.Truth.assertThat
import com.michaldrabik.common.extensions.nowUtcMillis
import com.michaldrabik.showly_oss.ui.main.cases.MainRateAppCase.Companion.KEY_RATE_APP_COUNT
import com.michaldrabik.showly_oss.ui.main.cases.MainRateAppCase.Companion.KEY_RATE_APP_TIMESTAMP
import io.mockk.Runs
import io.mockk.confirmVerified
import io.mockk.every
import io.mockk.impl.annotations.MockK
import io.mockk.just
import io.mockk.verify
import org.junit.Before
import org.junit.Test
import java.util.concurrent.TimeUnit

class MainRateAppCaseTest : BaseMockTest() {

  @MockK
  lateinit var sharedPreferences: SharedPreferences

  @MockK
  lateinit var sharedPreferencesEditor: SharedPreferences.Editor

  private lateinit var SUT: MainRateAppCase

  @Before
  override fun setUp() {
    super.setUp()
    every { sharedPreferencesEditor.apply() } just Runs
    every { sharedPreferencesEditor.putInt(any(), any()) } returns sharedPreferencesEditor
    every { sharedPreferencesEditor.putLong(any(), any()) } returns sharedPreferencesEditor
    every { sharedPreferences.edit() } returns sharedPreferencesEditor

    SUT = MainRateAppCase(sharedPreferences)
  }

  @Test
  fun `Should return false if check is initial`() {
    every { sharedPreferences.getInt(KEY_RATE_APP_COUNT, any()) } returns 0
    every { sharedPreferences.getLong(KEY_RATE_APP_TIMESTAMP, any()) } returns -1L

    val result = SUT.shouldShowRateApp()

    assertThat(result).isFalse()
    verify { sharedPreferencesEditor.putInt(KEY_RATE_APP_COUNT, 0) }
    verify { sharedPreferencesEditor.putLong(KEY_RATE_APP_TIMESTAMP, any()) }
    verify { sharedPreferencesEditor.apply() }
    confirmVerified(sharedPreferencesEditor)
  }

  @Test
  fun `Should return false if not enough days have passed`() {
    every { sharedPreferences.getInt(KEY_RATE_APP_COUNT, any()) } returns 1
    every { sharedPreferences.getLong(KEY_RATE_APP_TIMESTAMP, any()) } returns (nowUtcMillis() - TimeUnit.DAYS.toMillis(5))

    val result = SUT.shouldShowRateApp()

    assertThat(result).isFalse()
    verify(exactly = 0) { sharedPreferencesEditor.putInt(KEY_RATE_APP_COUNT, 2) }
    verify(exactly = 0) { sharedPreferencesEditor.putLong(KEY_RATE_APP_TIMESTAMP, any()) }
    verify(exactly = 0) { sharedPreferencesEditor.apply() }

    confirmVerified(sharedPreferencesEditor)
  }

  @Test
  fun `Should return false if not enough days have passed before last reminder`() {
    every { sharedPreferences.getInt(KEY_RATE_APP_COUNT, any()) } returns 2
    every { sharedPreferences.getLong(KEY_RATE_APP_TIMESTAMP, any()) } returns (nowUtcMillis() - TimeUnit.DAYS.toMillis(12))

    val result = SUT.shouldShowRateApp()

    assertThat(result).isFalse()
    verify(exactly = 0) { sharedPreferencesEditor.putInt(KEY_RATE_APP_COUNT, 3) }
    verify(exactly = 0) { sharedPreferencesEditor.putLong(KEY_RATE_APP_TIMESTAMP, any()) }
    verify(exactly = 0) { sharedPreferencesEditor.apply() }

    confirmVerified(sharedPreferencesEditor)
  }

  @Test
  fun `Should return true if enough days have passed before another reminder`() {
    every { sharedPreferences.getInt(KEY_RATE_APP_COUNT, any()) } returns 2
    every { sharedPreferences.getLong(KEY_RATE_APP_TIMESTAMP, any()) } returns (nowUtcMillis() - TimeUnit.DAYS.toMillis(15))

    val result = SUT.shouldShowRateApp()

    assertThat(result).isTrue()
    verify(exactly = 1) { sharedPreferencesEditor.putInt(KEY_RATE_APP_COUNT, 2) }
    verify(exactly = 1) { sharedPreferencesEditor.putLong(KEY_RATE_APP_TIMESTAMP, any()) }
    verify(exactly = 1) { sharedPreferencesEditor.apply() }

    confirmVerified(sharedPreferencesEditor)
  }

//  @Test
//  fun `Should return true if count is one before last one and 10 days passed`() {
//    every { sharedPreferences.getInt(KEY_RATE_APP_COUNT, any()) } returns 1
//    every { sharedPreferences.getLong(KEY_RATE_APP_TIMESTAMP, any()) } returns (nowUtcMillis() - TimeUnit.DAYS.toMillis(11))
//
//    val result = SUT.shouldShowRateApp()
//
//    assertThat(result).isTrue()
//    verify { sharedPreferencesEditor.putInt(KEY_RATE_APP_COUNT, 2) }
//    verify { sharedPreferencesEditor.putLong(KEY_RATE_APP_TIMESTAMP, any()) }
//    verify { sharedPreferencesEditor.apply() }
//
//    confirmVerified(sharedPreferencesEditor)
//  }
//
//  @Test
//  fun `Should return true if count is last one and 14 days passed`() {
//    every { sharedPreferences.getInt(KEY_RATE_APP_COUNT, any()) } returns 2
//    every { sharedPreferences.getLong(KEY_RATE_APP_TIMESTAMP, any()) } returns (nowUtcMillis() - TimeUnit.DAYS.toMillis(15))
//
//    val result = SUT.shouldShowRateApp()
//
//    assertThat(result).isTrue()
//    verify { sharedPreferencesEditor.putInt(KEY_RATE_APP_COUNT, 3) }
//    verify { sharedPreferencesEditor.putLong(KEY_RATE_APP_TIMESTAMP, any()) }
//    verify { sharedPreferencesEditor.apply() }
//    confirmVerified(sharedPreferencesEditor)
//  }
}


================================================
FILE: app/src/test/java/com/michaldrabik/showly_oss/ui/main/cases/MainTipsCaseTest.kt
================================================
package com.michaldrabik.showly_oss.ui.main.cases

import BaseMockTest
import android.content.SharedPreferences
import com.google.common.truth.Truth.assertThat
import com.michaldrabik.showly_oss.BuildConfig
import com.michaldrabik.ui_model.Tip
import io.mockk.Runs
import io.mockk.every
import io.mockk.impl.annotations.MockK
import io.mockk.just
import io.mockk.verifyAll
import org.junit.Before
import org.junit.Test

class MainTipsCaseTest : BaseMockTest() {

  @MockK
  lateinit var sharedPreferences: SharedPreferences

  @MockK
  lateinit var sharedPreferencesEditor: SharedPreferences.Editor

  private lateinit var SUT: MainTipsCase

  @Before
  override fun setUp() {
    super.setUp()
    every { sharedPreferencesEditor.apply() } just Runs
    every { sharedPreferencesEditor.putBoolean(any(), any()) } returns sharedPreferencesEditor
    every { sharedPreferences.edit() } returns sharedPreferencesEditor

    SUT = MainTipsCase(sharedPreferences)
  }

  @Test
  fun `Should return true if tip has been show`() {
    val tip = Tip.MENU_DISCOVER
    every { sharedPreferences.getBoolean(tip.name, false) } returns true

    assertThat(SUT.isTipShown(tip)).isTrue()
  }

  @Test
  fun `Should return false if tips has not been shown`() {
    val tip = Tip.MENU_DISCOVER
    every { sharedPreferences.getBoolean(tip.name, false) } returns false

    if (BuildConfig.DEBUG) {
      assertThat(SUT.isTipShown(tip)).isTrue()
    } else {
      assertThat(SUT.isTipShown(tip)).isFalse()
    }
  }

  @Test
  fun `Should store tips shown info properly`() {
    val tip = Tip.MENU_DISCOVER

    SUT.setTipShown(tip)

    verifyAll {
      sharedPreferencesEditor.putBoolean(tip.name, true)
      sharedPreferencesEditor.apply()
    }
  }
}


================================================
FILE: assets/codestyle.xml
================================================
<code_scheme name="Showly 2.0" version="173">
  <option name="RIGHT_MARGIN" value="150" />
  <option name="SOFT_MARGINS" value="150" />
  <AndroidXmlCodeStyleSettings>
    <option name="ARRANGEMENT_SETTINGS_MIGRATED_TO_191" value="true" />
    <option name="LAYOUT_SETTINGS">
      <value>
        <option name="INSERT_LINE_BREAK_BEFORE_NAMESPACE_DECLARATION" value="true" />
        <option name="INSERT_LINE_BREAK_AFTER_LAST_ATTRIBUTE" value="true" />
      </value>
    </option>
    <option name="OTHER_SETTINGS">
      <value>
        <option name="INSERT_LINE_BREAK_BEFORE_NAMESPACE_DECLARATION" value="true" />
        <option name="INSERT_LINE_BREAK_AFTER_LAST_ATTRIBUTE" value="true" />
      </value>
    </option>
  </AndroidXmlCodeStyleSettings>
  <DBN-PSQL>
    <case-options enabled="true">
      <option name="KEYWORD_CASE" value="lower" />
      <option name="FUNCTION_CASE" value="lower" />
      <option name="PARAMETER_CASE" value="lower" />
      <option name="DATATYPE_CASE" value="lower" />
      <option name="OBJECT_CASE" value="preserve" />
    </case-options>
    <formatting-settings enabled="false" />
  </DBN-PSQL>
  <DBN-SQL>
    <case-options enabled="true">
      <option name="KEYWORD_CASE" value="lower" />
      <option name="FUNCTION_CASE" value="lower" />
      <option name="PARAMETER_CASE" value="lower" />
      <option name="DATATYPE_CASE" value="lower" />
      <option name="OBJECT_CASE" value="preserve" />
    </case-options>
    <formatting-settings enabled="false">
      <option name="STATEMENT_SPACING" value="one_line" />
      <option name="CLAUSE_CHOP_DOWN" value="chop_down_if_statement_long" />
      <option name="ITERATION_ELEMENTS_WRAPPING" value="chop_down_if_not_single" />
    </formatting-settings>
  </DBN-SQL>
  <JetCodeStyleSettings>
    <option name="NAME_COUNT_TO_USE_STAR_IMPORT" value="2147483647" />
    <option name="NAME_COUNT_TO_USE_STAR_IMPORT_FOR_MEMBERS" value="2147483647" />
    <option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
  </JetCodeStyleSettings>
  <DBN-PSQL>
    <case-options enabled="true">
      <option name="KEYWORD_CASE" value="lower
Download .txt
gitextract_7hdornwr/

├── .editorconfig
├── .github/
│   └── ISSUE_TEMPLATE/
│       └── bug-problem-report.md
├── .gitignore
├── LICENSE
├── README.md
├── app/
│   ├── .gitignore
│   ├── build.gradle
│   ├── proguard-rules.pro
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── assets/
│       │   │   └── release_notes.txt
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── showly_oss/
│       │   │               ├── App.kt
│       │   │               ├── di/
│       │   │               │   └── module/
│       │   │               │       ├── PreferencesModule.kt
│       │   │               │       ├── ServicesModule.kt
│       │   │               │       └── WorkModule.kt
│       │   │               ├── fcm/
│       │   │               │   └── FcmExtra.kt
│       │   │               ├── ui/
│       │   │               │   ├── BaseActivity.kt
│       │   │               │   ├── main/
│       │   │               │   │   ├── MainActivity.kt
│       │   │               │   │   ├── MainUiState.kt
│       │   │               │   │   ├── MainViewModel.kt
│       │   │               │   │   ├── cases/
│       │   │               │   │   │   ├── MainAnnouncementsCase.kt
│       │   │               │   │   │   ├── MainClearingCase.kt
│       │   │               │   │   │   ├── MainInitialsCase.kt
│       │   │               │   │   │   ├── MainModesCase.kt
│       │   │               │   │   │   ├── MainRateAppCase.kt
│       │   │               │   │   │   ├── MainSettingsCase.kt
│       │   │               │   │   │   ├── MainTipsCase.kt
│       │   │               │   │   │   ├── MainTraktCase.kt
│       │   │               │   │   │   └── deeplink/
│       │   │               │   │   │       ├── ImdbDeepLinkCase.kt
│       │   │               │   │   │       ├── MainDeepLinksCase.kt
│       │   │               │   │   │       ├── TmdbDeepLinkCase.kt
│       │   │               │   │   │       └── TraktDeepLinkCase.kt
│       │   │               │   │   └── delegates/
│       │   │               │   │       └── TipsDelegate.kt
│       │   │               │   └── views/
│       │   │               │       ├── BottomMenuView.kt
│       │   │               │       ├── WelcomeLanguageView.kt
│       │   │               │       ├── WelcomeNoteView.kt
│       │   │               │       └── WhatsNewView.kt
│       │   │               └── utilities/
│       │   │                   └── deeplink/
│       │   │                       ├── DeepLinkBundle.kt
│       │   │                       ├── DeepLinkResolver.kt
│       │   │                       ├── DeepLinkSource.kt
│       │   │                       └── resolvers/
│       │   │                           ├── ImdbSourceResolver.kt
│       │   │                           ├── SourceResolver.kt
│       │   │                           ├── TmdbSourceResolver.kt
│       │   │                           └── TraktSourceResolver.kt
│       │   ├── play/
│       │   │   └── release-notes/
│       │   │       └── en-GB/
│       │   │           └── default.txt
│       │   └── res/
│       │       ├── drawable/
│       │       │   ├── bg_dialog.xml
│       │       │   ├── ic_eye_off.xml
│       │       │   ├── ic_languages.xml
│       │       │   ├── ic_launcher_foreground.xml
│       │       │   ├── ic_launcher_mono.xml
│       │       │   └── selector_bottom_menu.xml
│       │       ├── layout/
│       │       │   ├── activity_main.xml
│       │       │   ├── view_bottom_menu.xml
│       │       │   ├── view_welcome_language.xml
│       │       │   ├── view_welcome_note.xml
│       │       │   └── view_whats_new.xml
│       │       ├── menu/
│       │       │   └── bottom_navigation_menu.xml
│       │       ├── mipmap-anydpi-v26/
│       │       │   ├── ic_launcher.xml
│       │       │   └── ic_launcher_round.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   ├── ic_launcher_background.xml
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   └── dimens.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       ├── values-zh/
│       │       │   └── strings.xml
│       │       └── xml/
│       │           ├── locales_config.xml
│       │           └── shortcuts.xml
│       └── test/
│           └── java/
│               ├── BaseMockTest.kt
│               └── com/
│                   └── michaldrabik/
│                       └── showly_oss/
│                           └── ui/
│                               └── main/
│                                   └── cases/
│                                       ├── MainRateAppCaseTest.kt
│                                       └── MainTipsCaseTest.kt
├── assets/
│   ├── codestyle.xml
│   ├── graphics/
│   │   ├── video_preview_feature_graphic.xcf
│   │   └── web_feature_graphic.xcf
│   └── screenshots/
│       └── screenshots.xcf
├── build.gradle
├── common/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── debug/
│       │   └── java/
│       │       └── com/
│       │           └── michaldrabik/
│       │               └── common/
│       │                   └── ConfigVariant.kt
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   └── java/
│       │       └── com/
│       │           └── michaldrabik/
│       │               └── common/
│       │                   ├── Config.kt
│       │                   ├── Mode.kt
│       │                   ├── di/
│       │                   │   └── CommonBindingModule.kt
│       │                   ├── dispatchers/
│       │                   │   ├── CoroutineDispatchers.kt
│       │                   │   └── DefaultCoroutineDispatchers.kt
│       │                   ├── errors/
│       │                   │   ├── ErrorHelper.kt
│       │                   │   └── ShowlyError.kt
│       │                   └── extensions/
│       │                       └── DateExtensions.kt
│       └── release/
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── common/
│                           └── ConfigVariant.kt
├── common-test/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── common_test/
│                           ├── MainDispatcherRule.kt
│                           └── UnconfinedCoroutineDispatchers.kt
├── crowdin.yml
├── data-local/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── androidTest/
│       │   └── java/
│       │       └── com/
│       │           └── michaldrabik/
│       │               └── data_local/
│       │                   └── database/
│       │                       └── dao/
│       │                           ├── BaseDaoTest.kt
│       │                           ├── DiscoverShowsDaoTest.kt
│       │                           ├── EpisodesDaoTest.kt
│       │                           ├── EpisodesSyncLogDaoTest.kt
│       │                           ├── MyShowsDaoTest.kt
│       │                           ├── RecentSearchDaoTest.kt
│       │                           ├── RelatedShowsDaoTest.kt
│       │                           ├── SeasonsDaoTest.kt
│       │                           ├── SettingsDaoTest.kt
│       │                           ├── ShowImagesDaoTest.kt
│       │                           ├── ShowsDaoTest.kt
│       │                           ├── UserDaoTest.kt
│       │                           ├── WatchlistShowsDaoTest.kt
│       │                           ├── converters/
│       │                           │   └── DateConverterTest.kt
│       │                           └── helpers/
│       │                               └── TestData.kt
│       └── main/
│           ├── AndroidManifest.xml
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── data_local/
│                           ├── LocalDataSource.kt
│                           ├── database/
│                           │   ├── AppDatabase.kt
│                           │   ├── converters/
│                           │   │   └── DateConverter.kt
│                           │   ├── dao/
│                           │   │   ├── ArchiveMoviesDao.kt
│                           │   │   ├── ArchiveShowsDao.kt
│                           │   │   ├── BaseDao.kt
│                           │   │   ├── CustomImagesDao.kt
│                           │   │   ├── CustomListsDao.kt
│                           │   │   ├── CustomListsItemsDao.kt
│                           │   │   ├── DiscoverMoviesDao.kt
│                           │   │   ├── DiscoverShowsDao.kt
│                           │   │   ├── EpisodeTranslationsDao.kt
│                           │   │   ├── EpisodesDao.kt
│                           │   │   ├── EpisodesSyncLogDao.kt
│                           │   │   ├── MovieCollectionsDao.kt
│                           │   │   ├── MovieCollectionsItemsDao.kt
│                           │   │   ├── MovieImagesDao.kt
│                           │   │   ├── MovieRatingsDao.kt
│                           │   │   ├── MovieStreamingsDao.kt
│                           │   │   ├── MovieTranslationsDao.kt
│                           │   │   ├── MoviesDao.kt
│                           │   │   ├── MoviesSyncLogDao.kt
│                           │   │   ├── MyMoviesDao.kt
│                           │   │   ├── MyShowsDao.kt
│                           │   │   ├── NewsDao.kt
│                           │   │   ├── PeopleCreditsDao.kt
│                           │   │   ├── PeopleDao.kt
│                           │   │   ├── PeopleImagesDao.kt
│                           │   │   ├── PeopleShowsMoviesDao.kt
│                           │   │   ├── RatingsDao.kt
│                           │   │   ├── RecentSearchDao.kt
│                           │   │   ├── RelatedMoviesDao.kt
│                           │   │   ├── RelatedShowsDao.kt
│                           │   │   ├── SeasonsDao.kt
│                           │   │   ├── SettingsDao.kt
│                           │   │   ├── ShowImagesDao.kt
│                           │   │   ├── ShowRatingsDao.kt
│                           │   │   ├── ShowStreamingsDao.kt
│                           │   │   ├── ShowTranslationsDao.kt
│                           │   │   ├── ShowsDao.kt
│                           │   │   ├── TraktSyncLogDao.kt
│                           │   │   ├── TraktSyncQueueDao.kt
│                           │   │   ├── TranslationsMoviesSyncLogDao.kt
│                           │   │   ├── TranslationsSyncLogDao.kt
│                           │   │   ├── UserDao.kt
│                           │   │   ├── WatchlistMoviesDao.kt
│                           │   │   └── WatchlistShowsDao.kt
│                           │   ├── migrations/
│                           │   │   └── Migrations.kt
│                           │   └── model/
│                           │       ├── ArchiveMovie.kt
│                           │       ├── ArchiveShow.kt
│                           │       ├── CustomImage.kt
│                           │       ├── CustomList.kt
│                           │       ├── CustomListItem.kt
│                           │       ├── DiscoverMovie.kt
│                           │       ├── DiscoverShow.kt
│                           │       ├── Episode.kt
│                           │       ├── EpisodeTranslation.kt
│                           │       ├── EpisodesSyncLog.kt
│                           │       ├── Movie.kt
│                           │       ├── MovieCollection.kt
│                           │       ├── MovieCollectionItem.kt
│                           │       ├── MovieImage.kt
│                           │       ├── MovieRatings.kt
│                           │       ├── MovieStreaming.kt
│                           │       ├── MovieTranslation.kt
│                           │       ├── MoviesSyncLog.kt
│                           │       ├── MyMovie.kt
│                           │       ├── MyShow.kt
│                           │       ├── News.kt
│                           │       ├── Person.kt
│                           │       ├── PersonCredits.kt
│                           │       ├── PersonImage.kt
│                           │       ├── PersonShowMovie.kt
│                           │       ├── Rating.kt
│                           │       ├── RecentSearch.kt
│                           │       ├── RelatedMovie.kt
│                           │       ├── RelatedShow.kt
│                           │       ├── Season.kt
│                           │       ├── Settings.kt
│                           │       ├── Show.kt
│                           │       ├── ShowImage.kt
│                           │       ├── ShowRatings.kt
│                           │       ├── ShowStreaming.kt
│                           │       ├── ShowTranslation.kt
│                           │       ├── TraktSyncLog.kt
│                           │       ├── TraktSyncQueue.kt
│                           │       ├── TranslationsMoviesSyncLog.kt
│                           │       ├── TranslationsSyncLog.kt
│                           │       ├── User.kt
│                           │       ├── WatchlistMovie.kt
│                           │       └── WatchlistShow.kt
│                           ├── di/
│                           │   ├── LocalDataModule.kt
│                           │   ├── SourcesModule.kt
│                           │   └── StorageModule.kt
│                           ├── sources/
│                           │   ├── ArchiveMoviesLocalDataSource.kt
│                           │   ├── ArchiveShowsLocalDataSource.kt
│                           │   ├── CustomImagesLocalDataSource.kt
│                           │   ├── CustomListsItemsLocalDataSource.kt
│                           │   ├── CustomListsLocalDataSource.kt
│                           │   ├── DiscoverMoviesLocalDataSource.kt
│                           │   ├── DiscoverShowsLocalDataSource.kt
│                           │   ├── EpisodeTranslationsLocalDataSource.kt
│                           │   ├── EpisodesLocalDataSource.kt
│                           │   ├── EpisodesSyncLogLocalDataSource.kt
│                           │   ├── MovieCollectionsItemsLocalDataSource.kt
│                           │   ├── MovieCollectionsLocalDataSource.kt
│                           │   ├── MovieImagesLocalDataSource.kt
│                           │   ├── MovieRatingsLocalDataSource.kt
│                           │   ├── MovieStreamingsLocalDataSource.kt
│                           │   ├── MovieTranslationsLocalDataSource.kt
│                           │   ├── MoviesLocalDataSource.kt
│                           │   ├── MoviesSyncLogLocalDataSource.kt
│                           │   ├── MyMoviesLocalDataSource.kt
│                           │   ├── MyShowsLocalDataSource.kt
│                           │   ├── NewsLocalDataSource.kt
│                           │   ├── PeopleCreditsLocalDataSource.kt
│                           │   ├── PeopleImagesLocalDataSource.kt
│                           │   ├── PeopleLocalDataSource.kt
│                           │   ├── PeopleShowsMoviesLocalDataSource.kt
│                           │   ├── RatingsLocalDataSource.kt
│                           │   ├── RecentSearchLocalDataSource.kt
│                           │   ├── RelatedMoviesLocalDataSource.kt
│                           │   ├── RelatedShowsLocalDataSource.kt
│                           │   ├── SeasonsLocalDataSource.kt
│                           │   ├── SettingsLocalDataSource.kt
│                           │   ├── ShowImagesLocalDataSource.kt
│                           │   ├── ShowRatingsLocalDataSource.kt
│                           │   ├── ShowStreamingsLocalDataSource.kt
│                           │   ├── ShowTranslationsLocalDataSource.kt
│                           │   ├── ShowsLocalDataSource.kt
│                           │   ├── TraktSyncLogLocalDataSource.kt
│                           │   ├── TraktSyncQueueLocalDataSource.kt
│                           │   ├── TranslationsMoviesSyncLogLocalDataSource.kt
│                           │   ├── TranslationsShowsSyncLogLocalDataSource.kt
│                           │   ├── UserLocalDataSource.kt
│                           │   ├── WatchlistMoviesLocalDataSource.kt
│                           │   └── WatchlistShowsLocalDataSource.kt
│                           └── utilities/
│                               └── TransactionsProvider.kt
├── data-remote/
│   ├── .gitignore
│   ├── build.gradle
│   ├── consumer-rules.pro
│   ├── proguard-rules.pro
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── data_remote/
│                           ├── Config.kt
│                           ├── RemoteDataSource.kt
│                           ├── aws/
│                           │   ├── AwsRemoteDataSource.kt
│                           │   ├── api/
│                           │   │   ├── AwsApi.kt
│                           │   │   └── AwsService.kt
│                           │   └── model/
│                           │       ├── AwsImage.kt
│                           │       └── AwsImagesList.kt
│                           ├── di/
│                           │   └── module/
│                           │       ├── AwsModule.kt
│                           │       ├── OkHttpModule.kt
│                           │       ├── OmdbModule.kt
│                           │       ├── PreferencesModule.kt
│                           │       ├── RedditModule.kt
│                           │       ├── RemoteDataModule.kt
│                           │       ├── RetrofitModule.kt
│                           │       ├── TmdbModule.kt
│                           │       └── TraktModule.kt
│                           ├── omdb/
│                           │   ├── OmdbInterceptor.kt
│                           │   ├── OmdbRemoteDataSource.kt
│                           │   ├── api/
│                           │   │   ├── OmdbApi.kt
│                           │   │   └── OmdbService.kt
│                           │   └── model/
│                           │       └── OmdbResult.kt
│                           ├── reddit/
│                           │   ├── RedditRemoteDataSource.kt
│                           │   ├── api/
│                           │   │   ├── RedditApi.kt
│                           │   │   ├── RedditAuthApi.kt
│                           │   │   ├── RedditListingApi.kt
│                           │   │   └── RedditService.kt
│                           │   └── model/
│                           │       ├── RedditAuthResponse.kt
│                           │       ├── RedditData.kt
│                           │       ├── RedditDataItem.kt
│                           │       ├── RedditItem.kt
│                           │       └── RedditResponse.kt
│                           ├── tmdb/
│                           │   ├── TmdbInterceptor.kt
│                           │   ├── TmdbRemoteDataSource.kt
│                           │   ├── api/
│                           │   │   ├── TmdbApi.kt
│                           │   │   └── TmdbService.kt
│                           │   └── model/
│                           │       ├── TmdbImage.kt
│                           │       ├── TmdbImages.kt
│                           │       ├── TmdbPeople.kt
│                           │       ├── TmdbPerson.kt
│                           │       ├── TmdbStreamingCountry.kt
│                           │       ├── TmdbStreamingService.kt
│                           │       ├── TmdbStreamings.kt
│                           │       ├── TmdbTranslation.kt
│                           │       └── TmdbTranslationResponse.kt
│                           ├── token/
│                           │   ├── TokenProvider.kt
│                           │   └── TraktTokenProvider.kt
│                           └── trakt/
│                               ├── TraktRemoteDataSource.kt
│                               ├── api/
│                               │   ├── TraktApi.kt
│                               │   └── service/
│                               │       ├── TraktAuthService.kt
│                               │       ├── TraktCommentsService.kt
│                               │       ├── TraktMoviesService.kt
│                               │       ├── TraktPeopleService.kt
│                               │       ├── TraktSearchService.kt
│                               │       ├── TraktShowsService.kt
│                               │       ├── TraktSyncService.kt
│                               │       └── TraktUsersService.kt
│                               ├── interceptors/
│                               │   ├── TraktAuthenticator.kt
│                               │   ├── TraktAuthorizationInterceptor.kt
│                               │   ├── TraktHeadersInterceptor.kt
│                               │   ├── TraktRefreshTokenInterceptor.kt
│                               │   └── TraktRetryInterceptor.kt
│                               └── model/
│                                   ├── AirTime.kt
│                                   ├── Comment.kt
│                                   ├── CustomList.kt
│                                   ├── Episode.kt
│                                   ├── HiddenItem.kt
│                                   ├── Ids.kt
│                                   ├── Movie.kt
│                                   ├── MovieCollection.kt
│                                   ├── MovieCollectionItem.kt
│                                   ├── MovieResult.kt
│                                   ├── OAuthResponse.kt
│                                   ├── Person.kt
│                                   ├── PersonCredit.kt
│                                   ├── PersonCreditsResult.kt
│                                   ├── RatingResultMovie.kt
│                                   ├── RatingResultShow.kt
│                                   ├── RatingResultValue.kt
│                                   ├── SearchResult.kt
│                                   ├── Season.kt
│                                   ├── SeasonTranslation.kt
│                                   ├── Show.kt
│                                   ├── ShowResult.kt
│                                   ├── SyncExportItem.kt
│                                   ├── SyncExportRequest.kt
│                                   ├── SyncExportResult.kt
│                                   ├── SyncItem.kt
│                                   ├── TraktUser.kt
│                                   ├── Translation.kt
│                                   ├── User.kt
│                                   └── request/
│                                       ├── CommentRequest.kt
│                                       ├── CreateListRequest.kt
│                                       ├── OAuthRefreshRequest.kt
│                                       ├── OAuthRequest.kt
│                                       ├── OAuthRevokeRequest.kt
│                                       └── RatingRequest.kt
├── gradle/
│   ├── libs.versions.toml
│   └── wrapper/
│       ├── gradle-wrapper.jar
│       └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── repository/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   └── java/
│       │       └── com/
│       │           └── michaldrabik/
│       │               └── repository/
│       │                   ├── CommentsRepository.kt
│       │                   ├── EpisodesManager.kt
│       │                   ├── ListsRepository.kt
│       │                   ├── NewsRepository.kt
│       │                   ├── OnHoldItemsRepository.kt
│       │                   ├── PeopleRepository.kt
│       │                   ├── PinnedItemsRepository.kt
│       │                   ├── RatingsRepository.kt
│       │                   ├── StreamingsRepository.kt
│       │                   ├── TranslationsRepository.kt
│       │                   ├── UserRedditManager.kt
│       │                   ├── UserTraktManager.kt
│       │                   ├── images/
│       │                   │   ├── EpisodeImagesProvider.kt
│       │                   │   ├── MovieImagesProvider.kt
│       │                   │   ├── PeopleImagesProvider.kt
│       │                   │   └── ShowImagesProvider.kt
│       │                   ├── mappers/
│       │                   │   ├── CollectionMapper.kt
│       │                   │   ├── CommentMapper.kt
│       │                   │   ├── CustomListMapper.kt
│       │                   │   ├── EpisodeMapper.kt
│       │                   │   ├── IdsMapper.kt
│       │                   │   ├── ImageMapper.kt
│       │                   │   ├── Mappers.kt
│       │                   │   ├── MovieMapper.kt
│       │                   │   ├── NewsMapper.kt
│       │                   │   ├── PersonMapper.kt
│       │                   │   ├── RatingsMapper.kt
│       │                   │   ├── SeasonMapper.kt
│       │                   │   ├── SettingsMapper.kt
│       │                   │   ├── ShowMapper.kt
│       │                   │   ├── StreamingsMapper.kt
│       │                   │   ├── TranslationMapper.kt
│       │                   │   └── UserRatingsMapper.kt
│       │                   ├── movies/
│       │                   │   ├── DiscoverMoviesRepository.kt
│       │                   │   ├── HiddenMoviesRepository.kt
│       │                   │   ├── MovieCollectionsRepository.kt
│       │                   │   ├── MovieDetailsRepository.kt
│       │                   │   ├── MovieStreamingsRepository.kt
│       │                   │   ├── MoviesRepository.kt
│       │                   │   ├── MyMoviesRepository.kt
│       │                   │   ├── RelatedMoviesRepository.kt
│       │                   │   ├── WatchlistMoviesRepository.kt
│       │                   │   └── ratings/
│       │                   │       ├── MoviesExternalRatingsRepository.kt
│       │                   │       └── MoviesRatingsRepository.kt
│       │                   ├── settings/
│       │                   │   ├── SettingsFiltersRepository.kt
│       │                   │   ├── SettingsRepository.kt
│       │                   │   ├── SettingsSortRepository.kt
│       │                   │   ├── SettingsSpoilersRepository.kt
│       │                   │   ├── SettingsViewModeRepository.kt
│       │                   │   └── SettingsWidgetsRepository.kt
│       │                   ├── shows/
│       │                   │   ├── DiscoverShowsRepository.kt
│       │                   │   ├── HiddenShowsRepository.kt
│       │                   │   ├── MyShowsRepository.kt
│       │                   │   ├── RelatedShowsRepository.kt
│       │                   │   ├── ShowDetailsRepository.kt
│       │                   │   ├── ShowStreamingsRepository.kt
│       │                   │   ├── ShowsRepository.kt
│       │                   │   ├── WatchlistShowsRepository.kt
│       │                   │   └── ratings/
│       │                   │       ├── ShowsExternalRatingsRepository.kt
│       │                   │       └── ShowsRatingsRepository.kt
│       │                   └── utilities/
│       │                       └── PreferencesDelegates.kt
│       └── test/
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── repository/
│                           ├── DiscoverShowsRepositoryTest.kt
│                           ├── MyShowsRepositoryTest.kt
│                           ├── PeopleRepositoryTest.kt
│                           ├── RelatedShowsRepositoryTest.kt
│                           ├── SettingsRepositoryTest.kt
│                           ├── ShowDetailsRepositoryTest.kt
│                           ├── WatchlistShowsRepositoryTest.kt
│                           └── common/
│                               └── BaseMockTest.kt
├── settings.gradle
├── ui-base/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_base/
│           │               ├── Analytics.kt
│           │               ├── BaseAdapter.kt
│           │               ├── BaseBottomSheetFragment.kt
│           │               ├── BaseFragment.kt
│           │               ├── BaseMovieAdapter.kt
│           │               ├── Logger.kt
│           │               ├── common/
│           │               │   ├── AppCountry.kt
│           │               │   ├── AppScopeProvider.kt
│           │               │   ├── FastLinearLayoutManager.kt
│           │               │   ├── ListItem.kt
│           │               │   ├── ListViewMode.kt
│           │               │   ├── MovieListItem.kt
│           │               │   ├── OnScrollResetListener.kt
│           │               │   ├── OnSearchClickListener.kt
│           │               │   ├── OnShowsMoviesSyncedListener.kt
│           │               │   ├── OnTabReselectedListener.kt
│           │               │   ├── OnTraktAuthorizeListener.kt
│           │               │   ├── SafeOnClickListener.kt
│           │               │   ├── WidgetsProvider.kt
│           │               │   ├── behaviour/
│           │               │   │   ├── ScrollableViewBehaviour.kt
│           │               │   │   └── SearchViewBehaviour.kt
│           │               │   ├── sheets/
│           │               │   │   ├── context_menu/
│           │               │   │   │   ├── ContextMenuBottomSheet.kt
│           │               │   │   │   ├── events/
│           │               │   │   │   │   ├── FinishUiEvent.kt
│           │               │   │   │   │   └── RemoveTraktUiEvent.kt
│           │               │   │   │   ├── movie/
│           │               │   │   │   │   ├── MovieContextMenuBottomSheet.kt
│           │               │   │   │   │   ├── MovieContextMenuUiState.kt
│           │               │   │   │   │   ├── MovieContextMenuViewModel.kt
│           │               │   │   │   │   ├── cases/
│           │               │   │   │   │   │   ├── MovieContextMenuHiddenCase.kt
│           │               │   │   │   │   │   ├── MovieContextMenuLoadItemCase.kt
│           │               │   │   │   │   │   ├── MovieContextMenuMyMoviesCase.kt
│           │               │   │   │   │   │   ├── MovieContextMenuPinnedCase.kt
│           │               │   │   │   │   │   └── MovieContextMenuWatchlistCase.kt
│           │               │   │   │   │   └── helpers/
│           │               │   │   │   │       └── MovieContextItem.kt
│           │               │   │   │   └── show/
│           │               │   │   │       ├── ShowContextMenuBottomSheet.kt
│           │               │   │   │       ├── ShowContextMenuUiState.kt
│           │               │   │   │       ├── ShowContextMenuViewModel.kt
│           │               │   │   │       ├── cases/
│           │               │   │   │       │   ├── ShowContextMenuHiddenCase.kt
│           │               │   │   │       │   ├── ShowContextMenuLoadItemCase.kt
│           │               │   │   │       │   ├── ShowContextMenuMyShowsCase.kt
│           │               │   │   │       │   ├── ShowContextMenuOnHoldCase.kt
│           │               │   │   │       │   ├── ShowContextMenuPinnedCase.kt
│           │               │   │   │       │   └── ShowContextMenuWatchlistCase.kt
│           │               │   │   │       └── helpers/
│           │               │   │   │           └── ShowContextItem.kt
│           │               │   │   ├── links/
│           │               │   │   │   ├── LinksBottomSheet.kt
│           │               │   │   │   ├── LinksViewModel.kt
│           │               │   │   │   └── views/
│           │               │   │   │       └── LinkItemView.kt
│           │               │   │   ├── ratings/
│           │               │   │   │   ├── RatingsBottomSheet.kt
│           │               │   │   │   ├── RatingsSheetViewModel.kt
│           │               │   │   │   ├── RatingsUiEvents.kt
│           │               │   │   │   ├── RatingsUiState.kt
│           │               │   │   │   └── cases/
│           │               │   │   │       ├── RatingsEpisodeCase.kt
│           │               │   │   │       ├── RatingsMovieCase.kt
│           │               │   │   │       ├── RatingsSeasonCase.kt
│           │               │   │   │       └── RatingsShowCase.kt
│           │               │   │   ├── remove_trakt/
│           │               │   │   │   ├── RemoveTraktBottomSheet.kt
│           │               │   │   │   ├── remove_trakt_hidden/
│           │               │   │   │   │   ├── RemoveTraktHiddenBottomSheet.kt
│           │               │   │   │   │   ├── RemoveTraktHiddenUiState.kt
│           │               │   │   │   │   ├── RemoveTraktHiddenViewModel.kt
│           │               │   │   │   │   └── cases/
│           │               │   │   │   │       └── RemoveTraktHiddenCase.kt
│           │               │   │   │   ├── remove_trakt_progress/
│           │               │   │   │   │   ├── RemoveTraktProgressBottomSheet.kt
│           │               │   │   │   │   ├── RemoveTraktProgressUiState.kt
│           │               │   │   │   │   ├── RemoveTraktProgressViewModel.kt
│           │               │   │   │   │   └── cases/
│           │               │   │   │   │       └── RemoveTraktProgressCase.kt
│           │               │   │   │   └── remove_trakt_watchlist/
│           │               │   │   │       ├── RemoveTraktWatchlistBottomSheet.kt
│           │               │   │   │       ├── RemoveTraktWatchlistUiState.kt
│           │               │   │   │       ├── RemoveTraktWatchlistViewModel.kt
│           │               │   │   │       └── cases/
│           │               │   │   │           └── RemoveTraktWatchlistCase.kt
│           │               │   │   └── sort_order/
│           │               │   │       ├── SortOrderBottomSheet.kt
│           │               │   │       └── views/
│           │               │   │           └── SortOrderItemView.kt
│           │               │   └── views/
│           │               │       ├── EmptySearchView.kt
│           │               │       ├── FoldableTextView.kt
│           │               │       ├── ModeTabsView.kt
│           │               │       ├── MovieView.kt
│           │               │       ├── PremiumAdView.kt
│           │               │       ├── RateValueView.kt
│           │               │       ├── RatingsStripView.kt
│           │               │       ├── ScrollableImageView.kt
│           │               │       ├── ScrollableTabLayout.kt
│           │               │       ├── SearchLocalView.kt
│           │               │       ├── SearchView.kt
│           │               │       ├── SecretTextView.kt
│           │               │       ├── ShowView.kt
│           │               │       └── tips/
│           │               │           ├── TipOverlayView.kt
│           │               │           └── TipView.kt
│           │               ├── dates/
│           │               │   ├── AppDateFormat.kt
│           │               │   └── DateFormatProvider.kt
│           │               ├── events/
│           │               │   ├── Event.kt
│           │               │   └── EventsManager.kt
│           │               ├── fcm/
│           │               │   └── NotificationChannel.kt
│           │               ├── network/
│           │               │   ├── NetworkCallbackAdapter.kt
│           │               │   └── NetworkStatusProvider.kt
│           │               ├── notifications/
│           │               │   ├── AnnouncementManager.kt
│           │               │   ├── AnnouncementWorker.kt
│           │               │   └── schedulers/
│           │               │       ├── MovieAnnouncementScheduler.kt
│           │               │       └── ShowAnnouncementScheduler.kt
│           │               ├── sync/
│           │               │   ├── ShowsMoviesSyncWorker.kt
│           │               │   └── runners/
│           │               │       ├── MoviesSyncRunner.kt
│           │               │       └── ShowsSyncRunner.kt
│           │               ├── trakt/
│           │               │   ├── TraktNotificationWorker.kt
│           │               │   ├── TraktSyncRunner.kt
│           │               │   ├── TraktSyncWorker.kt
│           │               │   ├── exports/
│           │               │   │   ├── TraktExportListsRunner.kt
│           │               │   │   ├── TraktExportWatchedRunner.kt
│           │               │   │   └── TraktExportWatchlistRunner.kt
│           │               │   ├── imports/
│           │               │   │   ├── TraktImportListsRunner.kt
│           │               │   │   ├── TraktImportWatchedRunner.kt
│           │               │   │   └── TraktImportWatchlistRunner.kt
│           │               │   └── quicksync/
│           │               │       ├── QuickSyncManager.kt
│           │               │       ├── QuickSyncWorker.kt
│           │               │       └── runners/
│           │               │           ├── QuickSyncListsRunner.kt
│           │               │           ├── QuickSyncRunner.kt
│           │               │           └── cases/
│           │               │               ├── QuickSyncDuplicateEpisodesCase.kt
│           │               │               └── QuickSyncDuplicateMoviesCase.kt
│           │               ├── utilities/
│           │               │   ├── DurationPrinter.kt
│           │               │   ├── FragmentViewBindingDelegate.kt
│           │               │   ├── ModeHost.kt
│           │               │   ├── MoviesStatusHost.kt
│           │               │   ├── NavigationHost.kt
│           │               │   ├── NetworkIconProvider.kt
│           │               │   ├── SnackbarHost.kt
│           │               │   ├── TipsHost.kt
│           │               │   ├── events/
│           │               │   │   ├── Event.kt
│           │               │   │   └── MessageEvent.kt
│           │               │   ├── extensions/
│           │               │   │   ├── BuildExtensions.kt
│           │               │   │   ├── BundleExtensions.kt
│           │               │   │   ├── ContextExtensions.kt
│           │               │   │   ├── Extensions.kt
│           │               │   │   ├── FlowCombineExtensions.kt
│           │               │   │   ├── GlideExtensions.kt
│           │               │   │   ├── LayoutExtensions.kt
│           │               │   │   ├── LifecycleExtensions.kt
│           │               │   │   ├── SnackbarExtensions.kt
│           │               │   │   ├── UiExtensions.kt
│           │               │   │   ├── ViewModelExtensions.kt
│           │               │   │   └── WebExtensions.kt
│           │               │   └── ui/
│           │               │       └── EqualSpacingItemDecoration.kt
│           │               └── viewmodel/
│           │                   ├── ChannelsDelegate.kt
│           │                   └── DefaultChannelsDelegate.kt
│           └── res/
│               ├── anim/
│               │   ├── anim_recycler_fall_down.xml
│               │   ├── anim_recycler_fall_down_fast.xml
│               │   ├── anim_recycler_fall_down_item.xml
│               │   ├── anim_recycler_fall_down_item_fast.xml
│               │   ├── anim_slide_in_from_left.xml
│               │   ├── anim_slide_in_from_right.xml
│               │   ├── anim_slide_out_from_left.xml
│               │   └── anim_slide_out_from_right.xml
│               ├── anim-ar/
│               │   ├── anim_slide_in_from_left.xml
│               │   ├── anim_slide_in_from_right.xml
│               │   ├── anim_slide_out_from_left.xml
│               │   └── anim_slide_out_from_right.xml
│               ├── color/
│               │   ├── selector_chip_background.xml
│               │   ├── selector_chip_stroke.xml
│               │   ├── selector_chip_text.xml
│               │   ├── selector_discover_chip_background.xml
│               │   ├── selector_discover_chip_text.xml
│               │   ├── selector_main_button.xml
│               │   └── selector_main_checkbox.xml
│               ├── color-notnight/
│               │   ├── selector_chip_background.xml
│               │   ├── selector_chip_stroke.xml
│               │   └── selector_main_checkbox.xml
│               ├── drawable/
│               │   ├── bg_badge.xml
│               │   ├── bg_bottom_sheet.xml
│               │   ├── bg_dialog.xml
│               │   ├── bg_filters_sheet.xml
│               │   ├── bg_item_menu_elevation.xml
│               │   ├── bg_item_menu_placeholder.xml
│               │   ├── bg_link_item.xml
│               │   ├── bg_link_item_ripple.xml
│               │   ├── bg_media_view_elevation.xml
│               │   ├── bg_media_view_elevation_card.xml
│               │   ├── bg_media_view_placeholder.xml
│               │   ├── bg_media_view_ripple.xml
│               │   ├── bg_premium_ad.xml
│               │   ├── bg_snackbar_error.xml
│               │   ├── bg_snackbar_info.xml
│               │   ├── bg_sort_item_badge.xml
│               │   ├── bg_text_on_surface.xml
│               │   ├── bg_tip_view.xml
│               │   ├── divider_item_menu.xml
│               │   ├── ic_abc.xml
│               │   ├── ic_amc.xml
│               │   ├── ic_anim_search_to_close.xml
│               │   ├── ic_arrow_alt.xml
│               │   ├── ic_arrow_alt_down.xml
│               │   ├── ic_arrow_alt_up.xml
│               │   ├── ic_arrow_back.xml
│               │   ├── ic_arrow_right.xml
│               │   ├── ic_bookmark.xml
│               │   ├── ic_bookmark_full.xml
│               │   ├── ic_calendar.xml
│               │   ├── ic_check.xml
│               │   ├── ic_check_small.xml
│               │   ├── ic_circle.xml
│               │   ├── ic_clock.xml
│               │   ├── ic_clock_compact.xml
│               │   ├── ic_clock_small.xml
│               │   ├── ic_close.xml
│               │   ├── ic_comment.xml
│               │   ├── ic_crown.xml
│               │   ├── ic_crown_small.xml
│               │   ├── ic_custom_image.xml
│               │   ├── ic_delete.xml
│               │   ├── ic_duckduck.xml
│               │   ├── ic_eye.xml
│               │   ├── ic_eye_no.xml
│               │   ├── ic_film.xml
│               │   ├── ic_giphy.xml
│               │   ├── ic_github.xml
│               │   ├── ic_google.xml
│               │   ├── ic_history.xml
│               │   ├── ic_imdb.xml
│               │   ├── ic_info.xml
│               │   ├── ic_insight.xml
│               │   ├── ic_link.xml
│               │   ├── ic_link_color.xml
│               │   ├── ic_list_alt.xml
│               │   ├── ic_lists.xml
│               │   ├── ic_news.xml
│               │   ├── ic_notification_bell.xml
│               │   ├── ic_open_browser.xml
│               │   ├── ic_pause.xml
│               │   ├── ic_person_outline.xml
│               │   ├── ic_pin.xml
│               │   ├── ic_play.xml
│               │   ├── ic_remove_list.xml
│               │   ├── ic_search.xml
│               │   ├── ic_settings.xml
│               │   ├── ic_share.xml
│               │   ├── ic_star.xml
│               │   ├── ic_star_empty.xml
│               │   ├── ic_star_small.xml
│               │   ├── ic_stars_round.xml
│               │   ├── ic_television.xml
│               │   ├── ic_tmdb.xml
│               │   ├── ic_trakt.xml
│               │   ├── ic_twitter.xml
│               │   ├── ic_view_grid.xml
│               │   ├── ic_view_list.xml
│               │   ├── ic_wikipedia.xml
│               │   └── ic_youtube.xml
│               ├── drawable-ar/
│               │   └── ic_arrow_back.xml
│               ├── drawable-notnight/
│               │   ├── ic_github.xml
│               │   └── ic_wikipedia.xml
│               ├── layout/
│               │   ├── view_context_menu.xml
│               │   ├── view_links.xml
│               │   ├── view_links_item.xml
│               │   ├── view_mode_tabs.xml
│               │   ├── view_premium_ad.xml
│               │   ├── view_premium_ad_list.xml
│               │   ├── view_rate_sheet.xml
│               │   ├── view_rate_value.xml
│               │   ├── view_ratings_strip.xml
│               │   ├── view_remove_trakt_hidden.xml
│               │   ├── view_remove_trakt_progress.xml
│               │   ├── view_remove_trakt_watchlist.xml
│               │   ├── view_search.xml
│               │   ├── view_search_empty.xml
│               │   ├── view_search_local.xml
│               │   ├── view_sort_order.xml
│               │   ├── view_sort_order_item.xml
│               │   ├── view_tip.xml
│               │   └── view_tip_overlay.xml
│               ├── layout-sw600dp/
│               │   └── view_ratings_strip.xml
│               ├── values/
│               │   ├── attrs.xml
│               │   ├── bool.xml
│               │   ├── colors.xml
│               │   ├── dimens.xml
│               │   ├── misc.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-notnight/
│               │   ├── colors.xml
│               │   ├── dimens.xml
│               │   ├── misc.xml
│               │   └── styles.xml
│               ├── values-notnight-v27/
│               │   └── styles.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   ├── bool.xml
│               │   ├── dimens.xml
│               │   └── styles.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-comments/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_comments/
│           │               ├── CommentItemDiffCallback.kt
│           │               ├── CommentView.kt
│           │               ├── CommentsAdapter.kt
│           │               ├── fragment/
│           │               │   ├── CommentsFragment.kt
│           │               │   ├── CommentsUiState.kt
│           │               │   ├── CommentsViewModel.kt
│           │               │   └── cases/
│           │               │       ├── DeleteCommentCase.kt
│           │               │       ├── LoadCommentsCase.kt
│           │               │       └── LoadRepliesCase.kt
│           │               ├── post/
│           │               │   ├── PostCommentBottomSheet.kt
│           │               │   ├── PostCommentUiState.kt
│           │               │   └── PostCommentViewModel.kt
│           │               └── utilities/
│           │                   └── Extensions.kt
│           └── res/
│               ├── color/
│               │   ├── selector_comment_button.xml
│               │   └── selector_comment_input.xml
│               ├── drawable/
│               │   ├── bg_comment_rating.xml
│               │   ├── divider_comments_list.xml
│               │   ├── ic_add_comment.xml
│               │   ├── ic_delete.xml
│               │   └── ic_reply.xml
│               ├── layout/
│               │   ├── fragment_comments.xml
│               │   ├── view_comment.xml
│               │   └── view_post_comment.xml
│               ├── layout-sw600dp/
│               │   └── view_comment.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-discover/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_discover/
│       │   │               ├── DiscoverFragment.kt
│       │   │               ├── DiscoverUiState.kt
│       │   │               ├── DiscoverViewModel.kt
│       │   │               ├── cases/
│       │   │               │   ├── DiscoverFiltersCase.kt
│       │   │               │   ├── DiscoverShowsCase.kt
│       │   │               │   └── DiscoverTwitterCase.kt
│       │   │               ├── di/
│       │   │               │   └── DiscoverModule.kt
│       │   │               ├── filters/
│       │   │               │   ├── feed/
│       │   │               │   │   ├── DiscoverFiltersFeedBottomSheet.kt
│       │   │               │   │   ├── DiscoverFiltersFeedUiEvent.kt
│       │   │               │   │   ├── DiscoverFiltersFeedUiState.kt
│       │   │               │   │   └── DiscoverFiltersFeedViewModel.kt
│       │   │               │   ├── genres/
│       │   │               │   │   ├── DiscoverFiltersGenresBottomSheet.kt
│       │   │               │   │   ├── DiscoverFiltersGenresUiEvent.kt
│       │   │               │   │   ├── DiscoverFiltersGenresUiState.kt
│       │   │               │   │   └── DiscoverFiltersGenresViewModel.kt
│       │   │               │   ├── networks/
│       │   │               │   │   ├── DiscoverFiltersNetworksBottomSheet.kt
│       │   │               │   │   ├── DiscoverFiltersNetworksUiEvent.kt
│       │   │               │   │   ├── DiscoverFiltersNetworksUiState.kt
│       │   │               │   │   └── DiscoverFiltersNetworksViewModel.kt
│       │   │               │   └── views/
│       │   │               │       └── DiscoverFiltersView.kt
│       │   │               ├── helpers/
│       │   │               │   ├── DiscoverLayoutManagerProvider.kt
│       │   │               │   └── itemtype/
│       │   │               │       ├── ImageTypeProvider.kt
│       │   │               │       ├── PhoneImageTypeProvider.kt
│       │   │               │       └── TabletImageTypeProvider.kt
│       │   │               ├── recycler/
│       │   │               │   ├── DiscoverAdapter.kt
│       │   │               │   ├── DiscoverItemDiffCallback.kt
│       │   │               │   └── DiscoverListItem.kt
│       │   │               └── views/
│       │   │                   ├── ShowFanartView.kt
│       │   │                   ├── ShowPosterView.kt
│       │   │                   ├── ShowPremiumView.kt
│       │   │                   └── ShowTwitterView.kt
│       │   └── res/
│       │       ├── color/
│       │       │   └── selector_filters_button.xml
│       │       ├── drawable/
│       │       │   ├── bg_twitter.xml
│       │       │   └── bg_twitter_cancel.xml
│       │       ├── layout/
│       │       │   ├── fragment_discover.xml
│       │       │   ├── view_discover_filters.xml
│       │       │   ├── view_discover_filters_feed.xml
│       │       │   ├── view_discover_filters_genres.xml
│       │       │   ├── view_discover_filters_networks.xml
│       │       │   ├── view_show_fanart.xml
│       │       │   ├── view_show_poster.xml
│       │       │   ├── view_show_premium.xml
│       │       │   └── view_show_twitter.xml
│       │       ├── values/
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               ├── BaseMockTest.kt
│               ├── TestData.kt
│               └── com/
│                   └── michaldrabik/
│                       └── ui_discover/
│                           └── DiscoverViewModelTest.kt
├── ui-discover-movies/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_discover_movies/
│           │               ├── DiscoverMoviesFragment.kt
│           │               ├── DiscoverMoviesUiState.kt
│           │               ├── DiscoverMoviesViewModel.kt
│           │               ├── cases/
│           │               │   ├── DiscoverFiltersCase.kt
│           │               │   └── DiscoverMoviesCase.kt
│           │               ├── di/
│           │               │   └── DiscoverMoviesModule.kt
│           │               ├── filters/
│           │               │   ├── feed/
│           │               │   │   ├── DiscoverMoviesFiltersFeedBottomSheet.kt
│           │               │   │   ├── DiscoverMoviesFiltersFeedUiEvent.kt
│           │               │   │   ├── DiscoverMoviesFiltersFeedUiState.kt
│           │               │   │   └── DiscoverMoviesFiltersFeedViewModel.kt
│           │               │   ├── genres/
│           │               │   │   ├── DiscoverMoviesFiltersGenresBottomSheet.kt
│           │               │   │   ├── DiscoverMoviesFiltersGenresUiEvent.kt
│           │               │   │   ├── DiscoverMoviesFiltersGenresUiState.kt
│           │               │   │   └── DiscoverMoviesFiltersGenresViewModel.kt
│           │               │   └── views/
│           │               │       └── DiscoverMoviesFiltersView.kt
│           │               ├── helpers/
│           │               │   ├── DiscoverMoviesLayoutManagerProvider.kt
│           │               │   └── itemtype/
│           │               │       ├── ImageTypeProvider.kt
│           │               │       ├── PhoneImageTypeProvider.kt
│           │               │       └── TabletImageTypeProvider.kt
│           │               ├── recycler/
│           │               │   ├── DiscoverMovieItemDiffCallback.kt
│           │               │   ├── DiscoverMovieListItem.kt
│           │               │   └── DiscoverMoviesAdapter.kt
│           │               └── views/
│           │                   ├── MovieFanartView.kt
│           │                   ├── MoviePosterView.kt
│           │                   └── MoviePremiumView.kt
│           └── res/
│               ├── layout/
│               │   ├── fragment_discover_movies.xml
│               │   ├── view_discover_movies_filters.xml
│               │   ├── view_discover_movies_filters_feed.xml
│               │   ├── view_discover_movies_filters_genres.xml
│               │   ├── view_movie_fanart.xml
│               │   ├── view_movie_poster.xml
│               │   └── view_movie_premium.xml
│               ├── values/
│               │   └── strings.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-episodes/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_episodes/
│           │               └── details/
│           │                   ├── EpisodeDetailsBottomSheet.kt
│           │                   ├── EpisodeDetailsUiState.kt
│           │                   ├── EpisodeDetailsViewModel.kt
│           │                   └── cases/
│           │                       ├── EpisodeDetailsSeasonCase.kt
│           │                       └── EpisodeDetailsWatchedCase.kt
│           └── res/
│               ├── color/
│               │   └── selector_comment_button.xml
│               ├── drawable/
│               │   ├── bg_bottom_sheet_placeholder.xml
│               │   └── divider_comments_list.xml
│               ├── layout/
│               │   └── view_episode_details.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-es/
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-it/
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-ru/
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   ├── integers.xml
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-gallery/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_gallery/
│           │               ├── custom/
│           │               │   ├── CustomImagesBottomSheet.kt
│           │               │   ├── CustomImagesUiState.kt
│           │               │   └── CustomImagesViewModel.kt
│           │               └── fanart/
│           │                   ├── ArtGalleryFragment.kt
│           │                   ├── ArtGalleryUiState.kt
│           │                   ├── ArtGalleryViewModel.kt
│           │                   ├── cases/
│           │                   │   └── ArtLoadImagesCase.kt
│           │                   └── recycler/
│           │                       ├── ArtGalleryAdapter.kt
│           │                       ├── ImageItemDiffCallback.kt
│           │                       └── views/
│           │                           ├── ArtGalleryFanartView.kt
│           │                           ├── ArtGalleryPosterView.kt
│           │                           └── ArtGalleryUrlView.kt
│           └── res/
│               ├── color/
│               │   └── selector_url_input_layout.xml
│               ├── drawable/
│               │   ├── bg_custom_image_frame.xml
│               │   ├── bg_delete_circle.xml
│               │   ├── bg_indicator_circle.xml
│               │   ├── ic_custom_image2x.xml
│               │   ├── ic_delete.xml
│               │   └── ic_download.xml
│               ├── drawable-notnight/
│               │   └── bg_indicator_circle.xml
│               ├── layout/
│               │   ├── fragment_art_gallery.xml
│               │   ├── view_custom_images.xml
│               │   ├── view_gallery_fanart_image.xml
│               │   ├── view_gallery_poster_image.xml
│               │   └── view_gallery_url_dialog.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-notnight/
│               │   └── styles.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-lists/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_lists/
│           │               ├── create/
│           │               │   ├── CreateListBottomSheet.kt
│           │               │   ├── CreateListUiState.kt
│           │               │   ├── CreateListViewModel.kt
│           │               │   └── cases/
│           │               │       ├── CreateListCase.kt
│           │               │       └── ListDetailsCase.kt
│           │               ├── details/
│           │               │   ├── ListDetailsFragment.kt
│           │               │   ├── ListDetailsUiEvents.kt
│           │               │   ├── ListDetailsUiState.kt
│           │               │   ├── ListDetailsViewModel.kt
│           │               │   ├── cases/
│           │               │   │   ├── ListDetailsItemsCase.kt
│           │               │   │   ├── ListDetailsMainCase.kt
│           │               │   │   ├── ListDetailsSortCase.kt
│           │               │   │   ├── ListDetailsTipsCase.kt
│           │               │   │   ├── ListDetailsTranslationsCase.kt
│           │               │   │   └── ListDetailsViewModeCase.kt
│           │               │   ├── helpers/
│           │               │   │   ├── ListDetailsSorter.kt
│           │               │   │   ├── ListItemDragListener.kt
│           │               │   │   ├── ListItemSwipeListener.kt
│           │               │   │   ├── ReorderListCallback.kt
│           │               │   │   └── ReorderListCallbackAdapter.kt
│           │               │   ├── recycler/
│           │               │   │   ├── ListDetailsAdapter.kt
│           │               │   │   ├── ListDetailsDiffCallback.kt
│           │               │   │   ├── ListDetailsItem.kt
│           │               │   │   └── helpers/
│           │               │   │       ├── ListDetailsGridItemDecoration.kt
│           │               │   │       ├── ListDetailsLayoutManagerProvider.kt
│           │               │   │       └── ListDetailsListItemDecoration.kt
│           │               │   └── views/
│           │               │       ├── ListDetailsDeleteConfirmView.kt
│           │               │       ├── ListDetailsFilterView.kt
│           │               │       ├── ListDetailsItemView.kt
│           │               │       ├── ListDetailsMovieItemView.kt
│           │               │       ├── ListDetailsShowItemView.kt
│           │               │       ├── compact/
│           │               │       │   ├── ListDetailsCompactMovieItemView.kt
│           │               │       │   └── ListDetailsCompactShowItemView.kt
│           │               │       └── grid/
│           │               │           ├── ListDetailsGridItemView.kt
│           │               │           └── ListDetailsGridTitleItemView.kt
│           │               ├── lists/
│           │               │   ├── ListsFragment.kt
│           │               │   ├── ListsUiState.kt
│           │               │   ├── ListsViewModel.kt
│           │               │   ├── cases/
│           │               │   │   ├── MainListsCase.kt
│           │               │   │   └── SortOrderListsCase.kt
│           │               │   ├── helpers/
│           │               │   │   ├── ListsItemImage.kt
│           │               │   │   ├── ListsLayoutManagerProvider.kt
│           │               │   │   └── ListsSorter.kt
│           │               │   ├── recycler/
│           │               │   │   ├── ListsAdapter.kt
│           │               │   │   ├── ListsItem.kt
│           │               │   │   └── ListsItemDiffCallback.kt
│           │               │   └── views/
│           │               │       ├── ListsFiltersView.kt
│           │               │       ├── ListsItemView.kt
│           │               │       └── ListsTripleImageView.kt
│           │               └── manage/
│           │                   ├── ManageListsBottomSheet.kt
│           │                   ├── ManageListsUiState.kt
│           │                   ├── ManageListsViewModel.kt
│           │                   ├── cases/
│           │                   │   └── ManageListsCase.kt
│           │                   ├── recycler/
│           │                   │   ├── ManageListsAdapter.kt
│           │                   │   ├── ManageListsItem.kt
│           │                   │   └── ManageListsItemDiffCallback.kt
│           │                   └── views/
│           │                       └── ManageListsItemView.kt
│           └── res/
│               ├── color/
│               │   ├── selector_create_list_button.xml
│               │   ├── selector_create_list_input.xml
│               │   ├── selector_list_chip_background.xml
│               │   └── selector_list_chip_text.xml
│               ├── color-notnight/
│               │   └── selector_list_chip_background.xml
│               ├── drawable/
│               │   ├── bg_rank.xml
│               │   ├── ic_edit.xml
│               │   ├── ic_handle.xml
│               │   ├── ic_list_create.xml
│               │   ├── ic_more.xml
│               │   └── ic_reorder.xml
│               ├── layout/
│               │   ├── fragment_list_details.xml
│               │   ├── fragment_lists.xml
│               │   ├── layout_list_details_empty.xml
│               │   ├── layout_list_details_item_grid.xml
│               │   ├── layout_lists_empty.xml
│               │   ├── layout_manage_lists_empty.xml
│               │   ├── view_create_list.xml
│               │   ├── view_list_delete_confirm.xml
│               │   ├── view_list_details_filters.xml
│               │   ├── view_list_details_item_grid.xml
│               │   ├── view_list_details_item_grid_title.xml
│               │   ├── view_list_details_movie_item.xml
│               │   ├── view_list_details_movie_item_compact.xml
│               │   ├── view_list_details_show_item.xml
│               │   ├── view_list_details_show_item_compact.xml
│               │   ├── view_lists_filters.xml
│               │   ├── view_lists_item.xml
│               │   ├── view_manage_lists.xml
│               │   ├── view_manage_lists_item.xml
│               │   └── view_triple_image.xml
│               ├── menu/
│               │   └── menu_list_details.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-notnight/
│               │   └── dimens.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-model/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_model/
│           │               ├── AirTime.kt
│           │               ├── CalendarMode.kt
│           │               ├── Comment.kt
│           │               ├── CustomList.kt
│           │               ├── DiscoverFilters.kt
│           │               ├── DiscoverSortOrder.kt
│           │               ├── Episode.kt
│           │               ├── EpisodeBundle.kt
│           │               ├── Genre.kt
│           │               ├── Ids.kt
│           │               ├── Image.kt
│           │               ├── ImageFamily.kt
│           │               ├── ImageSource.kt
│           │               ├── ImageStatus.kt
│           │               ├── ImageType.kt
│           │               ├── Movie.kt
│           │               ├── MovieCollection.kt
│           │               ├── MovieStatus.kt
│           │               ├── MyMoviesSection.kt
│           │               ├── MyShowsSection.kt
│           │               ├── Network.kt
│           │               ├── NewsItem.kt
│           │               ├── NotificationDelay.kt
│           │               ├── Person.kt
│           │               ├── PersonCredit.kt
│           │               ├── PremiumFeature.kt
│           │               ├── ProgressNextEpisodeType.kt
│           │               ├── ProgressType.kt
│           │               ├── RatingState.kt
│           │               ├── Ratings.kt
│           │               ├── RecentSearch.kt
│           │               ├── SearchResult.kt
│           │               ├── Season.kt
│           │               ├── SeasonBundle.kt
│           │               ├── SeasonTranslation.kt
│           │               ├── Settings.kt
│           │               ├── Show.kt
│           │               ├── ShowStatus.kt
│           │               ├── SortOrder.kt
│           │               ├── SortType.kt
│           │               ├── SpoilersSettings.kt
│           │               ├── StreamingService.kt
│           │               ├── Tip.kt
│           │               ├── TraktRating.kt
│           │               ├── TraktSyncSchedule.kt
│           │               ├── Translation.kt
│           │               └── User.kt
│           └── res/
│               ├── values/
│               │   └── strings.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-movie/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_movie/
│           │               ├── MovieDetailsFragment.kt
│           │               ├── MovieDetailsUiEvents.kt
│           │               ├── MovieDetailsUiState.kt
│           │               ├── MovieDetailsViewModel.kt
│           │               ├── cases/
│           │               │   ├── MovieDetailsHiddenCase.kt
│           │               │   ├── MovieDetailsListsCase.kt
│           │               │   ├── MovieDetailsMainCase.kt
│           │               │   ├── MovieDetailsMyMoviesCase.kt
│           │               │   ├── MovieDetailsTranslationCase.kt
│           │               │   └── MovieDetailsWatchlistCase.kt
│           │               ├── helpers/
│           │               │   ├── MovieDetailsMeta.kt
│           │               │   └── MovieLink.kt
│           │               ├── sections/
│           │               │   ├── collections/
│           │               │   │   ├── details/
│           │               │   │   │   ├── MovieDetailsCollectionBottomSheet.kt
│           │               │   │   │   ├── MovieDetailsCollectionUiState.kt
│           │               │   │   │   ├── MovieDetailsCollectionViewModel.kt
│           │               │   │   │   ├── cases/
│           │               │   │   │   │   ├── MovieDetailsCollectionDetailsCase.kt
│           │               │   │   │   │   ├── MovieDetailsCollectionImagesCase.kt
│           │               │   │   │   │   ├── MovieDetailsCollectionMoviesCase.kt
│           │               │   │   │   │   └── MovieDetailsCollectionTranslationsCase.kt
│           │               │   │   │   └── recycler/
│           │               │   │   │       ├── MovieDetailsCollectionAdapter.kt
│           │               │   │   │       ├── MovieDetailsCollectionItem.kt
│           │               │   │   │       ├── MovieDetailsCollectionItemDiffCallback.kt
│           │               │   │   │       └── views/
│           │               │   │   │           ├── MovieDetailsCollectionHeaderView.kt
│           │               │   │   │           ├── MovieDetailsCollectionItemView.kt
│           │               │   │   │           └── MovieDetailsCollectionLoadingView.kt
│           │               │   │   └── list/
│           │               │   │       ├── MovieDetailsCollectionsFragment.kt
│           │               │   │       ├── MovieDetailsCollectionsUiState.kt
│           │               │   │       ├── MovieDetailsCollectionsViewModel.kt
│           │               │   │       ├── cases/
│           │               │   │       │   └── MovieDetailsCollectionsCase.kt
│           │               │   │       └── recycler/
│           │               │   │           ├── MovieCollectionAdapter.kt
│           │               │   │           ├── MovieCollectionDiffCallback.kt
│           │               │   │           └── MovieCollectionItemView.kt
│           │               │   ├── people/
│           │               │   │   ├── MovieDetailsPeopleFragment.kt
│           │               │   │   ├── MovieDetailsPeopleUiState.kt
│           │               │   │   ├── MovieDetailsPeopleViewModel.kt
│           │               │   │   ├── cases/
│           │               │   │   │   └── MovieDetailsPeopleCase.kt
│           │               │   │   └── recycler/
│           │               │   │       ├── ActorView.kt
│           │               │   │       └── ActorsAdapter.kt
│           │               │   ├── ratings/
│           │               │   │   ├── MovieDetailsRatingsFragment.kt
│           │               │   │   ├── MovieDetailsRatingsUiState.kt
│           │               │   │   ├── MovieDetailsRatingsViewModel.kt
│           │               │   │   └── cases/
│           │               │   │       ├── MovieDetailsRatingCase.kt
│           │               │   │       └── MovieDetailsRatingSpoilersCase.kt
│           │               │   ├── related/
│           │               │   │   ├── MovieDetailsRelatedFragment.kt
│           │               │   │   ├── MovieDetailsRelatedUiState.kt
│           │               │   │   ├── MovieDetailsRelatedViewModel.kt
│           │               │   │   ├── cases/
│           │               │   │   │   └── MovieDetailsRelatedCase.kt
│           │               │   │   └── recycler/
│           │               │   │       ├── RelatedItemDiffCallback.kt
│           │               │   │       ├── RelatedListItem.kt
│           │               │   │       ├── RelatedMovieAdapter.kt
│           │               │   │       └── RelatedMovieView.kt
│           │               │   └── streamings/
│           │               │       ├── MovieDetailsStreamingsFragment.kt
│           │               │       ├── MovieDetailsStreamingsUiState.kt
│           │               │       ├── MovieDetailsStreamingsViewModel.kt
│           │               │       └── cases/
│           │               │           └── MovieDetailsStreamingCase.kt
│           │               └── views/
│           │                   └── AddToMoviesButton.kt
│           └── res/
│               ├── drawable/
│               │   ├── bg_check_ripple.xml
│               │   ├── bg_collection.xml
│               │   ├── bg_collection_ripple.xml
│               │   ├── bg_rank.xml
│               │   └── divider_horizontal_list.xml
│               ├── layout/
│               │   ├── fragment_movie_details.xml
│               │   ├── fragment_movie_details_collection.xml
│               │   ├── fragment_movie_details_people.xml
│               │   ├── fragment_movie_details_ratings.xml
│               │   ├── fragment_movie_details_related.xml
│               │   ├── fragment_movie_details_streamings.xml
│               │   ├── view_actor_movie.xml
│               │   ├── view_add_to_movies_button.xml
│               │   ├── view_movie_collection.xml
│               │   ├── view_movie_collection_details.xml
│               │   ├── view_movie_collection_items_list.xml
│               │   ├── view_movie_collection_list_header.xml
│               │   ├── view_movie_collection_list_item.xml
│               │   ├── view_movie_collection_list_loading.xml
│               │   └── view_related_movie.xml
│               ├── layout-sw600dp/
│               │   ├── fragment_movie_details.xml
│               │   ├── fragment_movie_details_collection.xml
│               │   ├── fragment_movie_details_people.xml
│               │   ├── fragment_movie_details_related.xml
│               │   ├── fragment_movie_details_streamings.xml
│               │   └── view_movie_collection.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-my-movies/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_my_movies/
│           │               ├── common/
│           │               │   ├── helpers/
│           │               │   │   ├── CollectionItemFilter.kt
│           │               │   │   └── CollectionItemSorter.kt
│           │               │   ├── layout/
│           │               │   │   ├── CollectionMovieGridItemDecoration.kt
│           │               │   │   ├── CollectionMovieLayoutManagerProvider.kt
│           │               │   │   └── CollectionMovieListItemDecoration.kt
│           │               │   ├── recycler/
│           │               │   │   ├── CollectionAdapter.kt
│           │               │   │   ├── CollectionItemDiffCallback.kt
│           │               │   │   └── CollectionListItem.kt
│           │               │   └── views/
│           │               │       ├── CollectionMovieCompactView.kt
│           │               │       ├── CollectionMovieFiltersView.kt
│           │               │       ├── CollectionMovieGridTitleView.kt
│           │               │       ├── CollectionMovieGridView.kt
│           │               │       └── CollectionMovieView.kt
│           │               ├── filters/
│           │               │   ├── CollectionFiltersOrigin.kt
│           │               │   ├── CollectionFiltersUiEvent.kt
│           │               │   └── genre/
│           │               │       ├── CollectionFiltersGenreBottomSheet.kt
│           │               │       ├── CollectionFiltersGenreUiState.kt
│           │               │       └── CollectionFiltersGenreViewModel.kt
│           │               ├── hidden/
│           │               │   ├── HiddenFragment.kt
│           │               │   ├── HiddenUiState.kt
│           │               │   ├── HiddenViewModel.kt
│           │               │   └── cases/
│           │               │       ├── HiddenLoadMoviesCase.kt
│           │               │       ├── HiddenRatingsCase.kt
│           │               │       ├── HiddenSortOrderCase.kt
│           │               │       └── HiddenViewModeCase.kt
│           │               ├── main/
│           │               │   ├── FollowedMoviesFragment.kt
│           │               │   ├── FollowedMoviesUiEvent.kt
│           │               │   ├── FollowedMoviesUiState.kt
│           │               │   ├── FollowedMoviesViewModel.kt
│           │               │   └── FollowedPagesAdapter.kt
│           │               ├── mymovies/
│           │               │   ├── MyMoviesFragment.kt
│           │               │   ├── MyMoviesUiState.kt
│           │               │   ├── MyMoviesViewModel.kt
│           │               │   ├── cases/
│           │               │   │   ├── MyMoviesLoadCase.kt
│           │               │   │   ├── MyMoviesRatingsCase.kt
│           │               │   │   ├── MyMoviesSortingCase.kt
│           │               │   │   └── MyMoviesViewModeCase.kt
│           │               │   ├── helpers/
│           │               │   │   └── MyMoviesSorter.kt
│           │               │   ├── recycler/
│           │               │   │   ├── MyMoviesAdapter.kt
│           │               │   │   ├── MyMoviesItem.kt
│           │               │   │   ├── MyMoviesItemDiffCallback.kt
│           │               │   │   └── MyMoviesLayoutManagerProvider.kt
│           │               │   ├── utilities/
│           │               │   │   ├── MyMoviesGridItemDecoration.kt
│           │               │   │   └── MyMoviesListItemDecoration.kt
│           │               │   └── views/
│           │               │       ├── MyMovieAllCompactView.kt
│           │               │       ├── MyMovieAllGridTitleView.kt
│           │               │       ├── MyMovieAllGridView.kt
│           │               │       ├── MyMovieAllView.kt
│           │               │       ├── MyMovieFanartView.kt
│           │               │       ├── MyMovieHeaderView.kt
│           │               │       └── MyMoviesRecentsView.kt
│           │               └── watchlist/
│           │                   ├── WatchlistFragment.kt
│           │                   ├── WatchlistUiState.kt
│           │                   ├── WatchlistViewModel.kt
│           │                   ├── cases/
│           │                   │   ├── WatchlistFiltersCase.kt
│           │                   │   ├── WatchlistLoadMoviesCase.kt
│           │                   │   ├── WatchlistRatingsCase.kt
│           │                   │   ├── WatchlistSortOrderCase.kt
│           │                   │   └── WatchlistViewModeCase.kt
│           │                   └── recycler/
│           │                       └── WatchlistListItem.kt
│           └── res/
│               ├── drawable/
│               │   ├── divider_my_movies_fanart.xml
│               │   └── divider_my_movies_horizontal.xml
│               ├── layout/
│               │   ├── fragment_followed_movies.xml
│               │   ├── fragment_hidden_movies.xml
│               │   ├── fragment_my_movies.xml
│               │   ├── fragment_watchlist_movies.xml
│               │   ├── layout_hidden_empty.xml
│               │   ├── layout_my_movies_empty.xml
│               │   ├── layout_watchlist_movies_empty.xml
│               │   ├── view_collection_movie.xml
│               │   ├── view_collection_movie_compact.xml
│               │   ├── view_collection_movie_grid.xml
│               │   ├── view_collection_movie_grid_title.xml
│               │   ├── view_filters_genres.xml
│               │   ├── view_movies_filters.xml
│               │   ├── view_my_movies_all.xml
│               │   ├── view_my_movies_fanart.xml
│               │   ├── view_my_movies_header.xml
│               │   └── view_my_movies_recents.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-de/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-my-shows/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_my_shows/
│           │               ├── common/
│           │               │   ├── filters/
│           │               │   │   ├── CollectionFiltersOrigin.kt
│           │               │   │   ├── CollectionFiltersUiEvent.kt
│           │               │   │   ├── genre/
│           │               │   │   │   ├── CollectionFiltersGenreBottomSheet.kt
│           │               │   │   │   ├── CollectionFiltersGenreUiState.kt
│           │               │   │   │   └── CollectionFiltersGenreViewModel.kt
│           │               │   │   └── network/
│           │               │   │       ├── CollectionFiltersNetworkBottomSheet.kt
│           │               │   │       ├── CollectionFiltersNetworkUiState.kt
│           │               │   │       └── CollectionFiltersNetworkViewModel.kt
│           │               │   ├── layout/
│           │               │   │   ├── CollectionShowGridItemDecoration.kt
│           │               │   │   ├── CollectionShowLayoutManagerProvider.kt
│           │               │   │   └── CollectionShowListItemDecoration.kt
│           │               │   ├── recycler/
│           │               │   │   ├── CollectionAdapter.kt
│           │               │   │   ├── CollectionItemDiffCallback.kt
│           │               │   │   └── CollectionListItem.kt
│           │               │   └── views/
│           │               │       ├── CollectionShowCompactView.kt
│           │               │       ├── CollectionShowFiltersView.kt
│           │               │       ├── CollectionShowGridTitleView.kt
│           │               │       ├── CollectionShowGridView.kt
│           │               │       └── CollectionShowView.kt
│           │               ├── hidden/
│           │               │   ├── HiddenFragment.kt
│           │               │   ├── HiddenUiState.kt
│           │               │   ├── HiddenViewModel.kt
│           │               │   ├── cases/
│           │               │   │   ├── HiddenLoadShowsCase.kt
│           │               │   │   ├── HiddenRatingsCase.kt
│           │               │   │   ├── HiddenSortOrderCase.kt
│           │               │   │   ├── HiddenTranslationsCase.kt
│           │               │   │   └── HiddenViewModeCase.kt
│           │               │   └── helpers/
│           │               │       └── HiddenItemSorter.kt
│           │               ├── main/
│           │               │   ├── FollowedPagesAdapter.kt
│           │               │   ├── FollowedShowsFragment.kt
│           │               │   ├── FollowedShowsUiEvent.kt
│           │               │   ├── FollowedShowsUiState.kt
│           │               │   └── FollowedShowsViewModel.kt
│           │               ├── myshows/
│           │               │   ├── MyShowsFragment.kt
│           │               │   ├── MyShowsUiState.kt
│           │               │   ├── MyShowsViewModel.kt
│           │               │   ├── cases/
│           │               │   │   ├── MyShowsLoadShowsCase.kt
│           │               │   │   ├── MyShowsRatingsCase.kt
│           │               │   │   ├── MyShowsSortingCase.kt
│           │               │   │   ├── MyShowsTranslationsCase.kt
│           │               │   │   └── MyShowsViewModeCase.kt
│           │               │   ├── filters/
│           │               │   │   ├── MyShowsFiltersBottomSheet.kt
│           │               │   │   ├── MyShowsFiltersUiEvent.kt
│           │               │   │   ├── MyShowsFiltersUiState.kt
│           │               │   │   ├── MyShowsFiltersViewModel.kt
│           │               │   │   └── views/
│           │               │   │       └── MyShowsFilterItemView.kt
│           │               │   ├── helpers/
│           │               │   │   └── MyShowsItemSorter.kt
│           │               │   ├── recycler/
│           │               │   │   ├── MyShowsAdapter.kt
│           │               │   │   ├── MyShowsItem.kt
│           │               │   │   ├── MyShowsItemDiffCallback.kt
│           │               │   │   └── MyShowsLayoutManagerProvider.kt
│           │               │   └── views/
│           │               │       ├── MyShowAllCompactView.kt
│           │               │       ├── MyShowAllView.kt
│           │               │       ├── MyShowFanartView.kt
│           │               │       ├── MyShowGridTitleView.kt
│           │               │       ├── MyShowGridView.kt
│           │               │       ├── MyShowHeaderView.kt
│           │               │       └── MyShowsRecentsView.kt
│           │               ├── utilities/
│           │               │   ├── MyShowsGridItemDecoration.kt
│           │               │   └── MyShowsListItemDecoration.kt
│           │               └── watchlist/
│           │                   ├── WatchlistFragment.kt
│           │                   ├── WatchlistUiState.kt
│           │                   ├── WatchlistViewModel.kt
│           │                   ├── cases/
│           │                   │   ├── WatchlistFiltersCase.kt
│           │                   │   ├── WatchlistLoadShowsCase.kt
│           │                   │   ├── WatchlistRatingsCase.kt
│           │                   │   ├── WatchlistSortOrderCase.kt
│           │                   │   ├── WatchlistTranslationsCase.kt
│           │                   │   └── WatchlistViewModeCase.kt
│           │                   └── helpers/
│           │                       ├── WatchlistItemFilter.kt
│           │                       └── WatchlistItemSorter.kt
│           └── res/
│               ├── layout/
│               │   ├── fragment_followed_shows.xml
│               │   ├── fragment_hidden.xml
│               │   ├── fragment_my_shows.xml
│               │   ├── fragment_watchlist.xml
│               │   ├── layout_archive_empty.xml
│               │   ├── layout_my_shows_empty.xml
│               │   ├── layout_watchlist_empty.xml
│               │   ├── view_collection_show.xml
│               │   ├── view_collection_show_compact.xml
│               │   ├── view_collection_show_grid.xml
│               │   ├── view_collection_show_grid_title.xml
│               │   ├── view_filters_genres.xml
│               │   ├── view_filters_networks.xml
│               │   ├── view_my_shows_fanart.xml
│               │   ├── view_my_shows_header.xml
│               │   ├── view_my_shows_recents.xml
│               │   ├── view_my_shows_type_filter_item.xml
│               │   ├── view_my_shows_type_filters.xml
│               │   └── view_shows_filters.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-de/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-navigation/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com.michaldrabik.ui_navigation.java/
│           │       └── NavigationArgs.kt
│           └── res/
│               ├── anim/
│               │   ├── anim_fade_in.xml
│               │   ├── anim_fade_out.xml
│               │   ├── anim_in_from_left.xml
│               │   ├── anim_in_from_right.xml
│               │   ├── anim_out_from_left.xml
│               │   └── anim_out_from_right.xml
│               ├── anim-ar/
│               │   ├── anim_in_from_left.xml
│               │   ├── anim_in_from_right.xml
│               │   ├── anim_out_from_left.xml
│               │   └── anim_out_from_right.xml
│               └── navigation/
│                   └── navigation_graph.xml
├── ui-news/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_news/
│       │   │               ├── NewsFragment.kt
│       │   │               ├── NewsUiState.kt
│       │   │               ├── NewsViewModel.kt
│       │   │               ├── cases/
│       │   │               │   ├── NewsFiltersCase.kt
│       │   │               │   ├── NewsLoadItemsCase.kt
│       │   │               │   └── NewsViewTypeCase.kt
│       │   │               ├── providers/
│       │   │               │   └── NewsLayoutManagerProvider.kt
│       │   │               ├── recycler/
│       │   │               │   ├── NewsAdapter.kt
│       │   │               │   ├── NewsListItem.kt
│       │   │               │   └── NewsListItemDiffCallback.kt
│       │   │               └── views/
│       │   │                   ├── NewsFiltersView.kt
│       │   │                   ├── NewsHeaderView.kt
│       │   │                   └── item/
│       │   │                       ├── NewsItemCardView.kt
│       │   │                       ├── NewsItemRowView.kt
│       │   │                       └── NewsItemViewType.kt
│       │   └── res/
│       │       ├── drawable/
│       │       │   ├── bg_news_card_view_elevation.xml
│       │       │   ├── bg_news_card_view_placeholder.xml
│       │       │   ├── bg_play_circle.xml
│       │       │   ├── divider_news.xml
│       │       │   ├── ic_play_arrow.xml
│       │       │   ├── ic_view_cards.xml
│       │       │   └── iv_view_list.xml
│       │       ├── layout/
│       │       │   ├── fragment_news.xml
│       │       │   ├── layout_news_empty.xml
│       │       │   ├── view_news_filters.xml
│       │       │   ├── view_news_header.xml
│       │       │   ├── view_news_item.xml
│       │       │   └── view_news_item_card.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   └── dimens.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── ui_news/
│                           └── ExampleUnitTest.kt
├── ui-people/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_people/
│       │   │               ├── details/
│       │   │               │   ├── PersonDetailsArgs.kt
│       │   │               │   ├── PersonDetailsBottomSheet.kt
│       │   │               │   ├── PersonDetailsUiEvent.kt
│       │   │               │   ├── PersonDetailsUiState.kt
│       │   │               │   ├── PersonDetailsViewModel.kt
│       │   │               │   ├── cases/
│       │   │               │   │   ├── PersonDetailsCreditsCase.kt
│       │   │               │   │   ├── PersonDetailsImagesCase.kt
│       │   │               │   │   ├── PersonDetailsLoadCase.kt
│       │   │               │   │   └── PersonDetailsTranslationsCase.kt
│       │   │               │   ├── links/
│       │   │               │   │   └── PersonLinksBottomSheet.kt
│       │   │               │   └── recycler/
│       │   │               │       ├── PersonDetailsAdapter.kt
│       │   │               │       ├── PersonDetailsItem.kt
│       │   │               │       ├── PersonDetailsItemDiffCallback.kt
│       │   │               │       └── views/
│       │   │               │           ├── PersonDetailsBioView.kt
│       │   │               │           ├── PersonDetailsCreditsItemView.kt
│       │   │               │           ├── PersonDetailsFiltersView.kt
│       │   │               │           ├── PersonDetailsHeaderView.kt
│       │   │               │           ├── PersonDetailsInfoView.kt
│       │   │               │           └── PersonDetailsLoadingView.kt
│       │   │               ├── gallery/
│       │   │               │   ├── PersonGalleryFragment.kt
│       │   │               │   ├── PersonGalleryUiState.kt
│       │   │               │   ├── PersonGalleryViewModel.kt
│       │   │               │   ├── cases/
│       │   │               │   │   └── PersonGalleryImagesCase.kt
│       │   │               │   └── recycler/
│       │   │               │       ├── ImageItemDiffCallback.kt
│       │   │               │       ├── PersonGalleryAdapter.kt
│       │   │               │       └── views/
│       │   │               │           └── PersonGalleryImageView.kt
│       │   │               └── list/
│       │   │                   ├── PeopleListBottomSheet.kt
│       │   │                   ├── PeopleListUiState.kt
│       │   │                   ├── PeopleListViewModel.kt
│       │   │                   ├── cases/
│       │   │                   │   └── PeopleListItemsCase.kt
│       │   │                   └── recycler/
│       │   │                       ├── PeopleItemDiffCallback.kt
│       │   │                       ├── PeopleListAdapter.kt
│       │   │                       ├── PeopleListItem.kt
│       │   │                       └── views/
│       │   │                           ├── PeopleListHeaderView.kt
│       │   │                           └── PeopleListItemView.kt
│       │   └── res/
│       │       ├── color/
│       │       │   ├── selector_search_chip_background.xml
│       │       │   └── selector_search_chip_text.xml
│       │       ├── drawable/
│       │       │   ├── bg_indicator_circle.xml
│       │       │   ├── bg_person_image_elevation.xml
│       │       │   └── bg_person_placeholder.xml
│       │       ├── drawable-notnight/
│       │       │   └── bg_indicator_circle.xml
│       │       ├── layout/
│       │       │   ├── fragment_person_gallery.xml
│       │       │   ├── view_people_list.xml
│       │       │   ├── view_people_list_header.xml
│       │       │   ├── view_people_list_item.xml
│       │       │   ├── view_person_details.xml
│       │       │   ├── view_person_details_bio.xml
│       │       │   ├── view_person_details_credits_item.xml
│       │       │   ├── view_person_details_filters.xml
│       │       │   ├── view_person_details_header.xml
│       │       │   ├── view_person_details_info.xml
│       │       │   ├── view_person_details_loading.xml
│       │       │   ├── view_person_gallery_image.xml
│       │       │   └── view_person_links.xml
│       │       ├── layout-sw600dp/
│       │       │   └── view_person_details_credits_item.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   └── dimens.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── ui_people/
│                           └── ExampleUnitTest.kt
├── ui-premium/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_premium/
│           │               ├── PremiumFragment.kt
│           │               ├── PremiumUiEvent.kt
│           │               ├── PremiumUiState.kt
│           │               ├── PremiumViewModel.kt
│           │               └── views/
│           │                   └── PurchaseItemView.kt
│           └── res/
│               ├── drawable/
│               │   ├── divider_purchase_items.xml
│               │   ├── ic_flash.xml
│               │   ├── ic_genie.xml
│               │   ├── ic_homer.xml
│               │   ├── ic_spongebob.xml
│               │   ├── ic_walter_white.xml
│               │   ├── ic_yoda.xml
│               │   └── ic_zoidberg.xml
│               ├── layout/
│               │   ├── fragment_premium.xml
│               │   └── view_purchase_item.xml
│               ├── values/
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-progress/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_progress/
│           │               ├── calendar/
│           │               │   ├── CalendarFragment.kt
│           │               │   ├── CalendarUiState.kt
│           │               │   ├── CalendarViewModel.kt
│           │               │   ├── cases/
│           │               │   │   ├── CalendarRatingsCase.kt
│           │               │   │   └── items/
│           │               │   │       ├── CalendarFutureCase.kt
│           │               │   │       ├── CalendarItemsCase.kt
│           │               │   │       └── CalendarRecentsCase.kt
│           │               │   ├── helpers/
│           │               │   │   ├── WatchlistAppender.kt
│           │               │   │   ├── filters/
│           │               │   │   │   ├── CalendarFilter.kt
│           │               │   │   │   ├── CalendarFutureFilter.kt
│           │               │   │   │   └── CalendarRecentsFilter.kt
│           │               │   │   └── groupers/
│           │               │   │       ├── CalendarFutureGrouper.kt
│           │               │   │       ├── CalendarGrouper.kt
│           │               │   │       └── CalendarRecentsGrouper.kt
│           │               │   ├── recycler/
│           │               │   │   ├── CalendarAdapter.kt
│           │               │   │   ├── CalendarItemDiffCallback.kt
│           │               │   │   └── CalendarListItem.kt
│           │               │   └── views/
│           │               │       ├── CalendarHeaderView.kt
│           │               │       └── CalendarItemView.kt
│           │               ├── helpers/
│           │               │   ├── ProgressItemsSorter.kt
│           │               │   ├── ProgressLayoutManagerProvider.kt
│           │               │   ├── TopOverscrollAdapter.kt
│           │               │   └── TranslationsBundle.kt
│           │               ├── main/
│           │               │   ├── ProgressMainFragment.kt
│           │               │   ├── ProgressMainUiEvents.kt
│           │               │   ├── ProgressMainUiState.kt
│           │               │   ├── ProgressMainViewModel.kt
│           │               │   ├── adapters/
│           │               │   │   └── ProgressMainAdapter.kt
│           │               │   └── cases/
│           │               │       └── ProgressMainEpisodesCase.kt
│           │               └── progress/
│           │                   ├── ProgressFragment.kt
│           │                   ├── ProgressUiState.kt
│           │                   ├── ProgressViewModel.kt
│           │                   ├── cases/
│           │                   │   ├── ProgressFiltersCase.kt
│           │                   │   ├── ProgressHeadersCase.kt
│           │                   │   ├── ProgressItemsCase.kt
│           │                   │   ├── ProgressRatingsCase.kt
│           │                   │   └── ProgressSortOrderCase.kt
│           │                   ├── recycler/
│           │                   │   ├── ProgressAdapter.kt
│           │                   │   ├── ProgressItemDiffCallback.kt
│           │                   │   └── ProgressListItem.kt
│           │                   └── views/
│           │                       ├── ProgressFiltersView.kt
│           │                       ├── ProgressHeaderView.kt
│           │                       └── ProgressItemView.kt
│           └── res/
│               ├── layout/
│               │   ├── fragment_calendar.xml
│               │   ├── fragment_progress.xml
│               │   ├── fragment_progress_main.xml
│               │   ├── layout_calendar_empty.xml
│               │   ├── layout_progress_empty.xml
│               │   ├── layout_recents_empty.xml
│               │   ├── view_calendar_header.xml
│               │   ├── view_calendar_item.xml
│               │   ├── view_progress_filters.xml
│               │   ├── view_progress_header.xml
│               │   └── view_progress_item.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-ar/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-de/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-pt/
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-progress-movies/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_progress_movies/
│       │   │               ├── calendar/
│       │   │               │   ├── CalendarMoviesFragment.kt
│       │   │               │   ├── CalendarMoviesUiState.kt
│       │   │               │   ├── CalendarMoviesViewModel.kt
│       │   │               │   ├── cases/
│       │   │               │   │   ├── CalendarMoviesRatingsCase.kt
│       │   │               │   │   └── items/
│       │   │               │   │       ├── CalendarMoviesFutureCase.kt
│       │   │               │   │       ├── CalendarMoviesItemsCase.kt
│       │   │               │   │       └── CalendarMoviesRecentsCase.kt
│       │   │               │   ├── helpers/
│       │   │               │   │   ├── filters/
│       │   │               │   │   │   ├── CalendarFilter.kt
│       │   │               │   │   │   ├── CalendarFutureFilter.kt
│       │   │               │   │   │   └── CalendarRecentsFilter.kt
│       │   │               │   │   ├── groupers/
│       │   │               │   │   │   ├── CalendarFutureGrouper.kt
│       │   │               │   │   │   ├── CalendarGrouper.kt
│       │   │               │   │   │   └── CalendarRecentsGrouper.kt
│       │   │               │   │   └── sorter/
│       │   │               │   │       ├── CalendarFutureSorter.kt
│       │   │               │   │       ├── CalendarRecentsSorter.kt
│       │   │               │   │       └── CalendarSorter.kt
│       │   │               │   ├── recycler/
│       │   │               │   │   ├── CalendarMovieItemDiffCallback.kt
│       │   │               │   │   ├── CalendarMovieListItem.kt
│       │   │               │   │   └── CalendarMoviesAdapter.kt
│       │   │               │   └── views/
│       │   │               │       ├── CalendarMoviesHeaderView.kt
│       │   │               │       └── CalendarMoviesItemView.kt
│       │   │               ├── helpers/
│       │   │               │   ├── ProgressMoviesItemsSorter.kt
│       │   │               │   ├── ProgressMoviesLayoutManagerProvider.kt
│       │   │               │   └── TopOverscrollAdapter.kt
│       │   │               ├── main/
│       │   │               │   ├── ProgressMoviesMainAdapter.kt
│       │   │               │   ├── ProgressMoviesMainFragment.kt
│       │   │               │   ├── ProgressMoviesMainUiEvents.kt
│       │   │               │   ├── ProgressMoviesMainUiState.kt
│       │   │               │   ├── ProgressMoviesMainViewModel.kt
│       │   │               │   └── cases/
│       │   │               │       └── ProgressMoviesMainCase.kt
│       │   │               └── progress/
│       │   │                   ├── ProgressMoviesFragment.kt
│       │   │                   ├── ProgressMoviesUiState.kt
│       │   │                   ├── ProgressMoviesViewModel.kt
│       │   │                   ├── cases/
│       │   │                   │   ├── ProgressMoviesItemsCase.kt
│       │   │                   │   ├── ProgressMoviesPinnedCase.kt
│       │   │                   │   └── ProgressMoviesSortCase.kt
│       │   │                   ├── recycler/
│       │   │                   │   ├── ProgressMovieItemDiffCallback.kt
│       │   │                   │   ├── ProgressMovieListItem.kt
│       │   │                   │   └── ProgressMoviesAdapter.kt
│       │   │                   └── views/
│       │   │                       ├── ProgressMoviesFiltersView.kt
│       │   │                       └── ProgressMoviesItemView.kt
│       │   └── res/
│       │       ├── layout/
│       │       │   ├── fragment_calendar_movies.xml
│       │       │   ├── fragment_progress_main_movies.xml
│       │       │   ├── fragment_progress_movies.xml
│       │       │   ├── layout_calendar_movies_future_empty.xml
│       │       │   ├── layout_calendar_movies_recents_empty.xml
│       │       │   ├── layout_progress_movies_empty.xml
│       │       │   ├── view_calendar_movies_header.xml
│       │       │   ├── view_progress_movies_calendar_item.xml
│       │       │   ├── view_progress_movies_filters.xml
│       │       │   └── view_progress_movies_main_item.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   └── dimens.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── ui_progress_movies/
│                           ├── BaseMockTest.kt
│                           ├── calendar/
│                           │   ├── CalendarMoviesViewModelTest.kt
│                           │   ├── cases/
│                           │   │   └── CalendarMoviesRatingsCaseTest.kt
│                           │   └── helpers/
│                           │       ├── filters/
│                           │       │   ├── CalendarFutureFilterTest.kt
│                           │       │   └── CalendarRecentsFilterTest.kt
│                           │       ├── groupers/
│                           │       │   ├── CalendarFutureGrouperTest.kt
│                           │       │   └── CalendarRecentsGrouperTest.kt
│                           │       └── sorter/
│                           │           ├── CalendarFutureSorterTest.kt
│                           │           └── CalendarRecentsSorterTest.kt
│                           ├── main/
│                           │   ├── ProgressMoviesMainViewModelTest.kt
│                           │   └── cases/
│                           │       └── ProgressMoviesMainCaseTest.kt
│                           └── progress/
│                               ├── ProgressMoviesViewModelTest.kt
│                               └── cases/
│                                   ├── ProgressMoviesItemsCaseTest.kt
│                                   ├── ProgressMoviesPinnedCaseTest.kt
│                                   └── ProgressMoviesSortCaseTest.kt
├── ui-search/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_search/
│       │   │               ├── SearchFragment.kt
│       │   │               ├── SearchUiState.kt
│       │   │               ├── SearchViewModel.kt
│       │   │               ├── cases/
│       │   │               │   ├── SearchFiltersCase.kt
│       │   │               │   ├── SearchInvalidateItemCase.kt
│       │   │               │   ├── SearchQueryCase.kt
│       │   │               │   ├── SearchRecentsCase.kt
│       │   │               │   ├── SearchSortingCase.kt
│       │   │               │   ├── SearchSuggestionsCase.kt
│       │   │               │   └── SearchTranslationsCase.kt
│       │   │               ├── recycler/
│       │   │               │   ├── SearchAdapter.kt
│       │   │               │   ├── SearchItemDiffCallback.kt
│       │   │               │   ├── SearchListItem.kt
│       │   │               │   └── suggestions/
│       │   │               │       ├── SuggestionAdapter.kt
│       │   │               │       └── SuggestionItemDiffCallback.kt
│       │   │               ├── utilities/
│       │   │               │   ├── SearchLayoutManagerProvider.kt
│       │   │               │   ├── SearchOptions.kt
│       │   │               │   └── TextWatcherAdapter.kt
│       │   │               └── views/
│       │   │                   ├── InitialSearchView.kt
│       │   │                   ├── RecentSearchView.kt
│       │   │                   ├── SearchFiltersView.kt
│       │   │                   ├── SearchItemView.kt
│       │   │                   └── SearchSuggestionView.kt
│       │   └── res/
│       │       ├── color/
│       │       │   ├── selector_search_chip_background.xml
│       │       │   └── selector_search_chip_text.xml
│       │       ├── color-notnight/
│       │       │   └── selector_search_chip_background.xml
│       │       ├── drawable/
│       │       │   └── bg_suggestions.xml
│       │       ├── layout/
│       │       │   ├── fragment_search.xml
│       │       │   ├── view_search_filters.xml
│       │       │   ├── view_search_initial.xml
│       │       │   ├── view_search_recent.xml
│       │       │   ├── view_show_search.xml
│       │       │   └── view_suggestion_search.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   └── dimens.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               └── com.michaldrabik.ui_search/
│                   ├── BaseMockTest.kt
│                   ├── SearchViewModelTest.kt
│                   ├── cases/
│                   │   ├── SearchFiltersCaseTest.kt
│                   │   ├── SearchQueryCaseTest.kt
│                   │   ├── SearchRecentsCaseTest.kt
│                   │   ├── SearchSortingCaseTest.kt
│                   │   ├── SearchSuggestionsCaseTest.kt
│                   │   └── SearchTranslationsCaseTest.kt
│                   └── helpers/
│                       └── TestData.kt
├── ui-settings/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── androidTest/
│       │   └── java/
│       │       └── com/
│       │           └── michaldrabik/
│       │               └── ui_settings/
│       │                   └── ExampleInstrumentedTest.kt
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_settings/
│       │   │               ├── SettingsFragment.kt
│       │   │               ├── SettingsUiState.kt
│       │   │               ├── SettingsViewModel.kt
│       │   │               ├── helpers/
│       │   │               │   ├── AppLanguage.kt
│       │   │               │   ├── AppTheme.kt
│       │   │               │   └── WidgetTransparency.kt
│       │   │               └── sections/
│       │   │                   ├── general/
│       │   │                   │   ├── SettingsGeneralFragment.kt
│       │   │                   │   ├── SettingsGeneralUiState.kt
│       │   │                   │   ├── SettingsGeneralViewModel.kt
│       │   │                   │   └── cases/
│       │   │                   │       ├── SettingsGeneralMainCase.kt
│       │   │                   │       ├── SettingsGeneralStreamingsCase.kt
│       │   │                   │       └── SettingsGeneralThemesCase.kt
│       │   │                   ├── misc/
│       │   │                   │   ├── SettingsMiscFragment.kt
│       │   │                   │   ├── SettingsMiscUiState.kt
│       │   │                   │   ├── SettingsMiscViewModel.kt
│       │   │                   │   └── cases/
│       │   │                   │       ├── SettingsMiscCacheCase.kt
│       │   │                   │       └── SettingsMiscUserCase.kt
│       │   │                   ├── notifications/
│       │   │                   │   ├── SettingsNotificationsFragment.kt
│       │   │                   │   ├── SettingsNotificationsUiEvent.kt
│       │   │                   │   ├── SettingsNotificationsUiState.kt
│       │   │                   │   ├── SettingsNotificationsViewModel.kt
│       │   │                   │   ├── cases/
│       │   │                   │   │   └── SettingsNotificationsMainCase.kt
│       │   │                   │   └── views/
│       │   │                   │       └── NotificationsRationaleView.kt
│       │   │                   ├── spoilers/
│       │   │                   │   ├── SettingsSpoilersFragment.kt
│       │   │                   │   ├── SettingsSpoilersUiState.kt
│       │   │                   │   ├── SettingsSpoilersViewModel.kt
│       │   │                   │   ├── episodes/
│       │   │                   │   │   ├── SpoilersEpisodesBottomSheet.kt
│       │   │                   │   │   ├── SpoilersEpisodesUiState.kt
│       │   │                   │   │   └── SpoilersEpisodesViewModel.kt
│       │   │                   │   ├── helpers/
│       │   │                   │   │   └── SettingsSpoilersHelper.kt
│       │   │                   │   ├── movies/
│       │   │                   │   │   ├── SpoilersMoviesBottomSheet.kt
│       │   │                   │   │   ├── SpoilersMoviesUiState.kt
│       │   │                   │   │   └── SpoilersMoviesViewModel.kt
│       │   │                   │   └── shows/
│       │   │                   │       ├── SpoilersShowsBottomSheet.kt
│       │   │                   │       ├── SpoilersShowsUiState.kt
│       │   │                   │       └── SpoilersShowsViewModel.kt
│       │   │                   ├── trakt/
│       │   │                   │   ├── SettingsTraktFragment.kt
│       │   │                   │   ├── SettingsTraktUiEvent.kt
│       │   │                   │   ├── SettingsTraktUiState.kt
│       │   │                   │   ├── SettingsTraktViewModel.kt
│       │   │                   │   ├── cases/
│       │   │                   │   │   ├── SettingsRatingsCase.kt
│       │   │                   │   │   ├── SettingsTraktCase.kt
│       │   │                   │   │   └── SettingsTraktMainCase.kt
│       │   │                   │   └── views/
│       │   │                   │       └── TraktNotificationsRationaleView.kt
│       │   │                   └── widgets/
│       │   │                       ├── SettingsWidgetsFragment.kt
│       │   │                       ├── SettingsWidgetsUiState.kt
│       │   │                       ├── SettingsWidgetsViewModel.kt
│       │   │                       └── cases/
│       │   │                           ├── SettingsWidgetsMainCase.kt
│       │   │                           └── SettingsWidgetsThemesCase.kt
│       │   └── res/
│       │       ├── drawable/
│       │       │   └── bg_premium_ad.xml
│       │       ├── layout/
│       │       │   ├── fragment_settings.xml
│       │       │   ├── fragment_settings_general.xml
│       │       │   ├── fragment_settings_misc.xml
│       │       │   ├── fragment_settings_notifications.xml
│       │       │   ├── fragment_settings_spoilers.xml
│       │       │   ├── fragment_settings_trakt.xml
│       │       │   ├── fragment_settings_widgets.xml
│       │       │   ├── sheet_spoilers_episodes.xml
│       │       │   ├── sheet_spoilers_movies.xml
│       │       │   ├── sheet_spoilers_shows.xml
│       │       │   ├── view_notifications_rationale.xml
│       │       │   └── view_trakt_notifications_rationale.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   ├── strings.xml
│       │       │   └── styles.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   ├── dimens.xml
│       │       │   └── styles.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               └── com/
│                   └── michaldrabik/
│                       └── ui_settings/
│                           └── ExampleUnitTest.kt
├── ui-show/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_show/
│           │               ├── ShowDetailsFragment.kt
│           │               ├── ShowDetailsUiEvents.kt
│           │               ├── ShowDetailsUiState.kt
│           │               ├── ShowDetailsViewModel.kt
│           │               ├── cases/
│           │               │   ├── ShowDetailsHiddenCase.kt
│           │               │   ├── ShowDetailsListsCase.kt
│           │               │   ├── ShowDetailsMainCase.kt
│           │               │   ├── ShowDetailsMyShowsCase.kt
│           │               │   ├── ShowDetailsTranslationCase.kt
│           │               │   └── ShowDetailsWatchlistCase.kt
│           │               ├── episodes/
│           │               │   ├── ShowDetailsEpisodesFragment.kt
│           │               │   ├── ShowDetailsEpisodesUiEvents.kt
│           │               │   ├── ShowDetailsEpisodesUiState.kt
│           │               │   ├── ShowDetailsEpisodesViewModel.kt
│           │               │   ├── cases/
│           │               │   │   ├── EpisodesAnnouncementsCase.kt
│           │               │   │   ├── EpisodesLoadShowCase.kt
│           │               │   │   ├── EpisodesMarkWatchedCase.kt
│           │               │   │   ├── EpisodesRatingCase.kt
│           │               │   │   ├── EpisodesSetEpisodeWatchedCase.kt
│           │               │   │   ├── EpisodesSetSeasonWatchedCase.kt
│           │               │   │   └── EpisodesTranslationCase.kt
│           │               │   └── recycler/
│           │               │       ├── EpisodeListItem.kt
│           │               │       ├── EpisodeListItemDiffCallback.kt
│           │               │       ├── EpisodeView.kt
│           │               │       └── EpisodesAdapter.kt
│           │               ├── helpers/
│           │               │   └── ShowDetailsMeta.kt
│           │               ├── quicksetup/
│           │               │   ├── QuickSetupAdapter.kt
│           │               │   ├── QuickSetupItemDiffCallback.kt
│           │               │   ├── QuickSetupListItem.kt
│           │               │   ├── QuickSetupView.kt
│           │               │   └── views/
│           │               │       ├── QuickSetupHeaderView.kt
│           │               │       └── QuickSetupItemView.kt
│           │               ├── sections/
│           │               │   ├── nextepisode/
│           │               │   │   ├── ShowDetailsNextEpisodeFragment.kt
│           │               │   │   ├── ShowDetailsNextEpisodeUiState.kt
│           │               │   │   ├── ShowDetailsNextEpisodeViewModel.kt
│           │               │   │   ├── cases/
│           │               │   │   │   ├── ShowDetailsNextEpisodeCase.kt
│           │               │   │   │   ├── ShowDetailsTranslationCase.kt
│           │               │   │   │   └── ShowDetailsWatchedCase.kt
│           │               │   │   └── helpers/
│           │               │   │       └── NextEpisodeBundle.kt
│           │               │   ├── people/
│           │               │   │   ├── ShowDetailsPeopleFragment.kt
│           │               │   │   ├── ShowDetailsPeopleUiState.kt
│           │               │   │   ├── ShowDetailsPeopleViewModel.kt
│           │               │   │   ├── cases/
│           │               │   │   │   └── ShowDetailsPeopleCase.kt
│           │               │   │   └── recycler/
│           │               │   │       ├── ActorView.kt
│           │               │   │       └── ActorsAdapter.kt
│           │               │   ├── ratings/
│           │               │   │   ├── ShowDetailsRatingsFragment.kt
│           │               │   │   ├── ShowDetailsRatingsUiState.kt
│           │               │   │   ├── ShowDetailsRatingsViewModel.kt
│           │               │   │   ├── ShowLink.kt
│           │               │   │   └── cases/
│           │               │   │       ├── ShowDetailsRatingCase.kt
│           │               │   │       └── ShowDetailsRatingSpoilersCase.kt
│           │               │   ├── related/
│           │               │   │   ├── ShowDetailsRelatedFragment.kt
│           │               │   │   ├── ShowDetailsRelatedUiState.kt
│           │               │   │   ├── ShowDetailsRelatedViewModel.kt
│           │               │   │   ├── cases/
│           │               │   │   │   └── ShowDetailsRelatedCase.kt
│           │               │   │   └── recycler/
│           │               │   │       ├── RelatedItemDiffCallback.kt
│           │               │   │       ├── RelatedListItem.kt
│           │               │   │       ├── RelatedShowAdapter.kt
│           │               │   │       └── RelatedShowView.kt
│           │               │   ├── seasons/
│           │               │   │   ├── ShowDetailsSeasonsFragment.kt
│           │               │   │   ├── ShowDetailsSeasonsUiEvents.kt
│           │               │   │   ├── ShowDetailsSeasonsUiState.kt
│           │               │   │   ├── ShowDetailsSeasonsViewModel.kt
│           │               │   │   ├── cases/
│           │               │   │   │   ├── ShowDetailsLoadSeasonsCase.kt
│           │               │   │   │   ├── ShowDetailsQuickProgressCase.kt
│           │               │   │   │   └── ShowDetailsWatchedSeasonCase.kt
│           │               │   │   ├── helpers/
│           │               │   │   │   ├── SeasonsBundle.kt
│           │               │   │   │   └── SeasonsCache.kt
│           │               │   │   └── recycler/
│           │               │   │       ├── SeasonListItem.kt
│           │               │   │       ├── SeasonListItemDiffCallback.kt
│           │               │   │       ├── SeasonView.kt
│           │               │   │       ├── SeasonsAdapter.kt
│           │               │   │       └── helpers/
│           │               │   │           ├── SeasonsGridItemDecoration.kt
│           │               │   │           └── SeasonsLayoutManagerProvider.kt
│           │               │   └── streamings/
│           │               │       ├── ShowDetailsStreamingsFragment.kt
│           │               │       ├── ShowDetailsStreamingsUiState.kt
│           │               │       ├── ShowDetailsStreamingsViewModel.kt
│           │               │       └── cases/
│           │               │           └── ShowDetailsStreamingCase.kt
│           │               └── views/
│           │                   └── AddToShowsButton.kt
│           └── res/
│               ├── drawable/
│               │   ├── divider_horizontal_list.xml
│               │   ├── ic_arrow_right.xml
│               │   ├── ic_locked.xml
│               │   ├── ic_quick_setup.xml
│               │   └── ic_unlocked.xml
│               ├── drawable-ar/
│               │   └── ic_arrow_right.xml
│               ├── layout/
│               │   ├── fragment_show_details.xml
│               │   ├── fragment_show_details_episodes.xml
│               │   ├── fragment_show_details_next_episode.xml
│               │   ├── fragment_show_details_people.xml
│               │   ├── fragment_show_details_ratings.xml
│               │   ├── fragment_show_details_related.xml
│               │   ├── fragment_show_details_seasons.xml
│               │   ├── fragment_show_details_streamings.xml
│               │   ├── view_actor.xml
│               │   ├── view_add_to_shows_button.xml
│               │   ├── view_episode.xml
│               │   ├── view_quick_setup.xml
│               │   ├── view_quick_setup_header.xml
│               │   ├── view_quick_setup_item.xml
│               │   ├── view_related_show.xml
│               │   └── view_season.xml
│               ├── layout-sw600dp/
│               │   ├── fragment_show_details.xml
│               │   ├── fragment_show_details_next_episode.xml
│               │   ├── fragment_show_details_people.xml
│               │   ├── fragment_show_details_related.xml
│               │   ├── fragment_show_details_seasons.xml
│               │   └── view_season.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-fi/
│               │   └── strings.xml
│               ├── values-fr/
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-pt/
│               │   ├── dimens.xml
│               │   └── strings.xml
│               ├── values-ru/
│               │   └── strings.xml
│               ├── values-sw600dp/
│               │   └── dimens.xml
│               ├── values-tr/
│               │   └── strings.xml
│               ├── values-uk/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── values-zh/
│                   └── strings.xml
├── ui-statistics/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_statistics/
│       │   │               ├── StatisticsFragment.kt
│       │   │               ├── StatisticsUiState.kt
│       │   │               ├── StatisticsViewModel.kt
│       │   │               ├── cases/
│       │   │               │   └── StatisticsLoadRatingsCase.kt
│       │   │               └── views/
│       │   │                   ├── StatisticsTopGenresView.kt
│       │   │                   ├── StatisticsTotalEpisodesView.kt
│       │   │                   ├── StatisticsTotalTimeSpentView.kt
│       │   │                   ├── mostWatched/
│       │   │                   │   ├── StatisticsMostWatchedItem.kt
│       │   │                   │   ├── StatisticsMostWatchedItemView.kt
│       │   │                   │   ├── StatisticsMostWatchedShowsView.kt
│       │   │                   │   └── recycler/
│       │   │                   │       ├── MostWatchedAdapter.kt
│       │   │                   │       └── MostWatchedItemDiffCallback.kt
│       │   │                   └── ratings/
│       │   │                       ├── StatisticsRateItemView.kt
│       │   │                       ├── StatisticsRatingsView.kt
│       │   │                       └── recycler/
│       │   │                           ├── StatisticsRatingItem.kt
│       │   │                           ├── StatisticsRatingsAdapter.kt
│       │   │                           └── StatisticsRatingsDiffCallback.kt
│       │   └── res/
│       │       ├── drawable/
│       │       │   ├── divider_statistics_most_watched.xml
│       │       │   └── divider_statistics_ratings.xml
│       │       ├── layout/
│       │       │   ├── fragment_statistics.xml
│       │       │   ├── layout_statistics_empty.xml
│       │       │   ├── view_statistics_card_most_watched_shows.xml
│       │       │   ├── view_statistics_card_ratings.xml
│       │       │   ├── view_statistics_card_top_genre.xml
│       │       │   ├── view_statistics_card_total_episodes.xml
│       │       │   ├── view_statistics_card_total_time.xml
│       │       │   ├── view_statistics_most_watched_item.xml
│       │       │   └── view_statistics_rate_item.xml
│       │       ├── layout-sw600dp/
│       │       │   └── fragment_statistics.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   ├── strings.xml
│       │       │   └── styles.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-notnight/
│       │       │   └── dimens.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   └── dimens.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               ├── BaseMockTest.kt
│               ├── TestData.kt
│               └── com/
│                   └── michaldrabik/
│                       └── ui_statistics/
│                           ├── StatisticsViewModelTest.kt
│                           └── cases/
│                               └── StatisticsLoadRatingsCaseTest.kt
├── ui-statistics-movies/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_statistics_movies/
│       │   │               ├── StatisticsMoviesFragment.kt
│       │   │               ├── StatisticsMoviesUiState.kt
│       │   │               ├── StatisticsMoviesViewModel.kt
│       │   │               ├── cases/
│       │   │               │   └── StatisticsMoviesLoadRatingsCase.kt
│       │   │               └── views/
│       │   │                   ├── StatisticsMoviesTopGenresView.kt
│       │   │                   ├── StatisticsMoviesTotalMoviesView.kt
│       │   │                   ├── StatisticsMoviesTotalTimeSpentView.kt
│       │   │                   └── ratings/
│       │   │                       ├── StatisticsMoviesRateItemView.kt
│       │   │                       ├── StatisticsMoviesRatingsView.kt
│       │   │                       └── recycler/
│       │   │                           ├── StatisticsMoviesRatingItem.kt
│       │   │                           ├── StatisticsMoviesRatingsAdapter.kt
│       │   │                           └── StatisticsMoviesRatingsDiffCallback.kt
│       │   └── res/
│       │       ├── drawable/
│       │       │   └── divider_statistics_ratings.xml
│       │       ├── layout/
│       │       │   ├── fragment_statistics_movies.xml
│       │       │   ├── layout_statistics_movies_empty.xml
│       │       │   ├── view_statistics_movies_card_ratings.xml
│       │       │   ├── view_statistics_movies_card_top_genre.xml
│       │       │   ├── view_statistics_movies_card_total_movies.xml
│       │       │   ├── view_statistics_movies_card_total_time.xml
│       │       │   └── view_statistics_movies_rate_item.xml
│       │       ├── layout-sw600dp/
│       │       │   └── fragment_statistics_movies.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-notnight/
│       │       │   └── dimens.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               ├── BaseMockTest.kt
│               └── com/
│                   └── michaldrabik/
│                       └── ui_statistics_movies/
│                           ├── StatisticsMoviesViewModelTest.kt
│                           └── cases/
│                               └── StatisticsMoviesLoadRatingsCaseTest.kt
├── ui-streamings/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_streamings/
│           │               ├── recycler/
│           │               │   ├── StreamingAdapter.kt
│           │               │   └── StreamingItemDiffCallback.kt
│           │               └── views/
│           │                   └── StreamingView.kt
│           └── res/
│               ├── drawable/
│               │   ├── bg_streaming.xml
│               │   └── bg_streaming_ripple.xml
│               ├── layout/
│               │   └── view_streaming.xml
│               ├── layout-sw600dp/
│               │   └── view_streaming.xml
│               ├── values/
│               │   └── dimens.xml
│               └── values-sw600dp/
│                   └── dimens.xml
├── ui-trakt-sync/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       ├── main/
│       │   ├── AndroidManifest.xml
│       │   ├── java/
│       │   │   └── com/
│       │   │       └── michaldrabik/
│       │   │           └── ui_trakt_sync/
│       │   │               ├── TraktSyncFragment.kt
│       │   │               ├── TraktSyncUiEvent.kt
│       │   │               ├── TraktSyncUiState.kt
│       │   │               ├── TraktSyncViewModel.kt
│       │   │               ├── cases/
│       │   │               │   └── TraktSyncRatingsCase.kt
│       │   │               └── views/
│       │   │                   └── NotificationsRationaleView.kt
│       │   └── res/
│       │       ├── drawable/
│       │       │   └── ic_sync.xml
│       │       ├── layout/
│       │       │   ├── fragment_trakt_sync.xml
│       │       │   └── view_trakt_notifications_rationale.xml
│       │       ├── values/
│       │       │   ├── dimens.xml
│       │       │   └── strings.xml
│       │       ├── values-ar/
│       │       │   └── strings.xml
│       │       ├── values-de/
│       │       │   └── strings.xml
│       │       ├── values-es/
│       │       │   └── strings.xml
│       │       ├── values-fi/
│       │       │   └── strings.xml
│       │       ├── values-fr/
│       │       │   └── strings.xml
│       │       ├── values-it/
│       │       │   └── strings.xml
│       │       ├── values-pl/
│       │       │   └── strings.xml
│       │       ├── values-pt/
│       │       │   └── strings.xml
│       │       ├── values-ru/
│       │       │   └── strings.xml
│       │       ├── values-sw600dp/
│       │       │   └── dimens.xml
│       │       ├── values-tr/
│       │       │   └── strings.xml
│       │       ├── values-uk/
│       │       │   └── strings.xml
│       │       ├── values-vi/
│       │       │   └── strings.xml
│       │       └── values-zh/
│       │           └── strings.xml
│       └── test/
│           └── java/
│               ├── BaseMockTest.kt
│               └── com/
│                   └── michaldrabik/
│                       └── ui_trakt_sync/
│                           └── TraktSyncViewModelTest.kt
├── ui-widgets/
│   ├── .gitignore
│   ├── build.gradle
│   └── src/
│       └── main/
│           ├── AndroidManifest.xml
│           ├── java/
│           │   └── com/
│           │       └── michaldrabik/
│           │           └── ui_widgets/
│           │               ├── BaseWidgetProvider.kt
│           │               ├── calendar/
│           │               │   ├── CalendarWidgetProvider.kt
│           │               │   ├── CalendarWidgetService.kt
│           │               │   └── CalendarWidgetViewsFactory.kt
│           │               ├── calendar_movies/
│           │               │   ├── CalendarMoviesWidgetProvider.kt
│           │               │   ├── CalendarMoviesWidgetService.kt
│           │               │   └── CalendarMoviesWidgetViewsFactory.kt
│           │               ├── progress/
│           │               │   ├── ProgressWidgetEpisodeCheckService.kt
│           │               │   ├── ProgressWidgetProvider.kt
│           │               │   ├── ProgressWidgetService.kt
│           │               │   └── ProgressWidgetViewsFactory.kt
│           │               ├── progress_movies/
│           │               │   ├── ProgressMoviesWidgetCheckService.kt
│           │               │   ├── ProgressMoviesWidgetProvider.kt
│           │               │   ├── ProgressMoviesWidgetService.kt
│           │               │   └── ProgressMoviesWidgetViewsFactory.kt
│           │               └── search/
│           │                   └── SearchWidgetProvider.kt
│           └── res/
│               ├── drawable/
│               │   ├── bg_widget.xml
│               │   ├── bg_widget_0.xml
│               │   ├── bg_widget_25.xml
│               │   ├── bg_widget_50.xml
│               │   ├── bg_widget_75.xml
│               │   ├── bg_widget_check_button.xml
│               │   ├── bg_widget_media_view_elevation.xml
│               │   ├── bg_widget_search.xml
│               │   └── bg_widget_toolbar.xml
│               ├── layout/
│               │   ├── layout_widget_calendar.xml
│               │   ├── layout_widget_calendar_item.xml
│               │   ├── layout_widget_header.xml
│               │   ├── layout_widget_movies_calendar.xml
│               │   ├── layout_widget_movies_calendar_item.xml
│               │   ├── layout_widget_movies_progress.xml
│               │   ├── layout_widget_movies_progress_item.xml
│               │   ├── layout_widget_progress.xml
│               │   ├── layout_widget_progress_item.xml
│               │   ├── widget_calendar_day.xml
│               │   ├── widget_calendar_item_day.xml
│               │   ├── widget_calendar_item_night.xml
│               │   ├── widget_calendar_night.xml
│               │   ├── widget_header_day.xml
│               │   ├── widget_header_night.xml
│               │   ├── widget_loading_item.xml
│               │   ├── widget_movies_calendar_day.xml
│               │   ├── widget_movies_calendar_item_day.xml
│               │   ├── widget_movies_calendar_item_night.xml
│               │   ├── widget_movies_calendar_night.xml
│               │   ├── widget_movies_progress_day.xml
│               │   ├── widget_movies_progress_item_day.xml
│               │   ├── widget_movies_progress_item_night.xml
│               │   ├── widget_movies_progress_night.xml
│               │   ├── widget_progress_day.xml
│               │   ├── widget_progress_item_day.xml
│               │   ├── widget_progress_item_night.xml
│               │   ├── widget_progress_night.xml
│               │   └── widget_search.xml
│               ├── values/
│               │   ├── dimens.xml
│               │   ├── strings.xml
│               │   └── styles.xml
│               ├── values-ar/
│               │   └── strings.xml
│               ├── values-de/
│               │   └── strings.xml
│               ├── values-es/
│               │   └── strings.xml
│               ├── values-it/
│               │   └── strings.xml
│               ├── values-pl/
│               │   └── strings.xml
│               ├── values-vi/
│               │   └── strings.xml
│               └── xml/
│                   ├── calendar_movies_widgets_provider.xml
│                   ├── calendar_widgets_provider.xml
│                   ├── progress_movies_widgets_provider.xml
│                   ├── progress_widgets_provider.xml
│                   └── search_widgets_provider.xml
└── versions.gradle
Condensed preview — 2285 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (5,299K chars).
[
  {
    "path": ".editorconfig",
    "chars": 103,
    "preview": "[*.{kt,kts}]\nindent_size=2\ninsert_final_newline=true\nmax_line_length=150\ndisabled_rules=import-ordering"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug-problem-report.md",
    "chars": 523,
    "preview": "---\nname: Bug/Problem Report\nabout: Create a report of bug/problem you have encountered\ntitle: ''\nlabels: ''\nassignees: "
  },
  {
    "path": ".gitignore",
    "chars": 143,
    "preview": "*.iml\n.gradle\n/local.properties\n/.idea\n.DS_Store\n/build\n/captures\n.externalNativeBuild\n.cxx\nktlint2.jar\n/app/keystore.pr"
  },
  {
    "path": "LICENSE",
    "chars": 35149,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "README.md",
    "chars": 3440,
    "preview": "![Version](https://img.shields.io/github/v/tag/1RandomDev/showly-oss?style=flat&label=Version)\n![Downloads](https://img."
  },
  {
    "path": "app/.gitignore",
    "chars": 16,
    "preview": "/build\n/release\n"
  },
  {
    "path": "app/build.gradle",
    "chars": 3253,
    "preview": "plugins {\n  id 'com.android.application'\n  id 'kotlin-android'\n  id 'com.google.devtools.ksp'\n  id 'dagger.hilt.android."
  },
  {
    "path": "app/proguard-rules.pro",
    "chars": 805,
    "preview": "# Add project specific ProGuard rules here.\n# You can control the set of applied configuration files using the\n# proguar"
  },
  {
    "path": "app/src/main/AndroidManifest.xml",
    "chars": 3872,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<manifest\n  xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  xmlns:to"
  },
  {
    "path": "app/src/main/assets/release_notes.txt",
    "chars": 270,
    "preview": "* Fix issue where actors list of shows and movies would not return to its scrolled position\n* Other bugfixes\n\nDo you enj"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/App.kt",
    "chars": 3884,
    "preview": "package com.michaldrabik.showly_oss\n\nimport android.app.Application\nimport android.app.NotificationChannel\nimport androi"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/di/module/PreferencesModule.kt",
    "chars": 2074,
    "preview": "package com.michaldrabik.showly_oss.di.module\n\nimport android.content.Context\nimport android.content.SharedPreferences\ni"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/di/module/ServicesModule.kt",
    "chars": 580,
    "preview": "package com.michaldrabik.showly_oss.di.module\n\nimport android.content.Context\nimport android.net.ConnectivityManager\nimp"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/di/module/WorkModule.kt",
    "chars": 517,
    "preview": "package com.michaldrabik.showly_oss.di.module\n\nimport android.content.Context\nimport androidx.work.WorkManager\nimport da"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/fcm/FcmExtra.kt",
    "chars": 109,
    "preview": "package com.michaldrabik.showly_oss.fcm\n\nenum class FcmExtra(val key: String) {\n  SHOW_ID(\"extra_show_id\")\n}\n"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/BaseActivity.kt",
    "chars": 2776,
    "preview": "package com.michaldrabik.showly_oss.ui\n\nimport android.annotation.SuppressLint\nimport android.net.Uri\nimport android.os."
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/MainActivity.kt",
    "chars": 16725,
    "preview": "package com.michaldrabik.showly_oss.ui.main\n\nimport android.annotation.SuppressLint\nimport android.content.Intent\nimport"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/MainUiState.kt",
    "chars": 588,
    "preview": "package com.michaldrabik.showly_oss.ui.main\n\nimport com.michaldrabik.showly_oss.utilities.deeplink.DeepLinkBundle\nimport"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/MainViewModel.kt",
    "chars": 6425,
    "preview": "package com.michaldrabik.showly_oss.ui.main\n\nimport android.annotation.SuppressLint\nimport androidx.appcompat.app.AppCom"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainAnnouncementsCase.kt",
    "chars": 667,
    "preview": "package com.michaldrabik.showly_oss.ui.main.cases\n\nimport com.michaldrabik.common.dispatchers.CoroutineDispatchers\nimpor"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainClearingCase.kt",
    "chars": 566,
    "preview": "package com.michaldrabik.showly_oss.ui.main.cases\n\nimport com.michaldrabik.repository.images.MovieImagesProvider\nimport "
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainInitialsCase.kt",
    "chars": 5840,
    "preview": "package com.michaldrabik.showly_oss.ui.main.cases\n\nimport android.content.Context\nimport android.content.SharedPreferenc"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainModesCase.kt",
    "chars": 704,
    "preview": "package com.michaldrabik.showly_oss.ui.main.cases\n\nimport com.michaldrabik.common.Mode\nimport com.michaldrabik.common.Mo"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainRateAppCase.kt",
    "chars": 1378,
    "preview": "package com.michaldrabik.showly_oss.ui.main.cases\n\nimport android.content.SharedPreferences\nimport com.michaldrabik.comm"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainSettingsCase.kt",
    "chars": 577,
    "preview": "package com.michaldrabik.showly_oss.ui.main.cases\n\nimport com.michaldrabik.repository.settings.SettingsRepository\nimport"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainTipsCase.kt",
    "chars": 705,
    "preview": "package com.michaldrabik.showly_oss.ui.main.cases\n\nimport android.content.SharedPreferences\nimport com.michaldrabik.comm"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/MainTraktCase.kt",
    "chars": 1003,
    "preview": "package com.michaldrabik.showly_oss.ui.main.cases\n\nimport androidx.work.WorkManager\nimport com.michaldrabik.repository.s"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/deeplink/ImdbDeepLinkCase.kt",
    "chars": 2044,
    "preview": "package com.michaldrabik.showly_oss.ui.main.cases.deeplink\n\nimport com.michaldrabik.data_local.sources.MoviesLocalDataSo"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/deeplink/MainDeepLinksCase.kt",
    "chars": 765,
    "preview": "package com.michaldrabik.showly_oss.ui.main.cases.deeplink\n\nimport com.michaldrabik.ui_model.IdImdb\nimport com.michaldra"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/deeplink/TmdbDeepLinkCase.kt",
    "chars": 2466,
    "preview": "package com.michaldrabik.showly_oss.ui.main.cases.deeplink\n\nimport com.michaldrabik.data_local.sources.MoviesLocalDataSo"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/cases/deeplink/TraktDeepLinkCase.kt",
    "chars": 2214,
    "preview": "package com.michaldrabik.showly_oss.ui.main.cases.deeplink\n\nimport com.michaldrabik.data_local.sources.MoviesLocalDataSo"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/main/delegates/TipsDelegate.kt",
    "chars": 1850,
    "preview": "package com.michaldrabik.showly_oss.ui.main.delegates\n\nimport androidx.lifecycle.DefaultLifecycleObserver\nimport com.mic"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/views/BottomMenuView.kt",
    "chars": 4439,
    "preview": "package com.michaldrabik.showly_oss.ui.views\n\nimport android.animation.Animator\nimport android.animation.AnimatorListene"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/views/WelcomeLanguageView.kt",
    "chars": 1548,
    "preview": "package com.michaldrabik.showly_oss.ui.views\n\nimport android.annotation.SuppressLint\nimport android.content.Context\nimpo"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/views/WelcomeNoteView.kt",
    "chars": 1670,
    "preview": "package com.michaldrabik.showly_oss.ui.views\n\nimport android.content.Context\nimport android.util.AttributeSet\nimport and"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/ui/views/WhatsNewView.kt",
    "chars": 1184,
    "preview": "package com.michaldrabik.showly_oss.ui.views\n\nimport android.annotation.SuppressLint\nimport android.content.Context\nimpo"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/utilities/deeplink/DeepLinkBundle.kt",
    "chars": 279,
    "preview": "package com.michaldrabik.showly_oss.utilities.deeplink\n\nimport com.michaldrabik.ui_model.Movie\nimport com.michaldrabik.u"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/utilities/deeplink/DeepLinkResolver.kt",
    "chars": 3620,
    "preview": "package com.michaldrabik.showly_oss.utilities.deeplink\n\nimport android.content.Intent\nimport androidx.core.os.bundleOf\ni"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/utilities/deeplink/DeepLinkSource.kt",
    "chars": 426,
    "preview": "package com.michaldrabik.showly_oss.utilities.deeplink\n\nimport com.michaldrabik.ui_model.IdImdb\nimport com.michaldrabik."
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/utilities/deeplink/resolvers/ImdbSourceResolver.kt",
    "chars": 465,
    "preview": "package com.michaldrabik.showly_oss.utilities.deeplink.resolvers\n\nimport com.michaldrabik.showly_oss.utilities.deeplink."
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/utilities/deeplink/resolvers/SourceResolver.kt",
    "chars": 220,
    "preview": "package com.michaldrabik.showly_oss.utilities.deeplink.resolvers\n\nimport com.michaldrabik.showly_oss.utilities.deeplink."
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/utilities/deeplink/resolvers/TmdbSourceResolver.kt",
    "chars": 808,
    "preview": "package com.michaldrabik.showly_oss.utilities.deeplink.resolvers\n\nimport androidx.core.text.isDigitsOnly\nimport com.mich"
  },
  {
    "path": "app/src/main/java/com/michaldrabik/showly_oss/utilities/deeplink/resolvers/TraktSourceResolver.kt",
    "chars": 595,
    "preview": "package com.michaldrabik.showly_oss.utilities.deeplink.resolvers\n\nimport com.michaldrabik.showly_oss.utilities.deeplink."
  },
  {
    "path": "app/src/main/play/release-notes/en-GB/default.txt",
    "chars": 108,
    "preview": "* Fix issue where actors list of shows and movies would not return to its scrolled position\n* Other bugfixes"
  },
  {
    "path": "app/src/main/res/drawable/bg_dialog.xml",
    "chars": 198,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<shape\n  xmlns:android=\"http://schemas.android.com/apk/res/android\">\n  <solid and"
  },
  {
    "path": "app/src/main/res/drawable/ic_eye_off.xml",
    "chars": 872,
    "preview": "<vector android:height=\"24dp\" android:tint=\"#FFFFFF\"\n    android:viewportHeight=\"24\" android:viewportWidth=\"24\"\n    andr"
  },
  {
    "path": "app/src/main/res/drawable/ic_languages.xml",
    "chars": 14812,
    "preview": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n"
  },
  {
    "path": "app/src/main/res/drawable/ic_launcher_foreground.xml",
    "chars": 1542,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<vector\n  xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  android:wi"
  },
  {
    "path": "app/src/main/res/drawable/ic_launcher_mono.xml",
    "chars": 1542,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<vector\n  xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  android:wi"
  },
  {
    "path": "app/src/main/res/drawable/selector_bottom_menu.xml",
    "chars": 253,
    "preview": "<selector xmlns:android=\"http://schemas.android.com/apk/res/android\">\n  <item android:color=\"?attr/colorBottomMenuItemCh"
  },
  {
    "path": "app/src/main/res/layout/activity_main.xml",
    "chars": 6385,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<androidx.constraintlayout.widget.ConstraintLayout\n  xmlns:android=\"http://schema"
  },
  {
    "path": "app/src/main/res/layout/view_bottom_menu.xml",
    "chars": 2392,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<merge\n  xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  xmlns:app=\""
  },
  {
    "path": "app/src/main/res/layout/view_welcome_language.xml",
    "chars": 3526,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<merge\n  xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  xmlns:app=\""
  },
  {
    "path": "app/src/main/res/layout/view_welcome_note.xml",
    "chars": 2907,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<merge\n  xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  xmlns:app=\""
  },
  {
    "path": "app/src/main/res/layout/view_whats_new.xml",
    "chars": 2094,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<merge\n  xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  xmlns:app=\""
  },
  {
    "path": "app/src/main/res/menu/bottom_navigation_menu.xml",
    "chars": 1032,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<menu\n  xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  xmlns:app=\"h"
  },
  {
    "path": "app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml",
    "chars": 330,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<adaptive-icon\n  xmlns:android=\"http://schemas.android.com/apk/res/android\">\n  <b"
  },
  {
    "path": "app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml",
    "chars": 330,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<adaptive-icon\n  xmlns:android=\"http://schemas.android.com/apk/res/android\">\n  <b"
  },
  {
    "path": "app/src/main/res/values/dimens.xml",
    "chars": 334,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <dimen name=\"welcomeDialogSpace\">@dimen/spaceBig</dimen>\n\n  <item n"
  },
  {
    "path": "app/src/main/res/values/ic_launcher_background.xml",
    "chars": 118,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <color name=\"ic_launcher_background\">#27282C</color>\n</resources>"
  },
  {
    "path": "app/src/main/res/values/strings.xml",
    "chars": 1704,
    "preview": "<resources>\n  <string name=\"app_name\" translatable=\"false\">Showly OSS</string>\n\n  <string name=\"menuProgress\">Progress</"
  },
  {
    "path": "app/src/main/res/values-ar/strings.xml",
    "chars": 1223,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <string name=\"menuProgress\">مستوى التقدم</string>\n  <string name=\"m"
  },
  {
    "path": "app/src/main/res/values-de/strings.xml",
    "chars": 1297,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <string name=\"menuProgress\">Fortschritt</string>\n  <string name=\"me"
  },
  {
    "path": "app/src/main/res/values-es/strings.xml",
    "chars": 1273,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <string name=\"menuProgress\">Progreso</string>\n  <string name=\"menuD"
  },
  {
    "path": "app/src/main/res/values-fi/strings.xml",
    "chars": 1257,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <string name=\"menuProgress\">Katselutila</string>\n  <string name=\"me"
  },
  {
    "path": "app/src/main/res/values-fr/strings.xml",
    "chars": 1337,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <string name=\"menuProgress\">Progression</string>\n  <string name=\"me"
  },
  {
    "path": "app/src/main/res/values-it/strings.xml",
    "chars": 1252,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <string name=\"menuProgress\">Progressi</string>\n  <string name=\"menu"
  },
  {
    "path": "app/src/main/res/values-pl/strings.xml",
    "chars": 1265,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <string name=\"menuProgress\">Postęp</string>\n  <string name=\"menuDis"
  },
  {
    "path": "app/src/main/res/values-pt/strings.xml",
    "chars": 1267,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <string name=\"menuProgress\">Progresso</string>\n  <string name=\"menu"
  },
  {
    "path": "app/src/main/res/values-ru/strings.xml",
    "chars": 1290,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <string name=\"menuProgress\">Прогресс</string>\n  <string name=\"menuD"
  },
  {
    "path": "app/src/main/res/values-sw600dp/dimens.xml",
    "chars": 323,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <dimen name=\"welcomeDialogSpace\">112dp</dimen>\n\n  <item name=\"tipMo"
  },
  {
    "path": "app/src/main/res/values-tr/strings.xml",
    "chars": 1293,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <string name=\"menuProgress\">İlerleme</string>\n  <string name=\"menuD"
  },
  {
    "path": "app/src/main/res/values-uk/strings.xml",
    "chars": 1263,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <string name=\"menuProgress\">Прогрес</string>\n  <string name=\"menuDi"
  },
  {
    "path": "app/src/main/res/values-vi/strings.xml",
    "chars": 1516,
    "preview": "<resources>\n  <string name=\"app_name\" translatable=\"false\">Showly OSS</string>\n\n  <string name=\"menuProgress\">Tiến độ</s"
  },
  {
    "path": "app/src/main/res/values-zh/strings.xml",
    "chars": 980,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n  <string name=\"menuProgress\">进度</string>\n  <string name=\"menuDiscove"
  },
  {
    "path": "app/src/main/res/xml/locales_config.xml",
    "chars": 534,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<locale-config xmlns:android=\"http://schemas.android.com/apk/res/android\">\n  <loc"
  },
  {
    "path": "app/src/main/res/xml/shortcuts.xml",
    "chars": 2599,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<shortcuts\n  xmlns:android=\"http://schemas.android.com/apk/res/android\"\n  xmlns:t"
  },
  {
    "path": "app/src/test/java/BaseMockTest.kt",
    "chars": 270,
    "preview": "import io.mockk.MockKAnnotations\nimport io.mockk.mockkStatic\nimport org.junit.Before\n\n@Suppress(\"EXPERIMENTAL_API_USAGE\""
  },
  {
    "path": "app/src/test/java/com/michaldrabik/showly_oss/ui/main/cases/MainRateAppCaseTest.kt",
    "chars": 5031,
    "preview": "package com.michaldrabik.showly_oss.ui.main.cases\n\nimport BaseMockTest\nimport android.content.SharedPreferences\nimport c"
  },
  {
    "path": "app/src/test/java/com/michaldrabik/showly_oss/ui/main/cases/MainTipsCaseTest.kt",
    "chars": 1743,
    "preview": "package com.michaldrabik.showly_oss.ui.main.cases\n\nimport BaseMockTest\nimport android.content.SharedPreferences\nimport c"
  },
  {
    "path": "assets/codestyle.xml",
    "chars": 6903,
    "preview": "<code_scheme name=\"Showly 2.0\" version=\"173\">\n  <option name=\"RIGHT_MARGIN\" value=\"150\" />\n  <option name=\"SOFT_MARGINS\""
  },
  {
    "path": "build.gradle",
    "chars": 805,
    "preview": "// Top-level build file where you can add configuration options common to all sub-projects/modules.\nbuildscript {\n  appl"
  },
  {
    "path": "common/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "common/build.gradle",
    "chars": 878,
    "preview": "apply plugin: 'com.android.library'\napply plugin: 'kotlin-android'\napply from: '../versions.gradle'\n\nandroid {\n  kotlinO"
  },
  {
    "path": "common/src/debug/java/com/michaldrabik/common/ConfigVariant.kt",
    "chars": 668,
    "preview": "package com.michaldrabik.common\n\nimport java.util.concurrent.TimeUnit.MINUTES\n\nobject ConfigVariant {\n  val SHOW_SYNC_CO"
  },
  {
    "path": "common/src/main/AndroidManifest.xml",
    "chars": 13,
    "preview": "<manifest />\n"
  },
  {
    "path": "common/src/main/java/com/michaldrabik/common/Config.kt",
    "chars": 3085,
    "preview": "package com.michaldrabik.common\n\nimport java.util.concurrent.TimeUnit.DAYS\nimport java.util.concurrent.TimeUnit.HOURS\n\no"
  },
  {
    "path": "common/src/main/java/com/michaldrabik/common/Mode.kt",
    "chars": 243,
    "preview": "package com.michaldrabik.common\n\nenum class Mode(val type: String) {\n  SHOWS(\"show\"),\n  MOVIES(\"movie\");\n\n  companion ob"
  },
  {
    "path": "common/src/main/java/com/michaldrabik/common/di/CommonBindingModule.kt",
    "chars": 507,
    "preview": "package com.michaldrabik.common.di\n\nimport com.michaldrabik.common.dispatchers.CoroutineDispatchers\nimport com.michaldra"
  },
  {
    "path": "common/src/main/java/com/michaldrabik/common/dispatchers/CoroutineDispatchers.kt",
    "chars": 262,
    "preview": "package com.michaldrabik.common.dispatchers\n\nimport kotlinx.coroutines.CoroutineDispatcher\n\ninterface CoroutineDispatche"
  },
  {
    "path": "common/src/main/java/com/michaldrabik/common/dispatchers/DefaultCoroutineDispatchers.kt",
    "chars": 414,
    "preview": "package com.michaldrabik.common.dispatchers\n\nimport kotlinx.coroutines.Dispatchers\nimport javax.inject.Inject\nimport jav"
  },
  {
    "path": "common/src/main/java/com/michaldrabik/common/errors/ErrorHelper.kt",
    "chars": 1348,
    "preview": "package com.michaldrabik.common.errors\n\nimport com.michaldrabik.common.errors.ShowlyError.AccountLimitsError\nimport com."
  },
  {
    "path": "common/src/main/java/com/michaldrabik/common/errors/ShowlyError.kt",
    "chars": 770,
    "preview": "package com.michaldrabik.common.errors\n\nsealed class ShowlyError(errorMessage: String?) : Throwable(errorMessage) {\n\n  o"
  },
  {
    "path": "common/src/main/java/com/michaldrabik/common/extensions/DateExtensions.kt",
    "chars": 1080,
    "preview": "package com.michaldrabik.common.extensions\n\nimport java.time.Instant\nimport java.time.LocalDate\nimport java.time.ZoneId\n"
  },
  {
    "path": "common/src/release/java/com/michaldrabik/common/ConfigVariant.kt",
    "chars": 798,
    "preview": "package com.michaldrabik.common\n\nimport java.util.concurrent.TimeUnit.DAYS\nimport java.util.concurrent.TimeUnit.HOURS\nim"
  },
  {
    "path": "common-test/.gitignore",
    "chars": 6,
    "preview": "/build"
  },
  {
    "path": "common-test/build.gradle",
    "chars": 899,
    "preview": "apply plugin: 'com.android.library'\napply plugin: 'kotlin-android'\napply from: '../versions.gradle'\n\nandroid {\n    kotli"
  },
  {
    "path": "common-test/src/main/java/com/michaldrabik/common_test/MainDispatcherRule.kt",
    "chars": 792,
    "preview": "package com.michaldrabik.common_test\n\nimport kotlinx.coroutines.Dispatchers\nimport kotlinx.coroutines.ExperimentalCorout"
  },
  {
    "path": "common-test/src/main/java/com/michaldrabik/common_test/UnconfinedCoroutineDispatchers.kt",
    "chars": 519,
    "preview": "package com.michaldrabik.common_test\n\nimport com.michaldrabik.common.dispatchers.CoroutineDispatchers\nimport kotlinx.cor"
  },
  {
    "path": "crowdin.yml",
    "chars": 166,
    "preview": "files:\n  - source: /**/values/strings.xml\n    translation: /**/values-%two_letters_code%/%original_file_name%\n    transl"
  },
  {
    "path": "data-local/.gitignore",
    "chars": 7,
    "preview": "/build\n"
  },
  {
    "path": "data-local/build.gradle",
    "chars": 1135,
    "preview": "apply plugin: 'com.android.library'\napply plugin: 'kotlin-android'\napply plugin: 'dagger.hilt.android.plugin'\napply from"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/BaseDaoTest.kt",
    "chars": 599,
    "preview": "@file:Suppress(\"DEPRECATION\")\n\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Room\nimport androi"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/DiscoverShowsDaoTest.kt",
    "chars": 2939,
    "preview": "@file:Suppress(\"DEPRECATION\")\n\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.test.runner.AndroidJUni"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/EpisodesDaoTest.kt",
    "chars": 4816,
    "preview": "@file:Suppress(\"DEPRECATION\")\n\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.test.runner.AndroidJUni"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/EpisodesSyncLogDaoTest.kt",
    "chars": 1189,
    "preview": "@file:Suppress(\"DEPRECATION\")\n\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.test.runner.AndroidJUni"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/MyShowsDaoTest.kt",
    "chars": 2907,
    "preview": "@file:Suppress(\"DEPRECATION\")\n\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.test.runner.AndroidJUni"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/RecentSearchDaoTest.kt",
    "chars": 1483,
    "preview": "@file:Suppress(\"DEPRECATION\")\n\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.test.runner.AndroidJUni"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/RelatedShowsDaoTest.kt",
    "chars": 1877,
    "preview": "@file:Suppress(\"DEPRECATION\")\n\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.test.runner.AndroidJUni"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/SeasonsDaoTest.kt",
    "chars": 2707,
    "preview": "@file:Suppress(\"DEPRECATION\")\n\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.test.runner.AndroidJUni"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/SettingsDaoTest.kt",
    "chars": 1252,
    "preview": "@file:Suppress(\"DEPRECATION\")\n\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.test.runner.AndroidJUni"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/ShowImagesDaoTest.kt",
    "chars": 4347,
    "preview": "@file:Suppress(\"DEPRECATION\")\n\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.test.runner.AndroidJUni"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/ShowsDaoTest.kt",
    "chars": 2153,
    "preview": "@file:Suppress(\"DEPRECATION\")\n\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.test.runner.AndroidJUni"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/UserDaoTest.kt",
    "chars": 1132,
    "preview": "@file:Suppress(\"DEPRECATION\")\n\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.test.runner.AndroidJUni"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/WatchlistShowsDaoTest.kt",
    "chars": 2213,
    "preview": "@file:Suppress(\"DEPRECATION\")\n\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.test.runner.AndroidJUni"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/converters/DateConverterTest.kt",
    "chars": 946,
    "preview": "@file:Suppress(\"DEPRECATION\")\n\npackage com.michaldrabik.data_local.database.dao.converters\n\nimport com.google.common.tru"
  },
  {
    "path": "data-local/src/androidTest/java/com/michaldrabik/data_local/database/dao/helpers/TestData.kt",
    "chars": 1266,
    "preview": "package com.michaldrabik.data_local.database.dao.helpers\n\nimport com.michaldrabik.data_local.database.model.Episode\nimpo"
  },
  {
    "path": "data-local/src/main/AndroidManifest.xml",
    "chars": 13,
    "preview": "<manifest />\n"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/LocalDataSource.kt",
    "chars": 7654,
    "preview": "package com.michaldrabik.data_local\n\nimport com.michaldrabik.data_local.sources.ArchiveMoviesLocalDataSource\nimport com."
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/AppDatabase.kt",
    "chars": 9047,
    "preview": "package com.michaldrabik.data_local.database\n\nimport androidx.room.Database\nimport androidx.room.RoomDatabase\nimport com"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/converters/DateConverter.kt",
    "chars": 436,
    "preview": "package com.michaldrabik.data_local.database.converters\n\nimport androidx.room.TypeConverter\nimport java.time.Instant\nimp"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/ArchiveMoviesDao.kt",
    "chars": 1448,
    "preview": "// ktlint-disable max-line-length\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport andr"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/ArchiveShowsDao.kt",
    "chars": 1421,
    "preview": "// ktlint-disable max-line-length\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport andr"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/BaseDao.kt",
    "chars": 437,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Delete\nimport androidx.room.Insert\nimport android"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/CustomImagesDao.kt",
    "chars": 1242,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/CustomListsDao.kt",
    "chars": 1801,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/CustomListsItemsDao.kt",
    "chars": 2051,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/DiscoverMoviesDao.kt",
    "chars": 953,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/DiscoverShowsDao.kt",
    "chars": 939,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/EpisodeTranslationsDao.kt",
    "chars": 1214,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/EpisodesDao.kt",
    "chars": 4687,
    "preview": "// ktlint-disable max-line-length\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport andr"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/EpisodesSyncLogDao.kt",
    "chars": 586,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/MovieCollectionsDao.kt",
    "chars": 1374,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Query\nimport androidx.ro"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/MovieCollectionsItemsDao.kt",
    "chars": 1095,
    "preview": "// ktlint-disable max-line-length\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport andr"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/MovieImagesDao.kt",
    "chars": 1174,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/MovieRatingsDao.kt",
    "chars": 1014,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Query\nimport androidx.ro"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/MovieStreamingsDao.kt",
    "chars": 853,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Query\nimport androidx.ro"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/MovieTranslationsDao.kt",
    "chars": 1006,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/MoviesDao.kt",
    "chars": 1626,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Query\nimport androidx.ro"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/MoviesSyncLogDao.kt",
    "chars": 572,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/MyMoviesDao.kt",
    "chars": 1701,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/MyShowsDao.kt",
    "chars": 1933,
    "preview": "// ktlint-disable max-line-length\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport andr"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/NewsDao.kt",
    "chars": 700,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Query\nimport androidx.ro"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/PeopleCreditsDao.kt",
    "chars": 1674,
    "preview": "package com.michaldrabik.data_local.database.dao\n\n/* ktlint-disable */\nimport androidx.room.Dao\nimport androidx.room.Que"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/PeopleDao.kt",
    "chars": 1992,
    "preview": "package com.michaldrabik.data_local.database.dao\n\n/* ktlint-disable */\nimport androidx.room.Dao\nimport androidx.room.Que"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/PeopleImagesDao.kt",
    "chars": 970,
    "preview": "package com.michaldrabik.data_local.database.dao\n\n/* ktlint-disable */\nimport androidx.room.Dao\nimport androidx.room.Que"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/PeopleShowsMoviesDao.kt",
    "chars": 1333,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Query\nimport androidx.ro"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/RatingsDao.kt",
    "chars": 1230,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Query\nimport androidx.ro"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/RecentSearchDao.kt",
    "chars": 701,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/RelatedMoviesDao.kt",
    "chars": 869,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/RelatedShowsDao.kt",
    "chars": 857,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/SeasonsDao.kt",
    "chars": 2159,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Delete\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/SettingsDao.kt",
    "chars": 616,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/ShowImagesDao.kt",
    "chars": 1829,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/ShowRatingsDao.kt",
    "chars": 1006,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Query\nimport androidx.ro"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/ShowStreamingsDao.kt",
    "chars": 843,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Query\nimport androidx.ro"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/ShowTranslationsDao.kt",
    "chars": 994,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/ShowsDao.kt",
    "chars": 1559,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Query\nimport androidx.ro"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/TraktSyncLogDao.kt",
    "chars": 1109,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/TraktSyncQueueDao.kt",
    "chars": 1613,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Delete\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/TranslationsMoviesSyncLogDao.kt",
    "chars": 909,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/TranslationsSyncLogDao.kt",
    "chars": 855,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/UserDao.kt",
    "chars": 514,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/WatchlistMoviesDao.kt",
    "chars": 1350,
    "preview": "package com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport androidx.room.Insert\nimport androidx.r"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/dao/WatchlistShowsDao.kt",
    "chars": 1387,
    "preview": "// ktlint-disable max-line-length\npackage com.michaldrabik.data_local.database.dao\n\nimport androidx.room.Dao\nimport andr"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/migrations/Migrations.kt",
    "chars": 34157,
    "preview": "package com.michaldrabik.data_local.database.migrations\n\nimport android.content.Context\nimport android.content.Context.M"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/ArchiveMovie.kt",
    "chars": 967,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/ArchiveShow.kt",
    "chars": 963,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/CustomImage.kt",
    "chars": 589,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/CustomList.kt",
    "chars": 1365,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/CustomListItem.kt",
    "chars": 1097,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/DiscoverMovie.kt",
    "chars": 761,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/DiscoverShow.kt",
    "chars": 758,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/Episode.kt",
    "chars": 1844,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/EpisodeTranslation.kt",
    "chars": 1498,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/EpisodesSyncLog.kt",
    "chars": 379,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/Movie.kt",
    "chars": 1631,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/MovieCollection.kt",
    "chars": 1232,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/MovieCollectionItem.kt",
    "chars": 1132,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/MovieImage.kt",
    "chars": 657,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/MovieRatings.kt",
    "chars": 1069,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/MovieStreaming.kt",
    "chars": 1387,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/MovieTranslation.kt",
    "chars": 1307,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/MoviesSyncLog.kt",
    "chars": 376,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/MyMovie.kt",
    "chars": 951,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/MyShow.kt",
    "chars": 1095,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/News.kt",
    "chars": 728,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/Person.kt",
    "chars": 1575,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/PersonCredits.kt",
    "chars": 1403,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/PersonImage.kt",
    "chars": 776,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/PersonShowMovie.kt",
    "chars": 1471,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/Rating.kt",
    "chars": 947,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/RecentSearch.kt",
    "chars": 504,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/RelatedMovie.kt",
    "chars": 1077,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/RelatedShow.kt",
    "chars": 1103,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/Season.kt",
    "chars": 1083,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/Settings.kt",
    "chars": 4563,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/Show.kt",
    "chars": 2195,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/ShowImage.kt",
    "chars": 890,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  },
  {
    "path": "data-local/src/main/java/com/michaldrabik/data_local/database/model/ShowRatings.kt",
    "chars": 1066,
    "preview": "package com.michaldrabik.data_local.database.model\n\nimport androidx.room.ColumnInfo\nimport androidx.room.Entity\nimport a"
  }
]

// ... and 2085 more files (download for full content)

About this extraction

This page contains the full source code of the 1RandomDev/showly-oss GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 2285 files (33.3 MB), approximately 1.3M tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!