├── .github └── workflows │ └── build-apk.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── patch4code │ │ └── logline │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── patch4code │ │ │ └── logline │ │ │ ├── MainActivity.kt │ │ │ ├── api │ │ │ ├── RetrofitHelper.kt │ │ │ └── TmdbApiService.kt │ │ │ ├── features │ │ │ ├── about │ │ │ │ └── presentation │ │ │ │ │ └── screen_settings │ │ │ │ │ └── AboutView.kt │ │ │ ├── core │ │ │ │ ├── domain │ │ │ │ │ └── model │ │ │ │ │ │ ├── FilterOptions.kt │ │ │ │ │ │ ├── Movie.kt │ │ │ │ │ │ ├── MovieCountries.kt │ │ │ │ │ │ ├── MovieGenres.kt │ │ │ │ │ │ ├── MovieLanguages.kt │ │ │ │ │ │ ├── MoviePage.kt │ │ │ │ │ │ ├── MovieUserData.kt │ │ │ │ │ │ ├── MovieWithUserData.kt │ │ │ │ │ │ └── SortOption.kt │ │ │ │ └── presentation │ │ │ │ │ ├── GeneralMovieSearchViewModel.kt │ │ │ │ │ ├── components │ │ │ │ │ ├── ExpandableText.kt │ │ │ │ │ ├── RatingDialog.kt │ │ │ │ │ ├── ShowToastOnCondition.kt │ │ │ │ │ ├── base_elements │ │ │ │ │ │ ├── BaseCountryLanguageSelectionDialog.kt │ │ │ │ │ │ ├── BaseDropdown.kt │ │ │ │ │ │ └── BaseFilterChipRow.kt │ │ │ │ │ ├── cards │ │ │ │ │ │ ├── MovieGridBrowseCard.kt │ │ │ │ │ │ └── MovieRowBrowseCard.kt │ │ │ │ │ ├── filter_dialog │ │ │ │ │ │ ├── FilterApplyButton.kt │ │ │ │ │ │ ├── FilterDecadeYearSelection.kt │ │ │ │ │ │ ├── FilterGenreSelection.kt │ │ │ │ │ │ ├── FilterLanguageDialog.kt │ │ │ │ │ │ ├── FilterLanguageSection.kt │ │ │ │ │ │ ├── FilterSortDropdown.kt │ │ │ │ │ │ ├── FilterTopBarSection.kt │ │ │ │ │ │ └── SortFilterDialog.kt │ │ │ │ │ ├── load │ │ │ │ │ │ ├── LoadErrorDisplay.kt │ │ │ │ │ │ └── LoadingIndicator.kt │ │ │ │ │ ├── modifier │ │ │ │ │ │ ├── Modifier.customVerticalScrollbar.kt │ │ │ │ │ │ └── setPaddingBasedOnApiLvl.kt │ │ │ │ │ ├── movie_search_dialog │ │ │ │ │ │ ├── MovieSearchDialog.kt │ │ │ │ │ │ ├── MovieSearchDialogLazyColumn.kt │ │ │ │ │ │ ├── MovieSearchDialogNoResult.kt │ │ │ │ │ │ └── MovieSearchDialogTextField.kt │ │ │ │ │ └── swipe │ │ │ │ │ │ ├── SwipeToDelete.kt │ │ │ │ │ │ └── SwipeToEdit.kt │ │ │ │ │ └── utils │ │ │ │ │ ├── DateHelper.kt │ │ │ │ │ ├── Decoder.kt │ │ │ │ │ ├── FilterHelper.kt │ │ │ │ │ ├── JSONHelper.kt │ │ │ │ │ ├── LazyRowStatesSaver.kt │ │ │ │ │ ├── LocalDateTimeAdapter.kt │ │ │ │ │ ├── MovieHelper.kt │ │ │ │ │ ├── MovieMapper.kt │ │ │ │ │ ├── MovieYears.kt │ │ │ │ │ ├── StringResourceHelper.kt │ │ │ │ │ ├── TmdbCredentials.kt │ │ │ │ │ ├── UiText.kt │ │ │ │ │ └── sort_filter │ │ │ │ │ ├── FilterOptionsSaver.kt │ │ │ │ │ └── SortOptionSaver.kt │ │ │ ├── diary │ │ │ │ ├── domain │ │ │ │ │ └── model │ │ │ │ │ │ ├── DiaryAndReviewSortOptions.kt │ │ │ │ │ │ ├── LoggedMovie.kt │ │ │ │ │ │ └── MovieWithLoggedData.kt │ │ │ │ └── presentation │ │ │ │ │ ├── components │ │ │ │ │ ├── EmptyDiaryText.kt │ │ │ │ │ ├── MovieLoggedItem.kt │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── DiaryEditDatePickerDialog.kt │ │ │ │ │ │ ├── DiaryEditDeleteDialog.kt │ │ │ │ │ │ ├── DiaryEditDiscardDialog.kt │ │ │ │ │ │ └── DiaryEditReviewDialog.kt │ │ │ │ │ └── editelement │ │ │ │ │ │ ├── DiaryEditDateSection.kt │ │ │ │ │ │ ├── DiaryEditDeleteSection.kt │ │ │ │ │ │ ├── DiaryEditHeader.kt │ │ │ │ │ │ ├── DiaryEditRatingSection.kt │ │ │ │ │ │ ├── DiaryEditReviewSection.kt │ │ │ │ │ │ └── DiaryEditSaveChangesSection.kt │ │ │ │ │ ├── screen_diary │ │ │ │ │ ├── DiaryEditElementView.kt │ │ │ │ │ ├── DiaryEditElementViewModel.kt │ │ │ │ │ ├── DiaryView.kt │ │ │ │ │ └── DiaryViewModel.kt │ │ │ │ │ └── utils │ │ │ │ │ └── DiaryNavigationExtensions.kt │ │ │ ├── home │ │ │ │ └── presentation │ │ │ │ │ └── screen_home │ │ │ │ │ ├── HomeView.kt │ │ │ │ │ └── HomeViewModel.kt │ │ │ ├── list │ │ │ │ ├── domain │ │ │ │ │ └── model │ │ │ │ │ │ ├── ListSortOptions.kt │ │ │ │ │ │ ├── ListTableSortOptions.kt │ │ │ │ │ │ ├── MovieInList.kt │ │ │ │ │ │ ├── MovieList.kt │ │ │ │ │ │ └── MovieWithListItem.kt │ │ │ │ └── presentation │ │ │ │ │ ├── components │ │ │ │ │ ├── list │ │ │ │ │ │ ├── EmptyListText.kt │ │ │ │ │ │ ├── ListContent.kt │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── AddMovieToListDialog.kt │ │ │ │ │ │ │ ├── DeleteMovieFromListDialog.kt │ │ │ │ │ │ │ ├── EditListDialog.kt │ │ │ │ │ │ │ └── ListSettingsBottomSheet.kt │ │ │ │ │ │ └── items │ │ │ │ │ │ │ ├── ListItem.kt │ │ │ │ │ │ │ └── MovieListAddMovieCard.kt │ │ │ │ │ └── lists_table │ │ │ │ │ │ ├── EmptyListTableText.kt │ │ │ │ │ │ ├── ListsTableContent.kt │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── AddListDialog.kt │ │ │ │ │ │ ├── DeleteListDialog.kt │ │ │ │ │ │ └── ListTableSortBottomSheet.kt │ │ │ │ │ │ └── item │ │ │ │ │ │ ├── AsyncImageCutPoster.kt │ │ │ │ │ │ ├── ListsItemPreviewImages.kt │ │ │ │ │ │ └── ListsTableItem.kt │ │ │ │ │ ├── screen_list │ │ │ │ │ ├── ListView.kt │ │ │ │ │ ├── ListViewModel.kt │ │ │ │ │ ├── ListsTableView.kt │ │ │ │ │ └── ListsTableViewModel.kt │ │ │ │ │ └── utils │ │ │ │ │ ├── ListDialogsExtensions.kt │ │ │ │ │ └── ListsTableContentExtensions.kt │ │ │ ├── movie │ │ │ │ ├── domain │ │ │ │ │ └── model │ │ │ │ │ │ ├── MovieCollection.kt │ │ │ │ │ │ ├── MovieCredits.kt │ │ │ │ │ │ ├── MovieDetails.kt │ │ │ │ │ │ ├── MovieVideos.kt │ │ │ │ │ │ └── WatchProvides.kt │ │ │ │ └── presentation │ │ │ │ │ ├── components │ │ │ │ │ ├── MovieContent.kt │ │ │ │ │ ├── MovieDescription.kt │ │ │ │ │ ├── MovieFeaturesBar.kt │ │ │ │ │ ├── MovieGenres.kt │ │ │ │ │ ├── MovieMoreDetails.kt │ │ │ │ │ ├── MovieMoreLikeThis.kt │ │ │ │ │ ├── MovieOtherSites.kt │ │ │ │ │ ├── MoviePosterPopup.kt │ │ │ │ │ ├── MovieRatings.kt │ │ │ │ │ ├── MovieSourceReference.kt │ │ │ │ │ ├── buttons │ │ │ │ │ │ └── SmallLinkButton.kt │ │ │ │ │ ├── cast_and_crew │ │ │ │ │ │ ├── CastMemberElement.kt │ │ │ │ │ │ ├── CreditsSectionList.kt │ │ │ │ │ │ ├── CrewMemberElement.kt │ │ │ │ │ │ └── MovieCastAndCrew.kt │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── AddToListDialog.kt │ │ │ │ │ │ └── AddToListDialogContent.kt │ │ │ │ │ ├── header │ │ │ │ │ │ ├── MovieHeader.kt │ │ │ │ │ │ └── MovieHeaderToolbar.kt │ │ │ │ │ └── watch_providers │ │ │ │ │ │ ├── MovieWatchProviders.kt │ │ │ │ │ │ └── ProviderSection.kt │ │ │ │ │ ├── screen_movie │ │ │ │ │ ├── AddToListViewModel.kt │ │ │ │ │ ├── MovieLogView.kt │ │ │ │ │ ├── MovieLogViewModel.kt │ │ │ │ │ ├── MovieView.kt │ │ │ │ │ └── MovieViewModel.kt │ │ │ │ │ └── utils │ │ │ │ │ └── MovieTopBarNavigationHelper.kt │ │ │ ├── movie_public_reviews │ │ │ │ ├── domain │ │ │ │ │ └── model │ │ │ │ │ │ └── TmdbReviewResponse.kt │ │ │ │ └── presentation │ │ │ │ │ ├── components │ │ │ │ │ ├── TmdbMovieReviews.kt │ │ │ │ │ └── TmdbReviewItem.kt │ │ │ │ │ └── screen_public_reviews │ │ │ │ │ ├── MoviePublicReviewsView.kt │ │ │ │ │ └── MoviePublicReviewsViewModel.kt │ │ │ ├── my_movies │ │ │ │ ├── domain │ │ │ │ │ └── model │ │ │ │ │ │ └── MyMoviesSortOptions.kt │ │ │ │ └── presentation │ │ │ │ │ ├── components │ │ │ │ │ └── EmptyMyMoviesText.kt │ │ │ │ │ └── screen_my_movies │ │ │ │ │ ├── MyMoviesView.kt │ │ │ │ │ └── MyMoviesViewModel.kt │ │ │ ├── navigation │ │ │ │ ├── domain │ │ │ │ │ └── model │ │ │ │ │ │ ├── BottomNavigationItem.kt │ │ │ │ │ │ ├── DrawerNavigationItem.kt │ │ │ │ │ │ └── Screen.kt │ │ │ │ └── presentation │ │ │ │ │ ├── components │ │ │ │ │ ├── BottomBar.kt │ │ │ │ │ ├── DrawerContent.kt │ │ │ │ │ ├── TopBar.kt │ │ │ │ │ └── topbar_providers │ │ │ │ │ │ ├── ProvideCustomTopBarBackNavigationIcon.kt │ │ │ │ │ │ ├── ProvideTopBarBackNavigationIcon.kt │ │ │ │ │ │ ├── ProvideTopBarNoNavigationIcon.kt │ │ │ │ │ │ ├── ProvideTopBarSearchViewTabs.kt │ │ │ │ │ │ ├── ProvideTopBarSortActions.kt │ │ │ │ │ │ ├── ProvideTopBarSortFilterActions.kt │ │ │ │ │ │ ├── ProvideTopBarSortFilterActionsAndMoreVert.kt │ │ │ │ │ │ └── ProvideTopBarTitle.kt │ │ │ │ │ └── screen_navigation │ │ │ │ │ ├── Navigation.kt │ │ │ │ │ └── TopBarViewModel.kt │ │ │ ├── person_details │ │ │ │ ├── domain │ │ │ │ │ └── model │ │ │ │ │ │ ├── PersonDetails.kt │ │ │ │ │ │ ├── PersonDetailsSortOption.kt │ │ │ │ │ │ └── PersonMovieCredits.kt │ │ │ │ └── presentation │ │ │ │ │ ├── components │ │ │ │ │ └── PersonDetailsSortBottomSheet.kt │ │ │ │ │ └── screen_person │ │ │ │ │ ├── PersonDetailsView.kt │ │ │ │ │ └── PersonDetailsViewModel.kt │ │ │ ├── profile │ │ │ │ ├── domain │ │ │ │ │ └── model │ │ │ │ │ │ ├── ProfileNavigationElement.kt │ │ │ │ │ │ ├── UserProfile.kt │ │ │ │ │ │ └── UserProfileWithFavouriteMovies.kt │ │ │ │ └── presentation │ │ │ │ │ ├── components │ │ │ │ │ ├── profile │ │ │ │ │ │ ├── ExpandableBio.kt │ │ │ │ │ │ ├── MovieFavouritesRow.kt │ │ │ │ │ │ ├── ProfileHead.kt │ │ │ │ │ │ └── ProfileNavigation.kt │ │ │ │ │ └── profile_edit │ │ │ │ │ │ ├── ProfileEditBannerSection.kt │ │ │ │ │ │ ├── ProfileEditBioSection.kt │ │ │ │ │ │ ├── ProfileEditFavMoviesSection.kt │ │ │ │ │ │ ├── ProfileEditImageSection.kt │ │ │ │ │ │ ├── ProfileEditNameSection.kt │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── EditBioDialog.kt │ │ │ │ │ │ ├── EditProfileNameDialog.kt │ │ │ │ │ │ └── SelectFavMovieDialog.kt │ │ │ │ │ ├── screen_profile │ │ │ │ │ ├── ProfileEditView.kt │ │ │ │ │ ├── ProfileView.kt │ │ │ │ │ └── ProfileViewModel.kt │ │ │ │ │ └── utils │ │ │ │ │ └── ProfileEditExtensions.kt │ │ │ ├── reviews │ │ │ │ └── presentation │ │ │ │ │ ├── components │ │ │ │ │ ├── EmptyReviewsText.kt │ │ │ │ │ ├── ReviewDetailsInfoAndActions.kt │ │ │ │ │ ├── ReviewDetailsPoster.kt │ │ │ │ │ └── ReviewItem.kt │ │ │ │ │ └── screen_reviews │ │ │ │ │ ├── ReviewDetailsView.kt │ │ │ │ │ ├── ReviewDetailsViewModel.kt │ │ │ │ │ ├── ReviewsView.kt │ │ │ │ │ └── ReviewsViewModel.kt │ │ │ ├── search │ │ │ │ ├── domain │ │ │ │ │ └── model │ │ │ │ │ │ ├── DiscoverDecade.kt │ │ │ │ │ │ ├── DiscoverOptions.kt │ │ │ │ │ │ ├── DiscoverSortOptions.kt │ │ │ │ │ │ ├── MovieProvidersForCountry.kt │ │ │ │ │ │ └── SearchHistoryItem.kt │ │ │ │ └── presentation │ │ │ │ │ ├── components │ │ │ │ │ ├── discover │ │ │ │ │ │ ├── DiscoverContent.kt │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ ├── DiscoverCountrySection.kt │ │ │ │ │ │ │ ├── DiscoverDecadeYearSelection.kt │ │ │ │ │ │ │ ├── DiscoverGenreSelection.kt │ │ │ │ │ │ │ ├── DiscoverLanguageDialog.kt │ │ │ │ │ │ │ ├── DiscoverLanguageSection.kt │ │ │ │ │ │ │ ├── DiscoverLengthSection.kt │ │ │ │ │ │ │ ├── DiscoverOptionSelection.kt │ │ │ │ │ │ │ ├── DiscoverProviderDialog.kt │ │ │ │ │ │ │ ├── DiscoverProviderSection.kt │ │ │ │ │ │ │ ├── DiscoverRatingSection.kt │ │ │ │ │ │ │ ├── DiscoverSortDropdown.kt │ │ │ │ │ │ │ └── DiscoverVoteCountSection.kt │ │ │ │ │ │ └── results │ │ │ │ │ │ │ ├── DiscoveredMoviesContent.kt │ │ │ │ │ │ │ └── EmptyDiscoverText.kt │ │ │ │ │ ├── search │ │ │ │ │ │ ├── SearchBar.kt │ │ │ │ │ │ ├── SearchContent.kt │ │ │ │ │ │ ├── history │ │ │ │ │ │ │ ├── ClearHistoryDialog.kt │ │ │ │ │ │ │ ├── SearchHistoryColumn.kt │ │ │ │ │ │ │ ├── SearchHistoryHeader.kt │ │ │ │ │ │ │ └── SearchHistoryItem.kt │ │ │ │ │ │ └── results │ │ │ │ │ │ │ ├── MovieSearchCard.kt │ │ │ │ │ │ │ ├── NoSearchResultText.kt │ │ │ │ │ │ │ └── SearchResultsList.kt │ │ │ │ │ └── utils │ │ │ │ │ │ ├── DiscoverHelper.kt │ │ │ │ │ │ ├── DiscoverOptionsSaver.kt │ │ │ │ │ │ └── TextInputSaver.kt │ │ │ │ │ ├── screen_search │ │ │ │ │ ├── DiscoverViewModel.kt │ │ │ │ │ ├── ProviderForCountryViewModel.kt │ │ │ │ │ ├── SearchDiscoverView.kt │ │ │ │ │ └── SearchViewModel.kt │ │ │ │ │ └── utils │ │ │ │ │ ├── HandleClearSearch.kt │ │ │ │ │ ├── HandleFocusRequest.kt │ │ │ │ │ ├── KeyboardVisibilityObserver.kt │ │ │ │ │ └── SearchExtensions.kt │ │ │ ├── settings │ │ │ │ ├── domain │ │ │ │ │ └── model │ │ │ │ │ │ └── Country.kt │ │ │ │ └── presentation │ │ │ │ │ ├── components │ │ │ │ │ ├── CountryPickerDialog.kt │ │ │ │ │ ├── EditProfileButton.kt │ │ │ │ │ ├── ExportDataDialog.kt │ │ │ │ │ ├── ExportDataSection.kt │ │ │ │ │ ├── ImportDataSection.kt │ │ │ │ │ └── SelectCountrySection.kt │ │ │ │ │ ├── screen_settings │ │ │ │ │ ├── SettingsView.kt │ │ │ │ │ └── SettingsViewModel.kt │ │ │ │ │ └── utils │ │ │ │ │ └── SettingsExtensions.kt │ │ │ └── watchlist │ │ │ │ ├── domain │ │ │ │ └── model │ │ │ │ │ └── WatchlistSortOptions.kt │ │ │ │ └── presentation │ │ │ │ ├── components │ │ │ │ └── EmptyWatchlistText.kt │ │ │ │ └── screen_watchlist │ │ │ │ ├── WatchlistView.kt │ │ │ │ └── WatchlistViewModel.kt │ │ │ ├── preferences_datastore │ │ │ └── StoreSettings.kt │ │ │ ├── room_database │ │ │ ├── LoggedMovieDao.kt │ │ │ ├── LoglineDatabase.kt │ │ │ ├── MovieDao.kt │ │ │ ├── MovieInListDao.kt │ │ │ ├── MovieListDao.kt │ │ │ ├── MovieUserDataDao.kt │ │ │ ├── RoomConverters.kt │ │ │ ├── SearchHistoryDao.kt │ │ │ ├── UserProfileDao.kt │ │ │ └── utils │ │ │ │ └── Queries.kt │ │ │ └── ui │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Theme.kt │ │ │ ├── Type.kt │ │ │ └── utils │ │ │ └── SystemUiUtils.kt │ └── res │ │ ├── drawable-anydpi │ │ └── person_placeholder.xml │ │ ├── drawable-hdpi │ │ └── person_placeholder.png │ │ ├── drawable-mdpi │ │ └── person_placeholder.png │ │ ├── drawable-xhdpi │ │ └── person_placeholder.png │ │ ├── drawable-xxhdpi │ │ └── person_placeholder.png │ │ ├── drawable │ │ ├── add_favourite_movie.png │ │ ├── default_banner_image.jpg │ │ ├── default_profile_image.jpg │ │ ├── ic_launcher_foreground.xml │ │ ├── logline_logo.xml │ │ ├── movie_poster_placeholder.png │ │ ├── no_movie_poster_placeholder.png │ │ ├── poster_placeholder.png │ │ └── tmdb_logo.xml │ │ ├── mipmap-anydpi │ │ └── ic_launcher.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_placeholder_image_background.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── patch4code │ └── logline │ └── ExampleUnitTest.kt ├── fastlane └── metadata │ └── android │ └── en-US │ ├── changelogs │ ├── 1.txt │ ├── 2.txt │ └── 3.txt │ ├── full_description.txt │ ├── images │ ├── featureGraphic.png │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── short_description.txt │ └── title.txt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── readme ├── LoglineLogo.svg ├── diary.jpeg ├── discover.jpeg ├── get-it-on-github.png ├── home.jpeg ├── list.jpeg ├── list_table.jpeg ├── movie_page.jpeg ├── my_movies.jpeg ├── profile.jpeg ├── reviews.jpeg ├── search.jpeg └── watchlist.jpeg └── settings.gradle.kts /.github/workflows/build-apk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/.github/workflows/build-apk.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/patch4code/logline/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/androidTest/java/com/patch4code/logline/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/api/RetrofitHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/api/RetrofitHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/api/TmdbApiService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/api/TmdbApiService.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/about/presentation/screen_settings/AboutView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/about/presentation/screen_settings/AboutView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/domain/model/FilterOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/domain/model/FilterOptions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/domain/model/Movie.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/domain/model/Movie.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/domain/model/MovieCountries.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/domain/model/MovieCountries.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/domain/model/MovieGenres.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/domain/model/MovieGenres.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/domain/model/MovieLanguages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/domain/model/MovieLanguages.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/domain/model/MoviePage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/domain/model/MoviePage.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/domain/model/MovieUserData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/domain/model/MovieUserData.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/domain/model/MovieWithUserData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/domain/model/MovieWithUserData.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/domain/model/SortOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/domain/model/SortOption.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/GeneralMovieSearchViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/GeneralMovieSearchViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/ExpandableText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/ExpandableText.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/RatingDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/RatingDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/ShowToastOnCondition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/ShowToastOnCondition.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/base_elements/BaseCountryLanguageSelectionDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/base_elements/BaseCountryLanguageSelectionDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/base_elements/BaseDropdown.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/base_elements/BaseDropdown.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/base_elements/BaseFilterChipRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/base_elements/BaseFilterChipRow.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/cards/MovieGridBrowseCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/cards/MovieGridBrowseCard.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/cards/MovieRowBrowseCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/cards/MovieRowBrowseCard.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/FilterApplyButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/FilterApplyButton.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/FilterDecadeYearSelection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/FilterDecadeYearSelection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/FilterGenreSelection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/FilterGenreSelection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/FilterLanguageDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/FilterLanguageDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/FilterLanguageSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/FilterLanguageSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/FilterSortDropdown.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/FilterSortDropdown.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/FilterTopBarSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/FilterTopBarSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/SortFilterDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/filter_dialog/SortFilterDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/load/LoadErrorDisplay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/load/LoadErrorDisplay.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/load/LoadingIndicator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/load/LoadingIndicator.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/modifier/Modifier.customVerticalScrollbar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/modifier/Modifier.customVerticalScrollbar.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/modifier/setPaddingBasedOnApiLvl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/modifier/setPaddingBasedOnApiLvl.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/movie_search_dialog/MovieSearchDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/movie_search_dialog/MovieSearchDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/movie_search_dialog/MovieSearchDialogLazyColumn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/movie_search_dialog/MovieSearchDialogLazyColumn.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/movie_search_dialog/MovieSearchDialogNoResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/movie_search_dialog/MovieSearchDialogNoResult.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/movie_search_dialog/MovieSearchDialogTextField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/movie_search_dialog/MovieSearchDialogTextField.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/swipe/SwipeToDelete.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/swipe/SwipeToDelete.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/components/swipe/SwipeToEdit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/components/swipe/SwipeToEdit.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/utils/DateHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/utils/DateHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/utils/Decoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/utils/Decoder.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/utils/FilterHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/utils/FilterHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/utils/JSONHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/utils/JSONHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/utils/LazyRowStatesSaver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/utils/LazyRowStatesSaver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/utils/LocalDateTimeAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/utils/LocalDateTimeAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/utils/MovieHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/utils/MovieHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/utils/MovieMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/utils/MovieMapper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/utils/MovieYears.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/utils/MovieYears.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/utils/StringResourceHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/utils/StringResourceHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/utils/TmdbCredentials.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/utils/TmdbCredentials.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/utils/UiText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/utils/UiText.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/utils/sort_filter/FilterOptionsSaver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/utils/sort_filter/FilterOptionsSaver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/core/presentation/utils/sort_filter/SortOptionSaver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/core/presentation/utils/sort_filter/SortOptionSaver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/domain/model/DiaryAndReviewSortOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/domain/model/DiaryAndReviewSortOptions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/domain/model/LoggedMovie.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/domain/model/LoggedMovie.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/domain/model/MovieWithLoggedData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/domain/model/MovieWithLoggedData.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/components/EmptyDiaryText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/components/EmptyDiaryText.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/components/MovieLoggedItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/components/MovieLoggedItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/components/dialogs/DiaryEditDatePickerDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/components/dialogs/DiaryEditDatePickerDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/components/dialogs/DiaryEditDeleteDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/components/dialogs/DiaryEditDeleteDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/components/dialogs/DiaryEditDiscardDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/components/dialogs/DiaryEditDiscardDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/components/dialogs/DiaryEditReviewDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/components/dialogs/DiaryEditReviewDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/components/editelement/DiaryEditDateSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/components/editelement/DiaryEditDateSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/components/editelement/DiaryEditDeleteSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/components/editelement/DiaryEditDeleteSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/components/editelement/DiaryEditHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/components/editelement/DiaryEditHeader.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/components/editelement/DiaryEditRatingSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/components/editelement/DiaryEditRatingSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/components/editelement/DiaryEditReviewSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/components/editelement/DiaryEditReviewSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/components/editelement/DiaryEditSaveChangesSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/components/editelement/DiaryEditSaveChangesSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/screen_diary/DiaryEditElementView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/screen_diary/DiaryEditElementView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/screen_diary/DiaryEditElementViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/screen_diary/DiaryEditElementViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/screen_diary/DiaryView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/screen_diary/DiaryView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/screen_diary/DiaryViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/screen_diary/DiaryViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/diary/presentation/utils/DiaryNavigationExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/diary/presentation/utils/DiaryNavigationExtensions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/home/presentation/screen_home/HomeView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/home/presentation/screen_home/HomeView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/home/presentation/screen_home/HomeViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/home/presentation/screen_home/HomeViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/domain/model/ListSortOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/domain/model/ListSortOptions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/domain/model/ListTableSortOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/domain/model/ListTableSortOptions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/domain/model/MovieInList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/domain/model/MovieInList.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/domain/model/MovieList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/domain/model/MovieList.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/domain/model/MovieWithListItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/domain/model/MovieWithListItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/EmptyListText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/EmptyListText.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/ListContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/ListContent.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/dialogs/AddMovieToListDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/dialogs/AddMovieToListDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/dialogs/DeleteMovieFromListDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/dialogs/DeleteMovieFromListDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/dialogs/EditListDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/dialogs/EditListDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/dialogs/ListSettingsBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/dialogs/ListSettingsBottomSheet.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/items/ListItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/items/ListItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/items/MovieListAddMovieCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/list/items/MovieListAddMovieCard.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/EmptyListTableText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/EmptyListTableText.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/ListsTableContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/ListsTableContent.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/dialogs/AddListDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/dialogs/AddListDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/dialogs/DeleteListDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/dialogs/DeleteListDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/dialogs/ListTableSortBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/dialogs/ListTableSortBottomSheet.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/item/AsyncImageCutPoster.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/item/AsyncImageCutPoster.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/item/ListsItemPreviewImages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/item/ListsItemPreviewImages.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/item/ListsTableItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/components/lists_table/item/ListsTableItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/screen_list/ListView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/screen_list/ListView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/screen_list/ListViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/screen_list/ListViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/screen_list/ListsTableView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/screen_list/ListsTableView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/screen_list/ListsTableViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/screen_list/ListsTableViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/utils/ListDialogsExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/utils/ListDialogsExtensions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/list/presentation/utils/ListsTableContentExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/list/presentation/utils/ListsTableContentExtensions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/domain/model/MovieCollection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/domain/model/MovieCollection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/domain/model/MovieCredits.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/domain/model/MovieCredits.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/domain/model/MovieDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/domain/model/MovieDetails.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/domain/model/MovieVideos.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/domain/model/MovieVideos.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/domain/model/WatchProvides.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/domain/model/WatchProvides.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieContent.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieDescription.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieDescription.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieFeaturesBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieFeaturesBar.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieGenres.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieGenres.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieMoreDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieMoreDetails.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieMoreLikeThis.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieMoreLikeThis.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieOtherSites.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieOtherSites.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MoviePosterPopup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MoviePosterPopup.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieRatings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieRatings.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieSourceReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/MovieSourceReference.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/buttons/SmallLinkButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/buttons/SmallLinkButton.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/cast_and_crew/CastMemberElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/cast_and_crew/CastMemberElement.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/cast_and_crew/CreditsSectionList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/cast_and_crew/CreditsSectionList.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/cast_and_crew/CrewMemberElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/cast_and_crew/CrewMemberElement.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/cast_and_crew/MovieCastAndCrew.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/cast_and_crew/MovieCastAndCrew.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/dialogs/AddToListDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/dialogs/AddToListDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/dialogs/AddToListDialogContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/dialogs/AddToListDialogContent.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/header/MovieHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/header/MovieHeader.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/header/MovieHeaderToolbar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/header/MovieHeaderToolbar.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/watch_providers/MovieWatchProviders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/watch_providers/MovieWatchProviders.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/components/watch_providers/ProviderSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/components/watch_providers/ProviderSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/screen_movie/AddToListViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/screen_movie/AddToListViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/screen_movie/MovieLogView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/screen_movie/MovieLogView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/screen_movie/MovieLogViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/screen_movie/MovieLogViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/screen_movie/MovieView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/screen_movie/MovieView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/screen_movie/MovieViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/screen_movie/MovieViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie/presentation/utils/MovieTopBarNavigationHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie/presentation/utils/MovieTopBarNavigationHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie_public_reviews/domain/model/TmdbReviewResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie_public_reviews/domain/model/TmdbReviewResponse.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie_public_reviews/presentation/components/TmdbMovieReviews.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie_public_reviews/presentation/components/TmdbMovieReviews.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie_public_reviews/presentation/components/TmdbReviewItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie_public_reviews/presentation/components/TmdbReviewItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie_public_reviews/presentation/screen_public_reviews/MoviePublicReviewsView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie_public_reviews/presentation/screen_public_reviews/MoviePublicReviewsView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/movie_public_reviews/presentation/screen_public_reviews/MoviePublicReviewsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/movie_public_reviews/presentation/screen_public_reviews/MoviePublicReviewsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/my_movies/domain/model/MyMoviesSortOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/my_movies/domain/model/MyMoviesSortOptions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/my_movies/presentation/components/EmptyMyMoviesText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/my_movies/presentation/components/EmptyMyMoviesText.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/my_movies/presentation/screen_my_movies/MyMoviesView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/my_movies/presentation/screen_my_movies/MyMoviesView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/my_movies/presentation/screen_my_movies/MyMoviesViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/my_movies/presentation/screen_my_movies/MyMoviesViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/domain/model/BottomNavigationItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/domain/model/BottomNavigationItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/domain/model/DrawerNavigationItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/domain/model/DrawerNavigationItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/domain/model/Screen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/domain/model/Screen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/BottomBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/BottomBar.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/DrawerContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/DrawerContent.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/TopBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/TopBar.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideCustomTopBarBackNavigationIcon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideCustomTopBarBackNavigationIcon.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideTopBarBackNavigationIcon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideTopBarBackNavigationIcon.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideTopBarNoNavigationIcon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideTopBarNoNavigationIcon.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideTopBarSearchViewTabs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideTopBarSearchViewTabs.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideTopBarSortActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideTopBarSortActions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideTopBarSortFilterActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideTopBarSortFilterActions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideTopBarSortFilterActionsAndMoreVert.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideTopBarSortFilterActionsAndMoreVert.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideTopBarTitle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/presentation/components/topbar_providers/ProvideTopBarTitle.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/presentation/screen_navigation/Navigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/presentation/screen_navigation/Navigation.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/navigation/presentation/screen_navigation/TopBarViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/navigation/presentation/screen_navigation/TopBarViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/person_details/domain/model/PersonDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/person_details/domain/model/PersonDetails.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/person_details/domain/model/PersonDetailsSortOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/person_details/domain/model/PersonDetailsSortOption.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/person_details/domain/model/PersonMovieCredits.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/person_details/domain/model/PersonMovieCredits.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/person_details/presentation/components/PersonDetailsSortBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/person_details/presentation/components/PersonDetailsSortBottomSheet.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/person_details/presentation/screen_person/PersonDetailsView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/person_details/presentation/screen_person/PersonDetailsView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/person_details/presentation/screen_person/PersonDetailsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/person_details/presentation/screen_person/PersonDetailsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/domain/model/ProfileNavigationElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/domain/model/ProfileNavigationElement.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/domain/model/UserProfile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/domain/model/UserProfile.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/domain/model/UserProfileWithFavouriteMovies.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/domain/model/UserProfileWithFavouriteMovies.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile/ExpandableBio.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile/ExpandableBio.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile/MovieFavouritesRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile/MovieFavouritesRow.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile/ProfileHead.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile/ProfileHead.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile/ProfileNavigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile/ProfileNavigation.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/ProfileEditBannerSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/ProfileEditBannerSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/ProfileEditBioSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/ProfileEditBioSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/ProfileEditFavMoviesSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/ProfileEditFavMoviesSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/ProfileEditImageSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/ProfileEditImageSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/ProfileEditNameSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/ProfileEditNameSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/dialogs/EditBioDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/dialogs/EditBioDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/dialogs/EditProfileNameDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/dialogs/EditProfileNameDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/dialogs/SelectFavMovieDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/components/profile_edit/dialogs/SelectFavMovieDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/screen_profile/ProfileEditView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/screen_profile/ProfileEditView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/screen_profile/ProfileView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/screen_profile/ProfileView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/screen_profile/ProfileViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/screen_profile/ProfileViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/profile/presentation/utils/ProfileEditExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/profile/presentation/utils/ProfileEditExtensions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/reviews/presentation/components/EmptyReviewsText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/reviews/presentation/components/EmptyReviewsText.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/reviews/presentation/components/ReviewDetailsInfoAndActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/reviews/presentation/components/ReviewDetailsInfoAndActions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/reviews/presentation/components/ReviewDetailsPoster.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/reviews/presentation/components/ReviewDetailsPoster.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/reviews/presentation/components/ReviewItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/reviews/presentation/components/ReviewItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/reviews/presentation/screen_reviews/ReviewDetailsView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/reviews/presentation/screen_reviews/ReviewDetailsView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/reviews/presentation/screen_reviews/ReviewDetailsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/reviews/presentation/screen_reviews/ReviewDetailsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/reviews/presentation/screen_reviews/ReviewsView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/reviews/presentation/screen_reviews/ReviewsView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/reviews/presentation/screen_reviews/ReviewsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/reviews/presentation/screen_reviews/ReviewsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/domain/model/DiscoverDecade.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/domain/model/DiscoverDecade.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/domain/model/DiscoverOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/domain/model/DiscoverOptions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/domain/model/DiscoverSortOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/domain/model/DiscoverSortOptions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/domain/model/MovieProvidersForCountry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/domain/model/MovieProvidersForCountry.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/domain/model/SearchHistoryItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/domain/model/SearchHistoryItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/DiscoverContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/DiscoverContent.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverCountrySection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverCountrySection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverDecadeYearSelection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverDecadeYearSelection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverGenreSelection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverGenreSelection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverLanguageDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverLanguageDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverLanguageSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverLanguageSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverLengthSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverLengthSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverOptionSelection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverOptionSelection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverProviderDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverProviderDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverProviderSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverProviderSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverRatingSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverRatingSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverSortDropdown.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverSortDropdown.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverVoteCountSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/options/DiscoverVoteCountSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/results/DiscoveredMoviesContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/results/DiscoveredMoviesContent.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/results/EmptyDiscoverText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/discover/results/EmptyDiscoverText.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/SearchBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/SearchBar.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/SearchContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/SearchContent.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/history/ClearHistoryDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/history/ClearHistoryDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/history/SearchHistoryColumn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/history/SearchHistoryColumn.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/history/SearchHistoryHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/history/SearchHistoryHeader.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/history/SearchHistoryItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/history/SearchHistoryItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/results/MovieSearchCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/results/MovieSearchCard.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/results/NoSearchResultText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/results/NoSearchResultText.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/results/SearchResultsList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/search/results/SearchResultsList.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/utils/DiscoverHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/utils/DiscoverHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/utils/DiscoverOptionsSaver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/utils/DiscoverOptionsSaver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/components/utils/TextInputSaver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/components/utils/TextInputSaver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/screen_search/DiscoverViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/screen_search/DiscoverViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/screen_search/ProviderForCountryViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/screen_search/ProviderForCountryViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/screen_search/SearchDiscoverView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/screen_search/SearchDiscoverView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/screen_search/SearchViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/screen_search/SearchViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/utils/HandleClearSearch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/utils/HandleClearSearch.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/utils/HandleFocusRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/utils/HandleFocusRequest.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/utils/KeyboardVisibilityObserver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/utils/KeyboardVisibilityObserver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/search/presentation/utils/SearchExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/search/presentation/utils/SearchExtensions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/settings/domain/model/Country.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/settings/domain/model/Country.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/settings/presentation/components/CountryPickerDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/settings/presentation/components/CountryPickerDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/settings/presentation/components/EditProfileButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/settings/presentation/components/EditProfileButton.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/settings/presentation/components/ExportDataDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/settings/presentation/components/ExportDataDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/settings/presentation/components/ExportDataSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/settings/presentation/components/ExportDataSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/settings/presentation/components/ImportDataSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/settings/presentation/components/ImportDataSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/settings/presentation/components/SelectCountrySection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/settings/presentation/components/SelectCountrySection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/settings/presentation/screen_settings/SettingsView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/settings/presentation/screen_settings/SettingsView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/settings/presentation/screen_settings/SettingsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/settings/presentation/screen_settings/SettingsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/settings/presentation/utils/SettingsExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/settings/presentation/utils/SettingsExtensions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/watchlist/domain/model/WatchlistSortOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/watchlist/domain/model/WatchlistSortOptions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/watchlist/presentation/components/EmptyWatchlistText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/watchlist/presentation/components/EmptyWatchlistText.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/watchlist/presentation/screen_watchlist/WatchlistView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/watchlist/presentation/screen_watchlist/WatchlistView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/features/watchlist/presentation/screen_watchlist/WatchlistViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/features/watchlist/presentation/screen_watchlist/WatchlistViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/preferences_datastore/StoreSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/preferences_datastore/StoreSettings.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/room_database/LoggedMovieDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/room_database/LoggedMovieDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/room_database/LoglineDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/room_database/LoglineDatabase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/room_database/MovieDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/room_database/MovieDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/room_database/MovieInListDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/room_database/MovieInListDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/room_database/MovieListDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/room_database/MovieListDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/room_database/MovieUserDataDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/room_database/MovieUserDataDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/room_database/RoomConverters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/room_database/RoomConverters.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/room_database/SearchHistoryDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/room_database/SearchHistoryDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/room_database/UserProfileDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/room_database/UserProfileDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/room_database/utils/Queries.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/room_database/utils/Queries.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/java/com/patch4code/logline/ui/theme/utils/SystemUiUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/java/com/patch4code/logline/ui/theme/utils/SystemUiUtils.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-anydpi/person_placeholder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/drawable-anydpi/person_placeholder.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/person_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/drawable-hdpi/person_placeholder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/person_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/drawable-mdpi/person_placeholder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/person_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/drawable-xhdpi/person_placeholder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/person_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/drawable-xxhdpi/person_placeholder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/add_favourite_movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/drawable/add_favourite_movie.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/default_banner_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/drawable/default_banner_image.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/default_profile_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/drawable/default_profile_image.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/logline_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/drawable/logline_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/movie_poster_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/drawable/movie_poster_placeholder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/no_movie_poster_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/drawable/no_movie_poster_placeholder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/poster_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/drawable/poster_placeholder.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/tmdb_logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/drawable/tmdb_logo.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/mipmap-anydpi/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_placeholder_image_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/values/ic_placeholder_image_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/patch4code/logline/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/app/src/test/java/com/patch4code/logline/ExampleUnitTest.kt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/1.txt: -------------------------------------------------------------------------------- 1 | initial release -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/changelogs/2.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/changelogs/3.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/10.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/7.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/8.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/9.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | An Android Open Source Movie App -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Logline - MovieApp -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/gradlew.bat -------------------------------------------------------------------------------- /readme/LoglineLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/readme/LoglineLogo.svg -------------------------------------------------------------------------------- /readme/diary.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/readme/diary.jpeg -------------------------------------------------------------------------------- /readme/discover.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/readme/discover.jpeg -------------------------------------------------------------------------------- /readme/get-it-on-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/readme/get-it-on-github.png -------------------------------------------------------------------------------- /readme/home.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/readme/home.jpeg -------------------------------------------------------------------------------- /readme/list.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/readme/list.jpeg -------------------------------------------------------------------------------- /readme/list_table.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/readme/list_table.jpeg -------------------------------------------------------------------------------- /readme/movie_page.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/readme/movie_page.jpeg -------------------------------------------------------------------------------- /readme/my_movies.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/readme/my_movies.jpeg -------------------------------------------------------------------------------- /readme/profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/readme/profile.jpeg -------------------------------------------------------------------------------- /readme/reviews.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/readme/reviews.jpeg -------------------------------------------------------------------------------- /readme/search.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/readme/search.jpeg -------------------------------------------------------------------------------- /readme/watchlist.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/readme/watchlist.jpeg -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patch4Code/Logline/HEAD/settings.gradle.kts --------------------------------------------------------------------------------